/* ==========================================================================
   lunablue — premium redesign demo
   Brand: Deep Navy #1E365F · Ocean Teal #4EA0B5 · Sky Teal #67B9CF
          Pale Mist #DCEEF3 · Ink #14212B · Off White #F4F6F8
   Type:  Poppins (titles) · Glacial Indifference (body) · Instrument Serif italic (accent)
   ========================================================================== */

:root {
  --navy: #1E365F;
  --navy-deep: #13253F;
  --navy-ink: #0E1B2E;
  --teal: #4EA0B5;
  --sky: #67B9CF;
  --mist: #DCEEF3;
  --mist-2: #EAF4F7;
  --ink: #14212B;
  --off: #F4F6F8;
  --white: #ffffff;
  --line: #E3E9ED;
  --muted: #5F6E7A;

  --font-title: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Glacial Indifference", "Poppins", system-ui, sans-serif;
  --font-accent: "Instrument Serif", Georgia, "Times New Roman", serif;

  --radius: 18px;
  --radius-sm: 10px;
  --shadow-1: 0 1px 2px rgba(20,33,43,.05), 0 8px 24px -12px rgba(30,54,95,.18);
  --shadow-2: 0 2px 4px rgba(20,33,43,.06), 0 28px 60px -24px rgba(30,54,95,.35);
  --ease: cubic-bezier(.2,.7,.2,1);

  --bs-body-font-family: var(--font-body);
  --bs-body-color: var(--ink);
  --bs-body-bg: var(--white);
  --bs-link-color: var(--navy);
  --bs-link-hover-color: var(--teal);
  --bs-border-radius: var(--radius-sm);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4,.h1,.h2,.h3,.h4 { font-family: var(--font-title); color: var(--navy); letter-spacing: -.02em; }
h1,.h1 { font-weight: 300; line-height: 1.02; }
h2,.h2 { font-weight: 300; line-height: 1.08; }
h3,.h3 { font-weight: 500; line-height: 1.2; }
a { text-decoration: none; transition: color .25s var(--ease); }
img { max-width: 100%; height: auto; }
::selection { background: var(--sky); color: var(--white); }

.accent { font-family: var(--font-accent); font-style: italic; font-weight: 400; letter-spacing: 0; }
.eyebrow {
  font-family: var(--font-title);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: currentColor; opacity: .7;
}
.eyebrow.no-line::before { display: none; }
.lead-copy { font-size: 1.125rem; color: var(--muted); max-width: 56ch; }
.night .lead-copy { color: rgba(255,255,255,.72); }
.display-1,.display-2,.display-3 { font-family: var(--font-title); font-weight: 300; letter-spacing: -.035em; line-height: .98; color: var(--navy); }
.display-2 { font-size: clamp(2.6rem, 6vw, 5rem); }
.display-3 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }

/* Sections ---------------------------------------------------------------- */
section { position: relative; }
.section-pad { padding-block: clamp(4rem, 9vw, 8rem); }
.night { background: var(--navy-deep); color: var(--white); }
.night h1,.night h2,.night h3,.night .display-2,.night .display-3 { color: var(--white); }
.night .eyebrow { color: var(--sky); }
.day-mist { background: var(--off); }
.grain::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  opacity: .28; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.grain > * { position: relative; z-index: 1; }

/* Buttons ---------------------------------------------------------------- */
.btn { font-family: var(--font-title); font-weight: 500; letter-spacing: .01em; border-radius: 999px; padding: .85rem 1.6rem; transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s, color .25s, border-color .25s; }
.btn:active { transform: translateY(1px) scale(.99); }
.btn-navy { background: var(--navy); color: var(--white); border: 1px solid var(--navy); }
.btn-navy:hover { background: var(--navy-ink); color: var(--white); box-shadow: 0 16px 30px -14px rgba(30,54,95,.7); transform: translateY(-2px); }
.btn-teal { background: var(--teal); color: var(--white); border: 1px solid var(--teal); }
.btn-teal:hover { background: var(--sky); border-color: var(--sky); color: var(--white); box-shadow: 0 16px 30px -14px rgba(78,160,181,.8); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--navy); border: 1px solid rgba(30,54,95,.35); }
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); background: rgba(30,54,95,.04); }
.night .btn-ghost { color: var(--white); border-color: rgba(255,255,255,.35); }
.night .btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); color: var(--white); }
.btn-link-arrow { color: var(--navy); font-family: var(--font-title); font-weight: 500; display: inline-flex; align-items: center; gap: .5rem; }
.btn-link-arrow i { transition: transform .35s var(--ease); }
.btn-link-arrow:hover i { transform: translateX(4px); }
.btn-link-arrow:hover { color: var(--teal); }
.night .btn-link-arrow { color: var(--sky); }

