/* ============================================================
   SAHU SAREE SHOP — heritage luxury theme
   ============================================================ */

:root {
  /* palette — deep forest, antique gold, champagne, maroon */
  --green-deep: #0f1d15;
  --green: #14251b;
  --green-soft: #1d3527;
  --gold-deep: #8a6420;
  --gold: #c9a35f;
  --gold-light: #eccf8b;
  --champagne: #d9c08a;
  --cream: #efe4c8;
  --cream-hi: #f7efdc;
  --cream-dim: rgba(238, 228, 205, 0.64);
  --maroon-deep: #200910;
  --maroon: #4d1a24;
  --maroon-mid: #6b2b36;
  --sale: #c2554e;
  --ink-on-gold: #241a0c;
  --line: rgba(201, 163, 95, 0.28);

  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --serif-i: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  --script: 'Great Vibes', cursive;

  --ease: cubic-bezier(0.22, 0.61, 0.21, 1);
  --ease-io: cubic-bezier(0.77, 0, 0.18, 1);
  --pad-x: clamp(16px, 6.4vw, 110px);
  --header-h: 84px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  background: var(--green-deep);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.is-loading, body.is-locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; color: inherit; font: inherit; cursor: pointer; }
input { font: inherit; color: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
::selection { background: rgba(201, 163, 95, 0.35); color: var(--cream-hi); }
em { font-family: var(--serif-i); font-style: italic; color: var(--gold-light); font-weight: 400; }
:focus-visible { outline: 1px solid var(--gold); outline-offset: 3px; }

/* ============================================================
   FABRIC ART — shown behind photos, and in place of any
   photo that is missing from /assets
   ============================================================ */
.art {
  --c1: var(--maroon-mid);
  --c2: var(--maroon-deep);
  --fab:
    linear-gradient(90deg, transparent 0 84%, rgba(236, 207, 139, 0.55) 84% 85%, transparent 85% 87%, rgba(236, 207, 139, 0.8) 87% 91%, transparent 91% 92%, rgba(236, 207, 139, 0.55) 92% 93%, transparent 93%),
    radial-gradient(circle at 50% 50%, rgba(236, 207, 139, 0.32) 0 2px, transparent 3px),
    radial-gradient(circle at 50% 50%, rgba(236, 207, 139, 0.16) 0 1px, transparent 2px),
    linear-gradient(160deg, var(--c1) 0%, var(--c2) 100%);
  background-color: var(--c2);
  /* layer 1 is the photo (set inline); the rest is the woven fallback */
  background-image: none, var(--fab);
  background-size: cover, 100% 100%, 26px 26px, 26px 26px, cover;
  background-position: center, center, 0 0, 13px 13px, center;
  background-repeat: no-repeat, no-repeat, repeat, repeat, no-repeat;
}

/* ============================================================
   INTRO CURTAINS
   ============================================================ */
#curtains {
  position: fixed; inset: 0; z-index: 200;
  pointer-events: none;
}
.curtain {
  position: absolute; top: 0; bottom: 0; width: 50.5%;
  background:
    repeating-linear-gradient(90deg, rgba(0,0,0,0.28) 0 2%, rgba(255,255,255,0.03) 5%, rgba(0,0,0,0.22) 9%, rgba(0,0,0,0.05) 12.5%),
    linear-gradient(180deg, var(--maroon-mid), var(--maroon) 55%, var(--maroon-deep));
  transition: transform 2.8s var(--ease-io);
}
.curtain::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 26px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 8px, var(--gold-deep) 8px 10px);
  opacity: 0.8;
}
.c-left { left: 0; }
.c-right { right: 0; }
.intro-mark {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  display: grid; place-items: center;
  width: 180px; height: 180px;
  transition: opacity 1.2s var(--ease), transform 1.6s var(--ease);
}
.im-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid var(--gold);
  box-shadow: 0 0 40px rgba(233, 190, 106, 0.3), inset 0 0 30px rgba(233, 190, 106, 0.15);
  animation: ringIn 2s var(--ease) both;
}
.im-s { font-family: var(--serif); font-size: 76px; color: var(--gold-light); line-height: 1; animation: fadeUp 1.6s 0.6s var(--ease) both; }
.im-name { position: absolute; bottom: -44px; white-space: nowrap; font-family: var(--script); font-size: 30px; color: var(--gold-light); animation: fadeUp 1.6s 1.2s var(--ease) both; }

