/* ============================================================
   BOAHDY — Fruit-powered luxury body care
   Design system + components
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand */
  --sage:        #6B7754;
  --sage-deep:   #565F42;
  --sage-soft:   #8A9670;
  --cream:       #F8F5EE;
  --cream-2:     #F2EDE2;
  --ink:         #2B2E25;
  --ink-soft:    #5C5F54;

  /* Fruit accents */
  --orange:      #E8875D;
  --orange-soft: #F6D8C3;
  --strawberry:  #E68A9C;
  --straw-soft:  #F6DBE1;
  --coconut:     #E7DBC6;
  --coconut-2:   #EFE7D7;
  --peach:       #F6D2BC;
  --leaf:        #9DAA7E;

  /* UI */
  --bg:          var(--cream);
  --card:        #FFFFFF;
  --line:        #E7E1D4;
  --shadow-sm:   0 2px 10px rgba(43,46,37,.05);
  --shadow-md:   0 18px 40px -22px rgba(43,46,37,.28);
  --shadow-lg:   0 40px 80px -40px rgba(43,46,37,.40);

  --radius-s:    14px;
  --radius:      20px;
  --radius-l:    28px;
  --radius-xl:   40px;

  --maxw:        1280px;
  --gut:         clamp(20px, 5vw, 64px);
  /* height of the mobile bottom nav; anything fixed to the bottom must clear it */
  --bottombar-h: calc(70px + env(safe-area-inset-bottom));

  --ease:        cubic-bezier(.22,.61,.36,1);

  --font-display: "Fraunces", Georgia, serif;
  --font-body:    "Inter", system-ui, -apple-system, sans-serif;
  --font-brand:   "Quicksand", var(--font-body);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
input { font-family: inherit; }
/* present to assistive tech and search engines, invisible on screen */
.sr-only {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

/* ---------- Typography ---------- */
h1,h2,h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.02; letter-spacing: -.02em; color: var(--ink); }
.h-xxl { font-size: clamp(3rem, 9vw, 7.5rem); }
.h-xl  { font-size: clamp(2.4rem, 6vw, 4.6rem); }
.h-l   { font-size: clamp(2rem, 4.4vw, 3.2rem); }
.h-m   { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.eyebrow {
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--sage);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
.eyebrow::before { content: ""; width: 22px; height: 1.5px; background: var(--orange); display: inline-block; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); max-width: 52ch; }
.muted { color: var(--ink-soft); }
.serif-italic { font-family: var(--font-display); font-style: italic; font-weight: 400; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(64px, 9vw, 130px); }
.section--tight { padding-block: clamp(48px, 6vw, 90px); }
.center { text-align: center; }
.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; }
.section-head .lead { margin-top: 18px; }
.section-head h2 { margin-top: 16px; }
.center .lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 600; font-size: .92rem; letter-spacing: .01em;
  transition: transform .4s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .4s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--sage); color: var(--cream); box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--sage-deep); }