/* Announcement bar -------------------------------------------------------- */
.announce {
  background: var(--navy-ink); color: rgba(255,255,255,.85);
  font-size: .78rem; letter-spacing: .04em; overflow: hidden;
  position: relative; z-index: 1035;
}
.announce .track { display: flex; gap: 3.5rem; white-space: nowrap; animation: marquee 38s linear infinite; padding-block: .5rem; width: max-content; }
.announce .track span { display: inline-flex; align-items: center; gap: .6rem; }
.announce .track span::before { content: "◐"; color: var(--sky); font-size: .8em; }
.announce:hover .track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* Navbar ------------------------------------------------------------------ */
.lb-nav {
  position: sticky; top: 0; z-index: 1030;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s;
  background: rgba(19,37,63,0);
  padding-block: .9rem;
}
.lb-nav.on-night { color: var(--white); }
.lb-nav.scrolled { background: rgba(255,255,255,.86); backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px); box-shadow: 0 1px 0 rgba(30,54,95,.08); padding-block: .55rem; }
.lb-nav.scrolled.on-night { background: rgba(19,37,63,.82); }
.lb-nav .brand { display: inline-flex; align-items: center; gap: .65rem; }
.lb-nav .brand { padding: 0; }
.lb-nav .brand img { height: 62px; width: auto; max-width: none; display: block; transition: height .3s var(--ease); }
.lb-nav.scrolled .brand img { height: 50px; }
@media (max-width: 991.98px) { .lb-nav .brand img { height: 54px; } .lb-nav.scrolled .brand img { height: 46px; } .lb-nav { padding-block: .5rem; } }
.lb-nav .brand .logo-night { display: none; }
.lb-nav.on-night .brand .logo-night { display: block; }
.lb-nav.on-night .brand .logo-day { display: none; }
.lb-nav .brand .wordmark { font-family: var(--font-title); font-weight: 600; font-size: 1.35rem; letter-spacing: -.02em; color: var(--navy); }
.lb-nav .brand .wordmark b { color: var(--teal); font-weight: 600; }
.lb-nav.on-night:not(.scrolled) .brand .wordmark, .lb-nav.on-night .brand .wordmark { color: var(--white); }
.lb-nav .nav-link { font-family: var(--font-title); font-weight: 500; font-size: .92rem; color: var(--navy); padding: .5rem .9rem; position: relative; }
.lb-nav.on-night .nav-link { color: rgba(255,255,255,.88); }
.lb-nav .nav-link::after { content: ""; position: absolute; left: .9rem; right: .9rem; bottom: .25rem; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
.lb-nav .nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.lb-nav .nav-link .tag { font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; background: var(--sky); color: var(--white); border-radius: 999px; padding: .15rem .45rem; margin-left: .35rem; vertical-align: middle; font-weight: 600; }
.lb-nav .icon-btn { width: 40px; height: 40px; border-radius: 50%; display: inline-grid; place-items: center; color: var(--navy); border: 1px solid transparent; transition: all .25s var(--ease); position: relative; background: transparent; }
.lb-nav .icon-btn:hover { border-color: rgba(30,54,95,.25); background: rgba(30,54,95,.04); }
.lb-nav.on-night .icon-btn { color: var(--white); }
.lb-nav.on-night .icon-btn:hover { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.08); }
.lb-nav .icon-btn .count { position: absolute; top: 2px; right: 2px; width: 16px; height: 16px; border-radius: 50%; background: var(--teal); color: #fff; font-size: .62rem; display: grid; place-items: center; font-weight: 600; font-family: var(--font-title); }
.lb-nav .navbar-toggler { border: 0; color: inherit; }
.lb-nav .navbar-toggler:focus { box-shadow: none; }

/* Mega menu */
.mega { position: absolute; left: 0; right: 0; top: 100%; background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 30px 50px -30px rgba(30,54,95,.35); opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .35s var(--ease); z-index: 1029; color: var(--ink); }
.has-mega:hover .mega, .has-mega:focus-within .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.mega h6 { font-family: var(--font-title); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--teal); font-weight: 600; margin-bottom: .9rem; }
.mega a.item { display: block; color: var(--ink); padding: .3rem 0; font-size: .95rem; }
.mega a.item:hover { color: var(--teal); transform: translateX(3px); }
.mega a.item small { color: var(--muted); margin-left: .4rem; font-size: .75rem; }
.mega .feature { border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 4/3; }
.mega .feature img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.mega .feature:hover img { transform: scale(1.06); }
.mega .feature .cap { position: absolute; inset: auto 0 0 0; padding: 1rem 1.2rem; background: linear-gradient(to top, rgba(14,27,46,.85), transparent); color: #fff; font-family: var(--font-title); font-weight: 500; }

/* Offcanvas */
.offcanvas.lb-off { background: var(--navy-deep); color: #fff; width: min(92vw, 400px); }
.offcanvas.lb-off .btn-close { filter: invert(1); opacity: .8; }
.offcanvas.lb-off .accordion-button { background: transparent; color: #fff; font-family: var(--font-title); font-weight: 500; font-size: 1.35rem; padding: 1rem 0; box-shadow: none; }
.offcanvas.lb-off .accordion-button::after { filter: invert(1); }
.offcanvas.lb-off .accordion-item { background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.offcanvas.lb-off .accordion-body a { color: rgba(255,255,255,.8); display: block; padding: .4rem 0; }
.offcanvas.lb-off .plain { color: #fff; font-family: var(--font-title); font-weight: 500; font-size: 1.35rem; display: block; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }

/* Hero -------------------------------------------------------------------- */
.hero {
  min-height: calc(100svh - 0px);
  background: radial-gradient(120% 90% at 85% 10%, #244472 0%, var(--navy-deep) 45%, var(--navy-ink) 100%);
  color: #fff; overflow: hidden; display: flex; align-items: center;
  margin-top: calc(-1 * var(--navh, 74px)); padding-top: var(--navh, 74px);
}
.hero .moon {
  position: absolute; width: 62vmin; height: 62vmin; border-radius: 50%;
  right: 6%; top: -12%; pointer-events: none;
  background: radial-gradient(circle at 40% 40%, rgba(220,238,243,.55), rgba(103,185,207,.18) 40%, rgba(103,185,207,0) 70%);
  filter: blur(10px);
  will-change: transform;
}
.hero .ghost {
  position: absolute; left: -2vw; bottom: -6vw; font-family: var(--font-title); font-weight: 600; letter-spacing: -.05em;
  font-size: clamp(9rem, 26vw, 24rem); line-height: 1; color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.08); pointer-events: none; user-select: none; white-space: nowrap;
  will-change: transform;
}
.hero .hero-copy { position: relative; z-index: 2; }
.hero h1 { font-size: clamp(3rem, 7.2vw, 6.4rem); color: #fff; margin-bottom: 1.4rem; }
.hero h1 .accent { color: var(--sky); font-size: 1.06em; }
.hero .hero-sub { color: rgba(255,255,255,.75); font-size: 1.15rem; max-width: 48ch; }
.hero .stats { display: flex; gap: 2.2rem; flex-wrap: wrap; margin-top: 2.6rem; }
.hero .stats div { border-left: 1px solid rgba(255,255,255,.18); padding-left: 1rem; }
.hero .stats strong { display: block; font-family: var(--font-title); font-weight: 300; font-size: 1.9rem; line-height: 1; color: #fff; letter-spacing: -.03em; }
.hero .stats span { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.55); font-family: var(--font-title); }

.hero .portal { position: relative; z-index: 2; aspect-ratio: 4/5; max-width: 520px; margin-inline: auto; }
.hero .portal .frame {
  position: absolute; inset: 0; border-radius: 260px 260px 28px 28px; overflow: hidden;
  box-shadow: 0 60px 100px -40px rgba(0,0,0,.7), inset 0 0 0 1px rgba(255,255,255,.12);
  will-change: transform;
}
.hero .portal .frame img { width: 100%; height: 118%; object-fit: cover; object-position: center 30%; transform: translateY(-9%); will-change: transform; }
.hero .portal .frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(19,37,63,.55), rgba(19,37,63,0) 45%); }
.hero .portal .ring { position: absolute; inset: -14px; border-radius: 270px 270px 40px 40px; border: 1px solid rgba(103,185,207,.35); pointer-events: none; will-change: transform; }
.hero .portal .ring.two { inset: -34px; border-radius: 290px 290px 56px 56px; border-color: rgba(103,185,207,.14); }
.hero .chip {
  position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.1); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.22); color: #fff; font-family: var(--font-title); font-size: .8rem; font-weight: 500;
  padding: .55rem .9rem; border-radius: 999px; box-shadow: 0 20px 40px -20px rgba(0,0,0,.6); will-change: transform;
  animation: float 7s ease-in-out infinite;
}
.hero .chip i { color: var(--sky); }
.hero .chip.c1 { left: -8%; top: 18%; animation-delay: -1s; }
.hero .chip.c2 { right: -10%; top: 42%; animation-delay: -3s; }
.hero .chip.c3 { left: 4%; bottom: 12%; animation-delay: -5s; }
.hero .chip .accent { font-size: 1.05rem; color: var(--mist); }
@keyframes float { 0%,100% { translate: 0 0; } 50% { translate: 0 -10px; } }
.hero .scroll-cue { position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); z-index: 3; color: rgba(255,255,255,.6); font-size: .7rem; letter-spacing: .25em; text-transform: uppercase; font-family: var(--font-title); display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.hero .scroll-cue span { width: 1px; height: 44px; background: linear-gradient(to bottom, rgba(255,255,255,.7), transparent); animation: cue 2.2s var(--ease) infinite; transform-origin: top; }
@keyframes cue { 0% { transform: scaleY(0);} 50% { transform: scaleY(1);} 100% { transform: scaleY(0); transform-origin: bottom;} }

/* Tide divider ------------------------------------------------------------ */
.tide { position: relative; height: 110px; overflow: hidden; line-height: 0; }
.tide svg { position: absolute; left: -5%; width: 110%; height: 100%; bottom: 0; will-change: transform; }
.tide .w1 { opacity: 1; }
.tide .w2 { opacity: .5; }
.tide.to-day { background: var(--navy-ink); }
.tide.to-day svg path { fill: var(--white); }
.tide.to-mist svg path { fill: var(--off); }
.tide.to-night { background: var(--white); }
.tide.to-night svg path { fill: var(--navy-deep); }
.tide.from-mist { background: var(--off); }

/* Category editorial grid ------------------------------------------------- */
.cat-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 180px; gap: 1rem; }
.cat-tile { position: relative; border-radius: var(--radius); overflow: hidden; display: block; background: var(--mist); isolation: isolate; }
.cat-tile img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); transition: transform 1.4s var(--ease); will-change: transform; }
.cat-tile:hover img { transform: scale(1.18); }
.cat-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,27,46,.85) 0%, rgba(14,27,46,.28) 50%, rgba(14,27,46,.08) 100%); }
.cat-tile .cap { position: absolute; z-index: 2; left: 1.4rem; right: 1.4rem; bottom: 1.3rem; color: #fff; display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.cat-tile .cap h3 { color: #fff; font-weight: 400; font-size: 1.5rem; margin: 0; }
.cat-tile .cap small { display: block; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--sky); font-family: var(--font-title); font-weight: 600; margin-bottom: .35rem; }
.cat-tile .cap .go { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.45); display: grid; place-items: center; flex: none; transition: all .35s var(--ease); }
.cat-tile:hover .cap .go { background: var(--white); color: var(--navy); border-color: var(--white); transform: rotate(-45deg); }
.cat-tile.t1 { grid-column: span 7; grid-row: span 2; }
.cat-tile.t2 { grid-column: span 5; grid-row: span 1; }
.cat-tile.t3 { grid-column: span 5; grid-row: span 1; }
.cat-tile.t4 { grid-column: span 4; grid-row: span 1; }
.cat-tile.t5 { grid-column: span 8; grid-row: span 1; }
.cat-tile.typo { background: var(--navy); }
.cat-tile.typo::after { display: none; }
.cat-tile.typo .big { position: absolute; right: -2%; top: -14%; font-family: var(--font-accent); font-style: italic; font-size: 11rem; line-height: 1; color: rgba(103,185,207,.16); pointer-events: none; }