body.is-open .c-left { transform: translateX(-101%); }
body.is-open .c-right { transform: translateX(101%); }
body.is-open .intro-mark { opacity: 0; transform: translate(-50%, -50%) scale(1.15); }
body.is-gone #curtains { display: none; }

@keyframes ringIn { from { transform: scale(0.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes fadeUp { from { transform: translateY(14px); opacity: 0; } to { transform: none; opacity: 1; } }

/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--pad-x);
  transition: background 0.5s var(--ease), height 0.4s var(--ease), border-color 0.5s;
  border-bottom: 1px solid transparent;
}
#header.is-scrolled {
  --header-h: 68px;
  background: rgba(12, 24, 17, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.nav-side { display: flex; gap: clamp(18px, 2.4vw, 40px); }
.nav-l { justify-self: start; }
.nav-r { justify-self: end; margin-right: 150px; }
.nav-side a {
  position: relative;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
  color: var(--cream);
  padding: 6px 0;
}
.nav-side a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.nav-side a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-side a:hover { color: var(--gold-light); }

.brand { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.brand-script { font-family: var(--script); font-size: 44px; color: var(--gold-light); line-height: 0.9; }
.brand-caps { font-family: var(--serif); font-size: 10px; letter-spacing: 0.5em; text-transform: uppercase; color: var(--cream); margin-top: 2px; padding-left: 0.5em; }

.nav-utils {
  position: absolute; right: var(--pad-x); top: 50%; transform: translateY(-50%);
  display: flex; gap: 6px;
}
.util { position: relative; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; transition: color 0.3s, background 0.3s; }
.util:hover { color: var(--gold-light); background: rgba(201, 163, 95, 0.1); }
.util svg { width: 20px; height: 20px; }
.count {
  position: absolute; top: 2px; right: 0;
  min-width: 16px; height: 16px; padding: 0 4px;
  border-radius: 8px; background: var(--gold); color: var(--ink-on-gold);
  font-size: 9px; font-weight: 600; line-height: 16px; text-align: center;
  transform: scale(0); transition: transform 0.3s var(--ease);
}
.count.has { transform: scale(1); }
.count.bump { animation: bump 0.4s var(--ease); }
@keyframes bump { 50% { transform: scale(1.4); } }

.menu-btn { display: none; width: 38px; height: 38px; flex-direction: column; justify-content: center; gap: 7px; }
.menu-btn span { display: block; height: 1px; background: var(--cream); width: 24px; }
.menu-btn span:last-child { width: 16px; }

/* mobile nav */
#mobileNav {
  position: fixed; inset: 0; z-index: 120;
  background: linear-gradient(180deg, var(--green) 0%, var(--green-deep) 100%);
  display: flex; flex-direction: column;
  padding: 18px 24px 30px;
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-io);
}
#mobileNav.is-open { transform: none; }
.mn-top { display: flex; justify-content: space-between; align-items: center; }
.mn-top .brand-script { font-size: 40px; }
.mn-close { width: 40px; height: 40px; display: grid; place-items: center; }
.mn-close svg { width: 22px; height: 22px; }
.mn-links { display: flex; flex-direction: column; margin-top: 40px; }
.mn-links a {
  font-family: var(--serif); font-size: 26px; padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.mn-foot { margin-top: auto; text-align: center; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 28px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
  border: 1px solid var(--gold);
  transition: color 0.5s var(--ease), border-color 0.5s;
  isolation: isolate;
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.6s var(--ease);
}
.btn:hover::before { transform: scaleX(1); transform-origin: left; }
.btn svg { width: 24px; height: 10px; transition: transform 0.5s var(--ease); }
.btn:hover svg { transform: translateX(5px); }
.btn-primary { background: var(--gold); color: var(--ink-on-gold); }
.btn-primary::before { background: var(--gold-light); }
.btn-ghost { color: var(--cream); }
.btn-ghost::before { background: var(--gold); }
.btn-ghost:hover { color: var(--ink-on-gold); }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 40px) var(--pad-x) 80px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; transform: scale(1.08); transition: transform 4.5s var(--ease); }
body.is-open .hero-bg { transform: scale(1); }
.veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 20, 14, 0.9) 0%, rgba(10, 20, 14, 0.55) 45%, rgba(10, 20, 14, 0.1) 100%),
    linear-gradient(0deg, rgba(10, 20, 14, 0.85) 0%, transparent 35%);
}
.hero-content { position: relative; max-width: 640px; }
.eyebrow { display: flex; align-items: center; gap: 16px; font-size: 11px; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold); margin-bottom: 26px; }
.eyebrow i { display: block; width: 60px; height: 1px; background: var(--gold); }
.headline {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(44px, 7vw, 104px); line-height: 1.02;
  color: var(--cream-hi);
  letter-spacing: -0.01em;
}
.headline em { font-size: 1.05em; }
.tagline { font-family: var(--serif-i); font-style: italic; font-size: clamp(20px, 2vw, 26px); color: var(--cream-dim); margin: 22px 0 38px; }
.hero-rail {
  position: absolute; right: var(--pad-x); bottom: 90px;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.hero-rail p { writing-mode: vertical-rl; font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); }