.btn--dark { background: var(--ink); color: var(--cream); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--light { background: var(--cream); color: var(--ink); }
.btn--block { width: 100%; }
.btn--sm { padding: 11px 20px; font-size: .85rem; }
.link-arrow { display: inline-flex; align-items: center; gap: .5em; font-weight: 600; font-size: .92rem; color: var(--sage); }
.link-arrow svg { transition: transform .35s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ---------- Sparkle motif ---------- */
.sparkle { color: var(--orange); display: inline-block; }
.sparkle svg { display: block; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.announce {
  background: var(--sage); color: var(--cream);
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  text-align: center; padding: 9px 16px; font-weight: 500;
}
.announce .sparkle { vertical-align: -2px; margin: 0 .4em; }

.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248,245,238,.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.nav.is-stuck { border-color: var(--line); box-shadow: 0 6px 30px -20px rgba(43,46,37,.35); }
.nav__inner {
  max-width: var(--maxw); margin-inline: auto;
  padding: 16px var(--gut) 16px clamp(14px, 2vw, 24px);   /* logo sits closer to the left edge */
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav .brand { margin-right: auto; }   /* keep logo hard-left, menu + icons flow right */
.nav__menu { margin-left: clamp(10px, 3vw, 40px); }
.nav__menu { display: flex; align-items: center; gap: clamp(14px, 1.8vw, 30px); }
.nav__link {
  font-size: .9rem; font-weight: 500; color: var(--ink); position: relative; padding: 6px 0;
  white-space: nowrap;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0; background: var(--sage);
  transition: width .35s var(--ease);
}
.nav__link:hover { color: var(--sage); }
.nav__link:hover::after { width: 100%; }
.nav__icons { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; color: var(--ink);
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
  position: relative;
}
.icon-btn:hover { background: rgba(107,119,84,.1); color: var(--sage); transform: translateY(-1px); }
.icon-btn svg { width: 21px; height: 21px; }
.badge {
  position: absolute; top: 4px; right: 4px; min-width: 17px; height: 17px; padding: 0 4px;
  background: var(--orange); color: #fff; font-size: .62rem; font-weight: 700;
  border-radius: 100px; display: grid; place-items: center; line-height: 1;
}
.nav__toggle { display: none; }

/* Brand logo wordmark */
.brand { display: inline-flex; align-items: flex-end; gap: 4px; line-height: 1; }
.brand__word {
  font-family: var(--font-brand); font-weight: 700; font-size: 1.85rem;
  color: var(--sage); letter-spacing: -.01em; position: relative;
}
.brand__word .spark-dot {
  position: absolute; right: -14px; top: -6px; width: 14px; height: 14px; color: var(--orange);
}
.brand--cream .brand__word { color: var(--cream); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 80% 0%, var(--coconut-2) 0%, transparent 55%),
    radial-gradient(90% 80% at 10% 100%, var(--straw-soft) 0%, transparent 50%),
    var(--cream);
}
.hero__inner {
  max-width: var(--maxw); margin-inline: auto; padding: clamp(40px,7vw,90px) var(--gut) clamp(50px,8vw,110px);
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(30px,4vw,60px); align-items: center;
  position: relative; z-index: 2;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
/* also used by the "See your own glow-up" section, so it outlives the hero copy */
.hero__stats { display: flex; gap: 36px; margin-top: 46px; flex-wrap: wrap; }
.hero__stats .num { font-family: var(--font-display); font-size: 2rem; color: var(--sage); line-height: 1; }
.hero__stats .lbl { font-size: .8rem; color: var(--ink-soft); margin-top: 6px; }

/* Hero visual */
.hero__visual { position: relative; aspect-ratio: 1/1.04; }
.hero__stage {
  position: absolute; inset: 0; border-radius: 50% 50% 46% 46% / 48% 48% 50% 50%;
  background:
    radial-gradient(80% 80% at 50% 30%, rgba(255,255,255,.5), transparent 60%),
    linear-gradient(160deg, var(--peach), var(--orange-soft) 60%, var(--straw-soft));
  box-shadow: var(--shadow-lg), inset 0 0 60px rgba(255,255,255,.4);
}
.fruit-orb {
  position: absolute; border-radius: 50%;
  box-shadow: 0 30px 50px -24px rgba(43,46,37,.5), inset -10px -14px 30px rgba(0,0,0,.12), inset 12px 12px 26px rgba(255,255,255,.5);
}
.orb--orange { width: 46%; aspect-ratio: 1; left: 8%; top: 14%;
  background: radial-gradient(35% 35% at 32% 30%, #FBC78E, var(--orange) 70%, #D9703F); }
.orb--straw { width: 30%; aspect-ratio: 1; right: 6%; top: 8%;
  background: radial-gradient(35% 35% at 35% 32%, #F4A9B8, var(--strawberry) 70%, #C95E73); }
.orb--coco { width: 34%; aspect-ratio: 1; right: 12%; bottom: 8%;
  background: radial-gradient(35% 35% at 35% 32%, #F4ECDD, var(--coconut) 65%, #C8B594); }
/* product bottle floating */
.hero__bottle {
  position: absolute; left: 50%; top: 52%; transform: translate(-50%,-50%);
  width: 34%; z-index: 3; filter: drop-shadow(0 30px 40px rgba(43,46,37,.35));
}
.float { animation: float 7s var(--ease) infinite; }
.float--2 { animation-duration: 9s; animation-delay: -2s; }
.float--3 { animation-duration: 8s; animation-delay: -4s; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-16px) rotate(2deg); } }
.spin-slow { animation: spin 26s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero__sparkle { position: absolute; color: var(--orange); }
.hero__sparkle.s1 { width: 26px; left: 2%; top: 30%; }
.hero__sparkle.s2 { width: 18px; right: 30%; bottom: 6%; color: var(--sage); }

/* Hero: nothing but the video. Nothing overlays it, so there is no copy to keep legible
   and no scrim. 80vh rather than 92vh because the announce bar + nav add ~113px above it,
   and a taller hero would push the next section entirely off a 720p laptop screen. */
.hero--video {
  position: relative; min-height: clamp(500px, 80vh, 860px);
  overflow: hidden;
}
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero__scrim { display: none; }
/* Phones: the hero box would be portrait, and object-fit:cover on a 16:9 video would show
   only its middle ~28% — one jar, half out of frame. Match the video's own aspect ratio
   instead, so the full shot (all three jars) is visible with no crop at all. */
@media (max-width: 920px) {
  /* width:100% is load-bearing — without it `min-height` transfers back through
     `aspect-ratio` into the width (356px on a 320px iPhone SE) and the page scrolls sideways */
  .hero--video { width: 100%; min-height: 200px; height: auto; aspect-ratio: 16 / 9; }
}

/* Logos / trust strip */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--cream); }
.trust__inner { display: flex; flex-wrap: wrap; gap: clamp(20px,5vw,70px); justify-content: center; align-items: center; padding-block: 26px; }
.trust__item { font-family: var(--font-display); font-size: clamp(1rem,1.6vw,1.35rem); color: var(--sage-soft); letter-spacing: .04em; opacity: .85; }

/* ============================================================
   CATEGORY CIRCLES (concerns / skin types)
   ============================================================ */
.circle-grid {
  display: grid; gap: clamp(18px,2.5vw,34px);
  grid-template-columns: repeat(6, 1fr);
  margin-top: 54px;
}
.skin-grid { grid-template-columns: repeat(5, 1fr); max-width: 1040px; margin-inline: auto; }
.cat {
  display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center;
}
.cat__disc {
  width: 100%; aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center;
  position: relative; overflow: hidden; transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  box-shadow: var(--shadow-sm);
}
.cat__disc::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.5); pointer-events: none;
}
.cat:hover .cat__disc { transform: translateY(-8px) scale(1.03); box-shadow: var(--shadow-md); }
.cat__emoji { font-size: clamp(1.8rem,3.4vw,2.6rem); transition: transform .5s var(--ease); filter: drop-shadow(0 6px 10px rgba(0,0,0,.12)); }
.cat:hover .cat__emoji { transform: scale(1.18) rotate(-6deg); }
.cat__disc .ring {
  position: absolute; inset: 10%; border-radius: 50%; border: 1.5px dashed rgba(255,255,255,.6);
  opacity: 0; transform: scale(.8); transition: opacity .5s var(--ease), transform .6s var(--ease);
}
.cat:hover .ring { opacity: 1; transform: scale(1) rotate(40deg); }
.cat__name { font-weight: 600; font-size: .96rem; }
.cat__tag { font-size: .78rem; color: var(--ink-soft); margin-top: -8px; }

.g-orange { background: linear-gradient(150deg, var(--orange-soft), #FBC78E); }
.g-straw  { background: linear-gradient(150deg, var(--straw-soft), #F4A9B8); }
.g-coco   { background: linear-gradient(150deg, var(--coconut-2), var(--coconut)); }
.g-sage   { background: linear-gradient(150deg, #E2E8D6, var(--leaf)); }
.g-peach  { background: linear-gradient(150deg, #FCEADE, var(--peach)); }
.g-sun    { background: linear-gradient(150deg, #FBE6C4, #F4C77E); }
.g-cream  { background: linear-gradient(150deg, #FFFFFF, var(--cream-2)); }

/* ============================================================
   FEATURED PRODUCTS
   ============================================================ */
.products {
  display: grid; gap: clamp(20px,2.4vw,32px); margin-top: 54px;
  grid-template-columns: repeat(3, 1fr);
}
.product-card {
  background: var(--card); border-radius: var(--radius-l); padding: 18px; position: relative;
  box-shadow: var(--shadow-sm); transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
.product-card__media {
  position: relative; aspect-ratio: 1/1.05; border-radius: var(--radius); overflow: hidden;
  display: grid; place-items: center; margin-bottom: 18px;
}
.product-card__media .blob { position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%; filter: blur(2px); opacity: .9; }
/* the product photo is a full-bleed square with its own background, so it fills
   the media box rather than floating over the tinted blob */
.product-card__bottle { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.product-card:hover .product-card__bottle { transform: scale(1.05); }
.product-card__flag {
  position: absolute; top: 14px; left: 14px; z-index: 3; background: var(--card);
  color: var(--ink); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px; box-shadow: var(--shadow-sm);
}
.product-card__wish {
  position: absolute; top: 12px; right: 12px; z-index: 3; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.85); backdrop-filter: blur(6px); display: grid; place-items: center;
  color: var(--ink); transition: transform .3s var(--ease), color .3s var(--ease);
}
.product-card__wish:hover { transform: scale(1.1); color: var(--strawberry); }
.product-card__wish.is-active { color: var(--strawberry); }
.product-card__wish.is-active svg { fill: currentColor; }
.quick-view {
  position: absolute; left: 50%; bottom: 16px; transform: translate(-50%, 16px); z-index: 3;
  opacity: 0; transition: opacity .4s var(--ease), transform .4s var(--ease); white-space: nowrap;
}
.product-card:hover .quick-view { opacity: 1; transform: translate(-50%, 0); }
.product-card__body { display: flex; flex-direction: column; gap: 8px; padding: 4px 6px 6px; flex: 1; }
.rating { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; color: var(--ink-soft); }
.stars { color: var(--orange); letter-spacing: 1px; font-size: .85rem; }
.product-card h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.12rem; letter-spacing: -.01em; }
.product-card__benefit { font-size: .9rem; color: var(--ink-soft); }
.product-card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 8px; }
.price { font-weight: 600; font-size: 1.1rem; }
.price .was { color: var(--ink-soft); text-decoration: line-through; font-weight: 400; font-size: .9rem; margin-right: 6px; }
.add-btn {
  display: inline-flex; align-items: center; gap: 8px; background: var(--sage); color: var(--cream);
  padding: 11px 18px; border-radius: 100px; font-weight: 600; font-size: .85rem;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.add-btn:hover { background: var(--sage-deep); transform: scale(1.04); }

/* ============================================================
   SEARCH PAGE
   ============================================================ */
.search-hero { text-align: center; padding-block: clamp(30px, 5vw, 56px) 6px; }
.search-box { display: flex; align-items: center; gap: 12px; max-width: 680px; margin: 20px auto 0; background: var(--card); border: 1.5px solid var(--line); border-radius: 100px; padding: 6px 8px 6px 22px; box-shadow: var(--shadow-sm); transition: border-color .25s var(--ease), box-shadow .25s var(--ease); }
.search-box:focus-within { border-color: var(--sage); box-shadow: var(--shadow-md); }
.search-box input { flex: 1; border: none; background: none; outline: none; font-size: 1.05rem; padding: 13px 0; color: var(--ink); }
.search-box > svg { color: var(--ink-soft); flex-shrink: 0; }
.search-section { margin-top: 36px; }
.search-section h3 { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--sage); margin-bottom: 16px; }
.search-links { display: flex; flex-wrap: wrap; gap: 10px; }
.search-links a { padding: 9px 16px; border: 1px solid var(--line); border-radius: 100px; font-size: .88rem; font-weight: 500; background: var(--card); transition: border-color .2s var(--ease), color .2s var(--ease); }
.search-links a:hover { border-color: var(--sage); color: var(--sage); }
.search-empty { text-align: center; color: var(--ink-soft); padding: 50px 0; }
.search-post { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); }
.search-post:last-child { border-bottom: 0; }
.search-post:hover h4 { color: var(--sage); }
.search-post h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; }
.search-post .meta { font-size: .8rem; color: var(--ink-soft); margin-top: 2px; }

/* ============================================================
   SHOP PAGE
   ============================================================ */
.shop-hero { background: radial-gradient(80% 100% at 80% 0%, var(--straw-soft), transparent 55%), var(--cream); text-align: center; padding-block: clamp(46px, 7vw, 86px) clamp(20px, 3vw, 36px); }
.shop-hero h1 { margin: 16px 0 14px; }
.shop-hero .lead { margin-inline: auto; }
.shop-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 30px; }
.filter-chip {
  padding: 10px 20px; border-radius: 100px; border: 1.5px solid var(--line); background: var(--card);
  font-size: .88rem; font-weight: 600; color: var(--ink-soft);
  transition: border-color .25s var(--ease), color .25s var(--ease), background .25s var(--ease);
}
.filter-chip:hover { border-color: var(--sage); color: var(--sage); }
.filter-chip.is-active { background: var(--sage); border-color: var(--sage); color: var(--cream); }
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 32px); }
@media (max-width: 860px) { .shop-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .shop-grid { grid-template-columns: 1fr; } }

/* ============================================================
   INGREDIENT STORY (split screen)
   ============================================================ */
.ingredient { position: relative; }
.ing-row {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(28px,5vw,80px);
  padding-block: clamp(40px,6vw,84px);
}
.ing-row + .ing-row { border-top: 1px solid var(--line); }
.ing-row:nth-child(even) .ing-row__media { order: 2; }
.ing-row__media {
  aspect-ratio: 1/.86; border-radius: var(--radius-xl); position: relative; overflow: hidden;
  display: grid; place-items: center; box-shadow: var(--shadow-md);
}
.ing-row__media .big-fruit { width: 60%; aspect-ratio: 1; border-radius: 50%;
  box-shadow: 0 40px 60px -30px rgba(43,46,37,.5), inset -14px -18px 40px rgba(0,0,0,.12), inset 16px 16px 36px rgba(255,255,255,.5); }
.ing-bg-orange { background: radial-gradient(90% 90% at 70% 10%, #FBE3CB, var(--orange-soft)); }
.ing-bg-straw  { background: radial-gradient(90% 90% at 30% 10%, #FBE6EC, var(--straw-soft)); }
.ing-bg-coco   { background: radial-gradient(90% 90% at 70% 10%, #FFFFFF, var(--coconut-2)); }
.bf-orange { background: radial-gradient(35% 35% at 32% 30%, #FBC78E, var(--orange) 70%, #D9703F); }
.bf-straw  { background: radial-gradient(35% 35% at 35% 32%, #F4A9B8, var(--strawberry) 70%, #C95E73); }
.bf-coco   { background: radial-gradient(35% 35% at 35% 32%, #F8F1E5, var(--coconut) 62%, #C2AE88); }
.ing-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.story-split__media.has-photo { display: block; position: relative; overflow: hidden; }
.story-split__media .ing-photo { border-radius: inherit; }
.ing-row__num { font-family: var(--font-display); font-size: 1.1rem; color: var(--orange); letter-spacing: .1em; }
.ing-row h3 { margin: 14px 0 16px; }
.ing-row .lead { margin-bottom: 22px; }
.ing-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { background: var(--card); border: 1px solid var(--line); padding: 8px 16px; border-radius: 100px; font-size: .82rem; font-weight: 500; box-shadow: var(--shadow-sm); }

/* ============================================================
   WHY BOAHDY (icon grid)
   ============================================================ */
.why { background: var(--sage); color: var(--cream); border-radius: clamp(24px,4vw,44px); }
.why .eyebrow { color: var(--peach); }
.why .eyebrow::before { background: var(--orange); }
.why h2, .why .lead { color: var(--cream); }
.why .lead { opacity: .82; }
.why-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; margin-top: 50px; }
.why-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 26px 20px; text-align: center;
  transition: transform .5s var(--ease), background .5s var(--ease);
}
.why-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.13); }
.why-card__icon {
  width: 58px; height: 58px; margin: 0 auto 16px; border-radius: 50%;
  display: grid; place-items: center; background: var(--cream); color: var(--sage);
}
.why-card__icon svg { width: 26px; height: 26px; }
.why-card h3 { font-family: var(--font-body); font-weight: 600; font-size: 1rem; color: var(--cream); }
.why-card p { font-size: .82rem; opacity: .8; margin-top: 6px; }

/* ============================================================
   BEFORE / AFTER SLIDER
   ============================================================ */
.ba-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,70px); align-items: center; margin-top: 40px; }
.ba {
  position: relative; aspect-ratio: 4/3.2; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-md); user-select: none; touch-action: none;
}
.ba__layer { position: absolute; inset: 0; display: grid; place-items: center; }
.ba__layer .label { position: absolute; top: 16px; padding: 6px 14px; border-radius: 100px; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; background: rgba(255,255,255,.85); }
.ba__before { background: linear-gradient(160deg, #D9CDB8, #C7B89C); }
.ba__before .label { left: 16px; color: var(--ink-soft); }
.ba__after  { background: linear-gradient(160deg, var(--peach), var(--orange-soft)); clip-path: inset(0 0 0 50%); }
.ba__after .label { right: 16px; color: var(--sage); }
.ba__skin { width: 70%; height: 60%; border-radius: 30px; }
.ba__before .ba__skin { background: repeating-linear-gradient(45deg, #BCAC8E, #BCAC8E 6px, #C7B89C 6px, #C7B89C 12px); opacity: .8; }
.ba__after .ba__skin { background: linear-gradient(160deg, #FBDCC6, #F6C9AE); box-shadow: inset 0 0 40px rgba(255,255,255,.6); }
.ba__handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; transform: translateX(-50%); z-index: 3; box-shadow: 0 0 0 1px rgba(0,0,0,.05); }
.ba__grip { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 48px; height: 48px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-md); display: grid; place-items: center; color: var(--sage); }
.ba__range { position: absolute; inset: 0; width: 100%; opacity: 0; cursor: ew-resize; margin: 0; z-index: 4; }
/* uploaded photo before/after */
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba.has-photo .ba__skin { display: none; }
.ba.has-photo .ba__upload { display: none; }
/* upload prompt overlay */
.ba__upload {
  position: absolute; inset: 0; z-index: 5; display: grid; place-items: center; cursor: pointer;
  background: linear-gradient(160deg, rgba(43,46,37,.18), rgba(43,46,37,.06));
}
.ba__upload-card {
  display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center;
  background: rgba(255,255,255,.9); backdrop-filter: blur(8px); padding: 24px 30px; border-radius: var(--radius);
  box-shadow: var(--shadow-md); transition: transform .4s var(--ease);
}
.ba__upload:hover .ba__upload-card { transform: translateY(-3px); }
.ba__upload-ic { width: 52px; height: 52px; border-radius: 50%; background: var(--sage); color: var(--cream); display: grid; place-items: center; margin-bottom: 4px; }
.ba__upload-card strong { font-size: 1rem; color: var(--ink); }
.ba__upload-sub { font-size: .8rem; color: var(--ink-soft); }
.ba__reset {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%); z-index: 6;
  display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  color: var(--ink); font-size: .8rem; font-weight: 600; padding: 8px 16px; border-radius: 100px; box-shadow: var(--shadow-sm);
}
.ba__reset:hover { color: var(--sage); }

/* ============================================================
   REVIEWS
   ============================================================ */
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 48px; }
.review-card { background: var(--card); border-radius: var(--radius-l); padding: 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 16px; transition: transform .5s var(--ease); }
.review-card:hover { transform: translateY(-6px); }
.review-card .stars { font-size: 1rem; }
.review-card p { font-size: 1.02rem; color: var(--ink); line-height: 1.6; }
.review-card .quote-mark { font-family: var(--font-display); font-size: 3rem; line-height: .4; color: var(--orange-soft); height: 24px; }
.reviewer { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.reviewer__avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; color: var(--cream); font-size: .9rem; }
.reviewer__name { font-weight: 600; font-size: .92rem; }
.reviewer__meta { font-size: .78rem; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 5px; }
.verified { color: var(--sage); }

/* ============================================================
   INSTAGRAM MASONRY
   ============================================================ */
.insta-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.masonry { columns: 4; column-gap: 16px; margin-top: 40px; }
.masonry__item { break-inside: avoid; margin-bottom: 16px; border-radius: var(--radius); overflow: hidden; position: relative; display: block; box-shadow: var(--shadow-sm); }
.masonry__item .ph { width: 100%; display: grid; place-items: center; color: rgba(255,255,255,.9); }
.masonry__item .ph svg { width: 30px; height: 30px; opacity: 0; transition: opacity .4s var(--ease), transform .4s var(--ease); transform: scale(.6); }
.masonry__item:hover .ph svg { opacity: 1; transform: scale(1); }
.masonry__item::after { content: ""; position: absolute; inset: 0; background: rgba(43,46,37,.18); opacity: 0; transition: opacity .4s var(--ease); }
.masonry__item:hover::after { opacity: 1; }
.ph-1 { aspect-ratio: 3/4; background: linear-gradient(160deg, var(--orange-soft), var(--orange)); }
.ph-2 { aspect-ratio: 1; background: linear-gradient(160deg, var(--straw-soft), var(--strawberry)); }
.ph-3 { aspect-ratio: 3/4; background: linear-gradient(160deg, var(--coconut-2), var(--coconut)); }
.ph-4 { aspect-ratio: 1; background: linear-gradient(160deg, #E2E8D6, var(--leaf)); }
.ph-5 { aspect-ratio: 4/5; background: linear-gradient(160deg, #FCEADE, var(--peach)); }
.ph-6 { aspect-ratio: 1/1.2; background: linear-gradient(160deg, #FBE6C4, #F4C77E); }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.glow {
  position: relative; overflow: hidden; border-radius: clamp(24px,4vw,44px);
  background:
    radial-gradient(60% 120% at 85% 20%, var(--straw-soft), transparent 60%),
    radial-gradient(60% 120% at 10% 90%, var(--orange-soft), transparent 55%),
    var(--cream);
  text-align: center; padding: clamp(50px,7vw,96px) var(--gut);
  border: 1px solid var(--line);
}
.glow .sparkle { width: 30px; margin: 0 auto 18px; }
.glow h2 { margin-bottom: 14px; }
.glow .lead { margin: 0 auto 30px; }
.subscribe { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; background: var(--card); padding: 8px; border-radius: 100px; box-shadow: var(--shadow-sm); }
.subscribe input { flex: 1; border: none; background: transparent; padding: 12px 18px; font-size: .95rem; outline: none; }
.subscribe .btn { flex-shrink: 0; }
.glow__fine { font-size: .78rem; color: var(--ink-soft); margin-top: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--cream); padding-block: clamp(56px,7vw,90px) 30px; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(28px,4vw,60px); }
.footer .brand__word { color: var(--cream); }
.footer__intro p { color: rgba(248,245,238,.65); font-size: .92rem; max-width: 34ch; margin-top: 18px; }
.footer__social { display: flex; gap: 10px; margin-top: 22px; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(248,245,238,.2); display: grid; place-items: center; transition: background .3s var(--ease), color .3s var(--ease); }
.footer__social a:hover { background: var(--cream); color: var(--ink); }
.footer__col h4 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--peach); margin-bottom: 18px; }
.footer__col a { display: block; color: rgba(248,245,238,.7); font-size: .92rem; padding: 7px 0; transition: color .3s var(--ease), padding-left .3s var(--ease); }
.footer__col a:hover { color: var(--cream); padding-left: 5px; }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: center; margin-top: 54px; padding-top: 26px; border-top: 1px solid rgba(248,245,238,.14); font-size: .82rem; color: rgba(248,245,238,.55); }

/* ============================================================
   MOBILE DRAWER + CART DRAWER + bottom bar
   ============================================================ */
.scrim { position: fixed; inset: 0; background: rgba(43,46,37,.45); backdrop-filter: blur(2px); opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s; z-index: 200; }
.scrim.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 90vw); background: var(--cream);
  z-index: 210; transform: translateX(100%); transition: transform .5s var(--ease);
  display: flex; flex-direction: column; box-shadow: var(--shadow-lg);
}
.drawer.is-open { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.drawer__head h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.1rem; }
.drawer__body { flex: 1; overflow-y: auto; padding: 22px 24px; }
.drawer__foot { padding: 22px 24px; border-top: 1px solid var(--line); }
.cart-line { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-line__img { width: 64px; height: 70px; border-radius: 14px; flex-shrink: 0; display: grid; place-items: center; overflow: hidden; }
.cart-line__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-line__info { flex: 1; }
.cart-line__info h4 { font-family: var(--font-body); font-size: .95rem; font-weight: 600; }
.cart-line__info .price { font-size: .95rem; }
.qty { display: inline-flex; align-items: center; gap: 12px; margin-top: 8px; border: 1px solid var(--line); border-radius: 100px; padding: 4px 10px; }
.qty button { width: 22px; height: 22px; display: grid; place-items: center; font-size: 1rem; color: var(--ink-soft); }
.cart-empty { text-align: center; color: var(--ink-soft); padding: 60px 0; }
.cart-total { display: flex; justify-content: space-between; font-weight: 600; font-size: 1.1rem; margin-bottom: 16px; }

/* mobile nav drawer */
.mdraw { left: 0; right: auto; transform: translateX(-100%); width: min(360px, 88vw); }
.mdraw.is-open { transform: translateX(0); }
.mdraw a.mlink { display: block; font-family: var(--font-display); font-size: 1.5rem; padding: 14px 0; border-bottom: 1px solid var(--line); }

/* sticky bottom bar (mobile) */
.bottombar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none;
  background: rgba(248,245,238,.92); backdrop-filter: blur(16px); border-top: 1px solid var(--line);
  padding: 8px max(12px, env(safe-area-inset-left)) calc(8px + env(safe-area-inset-bottom));
  justify-content: space-around;
}
.bottombar a { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: .62rem; color: var(--ink-soft); padding: 6px 12px; position: relative; }
.bottombar a.active { color: var(--sage); }
.bottombar a svg { width: 22px; height: 22px; }
.bottombar .badge { top: -2px; right: 4px; }

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.breadcrumb { font-size: .82rem; color: var(--ink-soft); display: flex; gap: 8px; align-items: center; padding-top: 26px; }
.breadcrumb a:hover { color: var(--sage); }
.pdp { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(30px,4.5vw,72px); padding-top: 26px; align-items: start; }
.gallery { position: sticky; top: 96px; }
.gallery__main {
  aspect-ratio: 1/1.06; border-radius: var(--radius-xl); position: relative; overflow: hidden;
  display: grid; place-items: center; box-shadow: var(--shadow-md); cursor: zoom-in;
}
.gallery__main .bottle { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; transition: transform .5s var(--ease); }
.gallery__main:hover .bottle { transform: scale(1.15); }
.gallery__thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 14px; }
.gthumb { aspect-ratio: 1; border-radius: 16px; display: grid; place-items: center; cursor: pointer; border: 2px solid transparent; transition: border-color .3s var(--ease); overflow: hidden; }
.gthumb img { width: 100%; height: 100%; object-fit: cover; }
.gthumb.is-active { border-color: var(--sage); }

.pdp__info .rating { margin-bottom: 14px; }
.pdp__info h1 { font-family: var(--font-display); font-size: clamp(2.2rem,4vw,3.2rem); margin-bottom: 14px; }
.pdp__price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 22px; }
.pdp__price .now { font-size: 1.7rem; font-weight: 600; }
.pdp__price .was { font-size: 1.1rem; color: var(--ink-soft); text-decoration: line-through; }
.pdp__price .save { background: var(--straw-soft); color: #B14E63; font-size: .72rem; font-weight: 700; padding: 5px 11px; border-radius: 100px; letter-spacing: .04em; }
.pdp__desc { font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 26px; max-width: 50ch; }
.pdp__benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
.benefit-pill { display: flex; align-items: center; gap: 10px; background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px; font-size: .9rem; font-weight: 500; }
.benefit-pill .ic { width: 30px; height: 30px; border-radius: 50%; background: var(--orange-soft); color: var(--orange); display: grid; place-items: center; flex-shrink: 0; }
.benefit-pill .ic svg { width: 16px; height: 16px; }
.size-row { margin-bottom: 24px; }
.size-row .label, .accordion__head .l { font-weight: 600; font-size: .85rem; letter-spacing: .04em; text-transform: uppercase; }
.size-opts { display: flex; gap: 10px; margin-top: 12px; }
.size-opt { border: 1.5px solid var(--line); border-radius: 14px; padding: 12px 18px; cursor: pointer; transition: border-color .3s, background .3s; font-size: .9rem; }
.size-opt.is-active { border-color: var(--sage); background: rgba(107,119,84,.08); }
.size-opt .s-price { display: block; font-weight: 600; }
.size-opt .s-size { font-size: .76rem; color: var(--ink-soft); }
.pdp__buy { display: flex; gap: 12px; align-items: stretch; margin-bottom: 14px; }
.pdp__buy .qty { padding: 6px 14px; }
.pdp__assure { display: flex; flex-wrap: wrap; gap: 18px; font-size: .82rem; color: var(--ink-soft); margin-bottom: 30px; }
.pdp__assure span { display: inline-flex; align-items: center; gap: 6px; }
.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__head { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 18px 0; text-align: left; }
.accordion__head .ico { transition: transform .3s var(--ease); color: var(--sage); }
.accordion__item.is-open .accordion__head .ico { transform: rotate(45deg); }
.accordion__panel { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.accordion__panel-inner { padding: 0 0 20px; color: var(--ink-soft); font-size: .95rem; line-height: 1.7; }
.accordion__panel-inner ul { display: grid; gap: 8px; }
.accordion__panel-inner li { padding-left: 22px; position: relative; }
.accordion__panel-inner li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }

.pdp-sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; background: rgba(255,255,255,.95);
  backdrop-filter: blur(14px); border-top: 1px solid var(--line); transform: translateY(120%);
  transition: transform .5s var(--ease); padding: 12px var(--gut) calc(12px + env(safe-area-inset-bottom));
}
.pdp-sticky.is-show { transform: translateY(0); }
.pdp-sticky__inner { max-width: var(--maxw); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.pdp-sticky__prod { display: flex; align-items: center; gap: 12px; }
.pdp-sticky__prod .mini { width: 46px; height: 50px; border-radius: 12px; display: grid; place-items: center; overflow: hidden; }
.pdp-sticky__prod .mini img { width: 100%; height: 100%; object-fit: cover; }
.pdp-sticky__prod h4 { font-family: var(--font-body); font-size: .95rem; font-weight: 600; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero { background: radial-gradient(80% 100% at 80% 0%, var(--straw-soft), transparent 55%), var(--cream); text-align: center; padding-block: clamp(60px,9vw,130px); }
.about-hero h1 { max-width: 16ch; margin: 18px auto 22px; }
.about-hero .lead { margin-inline: auto; }
.about-banner { aspect-ratio: 16/6.4; border-radius: var(--radius-xl); margin-top: 40px; position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--orange-soft), var(--straw-soft) 45%, var(--coconut-2)); display: grid; place-items: center; }
.about-banner .floaty { position: absolute; border-radius: 50%; }
.story-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,80px); align-items: center; }
.story-split__media { aspect-ratio: 1/1.05; border-radius: var(--radius-xl); box-shadow: var(--shadow-md); }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 48px; }
.value-card { background: var(--card); border-radius: var(--radius-l); padding: 34px 30px; box-shadow: var(--shadow-sm); }
.value-card .num { font-family: var(--font-display); font-size: 1.1rem; color: var(--orange); }
.value-card h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.25rem; margin: 14px 0 10px; }
.value-card p { color: var(--ink-soft); font-size: .95rem; }
.timeline { display: grid; gap: 0; margin-top: 40px; }
.tl-item { display: grid; grid-template-columns: 130px 1fr; gap: 30px; padding: 28px 0; border-top: 1px solid var(--line); }
.tl-item .yr { font-family: var(--font-display); font-size: 1.6rem; color: var(--sage); }
.tl-item h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.2rem; margin-bottom: 8px; }
.tl-item p { color: var(--ink-soft); }
.cta-band { background: var(--sage); color: var(--cream); border-radius: clamp(24px,4vw,44px); text-align: center; padding: clamp(50px,7vw,96px) var(--gut); }
.cta-band h2, .cta-band .lead { color: var(--cream); }
.cta-band .lead { opacity: .85; margin: 16px auto 30px; }

/* ============================================================
   3D TILT
   ============================================================ */
.tilt-scene { perspective: 1200px; }
[data-tilt] { will-change: transform; transform-style: preserve-3d; }
[data-tilt-layer] { transition: transform .12s ease-out; will-change: transform; }
.product-card[data-tilt] { transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.product-card[data-tilt]:hover { box-shadow: 0 50px 80px -40px rgba(43,46,37,.5); }
/* depth shine that reacts to tilt */
.product-card[data-tilt]::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius-l); pointer-events: none; z-index: 4;
  background: linear-gradient(130deg, rgba(255,255,255,.45), transparent 40%);
  opacity: 0; transition: opacity .4s var(--ease);
}
.product-card[data-tilt]:hover::before { opacity: .7; }

/* ============================================================
   THE GLOW JOURNAL (blog)
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(20px,2.4vw,30px); margin-top: 50px; }
.post-card {
  background: var(--card); border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.post-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.post-card__media { aspect-ratio: 16/10; position: relative; display: grid; place-items: center; overflow: hidden; }
.post-card__media .emoji { font-size: clamp(2.2rem,4vw,3rem); filter: drop-shadow(0 8px 12px rgba(0,0,0,.15)); transition: transform .6s var(--ease); }
.post-card:hover .post-card__media .emoji { transform: scale(1.15) rotate(-6deg); }
.post-card__cat { position: absolute; top: 14px; left: 14px; background: var(--card); color: var(--sage);
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: 100px; box-shadow: var(--shadow-sm); }
.post-card__body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card__meta { font-size: .76rem; color: var(--ink-soft); letter-spacing: .04em; }
.post-card h3 { font-family: var(--font-display); font-size: 1.3rem; line-height: 1.15; }
.post-card p { font-size: .92rem; color: var(--ink-soft); }
.post-card .link-arrow { margin-top: auto; padding-top: 6px; }
.post-card--feature { grid-column: span 2; flex-direction: row; }
.post-card--feature .post-card__media { aspect-ratio: auto; min-height: 100%; flex: 1; }
.post-card--feature .post-card__body { flex: 1.1; justify-content: center; padding: 38px; }
.post-card--feature h3 { font-size: clamp(1.6rem,2.4vw,2.2rem); }

/* ============================================================
   ARTICLE PAGE
   ============================================================ */
.article-hero { text-align: center; padding-block: clamp(40px,6vw,80px) 0; }
.article-hero .meta { display: flex; gap: 14px; justify-content: center; align-items: center; font-size: .82rem; color: var(--ink-soft); margin-top: 16px; }
.article-hero .meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--orange); }
.article-hero h1 { max-width: 18ch; margin: 18px auto 0; }
.article-cover { aspect-ratio: 16/7; border-radius: var(--radius-xl); margin-top: 40px; display: grid; place-items: center; overflow: hidden; box-shadow: var(--shadow-md); }
.article-cover .emoji { font-size: clamp(3rem,7vw,5rem); }
.article-body { max-width: 720px; margin: 0 auto; }
.article-body > * { margin-bottom: 22px; }
.article-body .lede { font-family: var(--font-display); font-size: clamp(1.25rem,2vw,1.5rem); line-height: 1.4; color: var(--ink); }
.article-body h2 { font-size: clamp(1.5rem,2.6vw,2rem); margin-top: 44px; }
.article-body h3 { font-size: 1.25rem; margin-top: 28px; }
.article-body p { font-size: 1.08rem; color: var(--ink-soft); line-height: 1.75; }
.article-body p strong { color: var(--ink); }
.article-body ul { display: grid; gap: 12px; padding-left: 0; }
.article-body ul li { position: relative; padding-left: 30px; color: var(--ink-soft); font-size: 1.05rem; }
.article-body ul li::before { content: ""; position: absolute; left: 0; top: 10px; width: 10px; height: 10px; border-radius: 50%; background: var(--orange); }
.article-body blockquote {
  border-left: 3px solid var(--sage); padding: 6px 0 6px 26px; margin: 34px 0;
  font-family: var(--font-display); font-style: italic; font-size: 1.4rem; color: var(--ink); line-height: 1.4;
}
.article-pull { background: var(--coconut-2); border-radius: var(--radius-l); padding: 30px 34px; }
.article-pull h3 { font-family: var(--font-body); font-weight: 600; margin-bottom: 8px; }
.article-share { display: flex; align-items: center; gap: 14px; margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--line); font-size: .85rem; color: var(--ink-soft); }
.article-share a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: background .3s var(--ease), color .3s var(--ease); }
.article-share a:hover { background: var(--sage); color: var(--cream); border-color: var(--sage); }
.article-author { display: flex; align-items: center; gap: 14px; }
.article-author .avatar { width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; color: var(--cream); font-weight: 700; background: var(--sage); }

@media (max-width: 920px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .post-card--feature { grid-column: span 2; flex-direction: column; }
  .post-card--feature .post-card__media { aspect-ratio: 16/9; }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .post-card--feature { grid-column: span 1; }
}

/* ============================================================
   QUICK VIEW MODAL
   ============================================================ */
.qv-modal { position: fixed; inset: 0; z-index: 220; display: none; place-items: center; padding: 20px;
  background: rgba(43,46,37,.5); backdrop-filter: blur(4px); }
.qv-modal.is-open { display: grid; animation: fade .3s var(--ease); }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.qv-card { background: var(--cream); border-radius: var(--radius-l); width: min(820px, 100%); max-height: 90vh; overflow: auto;
  display: grid; grid-template-columns: 1fr 1fr; position: relative; box-shadow: var(--shadow-lg);
  animation: pop .4s var(--ease); }
@keyframes pop { from { transform: translateY(20px) scale(.97); opacity: 0; } to { transform: none; opacity: 1; } }
.qv-close { position: absolute; top: 12px; right: 12px; z-index: 2; background: rgba(255,255,255,.8); }
.qv-media { display: grid; place-items: center; padding: 40px; }
.qv-media img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); }
.qv-info { padding: 38px 38px 38px 30px; display: flex; flex-direction: column; gap: 14px; }
.qv-info h3 { font-family: var(--font-display); font-size: 1.9rem; }
.qv-actions { display: grid; gap: 10px; margin-top: 8px; }
@media (max-width: 680px) { .qv-card { grid-template-columns: 1fr; } .qv-media { padding: 30px 30px 0; } }

/* Skin concern / type detail card */
.cat-card {
  background: var(--cream); border-radius: var(--radius-l); width: min(700px, 100%);
  max-height: 90vh; overflow: auto; position: relative; box-shadow: var(--shadow-lg);
  padding: clamp(28px, 4vw, 44px); animation: pop .4s var(--ease);
}
.cat-card__close { position: absolute; top: 14px; right: 14px; background: rgba(255,255,255,.7); }
.cat-card__head { display: flex; gap: 22px; align-items: center; }
.cat-card__disc {
  width: 86px; height: 86px; border-radius: 50%; display: grid; place-items: center;
  font-size: 2.4rem; flex-shrink: 0; box-shadow: var(--shadow-sm); position: relative;
}
.cat-card__disc::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(255,255,255,.6); }
.cat-card__eyebrow { font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--sage); }
.cat-card__head h3 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.1rem); margin-top: 4px; }
.cat-card__desc { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.7; margin: 20px 0 4px; }
.cat-card__rec-title {
  font-weight: 600; font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink);
  margin: 28px 0 16px; display: flex; align-items: center; gap: .6em;
}
.cat-card__rec-title .sparkle { width: 14px; }
.rec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(0, 1fr)); gap: 14px; }
.rec-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; display: flex; flex-direction: column; gap: 10px; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.rec-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.rec-card__img { aspect-ratio: 1/.92; border-radius: 14px; display: grid; place-items: center; overflow: hidden; }
.rec-card__img img { width: 100%; height: 100%; object-fit: cover; }
.rec-card h5 { font-family: var(--font-body); font-size: .95rem; font-weight: 600; }
.rec-card .stars { font-size: .82rem; }
.rec-card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.rec-card .price { font-weight: 600; font-size: .98rem; }
.add-btn--sm { padding: 9px 14px; font-size: .8rem; }
.cat-card__cta { margin-top: 24px; }
@media (max-width: 560px) {
  .cat-card__head { flex-direction: column; text-align: center; }
  .rec-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   CHECKOUT
   ============================================================ */
.co-header { border-bottom: 1px solid var(--line); background: var(--cream); position: sticky; top: 0; z-index: 50; }
.co-header__inner { max-width: var(--maxw); margin-inline: auto; padding: 16px var(--gut); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.co-secure { display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; color: var(--ink-soft); font-weight: 500; }
.co-secure svg { color: var(--sage); }
.co-back { font-size: .85rem; font-weight: 600; color: var(--sage); display: inline-flex; align-items: center; gap: 6px; }

.checkout { padding-block: clamp(30px, 5vw, 60px); }
.co-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: start; }
/* grid items are min-width:auto by default, so a text input's min-content width
   (roughly 20 characters) would otherwise push checkout wider than a 320px phone */
.co-grid > *, .field input, .field select, .field textarea { min-width: 0; }
.co-form h2 { font-family: var(--font-body); font-weight: 600; font-size: 1.15rem; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.co-form h2 .step { width: 26px; height: 26px; border-radius: 50%; background: var(--sage); color: var(--cream); font-size: .8rem; display: grid; place-items: center; flex-shrink: 0; }
.co-block { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-l); padding: clamp(22px, 3vw, 32px); margin-bottom: 22px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 14px; }
.field--full { grid-column: 1 / -1; }
.field label { display: block; font-size: .8rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 7px; }
.field input, .field select {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px;
  font-size: .95rem; background: var(--cream); color: var(--ink); transition: border-color .25s var(--ease), background .25s var(--ease);
}
.field input:focus, .field select:focus { outline: none; border-color: var(--sage); background: #fff; }
.pay-methods { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.pay-opt { flex: 1; min-width: 120px; border: 1.5px solid var(--line); border-radius: 12px; padding: 14px; cursor: pointer; display: flex; align-items: center; gap: 10px; font-size: .9rem; font-weight: 500; transition: border-color .25s, background .25s; }
.pay-opt.is-active { border-color: var(--sage); background: rgba(107,119,84,.07); }
.pay-opt .tick { width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; flex-shrink: 0; }
.pay-opt.is-active .tick { border-color: var(--sage); background: var(--sage); color: #fff; }
.pay-opt.is-disabled { opacity: .45; cursor: not-allowed; }
.pay-opt.is-disabled.is-active { opacity: 1; }

/* summary */
.co-summary { position: sticky; top: 92px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-l); padding: clamp(22px, 3vw, 30px); }
.co-summary h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.05rem; margin-bottom: 18px; }
.co-line { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.co-line__img { width: 62px; height: 68px; border-radius: 12px; flex-shrink: 0; display: grid; place-items: center; }
.co-line__img img { width: 60%; }
.co-line__info { flex: 1; min-width: 0; }
.co-line__info h4 { font-family: var(--font-body); font-size: .92rem; font-weight: 600; }
.co-line__info .size { font-size: .78rem; color: var(--ink-soft); }
.co-line__price { font-weight: 600; font-size: .92rem; white-space: nowrap; }
.co-line__remove { font-size: .74rem; color: var(--ink-soft); text-decoration: underline; margin-top: 6px; }
.co-line__remove:hover { color: var(--strawberry); }
.co-promo { display: flex; gap: 8px; margin: 18px 0; }
/* min-width:0 lets the field shrink past its ~20-character min-content width,
   so the promo row still fits beside the Apply button on a 320px phone */
.co-promo input { flex: 1; min-width: 0; padding: 11px 14px; border: 1.5px solid var(--line); border-radius: 100px; font-size: .88rem; background: var(--cream); }
.co-totals { display: grid; gap: 10px; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 16px; }
.co-totals .row { display: flex; justify-content: space-between; font-size: .92rem; color: var(--ink-soft); }
.co-totals .row.total { font-size: 1.2rem; font-weight: 700; color: var(--ink); padding-top: 8px; }
.co-totals .free { color: var(--sage); font-weight: 600; }
.co-trust { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 16px; font-size: .76rem; color: var(--ink-soft); }
.co-trust span { display: inline-flex; align-items: center; gap: 5px; }
.co-empty { text-align: center; padding: 80px 20px; }
.co-empty p { color: var(--ink-soft); margin: 14px 0 24px; }
/* confirmation */
.co-confirm { max-width: 560px; margin: 0 auto; text-align: center; padding: clamp(40px, 7vw, 90px) 0; }
.co-confirm__badge { width: 84px; height: 84px; border-radius: 50%; background: var(--sage); color: var(--cream); display: grid; place-items: center; margin: 0 auto 24px; animation: pop .5s var(--ease); }
.co-confirm h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 14px; }
.co-confirm__order { display: inline-block; background: var(--cream-2); border-radius: 100px; padding: 8px 18px; font-weight: 600; font-size: .9rem; margin: 8px 0 22px; }
@media (max-width: 900px) {
  .co-grid { grid-template-columns: 1fr; }
  .co-summary { position: static; order: -1; }
}
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }

/* ============================================================
   ACCOUNT · AUTH · LOYALTY DASHBOARD
   ============================================================ */
.acc { padding-block: clamp(34px, 5vw, 64px); }

/* auth (login / signup) */
.auth-wrap { max-width: 560px; margin: 0 auto; }
.auth-tabs { display: flex; gap: 6px; background: var(--cream-2); padding: 6px; border-radius: 100px; margin-bottom: 26px; }
.auth-tab { flex: 1; padding: 11px; border-radius: 100px; font-weight: 600; font-size: .9rem; color: var(--ink-soft); transition: background .25s var(--ease), color .25s var(--ease); }
.auth-tab.is-active { background: var(--card); color: var(--ink); box-shadow: var(--shadow-sm); }
.auth-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-l); padding: clamp(24px, 4vw, 38px); }
.auth-card h1 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 6px; }
.auth-card .sub { color: var(--ink-soft); font-size: .95rem; margin-bottom: 24px; }
.profile-section { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 22px; }
.profile-section .opt-label { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--sage); }
.profile-section > p.hint { font-size: .85rem; color: var(--ink-soft); margin: 4px 0 18px; }
.dob-row { display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 10px; }
.chip-select { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-opt { cursor: pointer; }
.chip-opt input { position: absolute; opacity: 0; pointer-events: none; }
.chip-opt span {
  display: inline-block; padding: 9px 16px; border: 1.5px solid var(--line); border-radius: 100px;
  font-size: .85rem; font-weight: 500; color: var(--ink-soft); transition: all .2s var(--ease); background: var(--cream);
}
.chip-opt input:checked + span { border-color: var(--sage); background: rgba(107,119,84,.1); color: var(--sage); }
.chip-opt input:focus-visible + span { outline: 2px solid var(--orange); outline-offset: 2px; }

/* dashboard */
.dash-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 28px; }
.dash-head h1 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); }
.dash-head .greet-meta { color: var(--ink-soft); font-size: .9rem; margin-top: 4px; }
.tier-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--sage); color: var(--cream); padding: 8px 16px; border-radius: 100px; font-size: .82rem; font-weight: 600; }
.tier-badge .sparkle { width: 13px; }

