/** Shopify CDN: Minification failed

Line 1953:0 All "@import" rules must come first

**/
/* =============================================================
   WHAT THE GIFT — CRO build v2
   Design tokens match the original prototype (violet/yellow/cream editorial)
   + CRO utility classes for trust bar, pincode check, sticky ATC, etc.
   Vanilla CSS only — no build step, Shopify-portable.
   ============================================================= */

:root {
  /* Palette — matches the approved design direction */
  --bg: #FBF7F0;
  --bg-alt: #F3ECDE;
  --ink: #18121E;
  --ink-soft: #4A3F52;
  --muted: #8B7F94;
  --line: #E8DFCE;
  --line-soft: #F0E7D4;
  --primary: #6D28D9;          /* violet */
  --primary-ink: #FBF7F0;
  --primary-dark: #5B21B6;
  --accent: #FDE047;           /* yellow */
  --accent-ink: #18121E;
  --card: #FFFFFF;
  --success: #137F3C;
  --success-soft: #E7F6EB;
  --danger: #C2341E;
  --wa-green: #25D366;

  /* Radius / shadow */
  --r-sm: 6px;
  --r: 12px;
  --r-lg: 20px;
  --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(24,18,30,0.06);
  --shadow: 0 8px 28px -12px rgba(24,18,30,0.18);
  --shadow-lg: 0 24px 60px -20px rgba(24,18,30,0.25);

  /* Type */
  --font-display: 'Instrument Serif', 'Times New Roman', serif;
  --font-body: 'Geist', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --font-script: 'Caveat', cursive;

  /* Layout */
  --container: 1280px;
  --gutter: 20px;
  --bottom-nav-h: 64px;
  --sticky-atc-h: 68px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--primary); color: var(--primary-ink); }

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.has-sticky-atc { padding-bottom: calc(var(--sticky-atc-h) + var(--bottom-nav-h)); }
@media (min-width: 900px) { body.has-sticky-atc { padding-bottom: 0; } }

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; font-family: var(--font-body); }
img, svg { max-width: 100%; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------------- TYPE ---------------- */
.display { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.02em; line-height: 1; }
.d-xl { font-family: var(--font-display); font-weight: 400; font-size: clamp(54px, 10vw, 160px); line-height: 0.92; letter-spacing: -0.03em; }
.d-lg { font-family: var(--font-display); font-weight: 400; font-size: clamp(40px, 6vw, 92px); line-height: 0.98; letter-spacing: -0.025em; }
.d-md { font-family: var(--font-display); font-weight: 400; font-size: clamp(30px, 4vw, 56px); line-height: 1.02; letter-spacing: -0.02em; }
.d-sm { font-family: var(--font-display); font-weight: 400; font-size: clamp(22px, 2.4vw, 32px); line-height: 1.15; letter-spacing: -0.015em; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}

.body-lg { font-size: 18px; line-height: 1.55; color: var(--ink-soft); }
.body { font-size: 15px; line-height: 1.6; }
.body-sm { font-size: 13px; line-height: 1.55; color: var(--ink-soft); }

em { font-style: italic; color: var(--primary); font-family: var(--font-display); }

/* ---------------- BUTTONS ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 22px;
  border-radius: var(--r);
  font-size: 15px; font-weight: 500;
  white-space: nowrap;
  transition: transform 0.12s ease, background 0.15s ease, border-color 0.15s ease;
  min-height: 48px;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: #2A1F34; }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--bg); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-accent { background: var(--accent); color: var(--accent-ink); font-weight: 600; }
.btn-wa { background: var(--wa-green); color: #fff; }
.btn-sm { height: 40px; padding: 0 14px; font-size: 13px; min-height: 40px; }
.btn-block { width: 100%; }

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  height: 40px; padding: 0 16px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: var(--card);
  font-size: 13px; font-weight: 500;
  white-space: nowrap;
  transition: border-color 0.15s ease;
}
.chip:hover, .chip.active { border-color: var(--ink); }
.chip.active { background: var(--ink); color: var(--bg); }

.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 10px;
  position: relative;
}
.icon-btn:hover { background: var(--line-soft); }

/* SVG icons */
.ico { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* ---------------- ANNOUNCE BAR (CRO 2.1) ---------------- */
.announce {
  background: var(--ink); color: var(--bg);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 500;
  height: 32px; display: flex; align-items: center; justify-content: center;
  position: relative;
}
.announce-msg { opacity: 0; transition: opacity 0.4s ease; position: absolute; }
.announce-msg.active { opacity: 1; position: relative; }
.announce-close {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  color: var(--bg); opacity: 0.7;
}

/* ---------------- HEADER ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex; align-items: center; gap: 12px;
  height: 60px;
}
.site-header .brand {
  font-family: var(--font-display); font-size: 26px; letter-spacing: -0.02em;
  white-space: nowrap;
}
.site-header .brand em { color: var(--primary); }
.site-header nav { display: flex; gap: 22px; margin-left: 28px; }
.site-header nav a { font-size: 14px; color: var(--ink-soft); }
.site-header nav a:hover, .site-header nav a.active { color: var(--ink); }
.site-header .spacer { flex: 1; }
.site-header .actions { display: flex; align-items: center; gap: 4px; }
.pincode-pill {
  display: inline-flex; align-items: center; gap: 6px;
  height: 36px; padding: 0 12px;
  background: var(--bg-alt);
  border-radius: var(--r-pill);
  font-size: 12px; font-family: var(--font-mono); font-weight: 500;
}
.cart-count {
  position: absolute; top: 6px; right: 6px;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--primary); color: var(--primary-ink);
  border-radius: 999px;
  font-size: 10px; font-weight: 600; font-family: var(--font-mono);
  display: inline-flex; align-items: center; justify-content: center;
}
@media (max-width: 900px) {
  .site-header nav, .site-header .hide-md { display: none; }
  .pincode-pill .pincode-label-full { display: none; }
}

/* ---------------- HERO ---------------- */
.hero {
  padding: 32px 0;
}
.hero-frame {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  min-height: 620px;
  background: linear-gradient(135deg, #7C3AED 0%, #4C1D95 70%);
  display: flex; flex-direction: column;
  padding: 28px;
  gap: 24px;
}
.hero-frame::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(24,18,30,0.55) 100%);
  pointer-events: none;
}
.hero-eyebrow-row {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; color: #fff;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; opacity: 0.9;
  flex-wrap: wrap; gap: 10px;
}
.hero-body {
  position: relative; z-index: 2;
  color: #fff;
  margin-top: auto;
}
.hero-body h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(48px, 9vw, 128px); line-height: 0.98; letter-spacing: -0.025em;
}
.hero-body h1 em { color: var(--accent); font-style: italic; }
.hero-sub {
  margin-top: 20px; max-width: 480px; opacity: 0.92; font-size: 17px; line-height: 1.5;
}
.hero-cta-row { display: flex; gap: 10px; margin-top: 28px; flex-wrap: wrap; }
.hero-cta-row .btn-outline { color: #fff; border-color: rgba(255,255,255,0.7); }
.hero-cta-row .btn-outline:hover { background: rgba(255,255,255,0.1); color: #fff; }
/* CRO: Hero trust row (below CTAs) */
.hero-trust {
  margin-top: 20px; display: flex; gap: 18px; flex-wrap: wrap;
  font-size: 13px; opacity: 0.9;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
@media (max-width: 600px) {
  .hero-frame { min-height: 560px; padding: 20px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn { width: 100%; justify-content: center; padding: 0 16px; }
  .hero-trust { flex-direction: column; gap: 8px; }
}

/* ---------------- GIFT FINDER ENTRY CARD (CRO 2.4) ---------------- */
.gf-entry {
  margin: 24px 0;
}
.gf-entry-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  display: flex; align-items: center; gap: 24px;
  box-shadow: var(--shadow-sm);
}
.gf-entry-card .gf-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 50%; background: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.gf-entry-card .gf-text { flex: 1; }
.gf-entry-card h3 { font-family: var(--font-display); font-size: 24px; font-weight: 400; letter-spacing: -0.01em; }
.gf-entry-card p { margin-top: 4px; color: var(--ink-soft); font-size: 14px; }
.gf-entry-card p strong { color: var(--ink); font-weight: 600; }
@media (max-width: 700px) {
  .gf-entry-card { flex-direction: column; text-align: center; padding: 24px; }
}

/* ---------------- OCCASION PILL ROW (CRO 2.5) ---------------- */
.occ-row {
  padding: 16px 0 40px;
}
.occ-scroll {
  display: flex; gap: 10px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.occ-scroll::-webkit-scrollbar { display: none; }
.occ-pill {
  flex: 0 0 auto; scroll-snap-align: start;
  display: inline-flex; align-items: center; gap: 8px;
  height: 46px; padding: 0 20px;
  border-radius: var(--r-pill);
  background: var(--card); border: 1px solid var(--line);
  font-size: 14px; font-weight: 500;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.occ-pill:hover { border-color: var(--ink); }
.occ-pill.upcoming { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.occ-pill .occ-emoji { font-size: 18px; }
.occ-pill .occ-days { font-size: 11px; opacity: 0.75; font-family: var(--font-mono); }

/* ---------------- SHOP BY PRICE (CRO 2.7) ---------------- */
.price-row {
  display: flex; gap: 12px; flex-wrap: wrap;
  padding: 16px 0 40px;
}
.price-chip {
  flex: 1; min-width: 140px;
  height: 64px; padding: 0 20px;
  border-radius: var(--r);
  background: var(--card); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  transition: border-color 0.15s ease;
}
.price-chip:hover { border-color: var(--ink); }
.price-chip .pc-label { font-family: var(--font-display); font-size: 22px; }
.price-chip .pc-hint { font-size: 11px; font-family: var(--font-mono); letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; }

/* ---------------- BESTSELLERS / PRODUCT GRID ---------------- */
.section { padding: 40px 0; }
.section-head {
  display: flex; justify-content: space-between; align-items: end; gap: 24px;
  margin-bottom: 28px; flex-wrap: wrap;
}
.section-head h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(30px, 4vw, 48px); line-height: 1.02; letter-spacing: -0.02em;
  margin-top: 10px;
}

.product-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
/* Mobile: 2-col grid (Flipkart/Amazon India pattern) for better browse CRO */
@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .product-card .meta { padding: 10px 10px 12px; }
  .product-card .meta h4 { font-size: 13px; line-height: 1.3; }
  .product-card .meta .rating { font-size: 11px; }
  .product-card .meta .price { font-size: 16px; }
  .product-card .meta .mrp { font-size: 11px; }
  .product-card .meta .save { font-size: 11px; }
}
.product-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  position: relative;
}
.product-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.product-card .thumb {
  aspect-ratio: 4/5; position: relative;
  background: linear-gradient(135deg, #F3E8FF, #EDE9FE);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 11px; color: var(--muted);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.product-card .badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px; border-radius: var(--r-pill);
  background: var(--accent); color: var(--accent-ink);
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.product-card .badge.hot { background: var(--ink); color: var(--bg); }
.product-card .meta { padding: 14px 16px 16px; }
.product-card .meta h4 { font-size: 15px; font-weight: 500; }
.product-card .meta .rating { display: flex; align-items: center; gap: 4px; margin-top: 4px; font-size: 12px; color: var(--ink-soft); }
.product-card .meta .star { color: var(--accent); }
.product-card .meta .price-row { display: flex; align-items: baseline; gap: 8px; margin-top: 8px; }
.product-card .meta .price { font-family: var(--font-display); font-size: 20px; font-weight: 500; }
.product-card .meta .mrp { text-decoration: line-through; color: var(--muted); font-size: 13px; }
.product-card .meta .save { color: var(--success); font-size: 12px; font-weight: 600; margin-top: 2px; }
.product-card .quick-add {
  position: absolute; right: 12px; bottom: 12px;
  background: var(--ink); color: var(--bg);
  width: 36px; height: 36px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(6px);
  transition: all 0.2s ease;
}
.product-card:hover .quick-add { opacity: 1; transform: translateY(0); }

/* ---------------- TRUST BAR (CRO 2.10) ---------------- */
.trust-bar {
  margin: 40px 0;
  background: var(--bg-alt);
  border-radius: var(--r-lg);
  padding: 24px 20px;
}
.trust-bar-scroll {
  display: flex; gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.trust-bar-scroll::-webkit-scrollbar { display: none; }
.trust-item {
  flex: 1 0 auto;
  min-width: 180px;
  display: flex; align-items: center; gap: 12px;
}
.trust-item .ti-icon { font-size: 26px; line-height: 1; }
.trust-item .ti-text { font-size: 13px; line-height: 1.35; }
.trust-item .ti-text strong { display: block; font-size: 14px; }
@media (min-width: 900px) {
  .trust-bar-scroll { justify-content: space-between; }
}

/* ---------------- EMOTIONAL BRAND BLOCK (CRO 2.9) ---------------- */
.brand-block {
  background: var(--ink); color: var(--bg);
  border-radius: var(--r-lg);
  padding: 72px 40px;
  position: relative; overflow: hidden;
  text-align: center;
}
.brand-block::before {
  content: ''; position: absolute; top: -80px; right: -40px;
  width: 320px; height: 320px; border-radius: 50%;
  background: var(--primary); opacity: 0.3; filter: blur(48px);
}
.brand-block h2 {
  position: relative;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(28px, 4vw, 48px); line-height: 1.15; letter-spacing: -0.02em;
  max-width: 820px; margin: 0 auto;
}
.brand-block h2 em { color: var(--accent); font-style: italic; }
.brand-block .btn { margin-top: 32px; }

/* ---------------- UGC GRID (CRO 2.11) ---------------- */
.ugc-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px;
}
.ugc-tile {
  aspect-ratio: 1; position: relative;
  background: linear-gradient(135deg, #F3E8FF, #EDE9FE);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 10px; color: var(--muted);
}
.ugc-tile .handle {
  position: absolute; bottom: 8px; left: 8px;
  color: #fff; font-size: 11px; font-family: var(--font-mono);
  background: rgba(0,0,0,0.4); padding: 2px 6px; border-radius: 4px;
}
@media (max-width: 700px) { .ugc-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------------- REVIEWS WIDGET (CRO 2.14) ---------------- */
.review-carousel {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.review-layout {
  display: grid; gap: 32px; align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
}
@media (max-width: 900px) { .review-layout { grid-template-columns: minmax(0, 1fr); } }
.review-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r); padding: 24px;
}
.review-card .stars { color: var(--accent); font-size: 16px; letter-spacing: 2px; }
.review-card .verified {
  display: inline-block; margin-left: 6px; margin-top: 6px;
  font-size: 11px; font-family: var(--font-mono); color: var(--success);
}
.review-card .quote { margin-top: 14px; font-size: 15px; line-height: 1.55; font-style: italic; color: var(--ink); }
.review-card .attrib { margin-top: 16px; display: flex; gap: 12px; align-items: center; }
.review-card .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary); color: var(--primary-ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 500; font-size: 14px;
}
.review-card .attrib .name { font-size: 14px; font-weight: 500; }
.review-card .attrib .meta-sub { font-size: 12px; color: var(--muted); font-family: var(--font-mono); }

/* ---------------- WHATSAPP CAPTURE (CRO 2.15) ---------------- */
.wa-capture {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 48px 40px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px;
  align-items: center;
}
.wa-capture h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(28px, 3vw, 40px); line-height: 1.1; letter-spacing: -0.02em;
}
.wa-capture p { margin-top: 10px; color: var(--ink-soft); font-size: 15px; }
.wa-form { display: flex; gap: 8px; }
.wa-form input {
  flex: 1;
  height: 52px; padding: 0 18px;
  border-radius: var(--r);
  border: 1.5px solid var(--line);
  background: var(--card);
  font-size: 15px;
}
.wa-form input:focus { outline: none; border-color: var(--ink); }
.wa-email-link {
  display: block; margin-top: 10px;
  font-size: 12px; color: var(--muted); text-decoration: underline;
}
@media (max-width: 900px) { .wa-capture { grid-template-columns: 1fr; padding: 32px 24px; } }

/* ---------------- STICKY WHATSAPP BUTTON (CRO 2.17) ---------------- */
.wa-fab {
  position: fixed; right: 16px; bottom: calc(16px + var(--bottom-nav-h));
  z-index: 30;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--wa-green); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(37,211,102,0.45);
}
.wa-fab:hover { filter: brightness(1.05); }
@media (min-width: 900px) {
  .wa-fab { bottom: 20px; }
}

/* ---------------- MOBILE BOTTOM NAV (CRO 2.18) ---------------- */
.bottom-nav {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 35;
  height: var(--bottom-nav-h);
  background: var(--bg);
  border-top: 1px solid var(--line);
  display: flex; align-items: stretch; justify-content: space-around;
  padding: 0 8px;
}
.bottom-nav a {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; padding-top: 4px;
  font-size: 10px; font-family: var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
}
.bottom-nav a.active { color: var(--ink); font-weight: 600; }
.bottom-nav a .ico { width: 22px; height: 22px; }
.bottom-nav .badge-dot {
  position: absolute; top: 8px; right: calc(50% - 22px);
  min-width: 16px; height: 16px; padding: 0 4px;
  background: var(--primary); color: var(--primary-ink);
  border-radius: 999px;
  font-size: 9px; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
}
@media (min-width: 900px) {
  .bottom-nav { display: none; }
}
body { padding-bottom: var(--bottom-nav-h); }
@media (min-width: 900px) { body { padding-bottom: 0; } }

/* ---------------- PDP: URGENCY + STOCK STRIP (CRO urgency triggers) ---------------- */
.urgency-strip {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 18px;
}
.urg-card {
  flex: 1 1 200px; min-width: 0;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-radius: var(--r);
  font-size: 13px; line-height: 1.3;
}
@media (max-width: 700px) {
  .urgency-strip { flex-direction: column; gap: 8px; }
  .urg-card { flex: 1 1 auto; }
}
.urg-card.countdown {
  background: #FFF4E6; border: 1px solid #F9C680;
  color: #7A4A0A;
}
.urg-card.stock {
  background: #FFECEA; border: 1px solid #F5B0A6;
  color: var(--danger);
}
.urg-card.gifted {
  background: var(--success-soft); border: 1px solid #B8E0C4;
  color: var(--success);
}
.urg-card .urg-ico { font-size: 18px; flex-shrink: 0; line-height: 1; }
.urg-card .urg-text { flex: 1; min-width: 0; }
.urg-card .urg-text > strong { display: block; font-size: 14px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.urg-card .urg-text > span { display: block; font-size: 11px; opacity: 0.85; font-family: var(--font-mono); letter-spacing: 0.04em; text-transform: uppercase; margin-top: 2px; }
.urg-card .urg-count { display: inline; font-family: var(--font-mono); font-weight: 600; letter-spacing: 0.02em; }

/* Stock progress bar inside the stock card */
.stock-bar-track {
  width: 100%; height: 5px; border-radius: 999px;
  background: rgba(194, 52, 30, 0.15);
  overflow: hidden; margin-top: 6px;
}
.stock-bar-fill {
  height: 100%; background: var(--danger);
  border-radius: 999px;
  transition: width 0.4s ease;
}

/* ---------------- PDP: PINCODE CHECK (CRO 4.7) ---------------- */
.pincode-box {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 14px 16px;
  margin: 18px 0;
  min-width: 0;
  overflow: hidden;
}
.pincode-box .pc-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  flex-wrap: wrap;
  min-width: 0;
}
.pincode-box .pc-row > input { min-width: 0; }
.pincode-box .pc-row.status { margin-top: 8px; font-weight: 500; color: var(--success); }
.pincode-box .pc-row.status.error { color: var(--danger); }
.pincode-box input {
  flex: 1; height: 40px; padding: 0 12px;
  border: 1px solid var(--line); border-radius: 8px;
  background: var(--card); font-size: 14px;
  font-family: var(--font-mono); letter-spacing: 0.05em;
}
.pincode-box input:focus { outline: none; border-color: var(--ink); }
.pincode-box .pc-btn {
  height: 40px; padding: 0 14px;
  background: var(--ink); color: var(--bg); border-radius: 8px;
  font-size: 13px; font-weight: 500;
}
.pincode-box .cutoff { margin-top: 6px; font-size: 13px; color: var(--danger); font-weight: 500; }
.pincode-box .pin-icons { margin-top: 10px; display: flex; gap: 14px; flex-wrap: wrap; font-size: 12px; color: var(--ink-soft); }
.pincode-box .pin-icons span { display: inline-flex; align-items: center; gap: 4px; }

/* ---------------- PDP: PRICE PSYCHOLOGY (CRO 4.4) ---------------- */
.pdp-price { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.pdp-price .price { font-family: var(--font-display); font-size: 40px; font-weight: 500; letter-spacing: -0.01em; }
.pdp-price .mrp { text-decoration: line-through; color: var(--muted); font-size: 18px; }
.pdp-price .off-badge {
  background: var(--ink); color: var(--bg);
  padding: 3px 8px; border-radius: var(--r-sm);
  font-size: 11px; font-family: var(--font-mono); font-weight: 600; letter-spacing: 0.08em;
}
.pdp-save { margin-top: 6px; color: var(--success); font-size: 14px; font-weight: 600; }
.pdp-tax { margin-top: 2px; font-size: 12px; color: var(--muted); }

.pdp-offers {
  margin-top: 14px; border: 1px dashed var(--line);
  border-radius: var(--r); padding: 14px 16px;
  background: var(--card);
}
.pdp-offers-head {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; font-weight: 600;
  cursor: pointer;
}
.pdp-offers-body { margin-top: 10px; display: none; font-size: 13px; color: var(--ink-soft); line-height: 1.8; }
.pdp-offers.open .pdp-offers-body { display: block; }
.pdp-offers.open .pdp-offers-caret { transform: rotate(180deg); }
.pdp-offers-caret { transition: transform 0.2s ease; }

/* ---------------- PDP: TRUST STRIP (CRO 4.9) ---------------- */
.trust-strip {
  display: flex; gap: 10px;
  overflow-x: auto; scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  padding-bottom: 4px;
}
.trust-strip::-webkit-scrollbar { display: none; }
.trust-strip .ts-card {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 13px; white-space: nowrap;
}
.trust-strip .ts-card .ts-ico { font-size: 15px; }

/* ---------------- PDP: STICKY MOBILE ATC (CRO 4.11) ---------------- */
.sticky-atc {
  position: fixed; left: 0; right: 0; bottom: var(--bottom-nav-h);
  z-index: 36;
  background: var(--card);
  border-top: 1px solid var(--line);
  padding: 10px 16px;
  height: var(--sticky-atc-h);
  display: none;
  align-items: center; gap: 12px;
  box-shadow: 0 -4px 16px rgba(24,18,30,0.08);
}
.sticky-atc.visible { display: flex; }
.sticky-atc .thumb {
  width: 44px; height: 44px; border-radius: 8px;
  background: linear-gradient(135deg, #F3E8FF, #EDE9FE);
  flex-shrink: 0;
}
.sticky-atc .info { flex: 1; min-width: 0; }
.sticky-atc .info .name { font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-atc .info .price-row { display: flex; gap: 6px; align-items: baseline; font-size: 13px; }
.sticky-atc .info .mrp { text-decoration: line-through; color: var(--muted); font-size: 11px; }
.sticky-atc .info .price { font-family: var(--font-display); font-size: 18px; font-weight: 500; }
.sticky-atc .atc-btns { display: flex; gap: 6px; }
.sticky-atc .atc-btns .btn { height: 44px; padding: 0 14px; font-size: 13px; }
@media (min-width: 900px) { .sticky-atc { display: none !important; } }

/* ---------------- PDP LAYOUT ---------------- */
.pdp-grid {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 48px;
  padding: 24px 0 40px;
}
.pdp-grid > * { min-width: 0; }
@media (max-width: 900px) { .pdp-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; } }

.pdp-gallery { position: sticky; top: 80px; align-self: start; }
.pdp-gallery .main-img {
  aspect-ratio: 1; border-radius: var(--r);
  background: linear-gradient(135deg, #F3E8FF, #EDE9FE);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 12px; color: var(--muted);
}
.pdp-gallery .main-img .badges {
  position: absolute; top: 12px; left: 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.pdp-gallery .main-img .badges span {
  background: var(--accent); color: var(--accent-ink);
  padding: 3px 10px; border-radius: var(--r-pill);
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.pdp-gallery .thumbs { display: flex; gap: 8px; margin-top: 10px; overflow-x: auto; scrollbar-width: none; }
.pdp-gallery .thumbs::-webkit-scrollbar { display: none; }
.pdp-gallery .thumbs .thumb {
  flex: 0 0 68px; height: 68px; border-radius: 8px;
  background: linear-gradient(135deg, #F3E8FF, #EDE9FE);
  border: 2px solid transparent; cursor: pointer;
}
.pdp-gallery .thumbs .thumb.active { border-color: var(--ink); }
@media (max-width: 900px) { .pdp-gallery { position: static; } }

.pdp-info h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(28px, 3.6vw, 44px); line-height: 1.05; letter-spacing: -0.02em;
}
.pdp-rating {
  display: flex; align-items: center; gap: 10px; margin-top: 10px;
  font-size: 14px; color: var(--ink-soft);
}
.pdp-rating .stars { color: var(--accent); font-size: 16px; letter-spacing: 2px; }
.pdp-rating .gifted { font-family: var(--font-mono); font-size: 12px; color: var(--muted); }

.variant-row { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.variant-chip {
  min-width: 56px; height: 44px; padding: 0 14px;
  border: 1.5px solid var(--line); border-radius: 10px;
  background: var(--card); font-size: 13px; font-weight: 500;
  cursor: pointer;
}
.variant-chip.active { border-color: var(--ink); background: var(--ink); color: var(--bg); }
.variant-chip.oos { border-style: dashed; color: var(--muted); position: relative; }
.variant-chip.oos::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom right, transparent calc(50% - 1px), var(--muted) 50%, transparent calc(50% + 1px));
  pointer-events: none;
}

.personalization {
  margin-top: 20px; border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden;
}
.personalization-step {
  padding: 16px; border-bottom: 1px solid var(--line);
}
.personalization-step:last-child { border-bottom: 0; }
.personalization-step label { font-size: 13px; font-weight: 600; display: block; margin-bottom: 8px; font-family: var(--font-mono); letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); }
.personalization-step input,
.personalization-step textarea {
  width: 100%; padding: 10px 12px; border-radius: 8px;
  border: 1px solid var(--line); background: var(--card);
  font-size: 14px;
}
.personalization-step input:focus,
.personalization-step textarea:focus { outline: none; border-color: var(--ink); }
.personalization-step .count { font-size: 11px; font-family: var(--font-mono); color: var(--muted); float: right; }
.gift-toggle {
  margin-top: 20px; padding: 14px 16px;
  background: var(--bg-alt); border-radius: var(--r);
  font-size: 14px; display: flex; align-items: center; gap: 10px;
  cursor: pointer;
}
.gift-toggle input { width: 18px; height: 18px; }

.atc-row { display: flex; gap: 10px; margin-top: 22px; }
.atc-row .btn { flex: 1; height: 54px; font-size: 15px; }

.cross-sell {
  margin-top: 28px; padding: 18px;
  background: var(--bg-alt); border-radius: var(--r);
}
.cross-sell h4 { font-size: 14px; font-weight: 600; margin-bottom: 12px; }
.cross-sell-items { display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; }
.cross-sell-items::-webkit-scrollbar { display: none; }
.cross-sell-item {
  flex: 0 0 180px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 10px; padding: 10px;
  display: flex; align-items: center; gap: 10px;
}
.cross-sell-item .mini-thumb { width: 44px; height: 44px; border-radius: 8px; background: linear-gradient(135deg, #FEF3C7, #FDE68A); flex-shrink: 0; }
.cross-sell-item .ci-info { flex: 1; min-width: 0; font-size: 12px; }
.cross-sell-item .ci-info .n { font-weight: 500; }
.cross-sell-item .ci-info .p { font-family: var(--font-display); }
.cross-sell-item .ci-add {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--ink); color: var(--bg);
  display: inline-flex; align-items: center; justify-content: center;
}

/* ---------------- CART ---------------- */
.cart-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px;
  padding: 24px 0 40px;
}
@media (max-width: 900px) { .cart-grid { grid-template-columns: 1fr; gap: 24px; } }

.cart-items { display: flex; flex-direction: column; gap: 14px; }
.cart-item {
  display: grid; grid-template-columns: 84px minmax(0, 1fr) auto; gap: 12px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r); padding: 14px;
  align-items: center;
}
@media (max-width: 600px) {
  .cart-item {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
    align-items: start;
  }
  .cart-item .ci-thumb { width: 72px; height: 72px; }
  .cart-item .ci-body h4 { font-size: 14px; }
  .cart-item .ci-body .price { font-size: 16px; }
  .cart-item .ci-body .price-row { margin-top: 6px; }
  .cart-item .qty-stepper {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 4px;
  }
}
.cart-item .ci-thumb { aspect-ratio: 1; border-radius: 8px; background: linear-gradient(135deg, #F3E8FF, #EDE9FE); }
.cart-item .ci-body h4 { font-size: 15px; font-weight: 500; }
.cart-item .ci-body .variant { font-size: 12px; color: var(--muted); margin-top: 2px; font-family: var(--font-mono); }
.cart-item .ci-body .price-row { margin-top: 8px; display: flex; gap: 8px; align-items: baseline; }
.cart-item .ci-body .price { font-family: var(--font-display); font-size: 18px; }
.cart-item .ci-body .mrp { text-decoration: line-through; color: var(--muted); font-size: 12px; }
.qty-stepper { display: flex; align-items: center; gap: 2px; border: 1px solid var(--line); border-radius: var(--r-pill); padding: 2px; }
.qty-stepper button { width: 30px; height: 30px; border-radius: 50%; font-size: 16px; }
.qty-stepper button:hover { background: var(--line-soft); }
.qty-stepper .qty { min-width: 28px; text-align: center; font-size: 14px; font-weight: 500; }

/* Free-shipping progress bar (CRO Cart) */
.free-ship-bar {
  background: var(--success-soft); border-radius: var(--r);
  padding: 14px 16px;
  margin-bottom: 16px;
}
.free-ship-bar .fsb-msg { font-size: 14px; font-weight: 500; }
.free-ship-bar .fsb-msg strong { color: var(--success); }
.free-ship-bar .fsb-track {
  margin-top: 10px;
  height: 8px; border-radius: 999px; background: rgba(19,127,60,0.18);
  overflow: hidden;
}
.free-ship-bar .fsb-fill { height: 100%; background: var(--success); border-radius: 999px; transition: width 0.35s ease; }

.cart-summary {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r); padding: 24px;
  position: sticky; top: 80px; align-self: start;
}
@media (max-width: 900px) { .cart-summary { position: static; } }
.cart-summary h3 { font-family: var(--font-display); font-size: 24px; margin-bottom: 16px; }
.cart-summary .line { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; }
.cart-summary .line.total {
  border-top: 1px solid var(--line); padding-top: 14px; margin-top: 10px;
  font-size: 18px; font-weight: 600;
}
.cart-summary .line.total .price { font-family: var(--font-display); font-size: 24px; }

.pay-methods { margin-top: 10px; display: flex; gap: 6px; flex-wrap: wrap; font-size: 11px; color: var(--muted); font-family: var(--font-mono); }
.pay-methods span { background: var(--bg-alt); padding: 4px 8px; border-radius: 6px; }

.checkout-fields { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.checkout-fields input {
  height: 48px; padding: 0 14px;
  border: 1px solid var(--line); border-radius: 10px;
  background: var(--bg); font-size: 14px;
}
.checkout-fields input:focus { outline: none; border-color: var(--ink); }
.guest-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; }

/* ---------------- FOOTER ---------------- */
.site-footer {
  background: var(--ink); color: var(--bg);
  padding: 72px 0 32px;
  margin-top: 72px;
}
.site-footer .container { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; }
.site-footer h5 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; opacity: 0.7; font-weight: 500; }
.site-footer ul { list-style: none; }
.site-footer ul li a { display: block; padding: 4px 0; font-size: 14px; opacity: 0.85; }
.site-footer ul li a:hover { opacity: 1; }
.site-footer .big-brand { font-family: var(--font-display); font-size: 36px; letter-spacing: -0.02em; }
.site-footer .big-brand em { color: var(--accent); }
.site-footer .blurb { opacity: 0.7; font-size: 14px; max-width: 300px; line-height: 1.55; margin-top: 12px; }
.site-footer .pay-strip { margin-top: 20px; display: flex; gap: 6px; flex-wrap: wrap; }
.site-footer .pay-strip span { background: rgba(255,255,255,0.08); padding: 5px 9px; border-radius: 5px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; }
.site-footer .fs-bottom { grid-column: 1 / -1; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; font-size: 12px; font-family: var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.6; margin-top: 36px; }
@media (max-width: 900px) { .site-footer .container { grid-template-columns: 1fr 1fr; } .site-footer .fs-bottom { flex-direction: column; gap: 12px; } }

/* ---------------- TOAST ---------------- */
.toast {
  position: fixed; bottom: calc(16px + var(--bottom-nav-h) + 60px); left: 50%;
  transform: translate(-50%, 20px);
  background: var(--ink); color: var(--bg);
  padding: 12px 20px; border-radius: var(--r);
  font-size: 14px; font-weight: 500;
  opacity: 0; pointer-events: none;
  transition: all 0.25s ease;
  z-index: 50;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }

/* ---------------- UTILITIES ---------------- */
.flex { display: flex; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.wrap { flex-wrap: wrap; }
.hide-mobile { }
@media (max-width: 700px) { .hide-mobile { display: none; } }
.mobile-only { display: none; }
@media (max-width: 700px) { .mobile-only { display: block; } }
.mt-1 { margin-top: 4px; } .mt-2 { margin-top: 8px; } .mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; } .mt-5 { margin-top: 24px; } .mt-6 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; } .mb-6 { margin-bottom: 32px; }
.text-center { text-align: center; }

/* ========================================================================
   PAGE-SPECIFIC STYLES (quiz / reminders / shop / occasions / about / faq / login)
   ======================================================================== */

/* QUIZ */
.quiz-shell {
  max-width: 680px; margin: 40px auto; padding: 0 var(--gutter);
}
.quiz-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 32px;
  min-height: 460px; display: flex; flex-direction: column;
}
.quiz-progress {
  display: flex; gap: 6px; margin-bottom: 20px;
}
.quiz-progress span {
  flex: 1; height: 4px; border-radius: 2px; background: var(--line);
}
.quiz-progress span.done { background: var(--primary); }
.quiz-step-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.quiz-card h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(28px, 4vw, 40px); line-height: 1.05; letter-spacing: -0.02em;
  margin-top: 8px;
}
.quiz-options {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
  margin-top: auto; padding-top: 24px;
}
.quiz-options button {
  padding: 16px 14px; border-radius: var(--r);
  border: 1.5px solid var(--line); background: var(--card);
  font-size: 14px; font-weight: 500; text-align: left;
  transition: border-color 0.15s ease, background 0.15s ease;
  display: flex; align-items: center; gap: 10px;
}
.quiz-options button:hover { border-color: var(--ink); }
.quiz-options button .q-emoji { font-size: 22px; }
@media (max-width: 500px) { .quiz-options { grid-template-columns: 1fr; } }

.quiz-result {
  margin-top: 40px;
}
.quiz-result-head {
  text-align: center; margin-bottom: 28px;
}
.quiz-result-bundle {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r); padding: 20px; margin-bottom: 24px;
}
.quiz-result-cta {
  display: flex; gap: 10px; padding: 20px;
  background: var(--ink); color: var(--bg); border-radius: var(--r-lg);
  align-items: center; flex-wrap: wrap;
}
.quiz-result-cta .qrc-text { flex: 1; min-width: 200px; }
.quiz-result-cta h3 { font-family: var(--font-display); font-size: 24px; }

/* SHOP FILTERS */
.shop-layout {
  display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 32px;
  padding: 24px 0 60px;
}
@media (max-width: 900px) {
  .shop-layout { grid-template-columns: 1fr; gap: 20px; }
  .shop-sidebar { position: fixed; left: 0; top: 0; width: 85%; max-width: 320px; height: 100vh; background: var(--bg); z-index: 50; padding: 20px; box-shadow: var(--shadow-lg); transform: translateX(-100%); transition: transform 0.25s ease; overflow-y: auto; }
  .shop-sidebar.open { transform: translateX(0); }
  .shop-filter-toggle { display: inline-flex !important; }
}
.shop-sidebar h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; margin: 20px 0 10px; color: var(--ink-soft); }
.shop-sidebar h4:first-child { margin-top: 0; }
.shop-filter-group { display: flex; flex-direction: column; gap: 6px; }
.shop-filter-group label {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; cursor: pointer; padding: 6px 0;
}
.shop-sort-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px; gap: 12px; flex-wrap: wrap;
}
.shop-sort-row select {
  height: 40px; padding: 0 12px; border-radius: 8px;
  border: 1px solid var(--line); background: var(--card); font-size: 14px;
}
.shop-filter-toggle {
  display: none; align-items: center; gap: 6px;
  height: 40px; padding: 0 14px; border-radius: 8px;
  border: 1px solid var(--line); background: var(--card); font-size: 14px;
}
.shop-backdrop {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 49;
}
.shop-backdrop.open { display: block; }

