:root {
    --bg: #f7f3ef;
    --bg-soft: #fbf8f5;
    --card: #ffffff;
    --ink: #171717;
    --muted: #6f6a66;
    --line: rgba(0,0,0,.09);
    --gold: #c8a36a;
    --gold-dark: #a87f42;
    --black: #101010;
    --rose: #ead8cf;
    --shadow: 0 18px 45px rgba(20, 20, 20, .09);
    --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--ink); background: var(--bg-soft); }
body.drawer-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.container-wide { width: min(1480px, calc(100% - 48px)); margin-inline: auto; }

.topbar { background: #111; color: #f8f1e8; font-size: 13px; }
.topbar-inner { height: 38px; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 34px; }
.topbar i { color: var(--gold); margin-right: 7px; }

.header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.94); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); transition: box-shadow .25s, transform .25s; }
.header.is-scrolled { box-shadow: 0 16px 45px rgba(0,0,0,.08); }
.header-inner { height: 78px; display: grid; grid-template-columns: 260px 1fr 430px; align-items: center; gap: 28px; }
.logo { display: flex; align-items: center; gap: 12px; font-family: "Playfair Display", serif; font-size: 28px; letter-spacing: .05em; text-transform: uppercase; }
.logo i { color: var(--gold); font-size: 34px; }
.logo small { color: var(--gold); font-size: 20px; letter-spacing: .03em; text-transform: none; }
.mobile-menu-btn { display: none; border: 0; background: transparent; font-size: 32px; justify-self: end; }
.nav { display: flex; align-items: center; justify-content: center; gap: 36px; font-weight: 600; font-size: 15px; }
.nav-item { position: relative; height: 78px; display: flex; align-items: center; gap: 7px; cursor: pointer; }
.nav-item::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--gold); transform: scaleX(0); transition: .22s; }
.nav-item:hover::after, .nav-item.is-active::after { transform: scaleX(1); }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 18px; }
.search { width: 245px; height: 42px; border: 1px solid var(--line); border-radius: 8px; display: flex; align-items: center; padding: 0 14px; background: #fff; transition: .2s; }
.search:focus-within { width: 295px; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(200,163,106,.14); }
.search input { border: 0; outline: 0; width: 100%; font-size: 13px; background: transparent; }
.icon-btn { position: relative; width: 38px; height: 38px; display: grid; place-items: center; font-size: 21px; transition: .2s; }
.icon-btn:hover { color: var(--gold-dark); transform: translateY(-2px); }
.badge { position: absolute; top: 2px; right: 0; min-width: 17px; height: 17px; border-radius: 999px; background: var(--gold); color: #fff; font-size: 10px; display: grid; place-items: center; }

.mega-panel { position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 25px 55px rgba(0,0,0,.08); opacity: 0; transform: translateY(-12px); pointer-events: none; transition: opacity .22s, transform .22s; }
.mega-panel.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mega-inner { display: grid; grid-template-columns: 1.2fr .75fr .75fr 350px; gap: 60px; padding: 34px 0 36px; }
.mega-col h3 { margin: 0 0 18px; font-size: 15px; text-transform: uppercase; letter-spacing: .08em; }
.mega-list { columns: 2; list-style: none; padding: 0; margin: 0; }
.mega-list.one { columns: 1; }
.mega-list li { break-inside: avoid; margin: 0 0 13px; color: #242424; }
.mega-list a { transition: .18s; }
.mega-list a:hover { color: var(--gold-dark); padding-left: 5px; }
.mega-feature { min-height: 230px; border-radius: var(--radius); padding: 28px; color: #fff; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(0deg, rgba(0,0,0,.72), rgba(0,0,0,.08)), url('https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?auto=format&fit=crop&w=900&q=80') center/cover; overflow: hidden; }
.mega-feature span { color: var(--gold); text-transform: uppercase; font-size: 12px; font-weight: 800; letter-spacing: .14em; }
.mega-feature strong { font-family: "Playfair Display", serif; font-size: 28px; margin: 7px 0 14px; }
.mega-feature em { width: max-content; font-style: normal; border: 1px solid rgba(255,255,255,.7); padding: 9px 16px; border-radius: 6px; font-weight: 700; font-size: 12px; }

.mobile-drawer { position: fixed; inset: 0 auto 0 0; width: min(360px, 88vw); background: #fff; z-index: 80; transform: translateX(-105%); transition: .28s; padding: 28px; box-shadow: 20px 0 50px rgba(0,0,0,.18); display: flex; flex-direction: column; gap: 20px; }
.mobile-drawer.is-open { transform: translateX(0); }
.drawer-close { align-self: flex-end; border: 0; background: transparent; font-size: 24px; }
.drawer-logo { margin-bottom: 20px; }
.drawer-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 70; opacity: 0; pointer-events: none; transition: .25s; }
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }

.hero { min-height: 520px; background: linear-gradient(90deg, rgba(247,243,239,.96) 0%, rgba(247,243,239,.78) 44%, rgba(247,243,239,.12) 70%), url('https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=2100&q=85') center right/cover; display: flex; align-items: center; }
.hero-content { width: min(640px, 100%); padding: 72px 0; }
.kicker { color: var(--muted); text-transform: uppercase; letter-spacing: .14em; font-size: 13px; margin-bottom: 18px; }
h1 { font-family: "Playfair Display", serif; font-size: clamp(42px, 5vw, 76px); line-height: 1.02; margin: 0 0 20px; }
.hero h1 span { color: var(--gold-dark); display: block; font-style: italic; font-weight: 500; }
.hero p { max-width: 520px; color: #4d4945; font-size: 17px; line-height: 1.7; margin: 0 0 28px; }
.btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { min-width: 145px; height: 48px; border-radius: 7px; display: inline-flex; align-items: center; justify-content: center; padding: 0 22px; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; border: 1px solid #111; transition: .2s; }
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn.black { background: #111; color: #fff; }
.btn.gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn.outline { background: transparent; color: #111; }

.section { padding: 34px 0; }
.category-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.cat-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 10px 25px rgba(0,0,0,.04); transition: .25s; }
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.cat-card:hover .cat-img { transform: scale(1.06); }
.cat-img { height: 150px; background: var(--rose) center/cover; transition: .35s; }
.img-1 { background-image:url('https://images.unsplash.com/photo-1539109136881-3be0616acf4b?auto=format&fit=crop&w=700&q=80'); }
.img-2 { background-image:url('https://images.unsplash.com/photo-1543163521-1bf539c55dd2?auto=format&fit=crop&w=700&q=80'); }
.img-3 { background-image:url('https://images.unsplash.com/photo-1516762689617-e1cffcef479d?auto=format&fit=crop&w=700&q=80'); }
.img-4 { background-image:url('https://images.unsplash.com/photo-1601924921557-45e6dea0a157?auto=format&fit=crop&w=700&q=80'); }
.img-5 { background-image:url('https://images.unsplash.com/photo-1516257984-b1b4d707412e?auto=format&fit=crop&w=700&q=80'); }
.img-6 { background-image:url('https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?auto=format&fit=crop&w=700&q=80'); }
.cat-body { position: relative; text-align: center; padding: 34px 12px 18px; }
.cat-icon { position: absolute; top: -24px; left: 50%; transform: translateX(-50%); width: 50px; height: 50px; border-radius: 999px; display: grid; place-items: center; background: #fff; border: 1px solid var(--line); color: var(--gold-dark); font-size: 22px; }
.cat-body h3 { margin: 0 0 7px; font-size: 14px; text-transform: uppercase; }
.cat-body p { margin: 0; color: var(--muted); font-size: 12px; }
.section-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; gap: 20px; }
.section-title { font-size: 20px; text-transform: uppercase; letter-spacing: .08em; margin: 0; }
.section-title span { color: var(--gold-dark); }
.all-link { color: var(--gold-dark); font-weight: 700; font-size: 13px; }
.slider-controls { display: flex; align-items: center; gap: 10px; }
.slider-controls button { width: 38px; height: 38px; border: 1px solid var(--line); background: #fff; border-radius: 999px; cursor: pointer; transition: .2s; }
.slider-controls button:hover { background: var(--black); color: #fff; }
.product-slider { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 112px) / 8); gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; scroll-behavior: smooth; padding-bottom: 8px; }
.product-slider::-webkit-scrollbar { display: none; }
.product-card { background: #fff; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; position: relative; scroll-snap-align: start; transition: .25s; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-card:hover .product-img { transform: scale(1.04); }
.product-img { height: 235px; background: #f0ece8 center/cover; transition: .35s; }
.product-1 { background-image:url('https://images.unsplash.com/photo-1539008835657-9e8e9680c956?auto=format&fit=crop&w=500&q=80'); }
.product-2 { background-image:url('https://images.unsplash.com/photo-1543163521-1bf539c55dd2?auto=format&fit=crop&w=500&q=80'); }
.product-3 { background-image:url('https://images.unsplash.com/photo-1516762689617-e1cffcef479d?auto=format&fit=crop&w=500&q=80'); }
.product-4 { background-image:url('https://images.unsplash.com/photo-1544441893-675973e31985?auto=format&fit=crop&w=500&q=80'); }
.product-5 { background-image:url('https://images.unsplash.com/photo-1551232864-3f0890e580d9?auto=format&fit=crop&w=500&q=80'); }
.product-6 { background-image:url('https://images.unsplash.com/photo-1542291026-7eec264c27ff?auto=format&fit=crop&w=500&q=80'); }
.product-7 { background-image:url('https://images.unsplash.com/photo-1503342217505-b0a15ec3261c?auto=format&fit=crop&w=500&q=80'); }
.product-8 { background-image:url('https://images.unsplash.com/photo-1529139574466-a303027c1d8b?auto=format&fit=crop&w=500&q=80'); }
.label-new { position: absolute; left: 10px; top: 10px; background: var(--gold); color: #fff; border-radius: 5px; padding: 4px 8px; font-size: 11px; font-weight: 700; z-index: 2; }
.wish { position: absolute; right: 10px; top: 10px; width: 32px; height: 32px; background: rgba(255,255,255,.9); border-radius: 999px; display: grid; place-items: center; z-index: 2; transition: .2s; }
.wish:hover { color: #fff; background: var(--gold); }
.product-info { padding: 13px; text-align: center; }
.product-name { min-height: 40px; font-size: 13px; line-height: 1.45; margin-bottom: 7px; }
.price { font-weight: 800; margin-bottom: 10px; }
.cart-btn { height: 34px; border: 0; width: 100%; background: #111; color: #fff; border-radius: 5px; font-weight: 700; cursor: pointer; transition: .2s; }
.cart-btn:hover { background: var(--gold-dark); }
.sizes { color: var(--muted); font-size: 11px; margin-top: 9px; letter-spacing: .18em; }
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.promo { min-height: 180px; border-radius: 12px; overflow: hidden; padding: 34px; display: flex; flex-direction: column; justify-content: center; color: #fff; background: linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.12)), var(--img) center/cover; transition: .25s; }
.promo:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.promo-1 { --img:url('https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?auto=format&fit=crop&w=900&q=80'); }
.promo-2 { --img:url('https://images.unsplash.com/photo-1516762689617-e1cffcef479d?auto=format&fit=crop&w=900&q=80'); }
.promo-3 { --img:url('https://images.unsplash.com/photo-1517841905240-472988babdf9?auto=format&fit=crop&w=900&q=80'); }
.promo h3 { font-family: "Playfair Display", serif; color: var(--gold); font-size: 32px; text-transform: uppercase; margin: 0 0 8px; }
.promo p { margin: 0 0 18px; color: rgba(255,255,255,.9); }
.small-btn { width: max-content; border: 1px solid rgba(255,255,255,.75); color: #fff; padding: 9px 18px; border-radius: 5px; font-size: 12px; font-weight: 700; }
.brand-row { display: grid; grid-template-columns: repeat(7, 1fr); align-items: center; text-align: center; gap: 14px; color: #202020; font-family: "Playfair Display", serif; font-size: 24px; }
.brand { padding: 22px 8px; background: #fff; border-radius: 10px; border: 1px solid var(--line); transition: .2s; }
.brand:hover { color: var(--gold-dark); transform: translateY(-3px); }
.benefits { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.benefit-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.benefit { display: flex; align-items: center; gap: 14px; padding: 26px 0; }
.benefit i { color: var(--gold); font-size: 27px; }
.benefit strong { display: block; font-size: 13px; text-transform: uppercase; }
.benefit span { color: var(--muted); font-size: 12px; }
.newsletter { background: linear-gradient(90deg, #121212, #1e1a17); color: #fff; padding: 38px 0; }
.newsletter-inner { display: grid; grid-template-columns: 1fr 520px; gap: 40px; align-items: center; }
.newsletter h3 { margin: 0 0 8px; font-size: 23px; text-transform: uppercase; letter-spacing: .08em; }
.newsletter p { margin: 0; color: rgba(255,255,255,.74); }
.newsletter-form { display: flex; height: 48px; }
.newsletter-form input { flex: 1; border: 1px solid rgba(255,255,255,.2); background: transparent; color: #fff; padding: 0 16px; outline: 0; border-radius: 7px 0 0 7px; }
.newsletter-form button { width: 170px; border: 0; background: var(--gold); color: #fff; font-weight: 800; border-radius: 0 7px 7px 0; }
.footer { background: #0e0e0e; color: #fff; padding: 46px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(4, 1fr); gap: 42px; }
.footer h4 { color: #fff; text-transform: uppercase; font-size: 14px; margin: 0 0 16px; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { color: rgba(255,255,255,.68); margin-bottom: 10px; font-size: 13px; }
.footer .logo { color: #fff; margin-bottom: 22px; }
.socials { display: flex; gap: 12px; color: var(--gold); font-size: 20px; }
.copyright { margin-top: 38px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.55); font-size: 12px; display: flex; justify-content: space-between; gap: 20px; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1200px) {
    .header-inner { grid-template-columns: 220px 1fr auto; }
    .search { display: none; }
    .product-slider { grid-auto-columns: calc((100% - 48px) / 4); }
    .category-grid { grid-template-columns: repeat(3, 1fr); }
    .mega-inner { grid-template-columns: repeat(3, 1fr); }
    .mega-feature { display: none; }
}
@media (max-width: 820px) {
    .container-wide { width: min(100% - 28px, 1480px); }
    .topbar-right, .nav, .header-actions, .mega-panel { display: none; }
    .mobile-menu-btn { display: block; }
    .header-inner { grid-template-columns: 1fr auto; height: 68px; }
    .logo { font-size: 22px; }
    .hero { min-height: auto; background-position: center; }
    .hero-content { padding: 56px 0; }
    .category-grid, .promo-grid, .benefit-row, .footer-grid, .newsletter-inner { grid-template-columns: 1fr; }
    .product-slider { grid-auto-columns: 78%; }
    .brand-row { grid-template-columns: repeat(2, 1fr); }
    .newsletter-form { flex-direction: column; height: auto; gap: 10px; }
    .newsletter-form input, .newsletter-form button { width: 100%; height: 48px; border-radius: 7px; }
    .copyright { flex-direction: column; }
}