.bday-banner {
  background: linear-gradient(120deg, var(--straw-soft), var(--peach) 60%, var(--orange-soft));
  border-radius: var(--radius-l); padding: clamp(22px, 3vw, 30px); display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin-bottom: 26px; box-shadow: var(--shadow-sm);
}
.bday-banner h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--ink); }
.bday-banner p { color: var(--ink-soft); font-size: .9rem; margin-top: 4px; }

.dash-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(20px, 3vw, 30px); align-items: start; }
.points-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 22px; }
.pcard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; text-align: center; }
.pcard .pnum { font-family: var(--font-display); font-size: 2rem; color: var(--sage); line-height: 1; }
.pcard.is-neg .pnum { color: var(--strawberry); }
.pcard .plbl { font-size: .74rem; color: var(--ink-soft); margin-top: 7px; letter-spacing: .03em; }

.panel { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-l); padding: clamp(20px, 3vw, 28px); margin-bottom: 22px; }
.panel h2 { font-family: var(--font-body); font-weight: 600; font-size: 1.1rem; margin-bottom: 16px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }

.progress { margin: 6px 0 4px; }
.progress__track { height: 12px; border-radius: 100px; background: var(--cream-2); overflow: hidden; }
.progress__fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--sage-soft), var(--sage)); transition: width .8s var(--ease); }
.progress__label { display: flex; justify-content: space-between; font-size: .82rem; color: var(--ink-soft); margin-top: 10px; }
.progress__label strong { color: var(--sage); }