/* OCCASIONS */
.occ-hero {
  background: linear-gradient(135deg, #FBBF24 0%, #FDE047 100%);
  border-radius: var(--r-lg); padding: 48px 32px; text-align: center;
  margin: 24px 0;
}
.occ-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.occ-card {
  aspect-ratio: 3/4; border-radius: var(--r); overflow: hidden;
  position: relative; display: block;
  background: linear-gradient(135deg, var(--tint-start, #E0E7FF), var(--tint-end, #C7D2FE));
}
.occ-card[data-tint="rose"] { --tint-start: #FCE7F3; --tint-end: #FBCFE8; }
.occ-card[data-tint="peach"] { --tint-start: #FFEDD5; --tint-end: #FED7AA; }
.occ-card[data-tint="sage"] { --tint-start: #D1FAE5; --tint-end: #A7F3D0; }
.occ-card[data-tint="butter"] { --tint-start: #FEF3C7; --tint-end: #FDE68A; }
.occ-card[data-tint="plum"] { --tint-start: #EDE9FE; --tint-end: #DDD6FE; }
.occ-card[data-tint="sky"] { --tint-start: #DBEAFE; --tint-end: #BFDBFE; }
.occ-card[data-tint="mint"] { --tint-start: #CCFBF1; --tint-end: #99F6E4; }
.occ-card[data-tint="sand"] { --tint-start: #F5F5DC; --tint-end: #E8E0CF; }
.occ-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(24,18,30,0.6) 100%); }
.occ-card .occ-label {
  position: absolute; left: 20px; right: 20px; bottom: 20px; color: #fff; z-index: 1;
}
.occ-card .occ-label h3 { font-family: var(--font-display); font-size: 28px; line-height: 1; }
.occ-card .occ-label p { font-size: 13px; opacity: 0.9; margin-top: 4px; }
.occ-card:hover::after { background: linear-gradient(180deg, transparent 30%, rgba(24,18,30,0.75) 100%); }

/* ABOUT */
.about-hero {
  padding: 60px 0 40px; text-align: center;
}
.about-hero h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(40px, 7vw, 96px); line-height: 0.98; letter-spacing: -0.03em;
  max-width: 900px; margin: 0 auto;
}
.about-hero p { max-width: 620px; margin: 24px auto 0; color: var(--ink-soft); font-size: 18px; line-height: 1.55; }

.about-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  padding: 40px 0;
}
.about-stats .stat {
  text-align: center; padding: 24px;
  background: var(--bg-alt); border-radius: var(--r);
}
.about-stats .stat .big { font-family: var(--font-display); font-size: 48px; font-weight: 400; letter-spacing: -0.02em; color: var(--primary); }
.about-stats .stat .label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-top: 6px; }
@media (max-width: 700px) { .about-stats { grid-template-columns: repeat(2, 1fr); } }

.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  padding: 40px 0;
}
.values-grid .value {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 28px;
}
.values-grid .value .v-icon { font-size: 36px; margin-bottom: 14px; }
.values-grid .value h3 { font-family: var(--font-display); font-size: 22px; }
.values-grid .value p { margin-top: 8px; color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr; } }

/* JOURNAL */
.journal-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.journal-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden;
  transition: transform 0.2s ease;
  cursor: pointer;
}
.journal-card:hover { transform: translateY(-2px); }
.journal-card .j-thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #FCE7F3, #FBCFE8);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 11px; color: var(--muted);
}
.journal-card .j-body { padding: 20px; }
.journal-card .j-meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.journal-card .j-title { font-family: var(--font-display); font-size: 22px; line-height: 1.15; margin-top: 10px; }
.journal-card .j-excerpt { margin-top: 10px; font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
.journal-featured {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  margin-bottom: 32px;
}
.journal-featured .j-thumb { aspect-ratio: auto; min-height: 320px; }
.journal-featured .j-body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.journal-featured .j-title { font-size: clamp(28px, 3.5vw, 44px); }
@media (max-width: 900px) { .journal-featured { grid-template-columns: 1fr; } .journal-featured .j-body { padding: 24px; } }

/* FAQ */
.faq-head { text-align: center; padding: 40px 0 20px; }
.faq-search {
  max-width: 560px; margin: 0 auto;
  display: flex; gap: 8px;
}
.faq-search input {
  flex: 1; height: 52px; padding: 0 20px;
  border-radius: var(--r); border: 1.5px solid var(--line);
  background: var(--card); font-size: 15px;
}
.faq-search input:focus { outline: none; border-color: var(--ink); }
.faq-categories {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  margin: 24px 0;
}
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden;
}
.faq-item summary {
  padding: 18px 20px; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 500; font-size: 15px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 22px; color: var(--muted); }
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-body {
  padding: 0 20px 18px; color: var(--ink-soft); font-size: 14px; line-height: 1.6;
}

/* CONTACT */
.contact-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px;
  padding: 40px 0 60px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 32px;
}
.contact-field { margin-bottom: 14px; }
.contact-field label { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 6px; }
.contact-field input,
.contact-field textarea {
  width: 100%; padding: 12px 14px; border-radius: 8px;
  border: 1px solid var(--line); background: var(--bg); font-size: 14px;
  font-family: var(--font-body);
}
.contact-field input:focus,
.contact-field textarea:focus { outline: none; border-color: var(--ink); }
.contact-info-card {
  background: var(--ink); color: var(--bg);
  border-radius: var(--r-lg); padding: 32px;
}
.contact-info-card h3 { font-family: var(--font-display); font-size: 28px; }
.contact-info-card .info-row { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.contact-info-card .info-row:last-child { border-bottom: 0; }
.contact-info-card .info-row .label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.6; }
.contact-info-card .info-row .value { font-size: 15px; margin-top: 4px; }

/* LOGIN */
.login-shell {
  max-width: 460px; margin: 40px auto; padding: 0 var(--gutter);
}
.login-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 32px;
}
.login-tabs {
  display: flex; border-bottom: 1px solid var(--line);
  margin: -32px -32px 24px; padding: 0 32px;
}
.login-tabs button {
  flex: 1; padding: 18px 0;
  font-size: 14px; font-weight: 500; font-family: var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent;
}
.login-tabs button.active { color: var(--ink); border-bottom-color: var(--ink); }
.login-field { margin-bottom: 14px; }
.login-field label { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 6px; }
.login-field input {
  width: 100%; padding: 12px 14px; border-radius: 8px;
  border: 1px solid var(--line); background: var(--bg); font-size: 14px;
}
.login-field input:focus { outline: none; border-color: var(--ink); }
.login-divider {
  display: flex; align-items: center; gap: 12px; margin: 24px 0;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
}
.login-divider::before,
.login-divider::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.social-row { display: flex; gap: 8px; }
.social-row button {
  flex: 1; height: 48px; border-radius: 10px;
  border: 1px solid var(--line); background: var(--card);
  font-size: 14px; font-weight: 500; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.social-row button:hover { border-color: var(--ink); }

/* REMINDERS */
.rem-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r); padding: 20px;
  display: grid; grid-template-columns: 44px minmax(0,1fr) auto; gap: 14px;
  align-items: center;
}
.rem-card .rem-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-alt); display: inline-flex; align-items: center; justify-content: center; font-size: 22px;
}
.rem-card .rem-body .name { font-weight: 600; font-size: 15px; }
.rem-card .rem-body .sub { font-size: 12px; color: var(--muted); font-family: var(--font-mono); margin-top: 2px; }
.rem-card .rem-countdown { font-family: var(--font-display); font-size: 28px; color: var(--primary); }
.rem-empty {
  padding: 48px 24px; text-align: center;
  background: var(--bg-alt); border-radius: var(--r);
}