/* Marquee of houses --------------------------------------------------------- */
.houses { border-block: 1px solid var(--line); background: var(--white); overflow: hidden; padding-block: 1.4rem; }
.houses .track { display: flex; gap: 4rem; width: max-content; animation: marquee 60s linear infinite; align-items: baseline; }
.houses:hover .track { animation-play-state: paused; }
.houses .h { font-family: var(--font-title); font-weight: 500; font-size: 1.05rem; letter-spacing: .12em; text-transform: uppercase; color: var(--navy); white-space: nowrap; opacity: .85; }
.houses .h.accent { font-family: var(--font-accent); font-style: italic; text-transform: none; letter-spacing: 0; font-size: 1.6rem; color: var(--teal); }
.houses .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sky); align-self: center; }

/* Scent wheel ------------------------------------------------------------- */
.wheel-wrap { position: relative; max-width: 460px; margin-inline: auto; aspect-ratio: 1; }
.wheel-sticky { position: sticky; top: 110px; }
@media (max-width: 991.98px) { .wheel-sticky { position: static; } }
.wheel-wrap svg { width: 100%; height: 100%; overflow: visible; }
.wheel-wrap .rot { transform-origin: 50% 50%; transition: transform 1s var(--ease); }
.wheel-wrap .seg { cursor: pointer; transition: fill .35s, opacity .35s; }
.wheel-wrap .seg path { transition: fill .35s var(--ease), transform .5s var(--ease); transform-origin: 50% 50%; }
.wheel-wrap .seg text { font-family: var(--font-title); font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; fill: var(--navy); pointer-events: none; }
.wheel-wrap .seg.active path { fill: var(--navy); }
.wheel-wrap .seg.active text { fill: #fff; }
.wheel-wrap .seg:hover:not(.active) path { fill: var(--sky); }
.wheel-wrap .seg:hover:not(.active) text { fill: #fff; }
.wheel-wrap .center { position: absolute; inset: 29%; border-radius: 50%; background: var(--white); box-shadow: var(--shadow-2); display: grid; place-items: center; text-align: center; padding: 1rem; }
.wheel-wrap .center .fam { font-family: var(--font-accent); font-style: italic; font-size: clamp(1.4rem, 2.6vw, 1.9rem); color: var(--navy); line-height: 1.05; }
.wheel-wrap .center .n { font-family: var(--font-title); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--teal); font-weight: 600; margin-top: .4rem; }
.wheel-wrap .pointer { position: absolute; left: 50%; top: -14px; transform: translateX(-50%); width: 0; height: 0; border-left: 9px solid transparent; border-right: 9px solid transparent; border-top: 14px solid var(--teal); }
.fam-copy { min-height: 5.5rem; }
.fam-copy p { transition: opacity .4s var(--ease); }
.fam-notes { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.fam-notes span { border: 1px solid rgba(30,54,95,.2); border-radius: 999px; padding: .3rem .8rem; font-size: .8rem; font-family: var(--font-title); color: var(--navy); background: #fff; }

/* Product cards ----------------------------------------------------------- */
.pcard { display: block; position: relative; color: var(--ink); background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); transition: transform .6s var(--ease), box-shadow .6s var(--ease), border-color .4s; transform-style: preserve-3d; will-change: transform; }
.pcard:hover { box-shadow: var(--shadow-2); border-color: transparent; }
.pcard .media { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--mist-2); }
.pcard .media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s var(--ease); }
.pcard:hover .media img { transform: scale(1.07); }
.pcard .badge-sale { position: absolute; top: .9rem; left: .9rem; background: var(--white); color: var(--navy); font-family: var(--font-title); font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: .35rem .65rem; border-radius: 999px; }
.pcard .badge-sale.teal { background: var(--teal); color: #fff; }
.pcard .wish { position: absolute; top: .8rem; right: .8rem; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.85); backdrop-filter: blur(6px); display: grid; place-items: center; color: var(--navy); opacity: 0; transform: translateY(-6px); transition: all .35s var(--ease); border: 0; }
.pcard:hover .wish { opacity: 1; transform: translateY(0); }
.pcard .wish:hover { background: var(--navy); color: #fff; }
.pcard .quick { position: absolute; left: .8rem; right: .8rem; bottom: .8rem; transform: translateY(calc(100% + 1.2rem)); transition: transform .5s var(--ease); }
.pcard:hover .quick { transform: translateY(0); }
.pcard .quick .btn { width: 100%; padding: .7rem 1rem; font-size: .85rem; background: rgba(30,54,95,.92); backdrop-filter: blur(6px); color: #fff; border: 0; }
.pcard .body { padding: 1rem 1.1rem 1.2rem; }
.pcard .brand { font-family: var(--font-title); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--teal); font-weight: 600; }
.pcard .name { font-family: var(--font-title); font-weight: 500; font-size: .98rem; color: var(--navy); margin: .25rem 0 .55rem; line-height: 1.35; }
.pcard .price { font-family: var(--font-title); font-weight: 600; color: var(--navy); display: flex; align-items: baseline; gap: .6rem; }
.pcard .price s { color: var(--muted); font-weight: 400; font-size: .85em; }
.pcard .price .cur { font-size: .7em; font-weight: 500; opacity: .7; margin-right: .1rem; }
.pcard .split { font-size: .74rem; color: var(--muted); margin-top: .35rem; }
.pcard .split b { color: var(--navy); font-weight: 600; }
.night .pcard { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); color: #fff; }
.night .pcard .name, .night .pcard .price { color: #fff; }
.night .pcard .split { color: rgba(255,255,255,.55); } .night .pcard .split b { color: #fff; }
.product-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 992px) { .product-row { grid-template-columns: repeat(2, 1fr); } }
.product-row .pcard { animation: rise .7s var(--ease) both; }
.product-row .pcard:nth-child(2) { animation-delay: .08s; }
.product-row .pcard:nth-child(3) { animation-delay: .16s; }
.product-row .pcard:nth-child(4) { animation-delay: .24s; }
@keyframes rise { from { opacity: 0; transform: translateY(18px);} to { opacity: 1; transform: translateY(0);} }

/* Story band (parallax) --------------------------------------------------- */
.story { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; color: #fff; }
.story .bg { position: absolute; inset: -18% 0; background-size: cover; background-position: center; will-change: transform; }
.story .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14,27,46,.88) 0%, rgba(14,27,46,.65) 45%, rgba(14,27,46,.25) 100%); }
.story .content { position: relative; z-index: 2; }
.story h2 { color: #fff; }
.pyramid { display: grid; gap: .6rem; margin-top: 2rem; max-width: 420px; }
.pyramid .tier { position: relative; padding: 1rem 1.2rem; border-radius: 14px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); transition: transform .5s var(--ease), background .4s; overflow: hidden; }
.pyramid .tier:hover { transform: translateX(6px); background: rgba(255,255,255,.1); }
.pyramid .tier::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--sky); transform: scaleY(0); transform-origin: top; transition: transform .6s var(--ease); }
.pyramid.in .tier::before { transform: scaleY(1); }
.pyramid .tier:nth-child(2) { margin-left: 1.2rem; } .pyramid .tier:nth-child(3) { margin-left: 2.4rem; }
.pyramid .tier small { display: block; font-family: var(--font-title); font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--sky); font-weight: 600; margin-bottom: .2rem; }
.pyramid .tier span { font-family: var(--font-accent); font-style: italic; font-size: 1.25rem; }