/* rewards */
.reward-row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.reward-row:last-child { border-bottom: 0; }
.reward-row__ic { width: 44px; height: 44px; border-radius: 12px; background: var(--orange-soft); color: var(--orange); display: grid; place-items: center; flex-shrink: 0; font-size: 1.2rem; }
.reward-row__info { flex: 1; min-width: 0; }
.reward-row__info h4 { font-family: var(--font-body); font-size: .95rem; font-weight: 600; }
.reward-row__info .req { font-size: .8rem; color: var(--ink-soft); }
.reward-row .btn { flex-shrink: 0; }

/* skin profile summary */
.skin-summary .row { display: flex; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: .9rem; }
.skin-summary .row:last-child { border-bottom: 0; }
.skin-summary .row .k { width: 110px; flex-shrink: 0; color: var(--ink-soft); }
.skin-summary .row .v { font-weight: 500; display: flex; flex-wrap: wrap; gap: 6px; }
.skin-summary .v .tag { background: var(--cream-2); border-radius: 100px; padding: 3px 11px; font-size: .8rem; }

/* orders */
.order-row { padding: 16px 0; border-bottom: 1px solid var(--line); }
.order-row:last-child { border-bottom: 0; }
.order-row__top { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; align-items: center; }
.order-row__id { font-weight: 600; font-size: .92rem; }
.order-row__meta { font-size: .8rem; color: var(--ink-soft); margin-top: 3px; }
.status-pill { font-size: .7rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; }
.status-pending { background: #FBE6C4; color: #9A6B1E; }
.status-completed { background: #E2E8D6; color: var(--sage-deep); }
.status-refunded, .status-partially_refunded { background: var(--straw-soft); color: #B14E63; }
.order-row__pts { font-size: .82rem; color: var(--ink-soft); margin-top: 8px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.order-row__pts .pts-val { font-weight: 600; color: var(--sage); }
.order-demo { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.order-demo .btn { padding: 7px 14px; font-size: .76rem; }
.demo-note { font-size: .76rem; color: var(--ink-soft); background: var(--cream-2); border-radius: 12px; padding: 12px 14px; margin-top: 14px; }

@media (max-width: 900px) { .dash-grid { grid-template-columns: 1fr; } }
@media (max-width: 520px) {
  .points-cards { grid-template-columns: 1fr; }
  /* three fields (day / month / year) into two columns — let year take its own full row */
  .dob-row { grid-template-columns: 1fr 1fr; }
  .dob-row > :nth-child(3) { grid-column: 1 / -1; }
}

/* ============================================================
   ADMIN
   ============================================================ */
.admin-body { background: #F4F1E9; }
.admin-top { background: var(--ink); color: var(--cream); position: sticky; top: 0; z-index: 50; }
.admin-top__inner { max-width: 1320px; margin-inline: auto; padding: 14px clamp(16px,4vw,40px); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.admin-top .brand__word { color: var(--cream); font-size: 1.5rem; }
.admin-top .tagm { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--peach); margin-left: 10px; }
.admin-login { min-height: 70vh; display: grid; place-items: center; padding: 24px; }
.admin-login__card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-l); padding: clamp(28px,4vw,44px); width: min(420px,100%); text-align: center; box-shadow: var(--shadow-md); }
.admin-login__card .lock { width: 56px; height: 56px; border-radius: 50%; background: var(--ink); color: var(--cream); display: grid; place-items: center; margin: 0 auto 18px; }
.admin-login__card h1 { font-family: var(--font-display); font-size: 1.7rem; margin-bottom: 6px; }
.admin-login__card p { color: var(--ink-soft); font-size: .9rem; margin-bottom: 22px; }

.admin-wrap { max-width: 1320px; margin-inline: auto; padding: clamp(20px,3vw,34px) clamp(16px,4vw,40px); }
.admin-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 26px; }
.admin-tab { padding: 9px 18px; border-radius: 100px; font-weight: 600; font-size: .88rem; color: var(--ink-soft); background: var(--card); border: 1px solid var(--line); transition: all .2s var(--ease); }
.admin-tab.is-active { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.admin-tab .count { opacity: .7; font-weight: 500; }

.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 12px; }
.stat { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.stat .v { font-family: var(--font-display); font-size: 2rem; color: var(--ink); line-height: 1; }
.stat .l { font-size: .78rem; color: var(--ink-soft); margin-top: 8px; }
.stat .v.sage { color: var(--sage); }
.stat .v.straw { color: var(--strawberry); }

.admin-panel { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-l); padding: clamp(18px,2.5vw,26px); margin-top: 20px; }
.admin-panel h2 { font-family: var(--font-body); font-weight: 600; font-size: 1.05rem; margin-bottom: 16px; }
.tbl-scroll { overflow-x: auto; }
table.admin-tbl { width: 100%; border-collapse: collapse; font-size: .88rem; min-width: 640px; }
.admin-tbl th { text-align: left; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); padding: 10px 12px; border-bottom: 2px solid var(--line); white-space: nowrap; }
.admin-tbl td { padding: 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.admin-tbl tr:hover td { background: var(--cream); }
.admin-tbl .mono { font-variant-numeric: tabular-nums; }
.admin-tbl .sub { color: var(--ink-soft); font-size: .8rem; }
.admin-actions { display: flex; gap: 6px; flex-wrap: wrap; }
.admin-actions .btn { padding: 6px 12px; font-size: .74rem; }
.bday-flag { background: var(--straw-soft); color: #B14E63; font-size: .68rem; font-weight: 700; padding: 3px 9px; border-radius: 100px; }
.empty-row { text-align: center; color: var(--ink-soft); padding: 40px; }
.stars-mini { color: var(--orange); letter-spacing: 1px; }

@media (max-width: 760px) { .stat-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   GLOW AMBASSADOR PROGRAM
   ============================================================ */
.amb { padding-block: clamp(34px, 5vw, 64px); }
.amb-hero { text-align: center; max-width: 700px; margin: 0 auto clamp(30px,4vw,48px); }
.amb-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.2rem); margin: 14px 0; }
.amb-hero .lead { margin-inline: auto; }

/* ladder strip (on intro) */
.ladder { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 36px 0; }
.ladder__step { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 16px; text-align: center; }
.ladder__step .emoji { font-size: 1.8rem; }
.ladder__step h4 { font-family: var(--font-body); font-size: .95rem; font-weight: 600; margin: 8px 0 4px; }
.ladder__step .pts { font-size: .78rem; color: var(--ink-soft); }
.ladder__step.is-current { border-color: var(--sage); box-shadow: var(--shadow-md); background: linear-gradient(180deg,#fff,var(--cream)); }

/* points rules */
.rules-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.rule { display: flex; align-items: center; gap: 12px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 16px; }
.rule .pp { margin-left: auto; font-weight: 700; color: var(--sage); white-space: nowrap; }

/* level badge (dashboard) */
.level-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--ink); color: var(--cream); padding: 9px 18px; border-radius: 100px; font-weight: 600; font-size: .9rem; }
.level-badge .e { font-size: 1.1rem; }

/* glow ladder progress */
.glow-ladder { position: relative; margin: 22px 0 6px; }
.glow-ladder__track { height: 14px; border-radius: 100px; background: var(--cream-2); overflow: hidden; }
.glow-ladder__fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--leaf), var(--sage)); transition: width .8s var(--ease); }
.glow-ladder__nodes { display: flex; justify-content: space-between; margin-top: 10px; }
.glow-ladder__nodes span { font-size: 1.1rem; opacity: .4; }
.glow-ladder__nodes span.on { opacity: 1; }

