*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#0b0b0b;
    color:#fff;
    font-family:Arial, sans-serif;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

/* HEADER */

.site-header{
    width:100%;
    padding:18px 5%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:#0b0b0b;
    border-bottom:1px solid rgba(255,255,255,0.08);
    position:sticky;
    top:0;
    z-index:999;
}

.logo img{
    height:55px;
    object-fit:contain;
}

.main-nav{
    display:flex;
    gap:35px;
}

.main-nav a{
    color:#e5d3a7;
    font-size:15px;
    letter-spacing:1px;
    transition:0.3s;
}

.main-nav a:hover{
    color:#fff;
}

.cart-link{
    color:#fff;
    border:1px solid #d4af37;
    padding:10px 18px;
    border-radius:50px;
    transition:0.3s;
}

.cart-link:hover{
    background:#d4af37;
    color:#000;
}

/* HERO */

.hero{
    width:100%;
    min-height:90vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:80px 5%;
    background:linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.75)),
    url('/assets/images/hero-bg.jpg') center/cover;
}

.hero-content{
    max-width:850px;
}

.hero-content h1{
    font-size:70px;
    line-height:1.1;
    margin-bottom:25px;
    color:#fff;
}

.hero-content p{
    font-size:18px;
    line-height:1.8;
    color:#d1d1d1;
    margin-bottom:35px;
}

.hero-btn{
    display:inline-block;
    background:#d4af37;
    color:#000;
    padding:16px 38px;
    border-radius:50px;
    font-weight:600;
    transition:0.3s;
}

.hero-btn:hover{
    transform:translateY(-3px);
}

/* SECTION */

.section{
    padding:90px 5%;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    color:#fff;
    margin-bottom:15px;
}

.section-title p{
    color:#bdbdbd;
}

/* CATEGORY GRID */

.category-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.category-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    background:#111;
}

.category-card img{
    width:100%;
    height:420px;
    object-fit:cover;
    transition:0.5s;
}

.category-card:hover img{
    transform:scale(1.08);
}

.category-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(transparent, rgba(0,0,0,0.8));
    display:flex;
    align-items:flex-end;
    padding:30px;
}

.category-overlay h3{
    font-size:28px;
    color:#fff;
}

/* FOOTER */

.site-footer{
    background:#050505;
    padding-top:70px;
}

.footer-top{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
    padding:0 5% 60px;
}

.footer-brand img{
    height:60px;
    margin-bottom:20px;
}

.footer-brand p{
    color:#b8b8b8;
    line-height:1.8;
    max-width:450px;
}

.footer-links h4{
    color:#fff;
    margin-bottom:20px;
}

.footer-links{
    display:flex;
    flex-direction:column;
}

.footer-links a{
    color:#b8b8b8;
    margin-bottom:12px;
    transition:0.3s;
}

.footer-links a:hover{
    color:#d4af37;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.08);
    padding:20px;
    text-align:center;
}

.footer-bottom p{
    color:#999;
    font-size:14px;
}

.footer-bottom a{
    color:#d4af37;
    font-weight:600;
}

/* MOBILE */

@media(max-width:992px){

    .category-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .hero-content h1{
        font-size:52px;
    }

}

@media(max-width:768px){

    .site-header{
        flex-direction:column;
        gap:20px;
    }

    .main-nav{
        flex-wrap:wrap;
        justify-content:center;
        gap:18px;
    }

    .hero-content h1{
        font-size:40px;
    }

    .footer-top{
        grid-template-columns:1fr;
    }

    .category-grid{
        grid-template-columns:1fr;
    }

}
/* PRODUCT GRID */

.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.product-card{
    background:#111;
    border:1px solid rgba(212,175,55,0.18);
    border-radius:18px;
    overflow:hidden;
    transition:0.35s ease;
}

.product-card:hover{
    transform:translateY(-6px);
    border-color:#d4af37;
    box-shadow:0 18px 45px rgba(0,0,0,0.45);
}

.product-image{
    width:100%;
    height:340px;
    background:#050505;
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s ease;
}

.product-card:hover .product-image img{
    transform:scale(1.08);
}

.product-info{
    padding:22px;
}