/* ========================================================================
   A+ CONTENT (rich PDP modules below description)
   ======================================================================== */
.aplus {
  padding: 48px 0 24px;
  border-top: 1px solid var(--line);
  margin-top: 32px;
}
.aplus-eyebrow {
  text-align: center;
  margin-bottom: 8px;
}
.aplus-head {
  text-align: center;
  margin-bottom: 32px;
}
.aplus-head h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(28px, 4vw, 44px); line-height: 1.02; letter-spacing: -0.02em;
}
.aplus-head h2 em { color: var(--primary); font-style: italic; }
.aplus-head p { margin-top: 10px; color: var(--ink-soft); font-size: 15px; max-width: 540px; margin-left: auto; margin-right: auto; }

/* A+ module 1 — Lifestyle banner */
.aplus-banner {
  position: relative;
  border-radius: var(--r-lg); overflow: hidden;
  min-height: 360px;
  margin-bottom: 32px;
}
.aplus-banner img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.aplus-banner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(24,18,30,0.15) 0%, rgba(24,18,30,0.7) 100%);
}
.aplus-banner-body {
  position: relative; z-index: 1;
  padding: 72px 40px;
  color: #fff;
  max-width: 620px;
}
.aplus-banner-body h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(28px, 4.5vw, 52px); line-height: 1.05; letter-spacing: -0.02em;
}
.aplus-banner-body h3 em { color: var(--accent); font-style: italic; }
.aplus-banner-body p { margin-top: 14px; font-size: 16px; line-height: 1.5; opacity: 0.92; }
@media (max-width: 700px) {
  .aplus-banner { min-height: 300px; }
  .aplus-banner-body { padding: 40px 22px; }
}