/* engagement post cards */
.eng-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.eng-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.eng-card__media { aspect-ratio: 16/10; display: grid; place-items: center; font-size: 2.2rem; }
.eng-card__body { padding: 14px; }
.eng-card__body p { font-size: .88rem; color: var(--ink); margin-bottom: 12px; }
.eng-actions { display: flex; gap: 8px; }
.eng-btn { flex: 1; border: 1.5px solid var(--line); border-radius: 100px; padding: 8px; font-size: .78rem; font-weight: 600; color: var(--ink-soft); transition: all .2s var(--ease); display: flex; align-items: center; justify-content: center; gap: 4px; }
.eng-btn:hover { border-color: var(--sage); color: var(--sage); }
.eng-btn.done { background: var(--sage); border-color: var(--sage); color: var(--cream); cursor: default; }

/* content submission list */
.content-row { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--line); }
.content-row:last-child { border-bottom: 0; }
.content-row__ic { width: 40px; height: 40px; border-radius: 10px; background: var(--coconut-2); display: grid; place-items: center; flex-shrink: 0; }
.content-row__info { flex: 1; min-width: 0; }
.content-row__info a { color: var(--sage); font-weight: 600; font-size: .9rem; word-break: break-all; }
.content-row__info .cap { font-size: .82rem; color: var(--ink-soft); margin-top: 3px; }
.chip-status { font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; white-space: nowrap; }
.chip-pending { background: #FBE6C4; color: #9A6B1E; }
.chip-approved { background: #E2E8D6; color: var(--sage-deep); }
.chip-rejected { background: var(--straw-soft); color: #B14E63; }
.content-row__pts { font-size: .8rem; color: var(--sage); font-weight: 600; margin-top: 4px; }

.amb-status-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-l); padding: clamp(28px,4vw,44px); text-align: center; max-width: 560px; margin: 0 auto; }
.amb-status-card .big { font-size: 2.6rem; }
.amb-cta-band { background: linear-gradient(120deg, var(--coconut-2), var(--straw-soft)); border-radius: var(--radius-l); padding: clamp(22px,3vw,30px); display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 26px; }
.amb-cta-band h3 { font-family: var(--font-display); font-size: 1.4rem; }
.amb-cta-band p { color: var(--ink-soft); font-size: .9rem; margin-top: 4px; }

@media (max-width: 760px) { .ladder { grid-template-columns: 1fr 1fr; } .eng-grid { grid-template-columns: 1fr; } .rules-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .circle-grid { grid-template-columns: repeat(3,1fr); }
  .skin-grid { grid-template-columns: repeat(5,1fr); }
  .why-grid { grid-template-columns: repeat(5,1fr); gap: 14px; }
  .masonry { columns: 3; }
  /* collapse the (now longer) nav to the hamburger earlier to avoid crowding */
  .nav__menu { display: none; }
  .nav__toggle { display: grid; }
}
@media (max-width: 920px) {
  .nav__menu { display: none; }
  .nav__toggle { display: grid; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__cta, .hero__stats { justify-content: center; }
  .hero__visual { max-width: 460px; margin: 10px auto 0; width: 100%; }
  .ing-row { grid-template-columns: 1fr; gap: 26px; }
  .ing-row:nth-child(even) .ing-row__media { order: -1; }
  .pdp { grid-template-columns: 1fr; }
  .gallery { position: static; }
  .story-split { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .ba-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  body { padding-bottom: var(--bottombar-h); }
  .bottombar { display: flex; }
  /* the bottom nav is shown from here down, so the add-to-bag bar must sit above it
     instead of covering it (its own safe-area padding is folded into --bottombar-h) */
  .pdp-sticky { bottom: var(--bottombar-h); padding-bottom: 12px; }
  /* iOS Safari zooms the whole page when a focused control's text is below 16px.
     !important because component rules (.field input, .subscribe input, …) carry a
     class and would otherwise out-specify this bare element selector. */
  input, select, textarea { font-size: 16px !important; }
  .products { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .skin-grid { grid-template-columns: repeat(3,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .masonry { columns: 2; }
  .pdp__benefits { grid-template-columns: 1fr; }
  .announce { font-size: .68rem; }
  .quick-view { opacity: 1; transform: translate(-50%,0); }
  .tl-item { grid-template-columns: 1fr; gap: 6px; }
}
@media (max-width: 480px) {
  /* the header runs out of room on small phones (iPhone SE is 320px wide).
     Search and Wishlist are both reachable from the bottom nav, so drop them here. */
  .nav__inner { gap: 10px; padding-right: 16px; }
  .nav__icons { gap: 2px; }
  .nav__icons [data-search], .nav__icons [data-wish] { display: none; }
  .circle-grid { grid-template-columns: repeat(2,1fr); }
  .products { grid-template-columns: 1fr; }
  .hero__stats { gap: 24px; }
  .subscribe { flex-direction: column; background: transparent; padding: 0; box-shadow: none; }
  .subscribe input { background: var(--card); border-radius: 100px; box-shadow: var(--shadow-sm); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

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

/* ============================================================
   INFO PAGES — Contact + Careers
   ============================================================ */
/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(20px, 4vw, 48px); max-width: 1040px; margin: 48px auto 0; align-items: start; }
.contact-info { display: grid; gap: 14px; }
.contact-card { display: flex; gap: 14px; align-items: flex-start; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-l); padding: 20px 22px; }
.contact-card__ic { font-size: 1.5rem; line-height: 1; flex-shrink: 0; }
.contact-card h4 { font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 4px; }
.contact-card a, .contact-card span { font-weight: 600; color: var(--ink); word-break: break-word; }
.contact-card a:hover { color: var(--sage); }
.contact-card p { font-size: .85rem; color: var(--ink-soft); margin-top: 4px; }
.contact-form { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-sm); }
.contact-form h2 { font-family: var(--font-display); font-size: clamp(1.4rem, 2.4vw, 1.8rem); }
.contact-form .sub { color: var(--ink-soft); margin: 6px 0 22px; }
.contact-form textarea { width: 100%; font: inherit; color: var(--ink); background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius-s); padding: 12px 14px; resize: vertical; min-height: 120px; transition: border-color .25s var(--ease); }
.contact-form textarea:focus { outline: none; border-color: var(--sage); }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

/* Careers */
.career-perks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 980px; margin: 36px auto 56px; }
.perk { background: var(--coconut-2); border-radius: var(--radius-l); padding: 24px 22px; text-align: center; }
.perk__ic { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.perk h4 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 6px; }
.perk p { font-size: .88rem; color: var(--ink-soft); line-height: 1.55; }
.careers-list { max-width: 820px; margin: 0 auto; }
.job { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-l); padding: 22px 26px; margin-bottom: 14px;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease); }
.job:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.job__main { flex: 1 1 280px; }
.job__main h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 4px; }
.job__main p { color: var(--ink-soft); font-size: .92rem; line-height: 1.5; }
.job__meta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.job__tag { font-size: .72rem; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; color: var(--sage);
  background: rgba(107,119,84,.1); border-radius: 100px; padding: 5px 11px; }
@media (max-width: 720px) { .career-perks { grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px) { .career-perks { grid-template-columns: 1fr; } }