.product-info h3{
    color:#fff;
    font-size:18px;
    margin-bottom:14px;
    line-height:1.4;
}

.product-price{
    display:flex;
    align-items:center;
    gap:12px;
}

.sale-price{
    color:#d4af37;
    font-size:18px;
    font-weight:700;
}

.old-price{
    color:#777;
    text-decoration:line-through;
    font-size:14px;
}

.no-products{
    grid-column:1/-1;
    text-align:center;
    color:#b8b8b8;
    font-size:18px;
    padding:60px 0;
}

@media(max-width:992px){
    .product-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .product-grid{
        grid-template-columns:1fr;
    }

    .product-image{
        height:380px;
    }
}
/* ADMIN LOGIN */

.admin-login-wrap{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    background:radial-gradient(circle at top, #1b1608, #050505 55%);
    padding:20px;
}

.admin-login-box{
    width:100%;
    max-width:420px;
    background:rgba(10,10,10,0.92);
    border:1px solid rgba(212,175,55,0.25);
    border-radius:24px;
    padding:42px;
    text-align:center;
    box-shadow:0 30px 80px rgba(0,0,0,0.6);
}

.admin-login-box img{
    height:78px;
    margin:0 auto 22px;
    object-fit:contain;
}

.admin-login-box h2{
    color:#fff;
    margin-bottom:8px;
    font-size:28px;
}

.admin-login-box p{
    color:#d4af37;
    font-size:13px;
    letter-spacing:1.5px;
    margin-bottom:28px;
}

.admin-login-box input{
    width:100%;
    padding:15px 16px;
    margin-bottom:16px;
    background:#111;
    border:1px solid rgba(255,255,255,0.12);
    border-radius:12px;
    color:#fff;
    outline:none;
}

.admin-login-box input:focus{
    border-color:#d4af37;
}

.admin-login-box button{
    width:100%;
    padding:15px;
    border:none;
    border-radius:50px;
    background:#d4af37;
    color:#000;
    font-weight:700;
    cursor:pointer;
}

.admin-error{
    background:rgba(255,0,0,0.12);
    color:#ff8a8a;
    padding:12px;
    border-radius:10px;
    margin-bottom:16px;
}
/* ADMIN PANEL */

.admin-panel{
    min-height:100vh;
    display:flex;
    background:#080808;
}

.admin-sidebar{
    width:280px;
    background:#050505;
    border-right:1px solid rgba(212,175,55,0.18);
    padding:30px 22px;
}

.admin-logo{
    text-align:center;
    margin-bottom:40px;
}

.admin-logo img{
    height:70px;
    margin:0 auto 15px;
}

.admin-logo h2{
    color:#fff;
    font-size:22px;
}

.admin-logo p{
    color:#d4af37;
    font-size:11px;
    letter-spacing:1.4px;
}

.admin-sidebar nav{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.admin-sidebar nav a{
    color:#cfcfcf;
    padding:14px 16px;
    border-radius:12px;
    transition:0.3s;
}

.admin-sidebar nav a:hover{
    background:#d4af37;
    color:#000;
}

.admin-content{
    flex:1;
    padding:35px;
}

.admin-topbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:35px;
}

.admin-topbar h1{
    color:#fff;
    font-size:34px;
}

.admin-topbar p{
    color:#b8b8b8;
}

.dashboard-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.dashboard-card{
    background:#111;
    border:1px solid rgba(212,175,55,0.18);
    border-radius:20px;
    padding:28px;
}

.dashboard-card h3{
    color:#b8b8b8;
    font-size:15px;
    margin-bottom:15px;
}

.dashboard-card h2{
    color:#d4af37;
    font-size:34px;
}

@media(max-width:900px){
    .admin-panel{
        flex-direction:column;
    }

    .admin-sidebar{
        width:100%;
    }

    .dashboard-grid{
        grid-template-columns:1fr;
    }

    .admin-topbar{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }
}
.admin-btn{
    background:#d4af37;
    color:#000;
    padding:12px 20px;
    border-radius:50px;
    font-weight:700;
}

.admin-table-wrap{
    background:#111;
    border:1px solid rgba(212,175,55,0.18);
    border-radius:18px;
    overflow-x:auto;
}

.admin-table{
    width:100%;
    border-collapse:collapse;
}

.admin-table th,
.admin-table td{
    padding:16px;
    border-bottom:1px solid rgba(255,255,255,0.08);
    color:#ddd;
    text-align:left;
}

.admin-table th{
    color:#d4af37;
    font-size:14px;
}

.admin-product-img{
    width:60px;
    height:60px;
    object-fit:cover;
    border-radius:10px;
}
.admin-form{
    background:#111;
    border:1px solid rgba(212,175,55,0.18);
    border-radius:20px;
    padding:28px;
    max-width:850px;
}

.admin-form label{
    display:block;
    color:#d4af37;
    margin-bottom:8px;
    font-size:14px;
}

.admin-form input,
.admin-form select,
.admin-form textarea{
    width:100%;
    background:#070707;
    border:1px solid rgba(255,255,255,0.12);
    color:#fff;
    padding:14px;
    border-radius:12px;
    margin-bottom:18px;
    outline:none;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus{
    border-color:#d4af37;
}

.admin-form button{
    background:#d4af37;
    color:#000;
    border:none;
    padding:15px 30px;
    border-radius:50px;
    font-weight:700;
    cursor:pointer;
}

.admin-success{
    background:rgba(0,255,120,0.12);
    color:#82ffb4;
    padding:14px;
    border-radius:12px;
    margin-bottom:18px;
}
.product-detail{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    padding:80px 5%;
}

.product-detail-image{
    background:#111;
    border-radius:24px;
    overflow:hidden;
}

.product-detail-image img{
    width:100%;
    height:650px;
    object-fit:cover;
}

.product-category{
    color:#d4af37;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.product-detail-info h1{
    font-size:46px;
    margin-bottom:20px;
}

.product-detail-price{
    display:flex;
    gap:15px;
    align-items:center;
    margin-bottom:25px;
}

.product-detail-price span{
    color:#d4af37;
    font-size:30px;
    font-weight:700;
}

.product-detail-price del{
    color:#777;
}

.product-short{
    color:#cfcfcf;
    line-height:1.8;
    margin-bottom:25px;
}

.add-cart-form{
    display:flex;
    gap:15px;
    margin-bottom:35px;
}

.add-cart-form input{
    width:90px;
    padding:14px;
    background:#111;
    color:#fff;
    border:1px solid rgba(255,255,255,0.15);
    border-radius:12px;
}

.add-cart-form button{
    background:#d4af37;
    color:#000;
    border:none;
    padding:14px 30px;
    border-radius:50px;
    font-weight:700;
    cursor:pointer;
}

.product-description{
    border-top:1px solid rgba(255,255,255,0.1);
    padding-top:25px;
}

.product-description h3{
    margin-bottom:12px;
}

.product-description p{
    color:#b8b8b8;
    line-height:1.8;
}

@media(max-width:768px){
    .product-detail{
        grid-template-columns:1fr;
    }

    .product-detail-image img{
        height:auto;
    }

    .product-detail-info h1{
        font-size:34px;
    }
}
.cart-wrap{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:35px;
}

.cart-item{
    display:grid;
    grid-template-columns:110px 1fr auto;
    gap:22px;
    align-items:center;
    background:#111;
    border:1px solid rgba(212,175,55,0.18);
    border-radius:18px;
    padding:18px;
    margin-bottom:18px;
}

.cart-item img{
    width:110px;
    height:110px;
    object-fit:cover;
    border-radius:12px;
}

.cart-info h3{
    margin-bottom:8px;
}

.cart-info p,
.cart-total{
    color:#d4af37;
    font-weight:700;
}

.cart-info input{
    width:70px;
    padding:10px;
    margin:12px 0;
    background:#070707;
    color:#fff;
    border:1px solid rgba(255,255,255,0.15);
    border-radius:10px;
}

.remove-cart{
    display:block;
    color:#ff8a8a;
    font-size:14px;
}

.cart-summary{
    background:#111;
    border:1px solid rgba(212,175,55,0.18);
    border-radius:20px;
    padding:28px;
    height:max-content;
}

.cart-summary h3{
    margin-bottom:22px;
}

.summary-row{
    display:flex;
    justify-content:space-between;
    padding:14px 0;
    border-bottom:1px solid rgba(255,255,255,0.08);
    color:#cfcfcf;
}

.summary-row.total{
    color:#fff;
    font-size:20px;
}

.checkout-btn,
.update-cart-btn,
.continue-shopping{
    display:block;
    text-align:center;
    margin-top:18px;
    padding:14px 22px;
    border-radius:50px;
    font-weight:700;
}

.checkout-btn,
.update-cart-btn{
    background:#d4af37;
    color:#000;
    border:none;
    cursor:pointer;
}

.continue-shopping{
    color:#d4af37;
    border:1px solid rgba(212,175,55,0.4);
}

.empty-cart{
    text-align:center;
}

.empty-cart h3{
    margin-bottom:25px;
}

@media(max-width:768px){
    .cart-wrap{
        grid-template-columns:1fr;
    }

    .cart-item{
        grid-template-columns:1fr;
    }

    .cart-total{
        text-align:left;
    }
}
.checkout-wrap{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:35px;
}

.checkout-form,
.checkout-summary{
    background:#111;
    border:1px solid rgba(212,175,55,0.18);
    border-radius:20px;
    padding:28px;
}

.checkout-form h3,
.checkout-summary h3{
    margin-bottom:20px;
    color:#fff;
}

.checkout-form input,
.checkout-form textarea{
    width:100%;
    background:#070707;
    border:1px solid rgba(255,255,255,0.12);
    color:#fff;
    padding:14px;
    border-radius:12px;
    margin-bottom:16px;
    outline:none;
}

.checkout-form input:focus,
.checkout-form textarea:focus{
    border-color:#d4af37;
}

.checkout-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.payment-option{
    display:block;
    color:#cfcfcf;
    margin-bottom:12px;
}

.payment-option input{
    width:auto;
    margin-right:8px;
}

.checkout-item{
    display:flex;
    justify-content:space-between;
    gap:15px;
    padding:14px 0;
    border-bottom:1px solid rgba(255,255,255,0.08);
    color:#cfcfcf;
}

.checkout-place-btn{
    width:100%;
    margin-top:22px;
    background:#d4af37;
    color:#000;
    border:none;
    padding:15px;
    border-radius:50px;
    font-weight:700;
    cursor:pointer;
}

@media(max-width:768px){
    .checkout-wrap,
    .checkout-row{
        grid-template-columns:1fr;
    }
}
.thank-you-section{
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:70vh;
}

.thank-you-box{
    max-width:700px;
    width:100%;
    text-align:center;
    background:#111;
    border:1px solid rgba(212,175,55,0.18);
    border-radius:24px;
    padding:60px 40px;
}

.thank-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#d4af37;
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    font-weight:700;
}

.thank-you-box h1{
    font-size:44px;
    margin-bottom:18px;
}

.thank-you-box p{
    color:#cfcfcf;
    line-height:1.8;
    margin-bottom:25px;
}

.order-number{
    margin-bottom:35px;
    color:#d4af37;
    font-size:20px;
}
.order-view-box{
    background:#111;
    border:1px solid rgba(212,175,55,0.18);
    border-radius:20px;
    padding:28px;
}

.order-view-box h3{
    color:#d4af37;
    margin:24px 0 14px;
}

.order-view-box p{
    color:#cfcfcf;
    margin-bottom:10px;
    line-height:1.7;
}

.admin-link{
    color:#d4af37;
    font-weight:700;
}

.status-form{
    margin-top:15px;
    max-width:320px;
}

.status-form label{
    display:block;
    color:#d4af37;
    margin-bottom:8px;
}

.status-form select{
    width:100%;
    background:#070707;
    color:#fff;
    border:1px solid rgba(255,255,255,0.12);
    padding:12px;
    border-radius:10px;
    margin-bottom:12px;
}

.status-form button{
    background:#d4af37;
    color:#000;
    border:none;
    padding:12px 22px;
    border-radius:50px;
    font-weight:700;
    cursor:pointer;
}