:root{
    --brown:#24180f; --brown2:#3a281a; --gold:#c69a54; --cream:#f8f1e6; --muted:#7b6a58;
}
*{box-sizing:border-box}
body{font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;background:#fff;color:var(--brown);line-height:1.6}
a{text-decoration:none;color:inherit}
.topbar{background:var(--brown);color:#fff;font-size:.9rem;padding:.55rem 0}
.main-nav{background:rgba(255,255,255,.94);backdrop-filter:blur(12px);box-shadow:0 10px 30px rgba(36,24,15,.08)}
.brand-mark{display:inline-grid;place-items:center;width:42px;height:42px;border-radius:50%;background:var(--brown);color:var(--gold);margin-right:.5rem}
.hero{background:radial-gradient(circle at 85% 15%,rgba(198,154,84,.25),transparent 35%),linear-gradient(135deg,#24180f,#412d1d);color:#fff;padding:95px 0}
.hero h1{font-size:clamp(2.3rem,5vw,4.8rem);line-height:1.02;font-weight:800;letter-spacing:-.05em}
.hero p{font-size:1.2rem;color:#eadfce;max-width:620px}
.eyebrow{text-transform:uppercase;letter-spacing:.18em;color:var(--gold);font-weight:800;font-size:.78rem}
.btn-gold{background:var(--gold);border-color:var(--gold);color:#1f160f;font-weight:800}
.btn-gold:hover{background:#d6ad6a;border-color:#d6ad6a;color:#1f160f}
.hero-card{background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.18);border-radius:34px;padding:24px;box-shadow:0 35px 100px rgba(0,0,0,.35)}
.placeholder-img{background:linear-gradient(135deg,#eee3d2,#c7a66d);display:grid;place-items:center;color:#3a281a;font-weight:900;text-transform:uppercase}
.hero-img{height:360px;border-radius:28px;font-size:3rem}
.section{padding:75px 0}
.section-title{text-align:center;margin-bottom:38px}
.section-title span{color:var(--gold);font-weight:800;text-transform:uppercase;letter-spacing:.16em}
.section-title h2{font-weight:850;font-size:clamp(2rem,4vw,3.2rem);letter-spacing:-.04em}
.page-head{background:var(--cream);padding:55px 0}
.page-head h1{font-weight:850;letter-spacing:-.04em}
.product-card{background:#fff;border:1px solid #eee2d4;border-radius:28px;overflow:hidden;box-shadow:0 18px 45px rgba(36,24,15,.08);transition:.25s}
.product-card:hover{transform:translateY(-5px);box-shadow:0 28px 65px rgba(36,24,15,.15)}
.product-image{height:230px;font-size:4rem}
.product-image-wrap{height:260px;background:linear-gradient(180deg,#fff,#f7efe4);display:grid;place-items:center;padding:22px}
.product-img{max-width:100%;max-height:220px;object-fit:contain;filter:drop-shadow(0 18px 20px rgba(36,24,15,.14));transition:.25s}
.product-card:hover .product-img{transform:scale(1.04)}
.product-body{padding:24px}
.product-body small{color:var(--gold);font-weight:800;text-transform:uppercase}
.product-body h3{font-size:1.25rem;font-weight:800;margin:.45rem 0}
.product-body p{color:var(--muted);min-height:52px}
.shop-layout{display:grid;grid-template-columns:280px 1fr;gap:36px}
.shop-sidebar{background:#fff;border:1px solid #eee2d4;border-radius:24px;padding:24px;height:max-content;position:sticky;top:92px}
.cat-link{display:block;padding:.7rem 0;border-bottom:1px solid #f0e7dc;color:var(--muted)}
.cat-link:hover{color:var(--gold)}
.product-detail-image{min-height:520px;border-radius:34px;font-size:7rem}
.product-detail-photo{background:linear-gradient(180deg,#fff,#f7efe4);display:grid;place-items:center;padding:34px;border:1px solid #eee2d4}
.product-detail-photo img{max-width:100%;max-height:500px;object-fit:contain;filter:drop-shadow(0 25px 24px rgba(36,24,15,.18))}
.rating{color:#f0b22a;margin:1rem 0}
.rating span{color:var(--muted);margin-left:.5rem}
.price-big{font-size:1.8rem;font-weight:900;color:var(--brown)}
.add-cart-box,.tabs-panel,.checkout-card,.contact-card,.thankyou,.cart-summary{background:#fff;border:1px solid #eee2d4;border-radius:28px;padding:28px;box-shadow:0 18px 45px rgba(36,24,15,.08)}
.cart-summary{max-width:420px;margin-left:auto}
.checkout-grid{display:grid;grid-template-columns:1.3fr .7fr;gap:32px}
.site-footer{background:var(--brown);color:#d8c7ae;padding:60px 0 30px}
.site-footer h5{color:#fff}.site-footer a{display:block;color:#d8c7ae;margin:.3rem 0}
@media(max-width:991px){.shop-layout,.checkout-grid{grid-template-columns:1fr}.shop-sidebar{position:static}.hero{padding:65px 0}.topbar .container{flex-direction:column;text-align:center}}


.site-logo{
    height: 90px;
    width: auto;
    display: block;
    transition: all .3s ease;
}

.main-nav{
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

.navbar{
    padding-top: 10px;
    padding-bottom: 10px;
}

@media (max-width: 991px){
    .site-logo{
        height: 48px;
    }
}

@media (max-width: 576px){
    .site-logo{
        height: 42px;
    }
}




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

.category-card{
    display:block;
    border:2px solid #c7a600;
    background:#000;
    overflow:hidden;
}

.category-card img{
    width:100%;
    height:auto;
    display:block;
}

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

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