.hero-rail i { display: block; width: 1px; height: 70px; background: linear-gradient(var(--gold), transparent); }
.scroll-cue { position: absolute; left: 50%; bottom: 28px; width: 22px; height: 36px; border: 1px solid var(--gold); border-radius: 12px; transform: translateX(-50%); }
.scroll-cue span { position: absolute; left: 50%; top: 7px; width: 2px; height: 7px; margin-left: -1px; background: var(--gold-light); border-radius: 1px; animation: cue 1.8s infinite var(--ease); }
@keyframes cue { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(12px); } }

/* ============================================================
   VALUES STRIP
   ============================================================ */
.values {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--green);
  padding: 26px var(--pad-x);
  text-align: center;
}
.values p { font-family: var(--serif-i); font-style: italic; font-size: clamp(18px, 2.2vw, 28px); color: var(--champagne); }
.values span { color: var(--gold); font-style: normal; font-size: 0.6em; margin: 0 clamp(12px, 3vw, 40px); vertical-align: middle; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: clamp(70px, 10vw, 130px) var(--pad-x); position: relative; }
.section-dark { background: radial-gradient(120% 80% at 50% 0%, var(--green-soft) 0%, var(--green-deep) 70%); }
.sec-head { text-align: center; max-width: 640px; margin: 0 auto clamp(40px, 5vw, 64px); }
.sec-kicker { font-size: 11px; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.sec-kicker::before, .sec-kicker::after { content: "—"; margin: 0 12px; opacity: 0.6; }
h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(34px, 4.4vw, 58px); line-height: 1.1; color: var(--cream-hi); }
.sec-sub { margin-top: 16px; color: var(--cream-dim); font-size: 15px; }

/* category cards */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.6vw, 24px); }
.cat {
  position: relative; aspect-ratio: 3 / 4.3; overflow: hidden;
  display: flex; align-items: flex-end;
  border: 1px solid var(--line);
}
.cat .art { position: absolute; inset: 0; transition: transform 1.2s var(--ease); }
.cat:hover .art { transform: scale(1.06); }
.cat::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10, 20, 14, 0.9) 0%, transparent 55%); }
.cat-body { position: relative; z-index: 1; padding: 24px; width: 100%; }
.cat-body h3 { font-family: var(--serif); font-weight: 400; font-size: 26px; color: var(--cream-hi); }
.cat-body p { font-family: var(--serif-i); font-style: italic; font-size: 17px; color: var(--cream-dim); }
.cat-body span { display: inline-block; margin-top: 12px; font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); border-bottom: 1px solid var(--gold); padding-bottom: 3px; }