/* A+ module 2 — Feature grid (4 tiles, icon+title+copy) */
.aplus-features {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-bottom: 40px;
}
.aplus-feature {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r); padding: 24px;
}
.aplus-feature .aplus-ico { font-size: 36px; margin-bottom: 14px; line-height: 1; }
.aplus-feature h4 {
  font-family: var(--font-display); font-weight: 400; font-size: 22px; letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.aplus-feature p { font-size: 14px; line-height: 1.5; color: var(--ink-soft); }
@media (max-width: 900px) {
  .aplus-features { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .aplus-feature { padding: 20px; }
  .aplus-feature .aplus-ico { font-size: 28px; margin-bottom: 10px; }
  .aplus-feature h4 { font-size: 17px; }
  .aplus-feature p { font-size: 13px; }
}

/* A+ module 3 — Comparison (this vs generic) */
.aplus-compare {
  background: var(--bg-alt);
  border-radius: var(--r-lg);
  padding: 40px;
  margin-bottom: 40px;
}
.aplus-compare-head {
  text-align: center;
  margin-bottom: 24px;
}
.aplus-compare-head h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(24px, 3vw, 36px); letter-spacing: -0.02em;
}
.aplus-compare-table {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  background: var(--card); border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--line);
}
.aplus-compare-table > div {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  font-size: 14px;
}
.aplus-compare-table > div:nth-child(3n) { border-right: 0; }
.aplus-compare-table > div:nth-last-child(-n+3) { border-bottom: 0; }
.aplus-compare-table .ac-head {
  background: var(--ink); color: var(--bg);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 500;
  text-align: center;
}
.aplus-compare-table .ac-feat { background: var(--bg-alt); font-weight: 600; }
.aplus-compare-table .ac-us { background: var(--success-soft); color: var(--success); font-weight: 600; text-align: center; }
.aplus-compare-table .ac-them { color: var(--muted); text-align: center; }
@media (max-width: 700px) {
  .aplus-compare { padding: 24px 16px; }
  .aplus-compare-table > div { padding: 12px; font-size: 13px; }
}

