:root {
    --ink: #171715;
    --canvas: #f7f3ec;
    --paper: #fff;
    --muted: #68645e;
    --line: #ded7cd;
    --bronze: #8a622d;
    --success: #176b45;
    --warning: #925f0a;
    --danger: #b42318;
    --focus: #2563eb;
    --container: 1280px;
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: Inter, "Noto Sans Bengali", system-ui, sans-serif;
    color: var(--ink);
    background: var(--canvas);
    font-family: var(--sans);
    font-synthesis: none;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; color: var(--ink); background: var(--canvas); line-height: 1.6; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
.container { width: min(calc(100% - 64px), var(--container)); margin-inline: auto; }
.section { padding-block: clamp(64px, 8vw, 112px); }
.skip-link { position: fixed; z-index: 100; top: -80px; left: 20px; padding: 10px 16px; color: white; background: var(--ink); }
.skip-link:focus { top: 20px; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
.eyebrow { display: inline-block; color: var(--bronze); font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 11px 22px;
    border: 1px solid transparent;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .025em;
    transition: color .18s, background .18s, border-color .18s, transform .18s;
}
.button:hover { transform: translateY(-1px); }
.button-primary { color: white; background: var(--ink); }
.button-primary:hover { background: #32322d; }
.button-outline { border-color: var(--ink); background: transparent; }
.button-outline:hover { color: white; background: var(--ink); }
.button-link { padding-inline: 4px; border-bottom-color: var(--ink); }
.button-disabled { width: 100%; color: #8a867e; background: #dedbd4; cursor: not-allowed; }
.text-link { border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 700; }
.announcement { padding: 8px 16px; color: #f6f0e8; background: var(--ink); text-align: center; font-size: 11px; font-weight: 600; letter-spacing: .04em; }
.site-header { position: relative; z-index: 40; border-bottom: 1px solid rgba(222, 215, 205, .85); background: rgba(247, 243, 236, .94); backdrop-filter: blur(16px); }
.site-header.is-sticky { position: sticky; top: 0; }
.header-inner { min-height: 78px; display: grid; grid-template-columns: 180px 1fr 180px; align-items: center; }
.wordmark { display: inline-flex; width: max-content; flex-direction: column; font-family: var(--serif); line-height: .82; letter-spacing: .08em; }
.wordmark span { font-size: 18px; font-weight: 700; }
.wordmark b { color: var(--bronze); font-size: 13px; letter-spacing: .31em; }
.wordmark.inverse { color: white; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(20px, 2.7vw, 42px); font-size: 12px; font-weight: 700; }
.desktop-nav a, .track-link { position: relative; }
.desktop-nav a::after, .track-link::after { content: ""; position: absolute; right: 0; bottom: -7px; left: 0; height: 1px; background: currentColor; transform: scaleX(0); transition: transform .18s; transform-origin: left; }
.desktop-nav a:hover::after, .track-link:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 20px; }
.icon-button { width: 44px; height: 44px; display: inline-grid; place-items: center; padding: 0; border: 0; color: inherit; background: transparent; font-size: 22px; }
.menu-toggle { display: none; }
.track-link { font-size: 12px; font-weight: 700; }
.mobile-nav { position: fixed; z-index: 60; inset: 0 0 0 auto; width: min(88vw, 390px); padding: 24px; color: white; background: var(--ink); box-shadow: -20px 0 50px rgba(0,0,0,.22); }
.mobile-nav[hidden] { display: none; }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; color: #b9a17d; font-size: 11px; font-weight: 800; letter-spacing: .16em; }
.mobile-nav a { display: block; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-family: var(--serif); font-size: 24px; }
.flash { position: fixed; z-index: 80; top: 102px; right: 24px; max-width: min(420px, calc(100% - 48px)); padding: 14px 18px; border-radius: 6px; color: white; box-shadow: 0 14px 40px rgba(0,0,0,.2); font-size: 13px; animation: flash-in .22s ease-out; }
.flash-success { background: var(--success); }
.flash-error { background: var(--danger); }
@keyframes flash-in { from { opacity: 0; transform: translateY(-8px); } }

.hero { min-height: min(840px, calc(100vh - 110px)); display: grid; align-items: stretch; border-bottom: 1px solid var(--line); }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; }
.hero-copy { padding: clamp(70px, 9vw, 132px) clamp(30px, 6vw, 94px) 64px 0; display: flex; flex-direction: column; justify-content: center; }
.hero h1 { max-width: 770px; margin: 18px 0 24px; font-family: var(--serif); font-size: clamp(54px, 6vw, 90px); font-weight: 600; line-height: .93; letter-spacing: -.045em; }
.hero-copy > p { max-width: 580px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.8; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: auto; padding-top: 62px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hero-proof span { display: grid; gap: 7px; }
.hero-proof b { color: var(--bronze); font-size: 9px; }
.hero-visual { min-height: 600px; background: #d5d0c7; overflow: hidden; }
.hero-visual > img { width: 100%; height: 100%; object-fit: cover; }
.editorial-art { position: relative; width: 100%; height: 100%; min-height: 700px; color: #f8f3eb; background:
    radial-gradient(circle at 66% 23%, rgba(255,255,255,.13), transparent 18%),
    linear-gradient(145deg, #6d6a61, #31322e 62%, #1d1e1b); overflow: hidden; }
.editorial-art::before { content: ""; position: absolute; width: 45%; height: 85%; left: 27%; top: 11%; border-radius: 48% 48% 8% 8%; background: linear-gradient(90deg, #1f211f, #4c4b46 48%, #242522); box-shadow: 0 24px 70px rgba(0,0,0,.38); }
.editorial-art::after { content: ""; position: absolute; width: 18%; height: 19%; left: 40.5%; top: 7%; border: 1px solid rgba(255,255,255,.22); border-radius: 48% 48% 15% 15%; background: #30312e; }
.art-frame { position: absolute; z-index: 2; inset: 6%; border: 1px solid rgba(255,255,255,.3); }
.art-monogram { position: absolute; z-index: 3; right: 6%; bottom: -5%; color: rgba(255,255,255,.08); font-family: var(--serif); font-size: clamp(250px, 34vw, 540px); line-height: .8; }
.art-label { position: absolute; z-index: 4; left: 9%; bottom: 11%; font-family: var(--serif); font-size: clamp(32px, 4vw, 58px); line-height: .8; }
.art-season { position: absolute; z-index: 4; right: 9%; top: 9%; writing-mode: vertical-rl; font-size: 9px; font-weight: 700; letter-spacing: .18em; }
.section-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; margin-bottom: 40px; }
.section-heading.align-end { align-items: flex-end; }
.section-heading h2 { margin: 7px 0 0; font-family: var(--serif); font-size: clamp(38px, 5vw, 62px); font-weight: 600; line-height: 1; letter-spacing: -.035em; }
.section-heading p { max-width: 400px; margin: 30px 0 0; color: var(--muted); }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.category-tile { position: relative; aspect-ratio: 4 / 5; overflow: hidden; color: white; background: #4a4944; }
.category-tile::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.78), transparent 52%); z-index: 1; }
.category-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.category-tile:hover img { transform: scale(1.025); }
.category-tone-1 { background: radial-gradient(circle at 65% 30%, #bab3a8, #4d4a43 70%); }
.category-tone-2 { background: radial-gradient(circle at 50% 22%, #8e9495, #253038 70%); }
.category-tone-3 { background: radial-gradient(circle at 65% 30%, #a3794d, #35261c 75%); }
.category-monogram { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,.16); font-family: var(--serif); font-size: clamp(180px, 22vw, 340px); }
.category-content { position: absolute; z-index: 2; right: 26px; bottom: 26px; left: 26px; display: grid; gap: 5px; }
.category-content small { color: #cbb592; font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.category-content b { font-family: var(--serif); font-size: 38px; line-height: 1; }
.category-content em { font-size: 11px; font-style: normal; font-weight: 700; }
.products-section { background: #fff; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 36px 20px; }
.product-card { min-width: 0; }
.product-media { position: relative; aspect-ratio: 4 / 5; display: block; overflow: hidden; background: #e5e0d8; }
.product-media > img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.product-card:hover .product-media > img { transform: scale(1.018); }
.product-placeholder { width: 100%; height: 100%; display: grid; place-content: center; gap: 3px; text-align: center; background: linear-gradient(145deg, #ded8ce, #aaa69e); }
.product-placeholder b { color: rgba(255,255,255,.8); font-family: var(--serif); font-size: clamp(50px, 7vw, 100px); letter-spacing: -.05em; }
.product-placeholder small { color: rgba(255,255,255,.75); font-size: 8px; font-weight: 800; letter-spacing: .2em; }
.product-placeholder.tone-1, .tone-1 { background: linear-gradient(145deg, #e7e0d4, #a8a094); }
.product-placeholder.tone-2, .tone-2 { background: linear-gradient(145deg, #9aa09d, #39403d); }
.product-placeholder.tone-3, .tone-3 { background: linear-gradient(145deg, #b08e69, #453527); }
.product-placeholder.tone-0, .tone-0 { background: linear-gradient(145deg, #9a9ca3, #30343d); }
.card-badges { position: absolute; top: 12px; left: 12px; display: flex; flex-wrap: wrap; gap: 6px; }
.card-badges span { padding: 5px 8px; color: var(--ink); background: rgba(255,255,255,.94); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.card-badges span.sold-out { color: white; background: var(--ink); }
.product-card-info { padding: 16px 2px 0; }
.product-category { display: block; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.product-card h3 { margin: 5px 0 7px; font-family: var(--serif); font-size: 24px; font-weight: 600; line-height: 1.1; }
.price-row { display: flex; align-items: baseline; gap: 10px; font-size: 13px; }
.price-row strong { font-size: 14px; }
.price-row del { color: #8f8a83; }
.editorial-section { background: var(--ink); }
.editorial-grid { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 600px; }
.editorial-panel { position: relative; display: flex; align-items: flex-end; padding: 50px; color: white; background: radial-gradient(circle at 74% 32%, #82715c, transparent 31%), linear-gradient(145deg, #484944, #252622); overflow: hidden; }
.editorial-panel::before { content: ""; position: absolute; width: 42%; height: 72%; left: 29%; top: 12%; border-radius: 45% 45% 5% 5%; background: #181916; box-shadow: 0 20px 60px rgba(0,0,0,.38); }
.editorial-panel > span { position: relative; z-index: 2; font-family: var(--serif); font-size: clamp(40px, 5vw, 72px); line-height: .78; }
.editorial-panel > b { position: absolute; right: 25px; top: 20px; color: rgba(255,255,255,.12); font-family: var(--serif); font-size: 180px; }
.editorial-copy { padding: clamp(50px, 8vw, 110px); display: flex; align-items: flex-start; justify-content: center; flex-direction: column; color: white; background: #20201d; }
.editorial-copy h2 { margin: 16px 0 24px; font-family: var(--serif); font-size: clamp(45px, 5vw, 70px); font-weight: 500; line-height: .95; }
.editorial-copy p { max-width: 500px; margin: 0 0 32px; color: #b9b5ad; line-height: 1.8; }
.editorial-copy .button-primary { color: var(--ink); background: var(--canvas); }
.trust-strip { padding: 34px 0; border-bottom: 1px solid var(--line); background: #eee9e1; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid div { display: grid; gap: 3px; padding: 0 24px; border-right: 1px solid #cec7bd; }
.trust-grid div:first-child { padding-left: 0; }
.trust-grid div:last-child { border: 0; }
.trust-grid b { font-family: var(--serif); font-size: 20px; }
.trust-grid span { color: var(--muted); font-size: 11px; }
.site-footer { padding: 72px 0 26px; color: #d8d2c8; background: #151513; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 50px; }
.footer-grid h2 { margin: 0 0 18px; color: white; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.footer-grid a, .footer-grid span, .footer-grid p { display: block; margin: 0 0 9px; color: #9d9991; font-size: 12px; }
.footer-grid a:hover { color: white; }
.footer-brand p { max-width: 280px; margin-top: 20px; line-height: 1.7; }
.footer-bottom { margin-top: 60px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; color: #77736d; font-size: 10px; }
.whatsapp-float { position: fixed; z-index: 35; right: 22px; bottom: 22px; min-height: 48px; display: flex; align-items: center; gap: 9px; padding: 7px 15px 7px 7px; border-radius: 999px; color: white; background: #167b50; box-shadow: 0 10px 30px rgba(0,0,0,.22); font-size: 11px; }
.whatsapp-float > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.16); font-size: 9px; font-weight: 800; }

.page-hero { padding: 74px 0 45px; border-bottom: 1px solid var(--line); }
.page-hero.compact { padding-top: 58px; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-bottom: 30px; color: var(--muted); font-size: 10px; }
.breadcrumb a:hover { color: var(--ink); }
.listing-title { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.listing-title h1 { margin: 8px 0 0; font-family: var(--serif); font-size: clamp(48px, 7vw, 82px); font-weight: 600; line-height: .9; }
.listing-title p { max-width: 600px; margin: 18px 0 0; color: var(--muted); }
.listing-title > span { color: var(--muted); font-size: 11px; }
.catalog-layout { display: grid; grid-template-columns: 220px 1fr; gap: 50px; }
.filters { align-self: start; position: sticky; top: 100px; }
.filter-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--ink); }
.filter-head h2 { margin: 0; font: 600 25px var(--serif); }
.filter-head a { color: var(--muted); font-size: 10px; text-decoration: underline; }
.filters label { display: grid; gap: 7px; margin: 20px 0; }
.filters label span { font-size: 11px; font-weight: 700; }
.filters select, .mobile-filter-bar select { width: 100%; min-height: 44px; padding: 8px 10px; border: 1px solid var(--line); border-radius: 2px; background: transparent; font-size: 12px; }
.filters .button { width: 100%; }
.catalog-results .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.mobile-filter-bar { display: none; }
.empty-state { padding: 100px 20px; border: 1px solid var(--line); text-align: center; }
.empty-state > span { color: var(--bronze); font-size: 50px; }
.empty-state h2 { margin: 8px 0; font: 600 38px var(--serif); }
.empty-state p { color: var(--muted); }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 52px; }
.pagination a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); font-size: 12px; }
.pagination a[aria-current="page"] { color: white; background: var(--ink); border-color: var(--ink); }

.product-page { background: #fbf9f4; }
.product-detail { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr); gap: clamp(50px, 7vw, 100px); align-items: start; }
.product-gallery { position: relative; aspect-ratio: 4 / 5; min-width: 0; background: #dfd9cf; overflow: hidden; }
.product-gallery > img { width: 100%; height: 100%; object-fit: cover; }
.product-placeholder-large { display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; padding: clamp(35px, 6vw, 80px); text-align: left; }
.product-placeholder-large span { color: rgba(255,255,255,.2); font-family: var(--serif); font-size: clamp(180px, 28vw, 440px); line-height: .52; }
.product-placeholder-large b { color: white; font: 600 clamp(44px, 7vw, 80px)/.8 var(--serif); }
.product-placeholder-large small { margin-top: 13px; }
.gallery-badge { position: absolute; top: 18px; left: 18px; padding: 7px 10px; color: white; background: var(--ink); font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.product-info { position: sticky; top: 112px; padding-top: 16px; }
.product-info h1 { margin: 12px 0 12px; font: 600 clamp(44px, 5vw, 68px)/.92 var(--serif); letter-spacing: -.035em; }
.product-price { display: flex; align-items: baseline; gap: 14px; }
.product-price strong { font-size: 22px; }
.product-price del { color: #8f8a83; font-size: 14px; }
.product-intro { max-width: 580px; margin: 25px 0; color: var(--muted); line-height: 1.75; }
.stock-line { display: flex; align-items: center; gap: 8px; margin-bottom: 30px; font-size: 11px; font-weight: 700; }
.stock-line > span { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.in-stock { color: var(--success); }
.out-stock { color: var(--danger); }
.buy-form { border-top: 1px solid var(--line); padding-top: 24px; }
.option-group { margin: 0 0 22px; padding: 0; border: 0; }
.option-group legend { width: 100%; display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 12px; font-weight: 750; }
.option-group legend span { color: var(--muted); font-size: 10px; font-weight: 500; }
.option-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.option-buttons label { position: relative; }
.option-buttons input { position: absolute; opacity: 0; pointer-events: none; }
.option-buttons label > span { min-width: 48px; height: 44px; display: grid; place-items: center; padding: 0 12px; border: 1px solid #cfc8be; background: white; font-size: 11px; font-weight: 700; cursor: pointer; }
.option-buttons input:checked + span { color: white; background: var(--ink); border-color: var(--ink); }
.option-buttons input:focus-visible + span { outline: 3px solid var(--focus); outline-offset: 2px; }
.buy-row { display: grid; grid-template-columns: 100px 1fr; gap: 10px; }
.quantity-field { display: grid; gap: 5px; }
.quantity-field > span { font-size: 10px; font-weight: 700; }
.quantity-field input { width: 100%; height: 52px; padding: 0 12px; border: 1px solid #cfc8be; background: white; }
.buy-button { align-self: end; height: 52px; }
.field-error { display: block; margin-top: 6px; color: var(--danger); font-size: 11px; font-weight: 600; }
.whatsapp-product { display: block; padding: 18px 0; border-bottom: 1px solid var(--line); color: var(--success); text-align: center; font-size: 11px; font-weight: 750; }
.product-meta-list details { border-bottom: 1px solid var(--line); }
.product-meta-list summary { padding: 18px 2px; list-style: none; font-size: 12px; font-weight: 750; cursor: pointer; }
.product-meta-list summary::after { content: "+"; float: right; font-size: 18px; font-weight: 400; }
.product-meta-list details[open] summary::after { content: "−"; }
.product-meta-list details > div { padding: 0 2px 20px; color: var(--muted); font-size: 12px; line-height: 1.8; }
.related-products { padding-top: 40px; background: white; }

.checkout-page { min-height: 100vh; padding-top: 42px; background: #f4f0e8; }
.checkout-header { padding-bottom: 28px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.checkout-header > span { color: var(--muted); font-size: 11px; font-weight: 700; }
.checkout-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(340px, .7fr); gap: clamp(40px, 7vw, 90px); padding-top: 50px; }
.checkout-form { display: grid; gap: 26px; }
.validation-summary { padding: 18px 20px; border: 1px solid #e7aaa4; border-left: 4px solid var(--danger); color: #6d221c; background: #fff6f5; }
.validation-summary strong { display: block; margin-bottom: 6px; }
.validation-summary ul { margin: 0; padding-left: 20px; font-size: 12px; }
.validation-summary a { text-decoration: underline; }
.checkout-section { padding: 28px; border: 1px solid var(--line); background: #fffdf9; }
.checkout-section-title { display: flex; gap: 14px; margin-bottom: 22px; }
.checkout-section-title > span { width: 30px; height: 30px; flex: 0 0 30px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--ink); font-size: 9px; font-weight: 800; }
.checkout-section-title h1, .checkout-section-title h2 { margin: -4px 0 2px; font: 600 30px var(--serif); }
.checkout-section-title p { margin: 0; color: var(--muted); font-size: 11px; }
.checkout-form label { display: grid; gap: 7px; }
.checkout-form label > span { font-size: 11px; font-weight: 750; }
.form-grid { display: grid; gap: 16px; margin-bottom: 16px; }
.form-grid.two { grid-template-columns: 1fr 1fr; }
.checkout-form input:not([type="radio"]):not([type="checkbox"]), .checkout-form textarea {
    width: 100%; min-height: 48px; padding: 11px 13px; border: 1px solid #cdc6bb; border-radius: 2px; background: white; resize: vertical; outline: none;
}
.checkout-form input:focus, .checkout-form textarea:focus { border-color: var(--focus); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
.payment-options { display: grid; gap: 10px; }
.payment-card { grid-template-columns: auto 1fr; align-items: center; gap: 12px !important; padding: 16px; border: 1px solid #cdc6bb; cursor: pointer; }
.payment-card:has(input:checked) { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.payment-card input { width: 18px; height: 18px; accent-color: var(--ink); }
.payment-card b, .payment-card small { display: block; }
.payment-card small { margin-top: 2px; color: var(--muted); font-size: 10px; }
.transaction-field { margin-top: 14px; padding: 16px; color: #6b480b; background: #fff6df; }
.transaction-field[hidden] { display: none; }
.transaction-field p { margin: 8px 0 0; font-size: 10px; }
.consent-row { grid-template-columns: 18px 1fr; align-items: start; gap: 10px !important; }
.consent-row input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--ink); }
.place-order-button { width: 100%; min-height: 56px; }
.privacy-note { margin: -14px 0 0; color: var(--muted); text-align: center; font-size: 10px; }
.order-summary { position: sticky; top: 30px; align-self: start; padding: 28px; border: 1px solid var(--line); background: #fffdf9; }
.order-summary > h2 { margin: 5px 0 24px; font: 600 33px var(--serif); }
.summary-product { display: grid; grid-template-columns: 80px 1fr; gap: 14px; align-items: center; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.summary-thumb { aspect-ratio: 4 / 5; display: grid; place-items: center; overflow: hidden; color: rgba(255,255,255,.8); background: linear-gradient(145deg, #999b96, #333630); font: 600 20px var(--serif); }
.summary-thumb img { width: 100%; height: 100%; object-fit: cover; }
.summary-product b, .summary-product small, .summary-product strong { display: block; }
.summary-product b { font: 600 20px var(--serif); line-height: 1.1; }
.summary-product small { margin: 5px 0; color: var(--muted); font-size: 10px; }
.summary-product strong { font-size: 12px; }
.coupon-box { padding: 18px 0; border-bottom: 1px solid var(--line); }
.coupon-box label { display: block; margin-bottom: 7px; font-size: 10px; font-weight: 700; }
.coupon-box form > div { display: grid; grid-template-columns: 1fr auto; }
.coupon-box input { min-width: 0; height: 42px; padding: 8px 10px; border: 1px solid #cfc8bd; border-right: 0; text-transform: uppercase; }
.coupon-box button { min-width: 70px; border: 0; color: white; background: var(--ink); font-size: 10px; font-weight: 800; }
.coupon-applied { display: flex; align-items: center; justify-content: space-between; color: var(--success); }
.coupon-applied b, .coupon-applied small { display: block; }
.coupon-applied small { font-size: 9px; }
.coupon-applied form button { min-width: 0; padding: 5px 0; color: var(--danger); background: transparent; text-decoration: underline; }
.summary-totals { display: grid; gap: 10px; margin: 22px 0 0; }
.summary-totals div { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; font-size: 11px; }
.summary-totals dt { color: var(--muted); }
.summary-totals dd { margin: 0; font-weight: 700; }
.summary-totals .discount dd { color: var(--success); }
.summary-totals .grand-total { margin-top: 7px; padding-top: 15px; border-top: 1px solid var(--ink); }
.summary-totals .grand-total dt { color: var(--ink); font: 600 22px var(--serif); }
.summary-totals .grand-total dd { font-size: 20px; }
.summary-help { margin: 18px 0 0; color: var(--muted); font-size: 9px; text-align: center; }

.success-page { min-height: 75vh; background: #f8f5ee; }
.success-wrap { max-width: 900px; text-align: center; }
.success-mark { width: 64px; height: 64px; margin: 0 auto 24px; display: grid; place-items: center; border: 1px solid var(--success); border-radius: 50%; color: white; background: var(--success); font-size: 24px; }
.success-wrap > h1 { margin: 10px 0 12px; font: 600 clamp(48px, 7vw, 76px)/.95 var(--serif); }
.success-wrap > p { color: var(--muted); }
.success-wrap > p strong { color: var(--ink); }
.next-step { max-width: 520px; margin: 28px auto 40px; padding: 14px 18px; display: flex; align-items: center; gap: 12px; color: #6b480b; background: #fff1ce; text-align: left; }
.next-step > span { width: 9px; height: 9px; border-radius: 50%; background: var(--warning); }
.next-step b, .next-step small { display: block; }
.next-step small { color: #806737; font-size: 10px; }
.success-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; text-align: left; }
.success-card { padding: 24px; border: 1px solid var(--line); background: white; }
.success-card h2 { margin: 0 0 18px; font: 600 27px var(--serif); }
.success-card p { color: var(--muted); font-size: 12px; line-height: 1.8; }
.success-product { display: grid; grid-template-columns: 55px 1fr auto; gap: 12px; align-items: center; }
.success-product .summary-thumb { width: 55px; }
.success-product b, .success-product small { display: block; }
.success-product b { font: 600 18px var(--serif); }
.success-product small { color: var(--muted); font-size: 9px; }
.success-product > strong { font-size: 11px; }
.meta-label { display: block; color: var(--ink); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.success-actions { display: flex; justify-content: center; gap: 12px; margin-top: 30px; }
.error-page { min-height: 70vh; display: grid; place-items: center; text-align: center; }
.error-wrap > span { color: var(--bronze); font: 600 100px/.8 var(--serif); }
.error-wrap h1 { margin: 20px 0 8px; font: 600 clamp(42px, 6vw, 72px)/.95 var(--serif); }
.error-wrap p { margin-bottom: 28px; color: var(--muted); }

@media (max-width: 1023px) {
    .container { width: min(calc(100% - 48px), var(--container)); }
    .header-inner { grid-template-columns: 150px 1fr 100px; }
    .desktop-nav { gap: 18px; }
    .desktop-nav a:nth-of-type(2), .desktop-nav a:nth-of-type(3) { display: none; }
    .track-link { display: none; }
    .hero-grid { grid-template-columns: 1fr 1fr; }
    .hero-copy { padding-right: 35px; }
    .hero-proof { grid-template-columns: 1fr; gap: 5px; }
    .hero-proof span { display: block; }
    .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .catalog-results .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 22px 0; }
    .trust-grid div:nth-child(2) { border: 0; }
    .checkout-grid { gap: 35px; }
}

@media (max-width: 767px) {
    .container { width: min(calc(100% - 32px), var(--container)); }
    .section { padding-block: 68px; }
    .announcement { font-size: 9px; }
    .header-inner { min-height: 62px; grid-template-columns: 48px 1fr 48px; }
    .menu-toggle { display: grid; }
    .wordmark { justify-self: center; }
    .desktop-nav, .track-link { display: none; }
    .header-actions { gap: 0; }
    .hero { min-height: 0; }
    .hero-grid { width: 100%; grid-template-columns: 1fr; }
    .hero-copy { order: 2; padding: 50px 16px 46px; }
    .hero h1 { font-size: clamp(52px, 15vw, 76px); }
    .hero-copy > p { font-size: 14px; }
    .hero-actions { align-items: stretch; flex-direction: column; gap: 10px; }
    .hero-actions .button { width: 100%; }
    .hero-proof { display: none; }
    .hero-visual, .editorial-art { min-height: 520px; }
    .section-heading, .section-heading.align-end, .listing-title { align-items: flex-start; flex-direction: column; gap: 14px; }
    .section-heading p { margin-top: 0; }
    .category-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .category-tile:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 12; }
    .category-content { right: 16px; bottom: 16px; left: 16px; }
    .category-content b { font-size: 29px; }
    .product-grid, .catalog-results .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 10px; }
    .product-card h3 { font-size: 19px; }
    .product-card-info { padding-top: 11px; }
    .price-row { flex-wrap: wrap; gap: 3px 8px; }
    .editorial-grid { grid-template-columns: 1fr; }
    .editorial-panel { min-height: 470px; padding: 25px; }
    .editorial-copy { padding: 50px 24px; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .trust-grid div { padding: 0 12px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 6px; }
    .whatsapp-float b { display: none; }
    .whatsapp-float { padding-right: 7px; bottom: 14px; right: 14px; }
    .page-hero { padding-top: 48px; }
    .listing-title h1 { font-size: 54px; }
    .catalog-layout { grid-template-columns: 1fr; gap: 20px; }
    .filters { display: none; }
    .mobile-filter-bar { display: block; margin-bottom: 20px; }
    .product-detail { grid-template-columns: 1fr; gap: 36px; }
    .product-info { position: static; }
    .product-info h1 { font-size: 50px; }
    .product-placeholder-large span { font-size: 180px; }
    .buy-row { grid-template-columns: 88px 1fr; }
    .checkout-page { padding-top: 26px; }
    .checkout-grid { grid-template-columns: 1fr; padding-top: 30px; }
    .order-summary { position: static; grid-row: 1; }
    .checkout-form { grid-row: 2; }
    .checkout-section { padding: 22px 16px; }
    .form-grid.two { grid-template-columns: 1fr; }
    .success-grid { grid-template-columns: 1fr; }
    .success-actions { align-items: stretch; flex-direction: column; }
}

@media (max-width: 420px) {
    .category-grid { grid-template-columns: 1fr; }
    .category-tile:first-child { grid-column: auto; aspect-ratio: 4 / 5; }
    .trust-grid { grid-template-columns: 1fr; }
    .trust-grid div { padding: 0 0 13px; border-right: 0; border-bottom: 1px solid var(--line); }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
