/* =========================================================================
   MINORMA — LUXURY EDITORIAL STYLESHEET
   Ivory + charcoal, high-contrast serif display, generous whitespace.
   ========================================================================= */

:root {
  --bg:        #F6F1E9;   /* warm ivory */
  --bg-2:      #EFE8DC;   /* slightly deeper ivory */
  --surface:   #FCFAF5;
  --ink:       #1A1712;   /* near-black */
  --ink-2:     #4A443C;
  --muted:     #8A8177;
  --line:      #E3DACA;
  --line-2:    #D6CBB6;
  --char:      #1C1915;   /* dark sections */
  --char-2:    #26221C;
  --gold:      #A6844C;   /* muted antique gold */
  --gold-2:    #C4A667;
  --cream-on-dark: #EDE4D3;
  --shadow:    0 24px 60px rgba(26,23,18,.12);
  --shadow-sm: 0 10px 28px rgba(26,23,18,.08);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;
  --body:  "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --wrap:  1240px;
  --ease:  cubic-bezier(.4,0,.2,1);
  --spring: cubic-bezier(.34,1.4,.5,1);   /* iOS-like spring */
  /* Glassmorphism tokens */
  --glass-bg:     rgba(246,241,233,.68);
  --glass-bg-2:   rgba(252,250,245,.72);
  --glass-brd:    rgba(255,255,255,.45);
  --glass-blur:   saturate(170%) blur(20px);
  --glass-shadow: 0 8px 40px rgba(26,23,18,.16);
  --radius-ios:   20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--body); line-height: 1.65; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1,h2,h3,h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; margin: 0; letter-spacing: .01em; }
.display { font-size: clamp(2.8rem, 7vw, 6rem); font-weight: 500; letter-spacing: -.01em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.4rem; }
p { margin: 0 0 1em; color: var(--ink-2); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
.section { padding: 92px 0; }
.center { text-align: center; }
.muted { color: var(--muted); }

/* Section headers */
.sec-eyebrow {
  font-family: var(--sans); text-transform: uppercase; letter-spacing: .32em;
  font-size: .68rem; font-weight: 500; color: var(--gold); display: inline-block; margin-bottom: 16px;
}
.sec-title { font-size: clamp(1.9rem, 4vw, 3rem); }
.sec-head { margin-bottom: 48px; }
.sec-head p { max-width: 52ch; margin: 14px auto 0; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  font-family: var(--sans); font-weight: 400; font-size: .78rem;
  text-transform: uppercase; letter-spacing: .18em;
  padding: 15px 30px; border: 1px solid var(--ink); background: var(--ink); color: var(--bg);
  transition: all .3s var(--ease); white-space: nowrap;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn:active { transform: scale(.96); }
.btn-outline { background: transparent; color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--bg); }
.btn-light { background: var(--bg); color: var(--ink); border-color: var(--bg); }
.btn-light:hover { background: transparent; color: var(--bg); }
.btn-gold { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn-gold:hover { background: transparent; color: var(--gold); }
.btn-wa { background: #1f7a4d; border-color: #1f7a4d; color: #fff; }
.btn-wa:hover { background: transparent; color: #1f7a4d; }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 11px 20px; font-size: .7rem; }

/* ---------------- Announcement + Header ---------------- */
.announce {
  background: var(--char); color: var(--cream-on-dark); text-align: center;
  font-family: var(--sans); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  padding: 10px 12px;
}
.announce b { color: var(--gold-2); }
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--glass-bg); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(227,218,202,.6);
  transition: box-shadow .35s var(--ease), background .35s var(--ease);
}
.site-header.scrolled { box-shadow: 0 6px 30px rgba(26,23,18,.10); background: rgba(246,241,233,.8); }
.nav { display: flex; align-items: center; height: 82px; gap: 20px; }
.brand {
  font-family: var(--serif); font-weight: 600; font-size: 1.7rem; letter-spacing: .14em;
  color: var(--ink); display: flex; align-items: center; gap: 12px; text-transform: uppercase;
}
.brand-mark { height: 42px; width: auto; display: block; }
.brand-name { line-height: 1; padding-top: 3px; }
.footer-logo { max-width: 240px; width: 100%; height: auto; }
.nav-links { display: flex; gap: 30px; margin: 0 auto; }
.nav-links a {
  font-family: var(--sans); font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-2); position: relative; padding: 4px 0; transition: color .25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px; background: var(--gold); transition: width .3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
/* Nav dropdown — More from Minorma */
.nav-drop { position: relative; }
.nav-drop-toggle {
  font-family: var(--sans); font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-2); background: none; border: none; cursor: pointer; padding: 4px 0;
  display: inline-flex; align-items: center; gap: 6px; transition: color .25s;
}
.nav-drop-toggle .caret { transition: transform .25s; display: inline-block; }
.nav-drop:hover .nav-drop-toggle, .nav-drop.open .nav-drop-toggle { color: var(--ink); }
.nav-drop.open .nav-drop-toggle .caret { transform: rotate(90deg); }
.nav-drop-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
  background: var(--glass-bg-2); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-brd); box-shadow: var(--glass-shadow); border-radius: 16px;
  min-width: 230px; padding: 10px 0; display: none; z-index: 70; overflow: hidden;
}
.nav-drop:hover .nav-drop-menu, .nav-drop.open .nav-drop-menu { display: block; }
.nav-drop-menu a {
  display: block; padding: 12px 22px; font-family: var(--sans); font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2); white-space: nowrap;
}
.nav-drop-menu a::after { display: none; }
.nav-drop-menu a:hover { color: var(--gold); background: var(--bg-2); }
.nav-drop-menu a .ext { color: var(--gold); font-size: .9em; }
.nav-drop-label {
  padding: 12px 22px 4px; font-family: var(--sans); font-size: .66rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted); border-top: 1px solid var(--line); margin-top: 6px;
}
.nav-drop-soon {
  display: block; padding: 8px 22px 10px; font-family: var(--sans); font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted); white-space: nowrap;
}