/* Marketplace tiles --------------------------------------------------------- */
.market { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.mtile { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 420px; display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem; color: #fff; isolation: isolate; transition: transform .6s var(--ease), box-shadow .6s var(--ease); }
.mtile:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.mtile .num { position: absolute; top: 1.4rem; left: 1.8rem; font-family: var(--font-accent); font-style: italic; font-size: 4.5rem; line-height: 1; opacity: .35; }
.mtile .phase { position: absolute; right: -20%; top: -20%; width: 70%; aspect-ratio: 1; border-radius: 50%; opacity: .5; filter: blur(2px); will-change: transform; }
.mtile h3 { color: #fff; font-weight: 400; font-size: 1.9rem; }
.mtile p { color: rgba(255,255,255,.72); margin: 0 0 1.2rem; }
.mtile.a { background: linear-gradient(160deg, #244472, var(--navy-deep)); }
.mtile.a .phase { background: radial-gradient(circle at 35% 35%, var(--sky), var(--teal) 55%, transparent 72%); }
.mtile.b { background: linear-gradient(160deg, var(--teal), #2F7D93); }
.mtile.b .phase { background: radial-gradient(circle at 60% 40%, var(--mist), rgba(220,238,243,.4) 50%, transparent 70%); }
.mtile.c { background: linear-gradient(160deg, var(--navy-ink), #1E365F); }
.mtile.c .phase { border: 22px solid rgba(103,185,207,.35); }
.mtile .soon { position: absolute; top: 1.6rem; right: 1.6rem; font-family: var(--font-title); font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3); padding: .35rem .7rem; border-radius: 999px; }

/* Promises / payments ------------------------------------------------------- */
.promise { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.promise .p { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.promise .p:hover { transform: translateY(-4px); box-shadow: var(--shadow-1); }
.promise .p i { font-size: 1.5rem; color: var(--teal); }
.promise .p h4 { font-size: 1rem; font-weight: 600; margin: .8rem 0 .3rem; }
.promise .p p { margin: 0; color: var(--muted); font-size: .92rem; }
.pay-logos { display: flex; align-items: center; gap: 1.2rem; }
.pay-logos img { height: 22px; width: auto; }
.pay-logos .tabby { height: 26px; border-radius: 6px; }

/* Split pay ribbon -------------------------------------------------------- */
.split-band { background: var(--mist); border-radius: var(--radius); padding: 2rem 2.4rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.split-band .txt h3 { margin: 0; font-weight: 400; font-size: 1.6rem; }
.split-band .txt p { margin: .3rem 0 0; color: var(--muted); }

/* FAQ -------------------------------------------------------------------- */
.faq .accordion-item { background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.faq .accordion-button { background: transparent; color: #fff; font-family: var(--font-title); font-weight: 500; font-size: 1.1rem; padding: 1.3rem 0; box-shadow: none; }
.faq .accordion-button::after { background-image: none; content: "+"; font-size: 1.4rem; line-height: 1; width: auto; height: auto; color: var(--sky); transition: transform .35s var(--ease); }
.faq .accordion-button:not(.collapsed)::after { transform: rotate(45deg); }
.faq .accordion-body { color: rgba(255,255,255,.72); padding: 0 0 1.3rem; }

/* Newsletter ---------------------------------------------------------------- */
.newsletter .form-control { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.2); color: #fff; border-radius: 999px; padding: .95rem 1.4rem; }
.newsletter .form-control::placeholder { color: rgba(255,255,255,.45); }
.newsletter .form-control:focus { box-shadow: 0 0 0 4px rgba(103,185,207,.25); border-color: var(--sky); background: rgba(255,255,255,.08); color: #fff; }

/* Footer ------------------------------------------------------------------- */
footer { background: var(--navy-ink); color: rgba(255,255,255,.72); font-size: .93rem; }
footer h6 { font-family: var(--font-title); color: #fff; font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 600; margin-bottom: 1rem; }
footer a { color: rgba(255,255,255,.72); display: block; padding: .22rem 0; }
footer a:hover { color: var(--sky); }
footer .social a { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); margin-right: .4rem; }
footer .social a:hover { background: var(--teal); border-color: var(--teal); color: #fff; }
footer .bottom { border-top: 1px solid rgba(255,255,255,.1); font-size: .8rem; color: rgba(255,255,255,.45); }
footer .bigword { font-family: var(--font-title); font-weight: 600; letter-spacing: -.05em; font-size: clamp(4rem, 15vw, 14rem); line-height: .85; color: rgba(255,255,255,.04); user-select: none; pointer-events: none; text-align: center; margin-top: 2rem; }

/* Moon scroll indicator --------------------------------------------------- */
.moon-progress { position: fixed; right: 1.4rem; top: 50%; transform: translateY(-50%); z-index: 1020; display: flex; flex-direction: column; align-items: center; gap: .6rem; pointer-events: none; mix-blend-mode: difference; color: #fff; }
.moon-progress svg { width: 34px; height: 34px; }
.moon-progress .label { writing-mode: vertical-rl; font-family: var(--font-title); font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; opacity: .7; }
.moon-progress .line { width: 1px; height: 80px; background: rgba(255,255,255,.25); position: relative; overflow: hidden; }
.moon-progress .line i { position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: #fff; transform: scaleY(0); transform-origin: top; }
@media (max-width: 991.98px) { .moon-progress { display: none; } }

/* Reveal -------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; } .reveal[data-delay="2"] { transition-delay: .2s; } .reveal[data-delay="3"] { transition-delay: .3s; } .reveal[data-delay="4"] { transition-delay: .4s; }
.mask-line { display: block; overflow: hidden; }
.mask-line > span { display: block; transform: translateY(110%); transition: transform 1.1s var(--ease); }
.in .mask-line > span, .mask-line.in > span { transform: translateY(0); }
.in .mask-line:nth-child(2) > span { transition-delay: .1s; } .in .mask-line:nth-child(3) > span { transition-delay: .2s; }

/* Shop page ---------------------------------------------------------------- */
.page-head { background: var(--navy-deep); color: #fff; padding: calc(var(--navh, 74px) + 4rem) 0 3.5rem; margin-top: calc(-1 * var(--navh, 74px)); position: relative; overflow: hidden; }
.page-head h1 { color: #fff; font-size: clamp(2.6rem, 6vw, 4.6rem); }
.page-head .breadcrumb { --bs-breadcrumb-divider-color: rgba(255,255,255,.4); font-size: .8rem; }
.page-head .breadcrumb a { color: rgba(255,255,255,.6); } .page-head .breadcrumb .active { color: #fff; }
.filters .form-check-label { font-size: .95rem; }
.filters .form-check .small { font-size: .72rem; }
.filters .form-check { padding-block: .15rem; }
.filters .form-check.d-flex { padding-left: 0; gap: .7rem; align-items: center; }
.filters .form-check.d-flex .form-check-input { margin: 0; flex: none; width: 1.05em; height: 1.05em; }
.filters .form-check.d-flex .form-check-label { cursor: pointer; }
.pcard .brand[data-brand] { cursor: pointer; }
.pcard .brand[data-brand]:hover { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.filters h6 { font-family: var(--font-title); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--teal); font-weight: 600; margin: 1.6rem 0 .7rem; }
.filters .form-check-input:checked { background-color: var(--navy); border-color: var(--navy); }
.chipbar { display: flex; gap: .5rem; flex-wrap: wrap; }
.chipbar .chip { border: 1px solid var(--line); border-radius: 999px; padding: .45rem 1rem; font-family: var(--font-title); font-size: .82rem; font-weight: 500; color: var(--navy); background: #fff; cursor: pointer; transition: all .3s var(--ease); }
.chipbar .chip:hover { border-color: var(--navy); }
.chipbar .chip.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.form-select.lb { border-radius: 999px; border-color: var(--line); font-family: var(--font-title); font-size: .85rem; padding: .6rem 2.4rem .6rem 1.2rem; }

/* Product page ------------------------------------------------------------- */
.gallery { position: sticky; top: 100px; }
.gallery .main { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; background: var(--mist-2); position: relative; }
.gallery .main img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery .main:hover img { transform: scale(1.04); }
.gallery .thumbs { display: flex; gap: .6rem; margin-top: .8rem; }
.gallery .thumbs button { width: 74px; aspect-ratio: 1; border-radius: 12px; overflow: hidden; border: 2px solid transparent; padding: 0; background: var(--mist-2); }
.gallery .thumbs button.active { border-color: var(--navy); }
.gallery .thumbs img { width: 100%; height: 100%; object-fit: cover; }
.pdp h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; }
.pdp .price-lg { font-family: var(--font-title); font-size: 1.8rem; font-weight: 500; color: var(--navy); display: flex; align-items: baseline; gap: .8rem; }
.pdp .price-lg s { color: var(--muted); font-size: 1.1rem; font-weight: 400; }
.pdp .save { background: var(--mist); color: var(--navy); font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 999px; font-family: var(--font-title); }
.size-opts { display: flex; gap: .6rem; flex-wrap: wrap; }
.size-opts label { border: 1px solid var(--line); border-radius: 999px; padding: .55rem 1.1rem; font-family: var(--font-title); font-size: .88rem; cursor: pointer; transition: all .3s var(--ease); }
.size-opts input { display: none; }
.size-opts input:checked + label { background: var(--navy); border-color: var(--navy); color: #fff; }
.qty { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.qty button { border: 0; background: #fff; width: 44px; height: 48px; color: var(--navy); font-size: 1.2rem; }
.qty input { width: 48px; border: 0; text-align: center; font-family: var(--font-title); font-weight: 600; color: var(--navy); }
.pdp .meta { border-top: 1px solid var(--line); margin-top: 1.6rem; padding-top: 1.2rem; display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; font-size: .85rem; color: var(--muted); }
.pdp .meta b { display: block; color: var(--navy); font-family: var(--font-title); font-weight: 600; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .2rem; }
.notes-visual { position: relative; display: grid; gap: .8rem; }
.notes-visual .row-n { display: grid; grid-template-columns: 110px 1fr; align-items: center; gap: 1rem; padding: 1rem 1.2rem; border-radius: 14px; background: var(--off); border: 1px solid var(--line); }
.notes-visual .row-n small { font-family: var(--font-title); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--teal); font-weight: 600; }
.notes-visual .row-n span { font-family: var(--font-accent); font-style: italic; font-size: 1.2rem; color: var(--navy); }
.notes-visual .row-n .bar { height: 4px; border-radius: 2px; background: var(--mist); overflow: hidden; grid-column: 1 / -1; }
.notes-visual .row-n .bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--navy), var(--sky)); width: 0; transition: width 1.4s var(--ease); }
.in .notes-visual .row-n .bar i { width: var(--w); }
.pdp .accordion-button { font-family: var(--font-title); font-weight: 500; color: var(--navy); background: transparent; box-shadow: none; padding: 1.1rem 0; }
.pdp .accordion-item { border: 0; border-bottom: 1px solid var(--line); }
.pdp .accordion-body { padding: 0 0 1.2rem; color: var(--muted); }

/* About ---------------------------------------------------------------------- */
.values { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.values .v { padding: 1.8rem; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); }
.values .v .ph { width: 44px; height: 44px; border-radius: 50%; margin-bottom: 1rem; }
.values .v h4 { font-size: 1.05rem; font-weight: 600; }
.values .v p { color: var(--muted); margin: 0; font-size: .92rem; }

/* Responsive --------------------------------------------------------------- */
@media (max-width: 1199.98px) {
  .cat-grid { grid-auto-rows: 160px; }
}
@media (max-width: 991.98px) {
  .hero { min-height: auto; padding-block: 6rem 5rem; margin-top: calc(-1 * var(--navh, 74px)); padding-top: calc(var(--navh, 74px) + 3rem); }
  .hero .portal { max-width: 380px; margin-top: 3rem; }
  .hero .chip.c1 { left: -4%; } .hero .chip.c2 { right: -4%; }
  .cat-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 170px; }
  .cat-tile.t1 { grid-column: span 6; grid-row: span 2; }
  .cat-tile.t2, .cat-tile.t3 { grid-column: span 3; }
  .cat-tile.t4 { grid-column: span 3; } .cat-tile.t5 { grid-column: span 3; }
  .market { grid-template-columns: 1fr; }
  .mtile { min-height: 300px; }
  .promise { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(2, 1fr); }
  .gallery { position: static; }
  .story { min-height: 70vh; }
}
@media (max-width: 575.98px) {
  .hero h1 { font-size: 3rem; }
  .hero .stats { gap: 1.2rem; }
  .cat-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .cat-tile.t1 { grid-column: span 2; }
  .cat-tile.t2, .cat-tile.t3, .cat-tile.t4, .cat-tile.t5 { grid-column: span 1; }
  .cat-tile .cap h3 { font-size: 1.1rem; }
  .cat-tile .cap .go { display: none; }
  .promise { grid-template-columns: 1fr; }
  .product-row { grid-template-columns: 1fr 1fr; gap: .7rem; }
  .pcard .body { padding: .8rem; }
  .pcard .name { font-size: .85rem; }
  .shop-grid { grid-template-columns: 1fr 1fr; gap: .7rem; }
  .values { grid-template-columns: 1fr; }
  .split-band { padding: 1.5rem; }
  .hero .chip.c2 { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .mask-line > span { transform: none; }
}

footer .pay-pill { display: inline-flex; align-items: center; gap: .8rem; background: #fff; border-radius: 999px; padding: .45rem .9rem; margin-top: .8rem; }
footer .pay-pill img { height: 18px; width: auto; } footer .pay-pill .tabby { height: 22px; border-radius: 4px; }

/* 4-up grid that steps down cleanly */
.shop-grid.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 991.98px) { .shop-grid.grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575.98px) { .shop-grid.grid-4 { gap: .7rem; } }

/* ==========================================================================
   MOBILE OPTIMISATION + TOUCH ANIMATION (added 2026-09-10)
   html.touch is set by JS on hover-less devices
   ========================================================================== */

/* Touch: cards animate when they reach the centre band of the screen */
html.touch .pcard { transition: transform .6s var(--ease), box-shadow .6s var(--ease); }
html.touch .pcard.is-focus { box-shadow: var(--shadow-2); border-color: transparent; transform: translateY(-4px); }
html.touch .pcard.is-focus .media img { transform: scale(1.07); }
html.touch .pcard.is-focus .quick { transform: translateY(0); }
html.touch .pcard.is-focus .wish { opacity: 1; transform: translateY(0); }
html.touch .cat-tile.is-focus img { transform: scale(1.2); }
html.touch .cat-tile.is-focus .cap .go { background: var(--white); color: var(--navy); border-color: var(--white); transform: rotate(-45deg); }
html.touch .mtile.is-focus { transform: translateY(-6px); box-shadow: var(--shadow-2); }
html.touch .promise .p.is-focus { transform: translateY(-4px); box-shadow: var(--shadow-1); }
html.touch .lb-nav .icon-btn { width: 44px; height: 44px; }

/* Ambient motion that does not depend on a pointer */
@keyframes breathe { from { opacity: .7; scale: 1; } to { opacity: 1; scale: 1.14; } }
@keyframes kenburns { from { scale: 1; } to { scale: 1.1; } }
@keyframes ringpulse { 0%,100% { opacity: .35; } 50% { opacity: .9; } }
html.touch .hero .moon { animation: breathe 9s ease-in-out infinite alternate; }
html.touch .hero .portal .ring { animation: ringpulse 5s ease-in-out infinite; }
html.touch .hero .portal .ring.two { animation-delay: -2.5s; }
html.touch .story .bg { animation: kenburns 16s ease-in-out infinite alternate; }
html.touch .mtile .phase { animation: breathe 7s ease-in-out infinite alternate; }

/* Scent wheel: draggable on touch */
.wheel-wrap svg { touch-action: none; cursor: grab; }
.wheel-wrap svg.dragging { cursor: grabbing; }
.wheel-wrap svg.dragging .rot { transition: none; }
.wheel-hint { display: none; font-family: var(--font-title); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--teal); text-align: center; margin-top: .8rem; }
html.touch .wheel-hint { display: block; }

/* Swipe hint under carousels (mobile only) */
.swipe-hint { display: none; font-family: var(--font-title); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-top: .6rem; align-items: center; gap: .5rem; }
.swipe-hint i { animation: nudge 1.6s var(--ease) infinite; }
@keyframes nudge { 0%,100% { transform: translateX(0);} 50% { transform: translateX(6px);} }

/* Count-up numbers */
[data-count] { font-variant-numeric: tabular-nums; }

/* Sticky buy bar (product page, mobile) */
.sticky-buy { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1024; background: rgba(255,255,255,.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-top: 1px solid var(--line); padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom)); display: none; align-items: center; gap: .8rem; transform: translateY(110%); transition: transform .5s var(--ease); }
.sticky-buy.show { transform: translateY(0); }
.sticky-buy .p { font-family: var(--font-title); font-weight: 600; color: var(--navy); line-height: 1.1; }
.sticky-buy .p small { display: block; font-weight: 400; color: var(--muted); font-size: .7rem; }
.sticky-buy .btn { flex: 1; padding: .8rem 1rem; }

@media (max-width: 991.98px) {
  /* Moon indicator becomes a small bottom-left badge */
  .moon-progress { display: flex; right: auto; left: .9rem; top: auto; bottom: 1.1rem; transform: none; flex-direction: row; gap: .4rem; }
  .moon-progress svg { width: 26px; height: 26px; filter: drop-shadow(0 2px 6px rgba(0,0,0,.35)); }
  .moon-progress .line, .moon-progress .label { display: none; }
  body.has-sticky .moon-progress { bottom: 5.4rem; }
  body.has-sticky .wa-fab { bottom: 5.2rem !important; }
  .sticky-buy { display: flex; }
  body.has-sticky main { padding-bottom: 4.5rem; }
  .mega { display: none; }
}

@media (max-width: 767.98px) {
  /* Horizontal snap carousels */
  .product-row, .shop-grid.grid-4, .market {
    display: flex; flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x mandatory;
    gap: .8rem; margin-inline: calc(-.5 * var(--bs-gutter-x, 1.5rem)); padding-inline: calc(.5 * var(--bs-gutter-x, 1.5rem));
    padding-bottom: .4rem; scrollbar-width: none; -webkit-overflow-scrolling: touch; scroll-padding-inline: calc(.5 * var(--bs-gutter-x, 1.5rem));
  }
  .product-row::-webkit-scrollbar, .shop-grid.grid-4::-webkit-scrollbar, .market::-webkit-scrollbar { display: none; }
  .product-row > *, .shop-grid.grid-4 > * { flex: 0 0 74%; scroll-snap-align: center; }
  .market > * { flex: 0 0 84%; scroll-snap-align: center; min-height: 340px; }
  .product-row .pcard, .shop-grid.grid-4 .pcard { animation: none; }
  .swipe-hint { display: inline-flex; }
  .wheel-wrap { max-width: 340px; }
  .split-band { flex-direction: column; align-items: flex-start; }
  .split-band .btn { width: 100%; text-align: center; }
  .section-pad { padding-block: 3.5rem; }
  .story { min-height: 78vh; }
  .pyramid { max-width: 100%; }
  .pyramid .tier:nth-child(2) { margin-left: .6rem; } .pyramid .tier:nth-child(3) { margin-left: 1.2rem; }
  .page-head { padding-top: calc(var(--navh, 74px) + 2.5rem); }
  .page-head h1 { font-size: 2.4rem; }
  .houses .track { gap: 2.4rem; }
  .houses .h { font-size: .9rem; } .houses .h.accent { font-size: 1.35rem; }
  footer .bigword { margin-top: 1rem; }
  .newsletter .p-4 { padding: 1.4rem !important; }
}

@media (max-width: 575.98px) {
  .hero { padding-top: calc(var(--navh, 74px) + 2rem); padding-bottom: 4rem; }
  .hero h1 { font-size: 2.85rem; }
  .hero .hero-sub { font-size: 1.02rem; }
  .hero .portal { max-width: 300px; margin-top: 2.4rem; }
  .hero .chip { font-size: .7rem; padding: .42rem .7rem; }
  .hero .chip .accent { font-size: .92rem; }
  .hero .chip.c1 { left: -6%; top: 14%; }
  .hero .chip.c3 { left: -4%; bottom: 8%; }
  .hero .stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; margin-top: 2rem; }
  .hero .stats div { padding-left: .7rem; }
  .hero .stats strong { font-size: 1.5rem; }
  .hero .stats span { font-size: .6rem; letter-spacing: .1em; }
  .hero .scroll-cue { display: none; }
  .hero .ghost { font-size: 9rem; bottom: -3rem; }
  .display-2 { font-size: 2.6rem; } .display-3 { font-size: 2.15rem; }
  .cat-grid { grid-auto-rows: 140px; gap: .7rem; }
  .cat-tile .cap { left: 1rem; right: 1rem; bottom: .9rem; }
  .cat-tile.typo .big { font-size: 7rem; }
  .tide { height: 70px; }
  .mtile { padding: 1.5rem; } .mtile h3 { font-size: 1.55rem; } .mtile .num { font-size: 3.4rem; }
  .promise .p { padding: 1.2rem; }
  .pdp .meta { grid-template-columns: 1fr 1fr; }
  .gallery .main { aspect-ratio: 1; }
  .btn { padding: .8rem 1.3rem; }
}

/* ==========================================================================
   WORDPRESS / WOOCOMMERCE ADAPTER (theme v2)
   ========================================================================== */
.admin-bar .lb-nav { top: 32px; }
@media (max-width: 782px) { .admin-bar .lb-nav { top: 46px; } }
.moon-soft { position: absolute; width: 50vmin; height: 50vmin; border-radius: 50%; right: -5%; top: -40%; background: radial-gradient(circle at 40% 40%, rgba(220,238,243,.4), rgba(103,185,207,.12) 45%, transparent 70%); filter: blur(12px); pointer-events: none; }
.page-head.compact { padding-bottom: 2.5rem; }
.page-head h1 { font-weight: 300; }
.lb-search { background: var(--white); border-bottom: 1px solid var(--line); }
.lb-nav.on-night .lb-search { background: var(--navy-deep); border-color: rgba(255,255,255,.1); }
.lb-nav.on-night .lb-search .form-control { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); color: #fff; }
.lb-nav .icon-btn { border: 1px solid transparent; }
.wa-fab { position: fixed; right: 1.2rem; bottom: 1.2rem; width: 54px; height: 54px; border-radius: 50%; background: #25D366; color: #fff; font-size: 1.6rem; box-shadow: 0 12px 30px -10px rgba(0,0,0,.4); z-index: 1025; display: grid; place-items: center; }
.wa-fab:hover { color: #fff; transform: translateY(-2px); }
.pcard .body { display: block; color: inherit; }
.pcard .media { display: block; }
.pcard .quick .btn.added { background: var(--teal); }
.pcard .quick .btn.loading { opacity: .7; pointer-events: none; }
.pcard .wish.on i::before { content: "\f415"; } /* bi-heart-fill */
.pcard .wish.on { opacity: 1; transform: none; color: var(--teal); }
.wish-lg.on { background: var(--navy); color: #fff; border-color: var(--navy); }
.houses .h { text-decoration: none; }
.houses .h:hover { color: var(--teal); }
.prose { max-width: 76ch; }
.prose h2, .prose h3 { margin-top: 2rem; }
.prose img { border-radius: var(--radius); }
.f-link { display: flex; justify-content: space-between; align-items: center; padding: .35rem 0; color: var(--ink); border-bottom: 1px solid var(--line); font-size: .95rem; }
.f-link small { color: var(--muted); }
.f-link.active, .f-link:hover { color: var(--teal); }
.f-link.active { font-weight: 600; }
.woocommerce-ordering select, .orderby { border-radius: 999px; border: 1px solid var(--line); font-family: var(--font-title); font-size: .85rem; padding: .6rem 2.4rem .6rem 1.2rem; appearance: auto; background: #fff; }
.woocommerce-breadcrumb { font-size: .8rem; }
.page-head .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }
.page-head .breadcrumb a { color: rgba(255,255,255,.6); }
.lb-pagination .woocommerce-pagination ul { list-style: none; display: flex; gap: .4rem; justify-content: center; padding: 0; margin: 0; }
.lb-pagination .woocommerce-pagination li a, .lb-pagination .woocommerce-pagination li span { display: grid; place-items: center; min-width: 44px; height: 44px; padding: 0 .8rem; border-radius: 999px; border: 1px solid var(--line); color: var(--navy); font-family: var(--font-title); font-weight: 500; }
.lb-pagination .woocommerce-pagination li span.current { background: var(--navy); color: #fff; border-color: var(--navy); }
.lb-pagination .woocommerce-pagination li a:hover { border-color: var(--navy); }

/* Single product */
.gallery { position: sticky; top: 110px; }
.gallery .auth-badge { position: absolute; z-index: 3; top: 1rem; left: 1rem; background: #fff; color: var(--navy); font-family: var(--font-title); font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: .35rem .65rem; border-radius: 999px; }
.gallery .woocommerce-product-gallery { position: relative; }
.gallery .woocommerce-product-gallery__wrapper { margin: 0; }
.gallery .woocommerce-product-gallery__image { border-radius: var(--radius); overflow: hidden; background: var(--mist-2); }
.gallery .woocommerce-product-gallery__image img { width: 100%; height: auto; }
.gallery .flex-control-thumbs { display: flex; gap: .6rem; margin: .8rem 0 0; padding: 0; list-style: none; }
.gallery .flex-control-thumbs li { width: 74px; }
.gallery .flex-control-thumbs img { border-radius: 12px; border: 2px solid transparent; opacity: .7; cursor: pointer; }
.gallery .flex-control-thumbs img.flex-active, .gallery .flex-control-thumbs img:hover { border-color: var(--navy); opacity: 1; }
.gallery .woocommerce-product-gallery__trigger { position: absolute; top: 1rem; right: 1rem; z-index: 3; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.9); display: grid; place-items: center; color: var(--navy); }
.gallery .onsale { display: none; }
.pdp .star-rating { color: var(--teal); }
.pdp .woocommerce-review-link { color: var(--muted); margin-left: .4rem; }
.pdp .price-lg s { font-size: 1.1rem; }
.pdp .price-lg .save { margin-left: .4rem; }
.pdp .buy-box form.cart { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem; margin-bottom: .8rem; }
.pdp .buy-box form.cart .quantity { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.pdp .buy-box form.cart .quantity .qty { width: 72px; height: 48px; border: 0; text-align: center; font-family: var(--font-title); font-weight: 600; color: var(--navy); }
.pdp .buy-box form.cart .single_add_to_cart_button { flex: 1; min-width: 200px; background: var(--navy); color: #fff; border: 0; border-radius: 999px; padding: .9rem 1.6rem; font-family: var(--font-title); font-weight: 500; transition: all .3s var(--ease); }
.pdp .buy-box form.cart .single_add_to_cart_button:hover { background: var(--navy-ink); box-shadow: 0 16px 30px -14px rgba(30,54,95,.7); transform: translateY(-2px); }
.pdp .buy-box .wish-lg { width: 100%; }
.pdp .variations { width: 100%; margin-bottom: .6rem; }
.pdp .variations th, .pdp .variations td { padding: .3rem 0; vertical-align: middle; }
.pdp .variations select { border-radius: 999px; border: 1px solid var(--line); padding: .55rem 2.2rem .55rem 1rem; font-family: var(--font-title); }
.pdp .reset_variations { font-size: .8rem; margin-left: .6rem; }
.pdp .woocommerce-variation-price { font-family: var(--font-title); font-weight: 600; color: var(--navy); margin: .4rem 0; }
.pdp .stock.out-of-stock { color: #b23a3a; font-weight: 600; }
.pdp .woocommerce-product-attributes { width: 100%; font-size: .92rem; }
.pdp .woocommerce-product-attributes th { font-family: var(--font-title); font-weight: 600; color: var(--navy); padding: .5rem 1rem .5rem 0; width: 40%; }
.pdp .woocommerce-product-attributes td { padding: .5rem 0; color: var(--muted); }
.pdp .woocommerce-product-attributes td p { margin: 0; }
.pdp .bnpl-row { min-height: 0; }
.pdp .accordion-body .prose p:last-child { margin-bottom: 0; }
.pdp .woocommerce-Reviews .commentlist { list-style: none; padding: 0; }
.pdp .comment-form .form-submit .submit { background: var(--navy); color: #fff; border: 0; border-radius: 999px; padding: .7rem 1.4rem; font-family: var(--font-title); }
.pdp .comment-form input, .pdp .comment-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: .6rem .8rem; }
.pdp-wrap .woocommerce-notices-wrapper { margin-bottom: 1rem; }

/* Notices */
.woocommerce-message, .woocommerce-info, .woocommerce-error { list-style: none; border: 1px solid var(--line); border-left: 4px solid var(--teal); border-radius: 12px; padding: 1rem 1.2rem; margin: 0 0 1.2rem; background: #fff; color: var(--ink); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .8rem; }
.woocommerce-error { border-left-color: #b23a3a; }
.woocommerce-message .button, .woocommerce-info .button, .wc-forward { background: var(--navy); color: #fff !important; border-radius: 999px; padding: .55rem 1.1rem; font-family: var(--font-title); font-size: .85rem; order: 2; }
.woocommerce-error li { margin: .2rem 0; }

/* Cart / checkout / account (default Woo templates, restyled) */
.woo-entry .woocommerce { font-size: .95rem; }
.woo-entry table.shop_table { width: 100%; border: 0; border-collapse: collapse; margin-bottom: 1.5rem; }
.woo-entry table.shop_table th { font-family: var(--font-title); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--teal); border-bottom: 1px solid var(--line); padding: .8rem .6rem; text-align: left; }
.woo-entry table.shop_table td { padding: 1rem .6rem; border-bottom: 1px solid var(--line); vertical-align: middle; }
.woo-entry table.shop_table td.product-thumbnail img { width: 72px; border-radius: 12px; }
.woo-entry table.shop_table td.product-name a { color: var(--navy); font-family: var(--font-title); font-weight: 500; }
.woo-entry table.shop_table .product-remove a { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line); color: var(--muted); text-decoration: none; }
.woo-entry table.shop_table .product-remove a:hover { border-color: #b23a3a; color: #b23a3a; }
.woo-entry .quantity .qty { width: 70px; border: 1px solid var(--line); border-radius: 999px; padding: .45rem .6rem; text-align: center; }
.woo-entry .button, .woo-entry button.button, .woo-entry input.button, .woo-entry .checkout-button, .woo-entry #place_order { background: var(--navy); color: #fff; border: 0; border-radius: 999px; padding: .85rem 1.5rem; font-family: var(--font-title); font-weight: 500; text-decoration: none; display: inline-block; transition: all .3s var(--ease); cursor: pointer; }
.woo-entry .button:hover, .woo-entry #place_order:hover { background: var(--navy-ink); transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(30,54,95,.7); color: #fff; }
.woo-entry .button:disabled { opacity: .5; transform: none; box-shadow: none; }
.woo-entry .checkout-button, .woo-entry #place_order { width: 100%; text-align: center; background: var(--teal); font-size: 1.05rem; padding: 1rem 1.5rem; }
.woo-entry .checkout-button:hover, .woo-entry #place_order:hover { background: var(--sky); }
.woo-entry .coupon { display: flex; gap: .5rem; align-items: center; }
.woo-entry .coupon .input-text { border: 1px solid var(--line); border-radius: 999px; padding: .6rem 1rem; }
.woo-entry .coupon .button { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.woo-entry .cart-collaterals { margin-top: 2rem; }
.woo-entry .cart_totals, .woo-entry #order_review, .woo-entry .woocommerce-checkout-review-order { background: var(--off); border-radius: var(--radius); padding: 1.6rem; }
.woo-entry .cart_totals h2, .woo-entry #order_review_heading { font-size: 1.3rem; font-weight: 500; margin-bottom: 1rem; }
.woo-entry .cart_totals table th, .woo-entry .cart_totals table td { border-bottom: 1px solid var(--line); padding: .7rem 0; }
.woo-entry .cart_totals .order-total th, .woo-entry .cart_totals .order-total td { font-family: var(--font-title); font-weight: 600; color: var(--navy); font-size: 1.1rem; border: 0; }
.woo-entry .woocommerce-shipping-methods { list-style: none; padding: 0; margin: 0; }
.woo-entry .woocommerce-checkout .col2-set { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.woo-entry form.checkout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2.5rem; align-items: start; }
.woo-entry form.checkout #customer_details { grid-column: 1; }
.woo-entry form.checkout #order_review_heading, .woo-entry form.checkout #order_review { grid-column: 2; }
.woo-entry form.checkout #order_review { position: sticky; top: 110px; }
.woo-entry .form-row { margin-bottom: 1rem; }
.woo-entry .form-row label { font-family: var(--font-title); font-size: .78rem; font-weight: 600; color: var(--navy); margin-bottom: .3rem; display: block; }
.woo-entry .form-row .required { color: var(--teal); text-decoration: none; }
.woo-entry .input-text, .woo-entry select, .woo-entry .select2-container--default .select2-selection--single, .woo-entry textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: .75rem 1rem; height: auto; min-height: 48px; background: #fff; font-family: var(--font-body); }
.woo-entry .select2-container--default .select2-selection--single .select2-selection__rendered { line-height: 1.5; padding: 0; color: var(--ink); }
.woo-entry .select2-container--default .select2-selection--single .select2-selection__arrow { top: 50%; transform: translateY(-50%); right: .8rem; }
.woo-entry .input-text:focus, .woo-entry select:focus, .woo-entry textarea:focus { outline: 0; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(103,185,207,.2); }
.woo-entry .woocommerce-billing-fields h3, .woo-entry .woocommerce-shipping-fields h3, .woo-entry .woocommerce-additional-fields h3 { font-size: 1.3rem; font-weight: 500; margin: 1.5rem 0 1rem; }
.woo-entry .woocommerce-checkout-payment { background: transparent; }
.woo-entry .wc_payment_methods { list-style: none; padding: 0; margin: 0 0 1rem; }
.woo-entry .wc_payment_method { padding: .9rem 1rem; border: 1px solid var(--line); border-radius: 12px; margin-bottom: .6rem; background: #fff; }
.woo-entry .wc_payment_method label { font-family: var(--font-title); font-weight: 500; color: var(--navy); display: inline-flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.woo-entry .wc_payment_method label img { max-height: 24px; width: auto; }
.woo-entry .payment_box { background: var(--off); border-radius: 10px; padding: .8rem 1rem; margin-top: .6rem; font-size: .88rem; color: var(--muted); }
.woo-entry .woocommerce-privacy-policy-text { font-size: .8rem; color: var(--muted); }
.woo-entry .woocommerce-MyAccount-navigation ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .3rem; }
.woo-entry .woocommerce-MyAccount-navigation a { display: block; padding: .7rem 1rem; border-radius: 12px; color: var(--navy); font-family: var(--font-title); font-weight: 500; border: 1px solid var(--line); text-decoration: none; }
.woo-entry .woocommerce-MyAccount-navigation .is-active a, .woo-entry .woocommerce-MyAccount-navigation a:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.woo-entry .woocommerce-MyAccount-content { background: var(--off); border-radius: var(--radius); padding: 1.6rem; }
.woo-entry .woocommerce-account .woocommerce { display: grid; grid-template-columns: 260px 1fr; gap: 2rem; align-items: start; }
.woo-entry .u-columns, .woo-entry .col2-set#customer_login { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.woo-entry .woocommerce-form-login, .woo-entry .woocommerce-form-register { background: var(--off); border-radius: var(--radius); padding: 1.6rem; }
.woo-entry .woocommerce-form-login .button, .woo-entry .woocommerce-form-register .button { width: 100%; text-align: center; margin-top: .5rem; }
.woo-entry .woocommerce-order { }
.woo-entry .woocommerce-thankyou-order-received { font-family: var(--font-title); font-weight: 300; font-size: 2rem; color: var(--navy); letter-spacing: -.02em; }
.woo-entry .woocommerce-order-overview { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 1rem; margin: 1.5rem 0; }
.woo-entry .woocommerce-order-overview li { background: var(--off); border-radius: 12px; padding: .8rem 1rem; font-size: .85rem; color: var(--muted); }
.woo-entry .woocommerce-order-overview li strong { display: block; color: var(--navy); font-family: var(--font-title); }
.woo-entry .wc-empty-cart-message, .woo-entry .return-to-shop { text-align: center; }
.woo-entry .return-to-shop { margin: 2rem 0 0; }
.woo-entry .woocommerce-shipping-destination { font-size: .85rem; color: var(--muted); }
.woo-entry .woocommerce-shipping-calculator { font-size: .85rem; }
.woo-entry a.showcoupon { color: var(--teal); }
.woo-entry .woocommerce-form-coupon-toggle .woocommerce-info { margin-bottom: 1rem; }
@media (max-width: 991.98px) {
  .woo-entry form.checkout { grid-template-columns: 1fr; }
  .woo-entry form.checkout #order_review_heading, .woo-entry form.checkout #order_review { grid-column: 1; position: static; }
  .woo-entry .woocommerce-checkout .col2-set, .woo-entry .u-columns, .woo-entry .col2-set#customer_login { grid-template-columns: 1fr; }
  .woo-entry .woocommerce-account .woocommerce { grid-template-columns: 1fr; }
  .woo-entry .woocommerce-MyAccount-navigation ul { flex-direction: row; flex-wrap: wrap; }
  .gallery { position: static; }
}
@media (max-width: 575.98px) {
  .woo-entry table.shop_table thead { display: none; }
  .woo-entry table.shop_table tr { display: grid; grid-template-columns: 40px 80px 1fr; gap: .5rem 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); align-items: center; }
  .woo-entry table.shop_table td { border: 0; padding: 0; }
  .woo-entry table.shop_table td.product-name { grid-column: 3; }
  .woo-entry table.shop_table td.product-price { display: none; }
  .woo-entry table.shop_table td.product-quantity { grid-column: 2 / 4; }
  .woo-entry table.shop_table td.product-subtotal { grid-column: 3; font-weight: 600; }
  .woo-entry table.shop_table td.actions { grid-column: 1 / -1; }
  .woo-entry table.shop_table td.actions .coupon { flex-wrap: wrap; }
  .woo-entry table.shop_table td.actions .coupon .input-text { flex: 1; }
  .woo-entry table.shop_table td.actions .button { width: 100%; margin-top: .5rem; }
}

@keyframes bump { 0%{scale:1} 40%{scale:1.5} 100%{scale:1} }
.lb-cart-count.bump { animation: bump .6s var(--ease); }

.pcard .mw { position: relative; overflow: hidden; }
.pcard .mw .wish, .pcard .mw .quick { z-index: 2; }