/* A+ module 4 — Brand story (split image + copy) */
.aplus-story {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  align-items: center;
  margin-bottom: 40px;
}
.aplus-story-img {
  aspect-ratio: 4/5;
  border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(135deg, #F3E8FF, #EDE9FE);
}
.aplus-story-img img { width: 100%; height: 100%; object-fit: cover; }
.aplus-story-copy h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(28px, 3.5vw, 42px); line-height: 1.05; letter-spacing: -0.02em;
}
.aplus-story-copy h3 em { color: var(--primary); font-style: italic; }
.aplus-story-copy p { margin-top: 16px; font-size: 16px; line-height: 1.6; color: var(--ink-soft); }
.aplus-story-copy .signature {
  margin-top: 24px; padding: 16px;
  background: var(--bg-alt); border-radius: var(--r);
  font-family: var(--font-script); font-size: 22px; line-height: 1.3;
}
.aplus-story-copy .signature .role {
  display: block; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 4px;
}
@media (max-width: 900px) {
  .aplus-story { grid-template-columns: 1fr; gap: 24px; }
  .aplus-story-img { aspect-ratio: 16/10; max-height: 280px; }
}

/* A+ module 5 — UGC strip (3-6 tiles) */
.aplus-ugc {
  margin-bottom: 24px;
}
.aplus-ugc-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 16px; flex-wrap: wrap; gap: 10px;
}
.aplus-ugc-head h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(22px, 2.8vw, 32px); letter-spacing: -0.015em;
}
.aplus-ugc-head .hashtag { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; color: var(--muted); }
.aplus-ugc-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px;
}
.aplus-ugc-tile {
  position: relative; aspect-ratio: 1;
  border-radius: var(--r-sm); overflow: hidden;
  background: linear-gradient(135deg, #F3E8FF, #EDE9FE);
}
.aplus-ugc-tile img { width: 100%; height: 100%; object-fit: cover; }
.aplus-ugc-tile .handle {
  position: absolute; bottom: 6px; left: 6px;
  color: #fff; font-size: 10px; font-family: var(--font-mono);
  background: rgba(0,0,0,0.45); padding: 2px 5px; border-radius: 3px;
}
@media (max-width: 700px) {
  .aplus-ugc-grid { grid-template-columns: repeat(3, 1fr); }
}

/* PAGE HERO (generic banner used across pages) */
.page-hero {
  padding: 48px 0 24px;
}
.page-hero .eyebrow { margin-bottom: 12px; }
.page-hero h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(40px, 6vw, 80px); line-height: 1.0; letter-spacing: -0.025em;
}
.page-hero p { max-width: 620px; margin-top: 16px; color: var(--ink-soft); font-size: 17px; line-height: 1.5; }