.nav-actions { display: flex; align-items: center; gap: 16px; }
.cart-btn {
  position: relative; display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  background: var(--glass-bg-2); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-brd); border-radius: 999px; padding: 9px 16px;
  font-family: var(--sans); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink);
  transition: transform .3s var(--spring), box-shadow .3s var(--ease);
}
.cart-btn:hover { box-shadow: var(--shadow-sm); }
.cart-btn:active { transform: scale(.94); }
.cart-count {
  min-width: 19px; height: 19px; padding: 0 5px; border-radius: 999px; background: var(--gold); color: #fff;
  font-family: var(--sans); font-size: .66rem; display: inline-flex; align-items: center; justify-content: center;
}
.hamburger { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--ink); }

/* ---------------- Hero (full-bleed editorial) ---------------- */
.hero-full { position: relative; min-height: 88vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-full .hero-img { position: absolute; inset: 0; }
.hero-full .hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-full::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,13,.28) 0%, rgba(20,17,13,.05) 40%, rgba(20,17,13,.75) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 0 0 76px; max-width: 720px; }
.hero-full .sec-eyebrow { color: var(--gold-2); }
.hero-full h1 { color: #fff; font-size: clamp(2.8rem, 7vw, 5.6rem); font-weight: 500; letter-spacing: -.01em; }
.hero-full h1 em { font-style: italic; color: var(--gold-2); }
.hero-full p { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 44ch; margin: 20px 0 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------------- Category tiles ---------------- */
.tiles { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.tile { position: relative; overflow: hidden; aspect-ratio: 3/4; display: block; background: var(--bg-2); }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.tile:hover img { transform: scale(1.06); }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(20,17,13,.62)); }
.tile-label { position: absolute; left: 0; right: 0; bottom: 22px; z-index: 2; text-align: center; color: #fff; }
.tile-label .t { font-family: var(--serif); font-size: 1.5rem; }
.tile-label .s { font-family: var(--sans); font-size: .66rem; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.8); display: block; margin-top: 4px; }

/* ---------------- Product grid + card ---------------- */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px,1fr)); gap: 34px 26px; }
.card { background: transparent; display: flex; flex-direction: column; position: relative; }
.card .thumb {
  position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--bg-2); display: block;
}
.card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), opacity .4s; }
.card:hover .thumb img { transform: scale(1.05); }
.badge-off {
  position: absolute; top: 12px; left: 12px; z-index: 2; background: var(--ink); color: var(--bg);
  font-family: var(--sans); font-size: .62rem; letter-spacing: .12em; padding: 5px 10px; text-transform: uppercase;
}
.veg-dot { position: absolute; top: 12px; left: 12px; z-index: 2; width: 18px; height: 18px; background: #fff;
  display: flex; align-items: center; justify-content: center; border: 1.5px solid #2E7D51; }
.veg-dot i { width: 8px; height: 8px; border-radius: 50%; background: #2E7D51; }
.veg-dot.nonveg { border-color: #B23B3B; } .veg-dot.nonveg i { background: #B23B3B; }
.card .quick {
  position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 3; opacity: 0; transform: translateY(10px);
  transition: opacity .35s var(--ease), transform .4s var(--spring);
}
.card:hover .quick { opacity: 1; transform: translateY(0); }
.card .quick .btn {
  background: var(--glass-bg-2); -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur);
  color: var(--ink); border: 1px solid var(--glass-brd); border-radius: 999px; box-shadow: var(--shadow-sm);
}
.card .quick .btn:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.card .body { padding: 16px 2px 0; text-align: center; }
.card .ptype { font-family: var(--sans); font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.card .body h3 { font-family: var(--serif); font-size: 1.28rem; font-weight: 500; margin: 5px 0 6px; }
.card .price-row { display: flex; align-items: baseline; gap: 8px; justify-content: center; }
.price { font-family: var(--sans); font-weight: 400; font-size: .95rem; letter-spacing: .04em; color: var(--ink); }
.mrp { font-family: var(--sans); font-size: .82rem; color: var(--muted); text-decoration: line-through; }
.out { font-family: var(--sans); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: #B23B3B; }
@media (hover: none) { .card .quick { opacity: 1; transform: none; position: static; margin-top: 12px; } }

/* ---------------- Editorial split ---------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 0; }
.split.reverse .split-media { order: 2; }
.split-media { aspect-ratio: 4/5; overflow: hidden; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-text { padding: 8vw 6vw; }
.split-text .sec-title { margin-bottom: 18px; }

/* ---------------- Lookbook strip ---------------- */
.lookbook { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.lookbook a { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.lookbook img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.lookbook a:hover img { transform: scale(1.06); }

/* ---------------- Instagram grid ---------------- */
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.ig-grid a { position: relative; aspect-ratio: 1/1; overflow: hidden; display: block; }
.ig-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.ig-grid a:hover img { transform: scale(1.08); }
.ig-ov { position: absolute; inset: 0; background: rgba(28,25,21,.35); opacity: 0; transition: opacity .3s; }
.ig-grid a:hover .ig-ov { opacity: 1; }
@media (max-width: 900px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------------- Dark brands band ---------------- */
.band { background: var(--char); color: var(--cream-on-dark); }
.band .sec-eyebrow { color: var(--gold-2); }
.band h2, .band h3 { color: #fff; }
.band p { color: rgba(237,228,211,.7); }
.brands-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.brand-card { position: relative; overflow: hidden; min-height: 340px; display: flex; align-items: flex-end;
  padding: 34px; border: 1px solid rgba(255,255,255,.12); }
.brand-card .bc-emoji { font-size: 2.4rem; position: absolute; top: 30px; left: 30px; }
.brand-card h3 { font-size: 1.8rem; }

/* ---------------- Trust row ---------------- */
.trust { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; }
.trust-item { text-align: center; }
.trust-item .ico { font-family: var(--serif); font-size: 1.6rem; color: var(--gold); }
.trust-item h4 { font-family: var(--sans); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; margin: 12px 0 6px; }
.trust-item p { font-size: .86rem; margin: 0; }

/* ---------------- Newsletter ---------------- */
.newsletter { text-align: center; }
.news-form { display: flex; gap: 0; max-width: 460px; margin: 24px auto 0; border: 1px solid var(--line-2); }
.news-form input { flex: 1; border: none; background: transparent; padding: 15px 18px; font-family: var(--sans); font-size: .85rem; }
.news-form input:focus { outline: none; }
.news-form button { border: none; }

/* ---------------- Toolbar / chips ---------------- */
.page-head { padding: 56px 0 8px; text-align: center; }
.breadcrumb { font-family: var(--sans); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); padding: 24px 0; }
.breadcrumb a:hover { color: var(--gold); }
.toolbar { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center; margin: 6px 0 40px; }
.chips { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.chip {
  font-family: var(--sans); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  padding: 10px 20px; border: 1px solid var(--line-2); background: var(--glass-bg-2);
  -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur);
  border-radius: 999px; cursor: pointer; color: var(--ink-2);
  transition: transform .3s var(--spring), background .25s, color .25s, border-color .25s;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip:active { transform: scale(.94); }
.chip.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.input, .select {
  font-family: var(--sans); font-size: .82rem; padding: 13px 18px; border: 1px solid var(--line-2);
  background: var(--glass-bg-2); -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur);
  color: var(--ink); border-radius: 14px; transition: border-color .25s, box-shadow .25s;
}
.input:focus, .select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(166,132,76,.14); }
.search { min-width: 260px; }
.search .input { width: 100%; }

/* ---------------- Product page ---------------- */
.pd { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: start; }
.pd-gallery-main { aspect-ratio: 4/5; overflow: hidden; background: var(--bg-2); cursor: zoom-in; border-radius: var(--radius-ios); }
.pd-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.pd-thumb { width: 68px; height: 84px; padding: 0; border: 1px solid var(--line-2); border-radius: 10px; overflow: hidden; cursor: pointer; background: var(--bg-2); transition: border-color .2s; }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumb.on { border-color: var(--gold); border-width: 2px; }
.pd-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.pd-info { position: sticky; top: 110px; }
.pd .ptype { font-family: var(--sans); font-size: .7rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); }
.pd h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 10px 0 16px; }
.pd .price { font-size: 1.25rem; }
.pd .field { margin: 22px 0; }
.pd label { font-family: var(--sans); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; display: block; margin-bottom: 10px; color: var(--ink-2); }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line-2); }
.qty button { border: none; background: transparent; width: 44px; height: 46px; font-size: 1.1rem; cursor: pointer; color: var(--ink); }
.qty span { width: 46px; text-align: center; font-family: var(--sans); }
.pd-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.pd-note { font-family: var(--sans); font-size: .8rem; color: var(--ink-2); border-top: 1px solid var(--line); margin-top: 28px; padding-top: 20px; letter-spacing: .02em; }

/* ---------------- Reviews ---------------- */
.stars { display: inline-flex; gap: 1px; color: var(--gold); }
.stars .star { color: #ddd2bd; }
.stars .star.on { color: var(--gold); }
.rating-line { display: inline-flex; align-items: center; gap: 8px; margin: 10px 0 4px; }
.rating-line .muted { font-family: var(--sans); font-size: .82rem; }
.rating-line:hover .muted { color: var(--gold); }
.rev-section { border-top: 1px solid var(--line); margin-top: 40px; padding-top: 20px; }
.rev-wrap { max-width: 760px; }
.rev-head { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; }
.rev-head .sec-title { margin-right: auto; }
.rev-summary { display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans); }
.rev-summary b { font-size: 1.05rem; }
.rev-empty { padding: 8px 0 6px; }
.rev-list { display: grid; gap: 22px; }
.rev-item { border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; background: var(--surface); }
.rev-top { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.rev-name { font-family: var(--sans); font-weight: 500; font-size: .9rem; }
.rev-date { font-family: var(--sans); font-size: .78rem; margin-left: auto; }
.rev-photo { width: 90px; height: 90px; object-fit: cover; border-radius: 10px; margin: 6px 0 10px; cursor: pointer; }
.rev-text { margin: 0; color: var(--ink-2); }

/* ---------------- Lightbox ---------------- */
.lightbox { position: fixed; inset: 0; background: rgba(20,17,13,.92); z-index: 200; display: none; align-items: center; justify-content: center; padding: 30px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 92vh; object-fit: contain; }
.lightbox img { border-radius: var(--radius-ios); }
.lightbox .lb-close { position: absolute; top: 22px; right: 30px; color: #fff; font-size: 1.6rem; cursor: pointer;
  width: 44px; height: 44px; border-radius: 999px; background: rgba(255,255,255,.14);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,.2);
  transition: transform .3s var(--spring); }
.lightbox .lb-close:active { transform: scale(.9); }

/* ---------------- Cart drawer ---------------- */
.drawer-overlay { position: fixed; inset: 0; background: rgba(20,17,13,.4); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: opacity .35s; z-index: 90; }
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer { position: fixed; top: 0; right: 0; height: 100%; width: min(440px, 94vw); z-index: 100;
  background: var(--glass-bg); -webkit-backdrop-filter: saturate(180%) blur(30px); backdrop-filter: saturate(180%) blur(30px);
  border-left: 1px solid var(--glass-brd);
  transform: translateX(100%); transition: transform .45s var(--spring); display: flex; flex-direction: column; box-shadow: -20px 0 70px rgba(0,0,0,.22); }
.drawer.open { transform: translateX(0); }
.drawer-grip { display: none; }
.drawer-head { padding: 24px 26px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.drawer-head h3 { font-family: var(--serif); font-size: 1.5rem; }
.drawer-close { background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--ink-2); line-height: 1; }
.drawer-body { flex: 1; overflow-y: auto; padding: 8px 26px; }
.drawer-foot { padding: 24px 26px; border-top: 1px solid var(--line); }
.cart-line { display: grid; grid-template-columns: 70px 1fr auto; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cart-line img { width: 70px; height: 88px; object-fit: cover; background: var(--bg-2); }
.cart-line .cl-name { font-family: var(--serif); font-size: 1.1rem; }
.cart-line .cl-opt { font-family: var(--sans); font-size: .72rem; color: var(--muted); letter-spacing: .04em; }
.cart-line .cl-qty { display: inline-flex; align-items: center; gap: 10px; margin-top: 8px; font-family: var(--sans); font-size: .85rem; }
.cart-line .cl-qty button { width: 26px; height: 26px; border: 1px solid var(--line-2); background: transparent; cursor: pointer; }
.cart-line .cl-price { font-family: var(--sans); font-size: .9rem; text-align: right; white-space: nowrap; }
.cl-remove { background: none; border: none; color: var(--muted); font-family: var(--sans); font-size: .72rem; cursor: pointer; text-decoration: underline; margin-top: 8px; letter-spacing: .04em; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 10px; font-family: var(--sans); font-size: .88rem; }
.summary-row.total { font-size: 1rem; color: var(--ink); border-top: 1px solid var(--line); padding-top: 14px; margin-top: 6px; letter-spacing: .04em; }
.empty-cart { text-align: center; padding: 70px 20px; color: var(--muted); }
.empty-cart .serif { font-family: var(--serif); font-size: 1.6rem; color: var(--ink); margin-bottom: 16px; }

/* ---------------- Forms / checkout ---------------- */
.callout { background: var(--bg-2); border: 1px solid var(--line); padding: 16px 18px; border-radius: 14px; font-family: var(--sans); font-size: .85rem; color: var(--ink-2); }
.form-grid { display: grid; gap: 16px; }
.form-row { display: grid; gap: 8px; }
.form-row label { font-family: var(--sans); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.note { font-family: var(--sans); font-size: .78rem; color: var(--muted); }
.summary-box { background: var(--glass-bg-2); -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-brd); padding: 28px; border-radius: var(--radius-ios); box-shadow: var(--shadow-sm); }
.secure-strip { display: flex; align-items: center; gap: 8px; margin-top: 16px; padding: 11px 14px;
  background: rgba(46,125,81,.08); border: 1px solid rgba(46,125,81,.22); border-radius: 12px;
  font-family: var(--sans); font-size: .74rem; letter-spacing: .06em; color: #2E7D51; }
.secure-strip .lock { font-size: .9rem; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--char); color: var(--cream-on-dark); margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding: 76px 0 40px; }
.site-footer .brand { color: #fff; }
.site-footer h4 { font-family: var(--sans); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.site-footer a { font-family: var(--sans); color: rgba(237,228,211,.68); font-size: .86rem; display: block; margin-bottom: 10px; transition: color .2s; }
.site-footer a:hover { color: var(--gold-2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; font-family: var(--sans); font-size: .74rem; letter-spacing: .06em; color: rgba(237,228,211,.5); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom .foot-legal a { display: inline; margin: 0; }
.socials { display: flex; gap: 12px; margin-top: 14px; }
.site-footer .socials a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; margin: 0; color: var(--cream-on-dark); transition: all .25s; }
.site-footer .socials a:hover { color: #1c1915; background: var(--gold-2); border-color: var(--gold-2); }

/* ---------------- Toast ---------------- */
.toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(24px) scale(.96);
  background: rgba(28,25,21,.82); -webkit-backdrop-filter: saturate(160%) blur(16px); backdrop-filter: saturate(160%) blur(16px);
  border: 1px solid rgba(255,255,255,.14); color: var(--bg);
  padding: 14px 26px; border-radius: 999px; font-family: var(--sans); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), transform .45s var(--spring); z-index: 300; box-shadow: var(--glass-shadow); }
.toast.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0) scale(1); }

/* ---------------- Wishlist ---------------- */
.icon-btn { position: relative; display: inline-flex; align-items: center; color: var(--ink); }
.icon-btn:hover { color: var(--gold); }
.icon-btn .cart-count { position: absolute; top: -7px; right: -9px; background: var(--gold); }
.wish-btn {
  position: absolute; top: 14px; right: 14px; z-index: 4; width: 36px; height: 36px; border-radius: 50%;
  background: var(--glass-bg-2); -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-brd); display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #b6ada0; transition: transform .3s var(--spring), color .2s; padding: 0;
}
.wish-btn:hover { color: #C0392B; }
.wish-btn:active { transform: scale(.82); }
.wish-btn.on { color: #C0392B; }
.btn.pd-wish.on { color: #C0392B; border-color: #C0392B; }

/* ---------------- Floating WhatsApp ---------------- */
.wa-fab {
  position: fixed; right: 22px; bottom: 22px; width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center; z-index: 120;
  box-shadow: 0 12px 30px rgba(37,211,102,.42); transition: transform .3s var(--spring);
}
.wa-fab:hover { transform: scale(1.09); }

/* ---------------- Offer popup ---------------- */
.offer-overlay {
  position: fixed; inset: 0; background: rgba(20,17,13,.5); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; z-index: 200; padding: 20px;
  opacity: 0; visibility: hidden; transition: opacity .3s;
}
.offer-overlay.open { opacity: 1; visibility: visible; }
.offer-modal {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-ios); max-width: 400px; width: 100%;
  padding: 40px 34px; text-align: center; position: relative; box-shadow: var(--shadow);
  transform: translateY(18px) scale(.97); transition: transform .45s var(--spring);
}
.offer-overlay.open .offer-modal { transform: none; }
.offer-eyebrow { font-family: var(--sans); text-transform: uppercase; letter-spacing: .3em; font-size: .66rem; color: var(--gold); margin-bottom: 12px; }
.offer-modal h3 { font-size: 2rem; margin-bottom: 8px; }
.offer-close { position: absolute; top: 12px; right: 16px; background: none; border: none; font-size: 1.7rem; cursor: pointer; color: var(--muted); line-height: 1; }
.offer-code { font-family: var(--sans); font-weight: 600; letter-spacing: .22em; font-size: 1.25rem; border: 1px dashed var(--gold); padding: 13px; margin: 8px 0 14px; color: var(--ink); border-radius: 10px; }
.offer-reveal { margin-top: 20px; }

/* ---------------- Coupon + sticky buy bar ---------------- */
.coupon-row { display: flex; gap: 8px; margin: 16px 0 6px; }
.coupon-row .input { flex: 1; }
.buybar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 110;
  background: var(--glass-bg); -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur);
  border-top: 1px solid var(--glass-brd); padding: 11px 18px; align-items: center; justify-content: space-between; gap: 14px;
  box-shadow: 0 -8px 30px rgba(0,0,0,.1);
}
.buybar .bb-name { font-family: var(--serif); font-size: 1.05rem; line-height: 1.1; }
.buybar .bb-price { font-family: var(--sans); font-size: .82rem; color: var(--ink-2); }

/* ---------------- Responsive ---------------- */
@media (max-width: 1000px) {
  .tiles { grid-template-columns: repeat(2,1fr); }
  .lookbook { grid-template-columns: repeat(2,1fr); }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-text { padding: 56px 28px; }
  .pd { grid-template-columns: 1fr; gap: 32px; }
  .pd-info { position: static; }
  .brands-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .section { padding: 62px 0; }
  .nav { height: 68px; }
  .brand { font-size: 1.35rem; margin-right: auto; gap: 9px; }
  .brand-mark { height: 34px; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg);
    flex-direction: column; gap: 0; padding: 10px 28px 20px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm); margin: 0; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .nav-drop { width: 100%; }
  .nav-drop-toggle { width: 100%; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid var(--line); }
  .nav-drop-menu { position: static; transform: none; border: none; box-shadow: none; min-width: 0; padding: 0 0 6px 16px; }
  .nav-drop:hover .nav-drop-menu { display: none; }
  .nav-drop.open .nav-drop-menu { display: block; }
  .nav-drop-menu a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .hamburger { display: block; }
  .nav-actions { margin-left: 4px; }
  .trust { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .hero-full { min-height: 78vh; }
  .buybar { display: flex; }
  body[data-page="product"] { padding-bottom: 74px; }
  body[data-page="product"] .wa-fab { bottom: 88px; }

  /* iOS-style bottom-sheet cart on mobile */
  .drawer {
    top: auto; bottom: 0; right: 0; left: 0; width: 100%; height: auto; max-height: 88vh;
    border-left: none; border-top: 1px solid var(--glass-brd);
    border-radius: var(--radius-ios) var(--radius-ios) 0 0;
    transform: translateY(100%); box-shadow: 0 -20px 60px rgba(0,0,0,.25);
  }
  .drawer.open { transform: translateY(0); }
  .drawer-grip { display: block; width: 40px; height: 5px; border-radius: 999px; background: var(--line-2);
    margin: 10px auto 0; }
}

/* Phones: denser grid + right-sized hero */
@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 22px 12px; }
  .card .body h3 { font-size: 1.05rem; }
  .card .body { padding: 12px 2px 0; }
  .hero-full { min-height: 72vh; }
  .hero-full h1 { font-size: clamp(2.1rem, 11vw, 3rem); }
  .hero-full p { font-size: 1rem; }
  .hero-inner { padding-bottom: 52px; }
  .hero-cta { gap: 10px; }
  .hero-cta .btn { flex: 1; justify-content: center; }
  .sec-head { margin-bottom: 34px; }
  .search { min-width: 0; width: 100%; }
  .toolbar { gap: 10px; }
  .announce { font-size: .62rem; letter-spacing: .12em; }
  .btn { padding: 13px 22px; }
  .pd-thumb { width: 58px; height: 72px; }
  .rev-head { gap: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