/* filter chips */
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 44px; }
.chip {
  padding: 9px 20px; border: 1px solid var(--line); border-radius: 40px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cream-dim); transition: all 0.35s var(--ease);
}
.chip:hover { border-color: var(--gold); color: var(--cream); }
.chip.is-active { background: var(--gold); border-color: var(--gold); color: var(--ink-on-gold); }

/* product cards */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2vw, 30px); }
.prod { position: relative; display: flex; flex-direction: column; }
.prod.is-hidden { display: none; }
.prod-media { position: relative; aspect-ratio: 3 / 4; overflow: hidden; border: 1px solid var(--line); cursor: pointer; }
.prod-media .art { position: absolute; inset: 0; transition: transform 1.2s var(--ease); }
.prod:hover .prod-media .art { transform: scale(1.05); }
.tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  padding: 4px 10px; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
  background: var(--cream-hi); color: var(--ink-on-gold);
}
.tag.sale { background: var(--sale); color: #fff; }
.heart {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(15, 29, 21, 0.55); backdrop-filter: blur(4px);
  transition: background 0.3s, color 0.3s;
}
.heart svg { width: 18px; height: 18px; }
.heart:hover { background: rgba(15, 29, 21, 0.85); }
.heart.is-on { color: var(--gold-light); }
.heart.is-on svg { fill: var(--gold-light); }
.quick {
  position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 2;
  padding: 12px; background: var(--gold); color: var(--ink-on-gold);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
  transform: translateY(calc(100% + 14px)); transition: transform 0.5s var(--ease), background 0.3s;
}
.quick:hover { background: var(--gold-light); }
.prod:hover .quick, .prod:focus-within .quick { transform: none; }
.prod-info { padding-top: 16px; }
.prod-cat { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }
.prod-name { font-family: var(--serif); font-weight: 400; font-size: 19px; color: var(--cream-hi); margin: 4px 0 6px; line-height: 1.3; }
.price { display: flex; gap: 10px; align-items: baseline; font-size: 15px; font-weight: 500; color: var(--cream); }
.price s { font-size: 13px; color: var(--cream-dim); font-weight: 400; }
.no-results { grid-column: 1 / -1; text-align: center; font-family: var(--serif-i); font-style: italic; font-size: 22px; color: var(--cream-dim); padding: 40px 0; }

/* best sellers row */
.best-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2vw, 30px); }

/* ============================================================
   FEATURE (bridal) + STORY
   ============================================================ */
.feature, .story {
  display: grid; grid-template-columns: 1.05fr 1fr; align-items: center;
  gap: clamp(36px, 6vw, 100px);
  padding: clamp(70px, 10vw, 130px) var(--pad-x);
}
.feature { background: linear-gradient(135deg, var(--maroon-deep) 0%, #2d0f16 50%, var(--green-deep) 100%); }
.feature-img, .story-img { aspect-ratio: 4 / 5; border: 1px solid var(--line); position: relative; }
.feature-img::before, .story-img::before {
  content: ""; position: absolute; inset: 14px; border: 1px solid rgba(236, 207, 139, 0.45); pointer-events: none;
}
.feature-body .sec-kicker, .story-body .sec-kicker { text-align: left; }
.feature-body .sec-kicker::before, .story-body .sec-kicker::before { display: none; margin: 0; }
.feature-body .sec-kicker::after, .story-body .sec-kicker::after { display: none; }
.feature-body p, .story-body p { color: var(--cream-dim); margin-top: 20px; max-width: 520px; }
.feature-list { list-style: none; margin: 26px 0 36px; }
.feature-list li { padding: 10px 0 10px 28px; border-bottom: 1px solid var(--line); position: relative; font-size: 14px; }
.feature-list li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: 11px; top: 12px; }

.story { grid-template-columns: 1fr 1.05fr; }
.story-body .script { font-family: var(--script); font-size: 38px; color: var(--gold-light); margin-top: 18px; line-height: 1.1; }
.stats { display: flex; gap: clamp(20px, 4vw, 54px); margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--line); }
.stats strong { display: block; font-family: var(--serif); font-weight: 400; font-size: clamp(30px, 3.4vw, 44px); color: var(--gold-light); line-height: 1; }
.stats span { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream-dim); }