/* ========================================================================
   EDITORIAL HOMEPAGE SECTIONS (restored per original design)
   ======================================================================== */

/* HERO editorial — large minHeight, big type overlay, yellow accent em */
.hero-editorial {
  padding: 28px 0 12px;
}
.hero-editorial-frame {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  min-height: 640px;
  background: linear-gradient(135deg, #7C3AED 0%, #4C1D95 70%);
}
.hero-editorial-frame::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(24,18,30,0.55) 100%);
  z-index: 1;
}
.hero-editorial-eyebrow {
  position: absolute; top: 28px; left: 28px; right: 28px;
  display: flex; justify-content: space-between; color: #fff; opacity: 0.9;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; z-index: 2;
}
.hero-editorial-body {
  position: absolute; left: 28px; right: 28px; bottom: 36px;
  color: #fff; z-index: 2;
}
.hero-editorial-body h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(60px, 11vw, 172px); line-height: 0.92; letter-spacing: -0.03em;
}
.hero-editorial-body h1 em { color: var(--accent); font-style: italic; }
.hero-editorial-lower {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; flex-wrap: wrap; margin-top: 32px;
}
.hero-editorial-lower p { max-width: 420px; opacity: 0.92; font-size: 17px; line-height: 1.55; }
.hero-editorial-lower .hero-cta-row { gap: 10px; }
.hero-editorial-lower .btn-outline { color: #fff; border-color: rgba(255,255,255,0.7); }
.hero-editorial-lower .btn-outline:hover { background: rgba(255,255,255,0.1); color: #fff; }
.hero-editorial-trust {
  margin-top: 18px; display: flex; gap: 20px; flex-wrap: wrap;
  font-size: 13px; opacity: 0.85; color: #fff;
}
@media (max-width: 700px) {
  .hero-editorial-frame { min-height: 640px; }
  .hero-editorial-body { left: 20px; right: 20px; bottom: 24px; }
  .hero-editorial-body h1 { font-size: clamp(48px, 14vw, 72px); line-height: 0.98; }
  .hero-editorial-lower { margin-top: 20px; flex-direction: column; align-items: flex-start; }
  .hero-editorial-lower p { font-size: 14px; line-height: 1.45; max-width: 100%; }
  .hero-editorial-lower .hero-cta-row { width: 100%; }
  .hero-editorial-lower .hero-cta-row .btn { flex: 1; padding: 0 14px; font-size: 14px; }
  .hero-editorial-trust { margin-top: 14px; gap: 12px; font-size: 11px; }
  .hero-editorial-eyebrow { font-size: 10px; letter-spacing: 0.08em; flex-direction: column; gap: 4px; }
  .hero-editorial-eyebrow > span:last-child { display: none; }
}

/* Hero sub-row: 3 category tiles */
.hero-subrow {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-top: 14px;
}
.hero-subtile {
  position: relative; overflow: hidden;
  border-radius: var(--r); aspect-ratio: 16/9;
  display: block;
}
.hero-subtile img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-subtile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(255,255,255,0.2));
  z-index: 1;
}
.hero-subtile-body {
  position: absolute; left: 20px; right: 20px; bottom: 20px;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 2;
}
.hero-subtile-body .ht-title { font-family: var(--font-display); font-size: clamp(22px, 2.2vw, 30px); color: var(--ink); letter-spacing: -0.015em; }
.hero-subtile-body .ht-arrow {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--ink); color: var(--bg);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-subtile-sub {
  position: absolute; top: 20px; left: 20px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-soft); z-index: 2;
}
@media (max-width: 700px) {
  .hero-subrow { grid-template-columns: 1fr; }
}