/* ============================================================
   PROMISES
   ============================================================ */
.promises {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--green);
}
.promise { text-align: center; padding: 44px 20px; border-right: 1px solid var(--line); }
.promise:last-child { border-right: 0; }
.promise svg { width: 34px; height: 34px; color: var(--gold); margin-bottom: 14px; }
.promise h3 { font-family: var(--serif); font-weight: 400; font-size: 19px; color: var(--cream-hi); }
.promise p { font-size: 13px; color: var(--cream-dim); margin-top: 4px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 30px); }
.quote { border: 1px solid var(--line); padding: 38px 32px; position: relative; background: rgba(20, 37, 27, 0.5); }
.quote::before { content: "“"; position: absolute; top: -8px; left: 24px; font-family: var(--serif); font-size: 80px; color: var(--gold); line-height: 1; }
.quote blockquote { font-family: var(--serif-i); font-style: italic; font-size: 21px; line-height: 1.45; color: var(--cream); }
.quote figcaption { margin-top: 22px; font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); }

/* ============================================================
   VISIT
   ============================================================ */
.visit {
  padding: clamp(70px, 10vw, 130px) var(--pad-x);
  background:
    radial-gradient(circle at 50% 50%, rgba(236, 207, 139, 0.09) 0 1px, transparent 2px) 0 0 / 22px 22px,
    linear-gradient(180deg, var(--green-deep), var(--green));
  display: grid; place-items: center;
}
.visit-card { max-width: 720px; width: 100%; text-align: center; border: 1px solid var(--line); padding: clamp(36px, 6vw, 70px) clamp(20px, 5vw, 60px); background: rgba(15, 29, 21, 0.75); outline: 1px solid rgba(201, 163, 95, 0.14); outline-offset: 10px; }
.visit-card > p { color: var(--cream-dim); margin-top: 16px; }
.visit-info { display: grid; grid-template-columns: auto 1fr; gap: 12px 24px; text-align: left; margin: 34px auto; max-width: 480px; }
.visit-info dt { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); padding-top: 3px; }
.visit-info dd a:hover { color: var(--gold-light); }
.visit .cta-row { justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer { background: #0a150f; border-top: 1px solid var(--line); padding: 70px var(--pad-x) 26px; }
.f-top { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr 1.5fr; gap: 36px; }
.f-brand .brand { align-items: flex-start; }
.f-brand p { margin-top: 18px; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }
.f-col h4 { font-family: var(--serif); font-weight: 400; font-size: 17px; color: var(--cream-hi); margin-bottom: 16px; }
.f-col a { display: block; font-size: 13px; color: var(--cream-dim); padding: 4px 0; transition: color 0.3s; }
.f-col a:hover { color: var(--gold-light); }
.f-news p { font-size: 13px; color: var(--cream-dim); margin-bottom: 14px; }
#newsForm { display: flex; border-bottom: 1px solid var(--gold); }
#newsForm input { flex: 1; min-width: 0; background: none; border: 0; padding: 10px 0; font-size: 13px; outline: none; }
#newsForm input::placeholder { color: rgba(238, 228, 205, 0.4); }
#newsForm button { width: 40px; color: var(--gold); }
#newsForm button svg { width: 24px; height: 10px; }
.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; padding: 0; transition: border-color 0.3s, color 0.3s; }
.socials a:hover { border-color: var(--gold); color: var(--gold-light); }
.socials svg { width: 17px; height: 17px; }
.f-bottom { margin-top: 56px; padding-top: 22px; border-top: 1px solid var(--line); text-align: center; font-size: 12px; color: var(--cream-dim); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 40;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25d366; color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; stroke-width: 1.6; }

/* ============================================================
   DRAWER / SCRIM
   ============================================================ */
.scrim { position: fixed; inset: 0; z-index: 90; background: rgba(4, 9, 6, 0.6); opacity: 0; pointer-events: none; transition: opacity 0.4s; }
.scrim.is-on { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 100;
  width: min(420px, 100%);
  background: var(--green); border-left: 1px solid var(--line);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.55s var(--ease-io);
}
.drawer.is-open { transform: none; }
.dr-head { display: flex; justify-content: space-between; align-items: center; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.dr-head h3 { font-family: var(--serif); font-weight: 400; font-size: 24px; color: var(--cream-hi); }
.dr-close { width: 36px; height: 36px; display: grid; place-items: center; }
.dr-close svg { width: 20px; height: 20px; }
.dr-body { flex: 1; overflow-y: auto; padding: 8px 24px; }
.dr-empty { text-align: center; padding: 60px 10px; }
.dr-empty p { font-family: var(--serif); font-size: 20px; color: var(--cream-hi); }
.dr-empty em { display: block; margin: 6px 0 28px; color: var(--cream-dim); font-size: 18px; }
.line-item { display: grid; grid-template-columns: 72px 1fr auto; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: center; }
.line-item .art { width: 72px; height: 92px; border: 1px solid var(--line); }
.li-name { font-family: var(--serif); font-size: 16px; color: var(--cream-hi); line-height: 1.3; }
.li-price { font-size: 13px; color: var(--cream-dim); margin-top: 2px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); margin-top: 8px; }
.qty button { width: 28px; height: 26px; }
.qty button:hover { color: var(--gold-light); }
.qty span { min-width: 22px; text-align: center; font-size: 13px; }
.li-side { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.li-remove { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream-dim); border-bottom: 1px solid transparent; }
.li-remove:hover { color: var(--sale); }
.li-add { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.dr-foot { padding: 20px 24px 26px; border-top: 1px solid var(--line); }
.dr-foot:empty { display: none; }
.dr-total { display: flex; justify-content: space-between; font-family: var(--serif); font-size: 20px; margin-bottom: 6px; color: var(--cream-hi); }
.dr-note { font-size: 12px; color: var(--cream-dim); margin-bottom: 16px; }
.dr-foot .btn { width: 100%; justify-content: center; }

/* ============================================================
   SEARCH
   ============================================================ */
.search-panel {
  position: fixed; inset: 0; z-index: 110;
  background: rgba(10, 20, 14, 0.97);
  opacity: 0; pointer-events: none; transition: opacity 0.4s;
  padding: 90px var(--pad-x) 40px; overflow-y: auto;
}
.search-panel.is-open { opacity: 1; pointer-events: auto; }
.sp-inner { max-width: 820px; margin: 0 auto; }
.sp-form { display: flex; align-items: center; gap: 14px; border-bottom: 1px solid var(--gold); padding-bottom: 14px; }
.sp-form > svg { width: 24px; height: 24px; color: var(--gold); flex: none; }
.sp-form input { flex: 1; min-width: 0; background: none; border: 0; outline: none; font-family: var(--serif); font-size: clamp(22px, 3vw, 34px); }
.sp-form input::placeholder { color: rgba(238, 228, 205, 0.35); }
.sp-form input::-webkit-search-cancel-button { display: none; }
.sp-close { width: 40px; height: 40px; display: grid; place-items: center; flex: none; }
.sp-close svg { width: 22px; height: 22px; }
.sp-label { margin: 30px 0 16px; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.sp-list { display: flex; flex-direction: column; }
.sp-list .sp-pill { display: inline-block; }
.sp-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.sp-hit { display: grid; grid-template-columns: 54px 1fr auto; gap: 16px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); text-align: left; width: 100%; }
.sp-hit:hover .li-name { color: var(--gold-light); }
.sp-hit .art { width: 54px; height: 68px; }

/* ============================================================
   MODAL
   ============================================================ */
.modal {
  position: fixed; inset: 0; z-index: 130;
  display: grid; place-items: center; padding: 16px;
  background: rgba(4, 9, 6, 0.75);
  opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.modal.is-open { opacity: 1; pointer-events: auto; }
.modal-box {
  position: relative; width: min(920px, 100%); max-height: calc(100vh - 32px); overflow-y: auto;
  background: var(--green); border: 1px solid var(--line);
  transform: translateY(20px); transition: transform 0.5s var(--ease);
}
.modal.is-open .modal-box { transform: none; }
.modal-close { position: absolute; top: 12px; right: 12px; z-index: 3; width: 40px; height: 40px; display: grid; place-items: center; background: rgba(15, 29, 21, 0.7); border-radius: 50%; }
.modal-close svg { width: 20px; height: 20px; }
.qv { display: grid; grid-template-columns: 1fr 1fr; }
.qv .art { min-height: 460px; }
.qv-body { padding: clamp(28px, 4vw, 48px); }
.qv-body h3 { font-family: var(--serif); font-weight: 400; font-size: 32px; color: var(--cream-hi); line-height: 1.15; margin: 8px 0 12px; }
.qv-body .price { font-size: 20px; }
.qv-body > p { color: var(--cream-dim); margin: 18px 0; font-size: 14px; }
.qv-specs { list-style: none; margin-bottom: 28px; }
.qv-specs li { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.qv-specs li span:first-child { color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase; font-size: 10px; padding-top: 2px; }
.qv-actions { display: flex; flex-direction: column; gap: 12px; }
.qv-actions .btn { justify-content: center; }
.info { padding: clamp(30px, 5vw, 56px); max-width: 640px; }
.info h3 { font-family: var(--serif); font-weight: 400; font-size: 30px; color: var(--cream-hi); margin-bottom: 18px; }
.info li { margin: 0 0 10px 20px; color: var(--cream-dim); }
.info li::marker { color: var(--gold); }

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed; left: 50%; bottom: 30px; z-index: 150;
  transform: translate(-50%, 30px); opacity: 0;
  padding: 14px 24px; background: var(--cream-hi); color: var(--ink-on-gold);
  font-size: 13px; font-weight: 500; box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: all 0.45s var(--ease); pointer-events: none;
  max-width: calc(100% - 32px); text-align: center;
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav-side { display: none; }
  .menu-btn { display: flex; justify-self: start; }
  #header { grid-template-columns: 1fr auto 1fr; }
  .prod-grid, .best-row { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .f-top { grid-template-columns: repeat(3, 1fr); }
  .f-brand, .f-news { grid-column: span 3; }
}
@media (max-width: 800px) {
  :root { --header-h: 70px; }
  .brand-script { font-size: 36px; }
  .brand-caps { font-size: 8px; }
  .nav-utils { gap: 0; }
  .util { width: 34px; height: 34px; }
  .prod-grid, .best-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .best-row .prod:nth-child(n+5) { display: none; }
  .feature, .story { grid-template-columns: 1fr; }
  .story-img { order: -1; }
  .promises { grid-template-columns: repeat(2, 1fr); }
  .promise:nth-child(2) { border-right: 0; }
  .promise:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .quotes { grid-template-columns: 1fr; }
  .qv { grid-template-columns: 1fr; }
  .qv .art { min-height: 360px; }
  .hero-rail { display: none; }
  .quick { transform: none; padding: 10px; font-size: 9px; }
  .prod-name { font-size: 16px; }
}
@media (max-width: 520px) {
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cat-body { padding: 14px; }
  .cat-body h3 { font-size: 19px; }
  .cat-body p { display: none; }
  .f-top { grid-template-columns: 1fr 1fr; }
  .f-brand, .f-news { grid-column: span 2; }
  .stats { flex-wrap: wrap; }
  .values span { margin: 0 8px; }
  .btn { padding: 14px 20px; }
  .wa-float { width: 50px; height: 50px; right: 16px; bottom: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