/* GIFT FINDER 2-col editorial layout */
.gf-editorial {
  padding: 72px 0;
  background: var(--bg-alt);
}
.gf-editorial-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center;
}
.gf-editorial-copy h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(34px, 4.5vw, 60px); line-height: 1.02; letter-spacing: -0.025em;
  margin-top: 18px;
}
.gf-editorial-copy h2 em { color: var(--primary); font-style: italic; }
.gf-editorial-copy p { margin-top: 20px; max-width: 460px; font-size: 18px; color: var(--ink-soft); line-height: 1.55; }
.gf-editorial-features {
  display: flex; gap: 20px; margin-top: 28px; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-soft);
}
.gf-editorial-features span { display: inline-flex; align-items: center; gap: 6px; }
.gf-editorial-features .gf-emoji { font-size: 20px; }
.gf-editorial-quiz {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 32px;
  min-height: 460px; display: flex; flex-direction: column;
}
@media (max-width: 900px) {
  .gf-editorial-grid { grid-template-columns: 1fr; gap: 32px; }
  .gf-editorial-quiz { padding: 24px; min-height: 420px; }
}

/* BIG STATEMENT dark block */
.big-statement {
  padding: 72px 0;
}
.big-statement-card {
  background: var(--ink); color: var(--bg);
  border-radius: var(--r-lg);
  padding: 80px 56px;
  position: relative; overflow: hidden;
}
.big-statement-card::before {
  content: ''; position: absolute; top: -60px; right: -40px;
  width: 280px; height: 280px; border-radius: 50%;
  background: var(--primary); opacity: 0.3; filter: blur(40px);
}
.big-statement-card .eyebrow { color: var(--accent); opacity: 1; }
.big-statement-card h2 {
  position: relative;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(32px, 4.5vw, 60px); line-height: 1.12; letter-spacing: -0.02em;
  max-width: 820px; margin-top: 20px;
}
.big-statement-card h2 em { color: var(--accent); font-style: italic; }
.big-statement-card .cta-row {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 40px; position: relative;
}
.big-statement-card .btn-ghost-light {
  background: transparent; border: 1px solid rgba(255,255,255,0.3); color: var(--bg);
}
@media (max-width: 700px) { .big-statement-card { padding: 48px 28px; } }

/* HOW IT WORKS 3-step */
.hiw {
  padding: 72px 0; background: var(--bg-alt);
}
.hiw-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 32px;
}
.hiw-step {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r); padding: 32px;
  min-height: 240px;
}
.hiw-step .num {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 72px; color: var(--primary); line-height: 1; margin-bottom: 16px;
}
.hiw-step h3 { font-family: var(--font-display); font-size: 26px; font-weight: 400; letter-spacing: -0.015em; }
.hiw-step p { margin-top: 10px; color: var(--ink-soft); font-size: 15px; line-height: 1.55; }
@media (max-width: 900px) { .hiw-grid { grid-template-columns: 1fr; } }

/* TESTIMONIALS 2-col cards */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  margin-top: 32px;
}
.testimonial-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r); padding: 32px;
}
.testimonial-card .stars { color: var(--accent); font-size: 14px; letter-spacing: 3px; margin-bottom: 14px; }
.testimonial-card .quote {
  font-family: var(--font-display); font-size: 22px; font-style: italic;
  line-height: 1.32; letter-spacing: -0.01em;
}
.testimonial-card .t-attrib { margin-top: 18px; display: flex; align-items: center; gap: 12px; }
.testimonial-card .t-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary); color: var(--primary-ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 500;
}
.testimonial-card .t-name { font-size: 14px; font-weight: 500; }
.testimonial-card .t-city { font-size: 12px; color: var(--muted); font-family: var(--font-mono); }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* INSTAGRAM STRIP 6-col edge-to-edge */
.ig-strip {
  padding: 40px 0;
}
.ig-strip-head { padding: 0 var(--gutter); max-width: var(--container); margin: 0 auto 32px; }
.ig-grid-full {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 2px;
}
.ig-tile {
  aspect-ratio: 1; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #F3E8FF, #EDE9FE);
}
.ig-tile img { width: 100%; height: 100%; object-fit: cover; }
.ig-tile .handle {
  position: absolute; bottom: 8px; left: 8px;
  color: #fff; font-size: 11px; font-family: var(--font-mono);
  background: rgba(0,0,0,0.4); padding: 2px 6px; border-radius: 4px;
}
@media (max-width: 700px) { .ig-grid-full { grid-template-columns: repeat(3, 1fr); } }

/* ========================================================================
   PRODUCT IMAGES (Unsplash-sourced, object-fit cover)
   ======================================================================== */
.prod-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  background: linear-gradient(135deg, #F3E8FF, #EDE9FE); /* fallback */
}
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
}
.ugc-tile img, .j-thumb img, .mini-thumb img {
  width: 100%; height: 100%; object-fit: cover;
}
.mini-thumb { overflow: hidden; }
.cart-item .ci-thumb { overflow: hidden; }
.cart-item .ci-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-gallery .main-img img, .pdp-gallery .thumb img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.product-card .thumb { overflow: hidden; }
.product-card .thumb img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.occ-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}

/* ========================================================================
   DEFENSIVE MOBILE PATCH — appended to styles.css for Shopify live theme
   Belt-and-suspenders: tighter breakpoints + force-stack common desktop grids.
   ======================================================================== */

/* Global: prevent horizontal scroll */
html, body { overflow-x: hidden; max-width: 100vw; }

/* All tablets + mobile (<= 900px) */
@media (max-width: 900px) {
  .container { padding-left: 16px; padding-right: 16px; }

  /* Header tighter on mobile */
  .site-header { height: auto; }
  .site-header .container { gap: 6px; flex-wrap: nowrap; }
  .site-header .brand { font-size: 18px; }
  .site-header nav { display: none !important; }
  .site-header .actions { margin-left: auto; gap: 2px; }
  .pincode-pill { display: none !important; }
  .icon-btn { width: 40px; height: 40px; }

  /* Hero editorial: smaller type, stacked lower row */
  .hero-editorial-frame { min-height: 520px; }
  .hero-editorial-body { left: 16px; right: 16px; bottom: 20px; }
  .hero-editorial-body h1 { font-size: clamp(40px, 12vw, 64px) !important; line-height: 0.98; }
  .hero-editorial-lower { flex-direction: column; align-items: flex-start; gap: 16px; margin-top: 16px; }
  .hero-editorial-lower p { font-size: 14px; line-height: 1.45; max-width: 100%; }
  .hero-editorial-lower .hero-cta-row { width: 100%; }
  .hero-editorial-lower .hero-cta-row .btn { flex: 1; padding: 0 12px; font-size: 13px; height: 44px; }
  .hero-editorial-trust { margin-top: 12px; gap: 8px; font-size: 11px; }
  .hero-editorial-trust span { flex: 1 1 100%; }
  .hero-editorial-eyebrow { top: 14px; left: 16px; right: 16px; font-size: 9px; letter-spacing: 0.08em; flex-direction: column; gap: 3px; }
  .hero-editorial-eyebrow > span:last-child { display: none; }

  /* Hero sub-row: full-width stack */
  .hero-subrow { grid-template-columns: 1fr !important; gap: 10px; }
  .hero-subtile { aspect-ratio: 16/10; }

  /* Occasion pills: smooth horizontal scroll, remove harsh dark upcoming */
  .occ-scroll {
    padding: 8px 16px 16px;
    margin-left: -16px;
    margin-right: -16px;
    scroll-padding-left: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }
  .occ-pill {
    scroll-snap-align: start;
    height: 42px;
    padding: 0 16px;
    font-size: 13px;
    background: var(--card);
    border: 1.5px solid var(--accent);
    box-shadow: 0 1px 2px rgba(24,18,30,0.04);
    transition: border-color 0.15s ease, transform 0.1s ease;
  }
  .occ-pill.upcoming {
    background: var(--card);
    color: var(--ink);
    border: 1.5px solid var(--accent);
    font-weight: 600;
  }
  .occ-pill .occ-days {
    font-size: 10px;
    opacity: 0.7;
    margin-left: 4px;
    padding-left: 6px;
    border-left: 1px solid currentColor;
    letter-spacing: 0.04em;
  }
  .occ-pill:active { transform: scale(0.97); }

  /* Gift finder 2-col → stack */
  .gf-editorial-grid { grid-template-columns: 1fr !important; gap: 24px; }
  .gf-editorial-copy h2 { font-size: clamp(28px, 6vw, 40px); }
  .gf-editorial-quiz { padding: 20px !important; min-height: 380px; }

  /* Quiz options: 2-col grid on mobile (per brand UX) */
  .quiz-options { grid-template-columns: repeat(2, 1fr) !important; gap: 8px; }
  .quiz-options button { padding: 12px 10px; font-size: 13px; flex-direction: column; align-items: center; text-align: center; gap: 4px; }
  .quiz-options button .q-emoji { font-size: 22px; }
  .quiz-card { padding: 22px !important; }
  .quiz-card h2 { font-size: clamp(24px, 6vw, 32px) !important; }

  /* Product grid 2-col */
  .product-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }
  .product-card .meta { padding: 10px 10px 12px; }
  .product-card .meta h4 { font-size: 13px; line-height: 1.3; }
  .product-card .meta .rating { font-size: 11px; }
  .product-card .meta .price { font-size: 16px; }
  .product-card .meta .mrp { font-size: 11px; }
  .product-card .meta .save { font-size: 11px; }

  /* Big statement dark block */
  .big-statement-card { padding: 40px 24px !important; }
  .big-statement-card h2 { font-size: clamp(26px, 6vw, 44px); }

  /* How it works 3-col → stack */
  .hiw-grid { grid-template-columns: 1fr !important; gap: 12px; }
  .hiw-step { padding: 24px 20px; min-height: auto; }
  .hiw-step .num { font-size: 54px; }

  /* Trust bar horizontal scroll on narrow */
  .trust-bar { padding: 16px 12px; }
  .trust-item { min-width: 160px; flex: 0 0 auto; }

  /* Testimonials 2-col → 1-col */
  .testimonials-grid { grid-template-columns: 1fr !important; gap: 10px; }
  .testimonial-card { padding: 22px !important; }
  .testimonial-card .quote { font-size: 17px; }

  /* Instagram 6-col → 3-col */
  .ig-grid-full { grid-template-columns: repeat(3, 1fr) !important; gap: 2px; }
  .ig-strip-head { padding-left: 16px; padding-right: 16px; }

  /* WhatsApp capture: stack */
  .wa-capture { grid-template-columns: 1fr !important; padding: 28px 20px !important; gap: 20px; }
  .wa-form { flex-direction: column; }
  .wa-form input, .wa-form button { width: 100%; }

  /* Footer: 2-col on narrow */
  .site-footer .container { grid-template-columns: 1fr 1fr; gap: 24px; padding: 48px 16px 20px; }
  .site-footer .big-brand { font-size: 28px; }
  .site-footer .fs-bottom { grid-column: 1 / -1; flex-direction: column; gap: 10px; text-align: center; }

  /* PDP grid → stack */
  .pdp-grid { grid-template-columns: 1fr !important; gap: 24px; padding: 16px 0 32px; }
  .pdp-gallery { position: static !important; }
  .pdp-info h1 { font-size: clamp(24px, 6vw, 36px) !important; }
  .pdp-price .price { font-size: 32px; }
  .urgency-strip { flex-direction: column; gap: 8px; }
  .urg-card { flex: 1 1 auto; }
  .trust-strip { padding-left: 0; padding-right: 0; }
  .atc-row { flex-direction: column; gap: 8px; }
  .atc-row .btn { width: 100%; height: 52px; }

  /* A+ content */
  .aplus { padding: 32px 0 16px; }
  .aplus-banner { min-height: 280px; }
  .aplus-banner-body { padding: 32px 20px; }
  .aplus-features { grid-template-columns: repeat(2, 1fr) !important; gap: 8px; }
  .aplus-feature { padding: 16px; }
  .aplus-feature .aplus-ico { font-size: 24px; margin-bottom: 8px; }
  .aplus-feature h4 { font-size: 15px; }
  .aplus-feature p { font-size: 12px; }
  .aplus-compare { padding: 20px 14px !important; }
  .aplus-compare-table > div { padding: 10px; font-size: 11px; }
  .aplus-story { grid-template-columns: 1fr !important; gap: 20px; }
  .aplus-story-img { aspect-ratio: 16/10; max-height: 240px; }
  .aplus-ugc-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 4px; }

  /* Cart grid → stack */
  .cart-grid { grid-template-columns: 1fr !important; gap: 20px; padding: 16px 0 32px; }
  .cart-summary { position: static !important; padding: 20px !important; }

  /* Sticky bottom-nav + WhatsApp FAB positioning */
  .bottom-nav { height: 60px; }
  .bottom-nav a { font-size: 9px; }
  .bottom-nav a .ico { width: 20px; height: 20px; }
  .wa-fab { right: 14px; bottom: calc(60px + 14px); width: 52px; height: 52px; }

  /* Announce bar wrap safe */
  .announce { font-size: 10px; padding: 0 32px; height: auto; min-height: 28px; }
  .announce-msg { display: inline-block; }
  .announce-close { right: 8px; }
}

/* Narrow phones (<= 480px) — extra tight */
@media (max-width: 480px) {
  .hero-editorial-body h1 { font-size: clamp(36px, 13vw, 52px) !important; }
  .d-md, .d-lg { font-size: clamp(24px, 7vw, 36px) !important; line-height: 1.05 !important; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .section-head h2 { font-size: clamp(24px, 6vw, 32px) !important; }
  .occ-pill { height: 40px; padding: 0 16px; font-size: 13px; }
  .urg-card { padding: 10px 12px; font-size: 12px; }
  .pdp-offers-head { font-size: 12px; }
  .pdp-tax { font-size: 11px; }
}

/* Very narrow (<= 375px) — iPhone SE */
@media (max-width: 375px) {
  .container { padding-left: 14px; padding-right: 14px; }
  .site-header .brand { font-size: 16px; }
  .hero-editorial-body h1 { font-size: 36px !important; }
  .d-md { font-size: 24px !important; }
  .product-card .meta h4 { font-size: 12px; }
  .product-card .meta .price { font-size: 14px; }
}

/* Global occ-pill: yellow outline all, no fill on upcoming */
.occ-pill {
  background: var(--card) !important;
  color: var(--ink) !important;
  border: 1.5px solid var(--accent) !important;
}
.occ-pill.upcoming {
  background: var(--card) !important;
  color: var(--ink) !important;
  border-color: var(--accent) !important;
  font-weight: 600;
}
.occ-pill.upcoming .occ-days {
  opacity: 0.7;
  border-left-color: rgba(24,18,30,0.2);
}
.occ-pill:hover {
  border-color: var(--ink) !important;
}
/* ========================================================================
   BRAND KIT v1.0 PATCH — applied per locked tokens
   Fonts: Archivo Black (display) + Space Grotesk (UI) + JetBrains Mono (mono)
   Palette: Ink / Cream / Plum / Yellow / Coral / Kraft
   ======================================================================== */

/* Load brand fonts */
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Palette overrides — locked per brand kit */
  --bg: #FBF7F0;          /* Cream */
  --bg-alt: #F3ECDE;      /* Cream alt */
  --ink: #18121E;         /* Ink */
  --ink-soft: #4A3F52;
  --muted: #8B7F94;
  --line: #E8DFCE;
  --line-soft: #F0E7D4;
  --primary: #6D28D9;          /* Plum — owns brand */
  --primary-ink: #FBF7F0;
  --primary-dark: #4A1D96;     /* Plum deep */
  --accent: #FDE047;           /* Yellow — energy/CTA */
  --accent-ink: #18121E;
  --card: #FFFFFF;
  --success: #137F3C;
  --success-soft: #E7F6EB;
  --danger: #FF5E3A;           /* Coral — urgency only */
  --kraft: #C7A97A;            /* Kraft — packaging accent */

  /* Fonts */
  --font-display: 'Archivo Black', 'Arial Black', sans-serif;
  --font-body: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --font-script: 'Space Grotesk', cursive; /* kept for personalization preview */
}

/* Archivo Black is ALL CAPS by default. Tighten letterspacing per brand. */
.d-xl, .d-lg, .d-md, .d-sm, .display {
  font-family: var(--font-display);
  letter-spacing: -0.04em;
  text-transform: none;
}

/* Hero editorial h1 — uppercase wordmark feel */
.hero-editorial-body h1 {
  font-family: var(--font-display);
  letter-spacing: -0.05em;
  line-height: 0.9;
}

/* Brand wordmark in header */
.site-header .brand {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  font-size: 22px;
  text-transform: uppercase;
}
.site-header .brand em {
  color: var(--primary);
  font-style: italic;
  letter-spacing: -0.04em;
}
/* Add interrobang after gift */
/* Em/italic globally — brand uses Archivo Black italic for "gift‽" */
em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--primary);
  letter-spacing: -0.04em;
}

/* Body copy: Space Grotesk */
body, .body, .body-lg, .body-sm {
  font-family: var(--font-body);
}

/* Eyebrows + monospace: JetBrains Mono */
.eyebrow, .occ-days, .ht-arrow {
  font-family: var(--font-mono);
}

/* Buttons */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.btn-accent {
  background: var(--accent);
  color: var(--ink);
  font-weight: 700;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  font-weight: 600;
}

/* Brand footer big word */
.site-footer .big-brand {
  font-family: var(--font-display);
  letter-spacing: -0.05em;
  text-transform: uppercase;
}
.site-footer .big-brand em {
  color: var(--accent);
}
/* Tone fixes: urgency uses coral not red */
.danger, .urg-card.stock, .urg-card.stock strong { color: var(--danger); }
.urg-card.stock { background: #FFECEA; border-color: #F5B0A6; }
.stock-bar-fill { background: var(--danger); }

/* Big statement yellow accent */
.big-statement-card em { color: var(--accent); }

/* Announce bar — ink bg */
.announce {
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-mono);
}

/* Kraft accent on packaging-related UI (gift wrap checkbox etc) */
.gift-toggle {
  background: var(--kraft);
  color: var(--ink);
  background: linear-gradient(to right, #F3ECDE, #E8D7B8);
}
.gift-toggle strong { color: var(--ink); }
