/* ================================================================
   LUBYLAB — Homepage layout (adapted from /reference/Lubylab Homepage.html)
   Scoped under .lh-page to avoid colliding with global .nav / .hero / .footer.
================================================================ */

.lh-page {
  /* Brand tokens — from design system */
  --lh-snow:      #FBFCFF;
  --lh-beige:     #FBF1E2;
  --lh-dark:      #262626;
  --lh-cica:      #9FC93C;
  --lh-artemisia: #05272D;
  --lh-elixir:    #161616;
  --lh-jade-dark: #1A4644;
  --lh-jade:      #226653;
  --lh-silver:    #B9B9BB;
  --lh-white:     #FBFBFB;

  --lh-hero-bg:     #0C3530;
  --lh-hero-bg-end: #1A4644;

  --lh-font-serif: 'Pretendard', 'Apple SD Gothic Neo', sans-serif;
  --lh-font-sans:  'Pretendard', 'Apple SD Gothic Neo', sans-serif;
  --lh-font-mono:  'Pretendard', 'Apple SD Gothic Neo', sans-serif;

  --lh-track-mono: 0.12em;
  --lh-track-logo: 0.32em;

  background: var(--lh-snow);
  color: var(--lh-dark);
  font-family: var(--lh-font-sans);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.lh-page * { box-sizing: border-box; }
.lh-page img, .lh-page svg { display: block; max-width: 100%; }
.lh-page a { color: inherit; text-decoration: none; }
.lh-page button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.lh-mono {
  font-family: var(--lh-font-mono);
  font-size: 10px;
  letter-spacing: var(--lh-track-mono);
  text-transform: uppercase;
}
.lh-serif { font-family: var(--lh-font-serif); font-weight: 500; letter-spacing: -0.01em; }

/* ============== HERO ============== */
.lh-hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--lh-hero-bg) 0%, var(--lh-hero-bg-end) 100%);
  color: var(--lh-snow);
  overflow: hidden;
}
.lh-hero-bg-noise {
  position: absolute; inset: 0;
  background-image: radial-gradient(ellipse at 50% 80%, rgba(159,201,60,0.18), transparent 60%);
  pointer-events: none;
}
.lh-hero-grid {
  position: relative;
  padding: 36px 56px 0;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0;
  min-height: 100vh;
}
.lh-hero-eyebrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--lh-font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.lh-hero-eyebrow .lh-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--lh-cica);
  border-radius: 50%;
  margin-right: 12px;
  vertical-align: middle;
  animation: lhPulseDot 2.4s ease-in-out infinite;
}
@keyframes lhPulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.lh-hero-stack {
  position: relative;
  display: grid;
  grid-template-areas: "stack";
  grid-template-rows: 1fr;
  min-height: 600px;
}
.lh-hero-stack > * { grid-area: stack; }

.lh-hero-headline {
  position: relative;
  z-index: 2;
  align-self: start;
  margin-top: 18px;
  pointer-events: none;
}
.lh-hero-headline h1 {
  font-family: var(--lh-font-serif);
  font-size: clamp(54px, 11vw, 200px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--lh-snow);
  margin: 0;
}
.lh-hero-headline h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.78);
}
.lh-hero-headline .lh-word { display: inline-block; }
.lh-hero-headline .lh-word-wrap { display: inline-block; overflow: hidden; vertical-align: top; padding: 0 0.06em 0.12em 0; }

/* Product shelf */
.lh-hero-stage {
  position: relative;
  align-self: end;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 3;
}
.lh-hero-shelf {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 32%;
  background:
    linear-gradient(180deg, rgba(159,201,60,0.08) 0%, rgba(159,201,60,0.22) 60%, rgba(159,201,60,0.32) 100%);
  border-top: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 -40px 80px -40px rgba(0,0,0,0.6) inset;
  transform-origin: center bottom;
}
.lh-hero-products {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(20px, 4vw, 60px);
  width: 100%;
  padding: 0 32px;
}
.lh-hero-product { position: relative; }
.lh-hero-product .lh-shadow {
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 110%;
  height: 18px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.45), transparent 70%);
  transform: translateX(-50%);
  filter: blur(8px);
}

/* Product placeholder mocks */
.lh-bottle { position: relative; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35)); }
.lh-bottle.lh-box {
  width: 84px; height: 200px;
  background: linear-gradient(135deg, #F5EBD8 0%, #FBF1E2 50%, #E8DCC2 100%);
  border-radius: 2px;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex; flex-direction: column;
  align-items: center; justify-content: space-between;
  padding: 18px 8px 14px;
  color: var(--lh-dark);
}
.lh-bottle.lh-box .lh-lbl { font-family: var(--lh-font-mono); font-size: 6px; letter-spacing: 0.18em; text-align: center; opacity: 0.7; line-height: 1.4; }
.lh-bottle.lh-box .lh-name { font-family: var(--lh-font-serif); font-size: 9px; font-weight: 500; text-align: center; line-height: 1.1; }
.lh-bottle.lh-box .lh-num { font-family: var(--lh-font-mono); font-size: 5px; letter-spacing: 0.1em; opacity: 0.5; }

.lh-bottle.lh-dropper { width: 64px; height: 220px; display: flex; flex-direction: column; align-items: center; }
.lh-bottle.lh-dropper .lh-cap { width: 36px; height: 38px; background: linear-gradient(180deg, #1f1f1f, #0a0a0a); border-radius: 4px 4px 2px 2px; }
.lh-bottle.lh-dropper .lh-neck { width: 22px; height: 8px; background: rgba(255,255,255,0.12); border-radius: 0 0 2px 2px; }
.lh-bottle.lh-dropper .lh-glass {
  flex: 1; width: 100%;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.35), rgba(255,255,255,0.05) 60%),
    linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.32));
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 8px;
  backdrop-filter: blur(2px);
}
.lh-bottle.lh-dropper .lh-glass::before {
  content: ''; position: absolute; top: 8px; left: 8px;
  width: 4px; height: 60%;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), transparent);
  border-radius: 4px;
}
.lh-bottle.lh-dropper .lh-glass-label {
  width: 80%; padding: 14px 0;
  background: var(--lh-snow); color: var(--lh-dark);
  text-align: center;
  font-family: var(--lh-font-mono);
  font-size: 5px; letter-spacing: 0.18em;
  border-radius: 1px;
}
.lh-bottle.lh-dropper .lh-glass-label strong {
  display: block;
  font-family: var(--lh-font-serif);
  font-weight: 500; font-size: 8px;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.lh-bottle.lh-tube {
  width: 78px; height: 220px;
  background: linear-gradient(180deg, #226653 0%, #1A4644 100%);
  border-radius: 8px 8px 14px 14px;
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  padding: 30px 6px 14px;
  color: var(--lh-snow);
}
.lh-bottle.lh-tube::before { content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 12px; background: #0a1a18; border-radius: 8px 8px 0 0; }
.lh-bottle.lh-tube::after { content: ''; position: absolute; left: 8px; top: 30px; bottom: 30px; width: 4px; background: linear-gradient(180deg, rgba(255,255,255,0.4), transparent); border-radius: 2px; }
.lh-bottle.lh-tube .lh-tube-name { font-family: var(--lh-font-serif); font-weight: 500; font-size: 10px; letter-spacing: 0.05em; text-align: center; }
.lh-bottle.lh-tube .lh-tube-tag { margin-top: 6px; font-family: var(--lh-font-mono); font-size: 5px; letter-spacing: 0.15em; opacity: 0.7; text-align: center; }

.lh-bottle.lh-cream {
  width: 92px; height: 200px;
  background: linear-gradient(135deg, #FBF1E2 0%, #F5EBD8 50%, #E8DCC2 100%);
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex; flex-direction: column;
  align-items: center; justify-content: space-between;
  padding: 22px 10px 16px;
  color: var(--lh-dark);
}
.lh-bottle.lh-cream .lh-name { font-family: var(--lh-font-serif); font-size: 11px; text-align: center; line-height: 1.1; }
.lh-bottle.lh-cream .lh-lbl { font-family: var(--lh-font-mono); font-size: 6px; letter-spacing: 0.18em; opacity: 0.7; text-align: center; }
.lh-bottle.lh-cream .lh-vol { font-family: var(--lh-font-mono); font-size: 6px; letter-spacing: 0.1em; opacity: 0.5; }

.lh-scroll-hint {
  position: absolute;
  right: 40px; bottom: 32px;
  font-family: var(--lh-font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: flex; align-items: center; gap: 12px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.lh-scroll-hint .lh-line {
  width: 1px; height: 60px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.6));
}

/* ============== SECTIONS ============== */
.lh-block { padding: 120px 56px; position: relative; }
.lh-block.lh-tight { padding: 80px 56px; }
.lh-block--full { padding-left: 0 !important; padding-right: 0 !important; }
.lh-block--full .lh-section-head { padding-left: 56px; padding-right: 56px; }

.lh-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 40px;
}
.lh-section-title {
  font-family: var(--lh-font-serif);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
}
.lh-section-title em { font-style: italic; color: rgba(38,38,38,0.55); }
.lh-section-link {
  font-family: var(--lh-font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--lh-dark);
  opacity: 0.7;
  transition: opacity 0.2s, gap 0.2s;
}
.lh-section-link:hover { opacity: 1; gap: 14px; }

.lh-reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s cubic-bezier(.2,.7,.2,1), transform 0.8s cubic-bezier(.2,.7,.2,1); }
.lh-reveal.lh-is-visible { opacity: 1; transform: translateY(0); }

/* ============== BEST SELLERS ============== */
.lh-bs-carousel {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 16px;
}
.lh-bs-viewport { overflow: hidden; }
.lh-bs-track {
  display: flex;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}
.lh-bs-slide {
  flex: 0 0 100%;
  min-width: 0;
}
.lh-bs-nav {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--lh-dark);
  font-size: 22px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18), 0 1px 4px rgba(0,0,0,0.10);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.lh-bs-nav:hover:not(:disabled) {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.22), 0 2px 8px rgba(0,0,0,0.12);
}
.lh-bs-nav:disabled { opacity: 0.3; cursor: not-allowed; }
.lh-bs-pager {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.lh-bs-dot {
  width: 28px; height: 3px;
  padding: 0; border: 0;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  transition: background 220ms ease, transform 220ms ease;
}
.lh-bs-dot.is-active { background: rgba(0,0,0,0.75); transform: scaleY(1.4); }
.lh-bestseller-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.lh-bestseller:hover .lh-bestseller-photo { transform: translateY(-6px) scale(1.02); }
@media (prefers-reduced-motion: reduce) {
  .lh-bs-track,
  .lh-bestseller-photo { transition: none; }
}
.lh-bestseller-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.lh-bestseller { display: flex; flex-direction: column; }
.lh-bestseller-img {
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lh-bestseller:hover .lh-bestseller-mock { transform: translateY(-6px) scale(1.02); }
.lh-bestseller-mock {
  width: 100%; height: 90%;
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
  display: flex; align-items: flex-end; justify-content: center;
}
.lh-bestseller-meta { padding-top: 18px; }
.lh-bestseller-name {
  font-family: var(--lh-font-sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--lh-dark);
}
.lh-bestseller-cat {
  margin-top: 6px;
  font-family: var(--lh-font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(38,38,38,0.5);
}

.lh-mock { filter: drop-shadow(0 12px 30px rgba(0,0,0,0.12)); }
.lh-mock-bbcushion { width: 70%; height: 70%; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #444, #0e0e0e 70%); position: relative; align-self: center; }
.lh-mock-bbcushion::after { content: 'LUBYLAB'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-family: var(--lh-font-mono); font-size: 9px; letter-spacing: 0.32em; }
.lh-mock-ampoule { width: 50%; display: flex; flex-direction: column; align-items: center; }
.lh-mock-ampoule .lh-cap { width: 70%; height: 26px; background: linear-gradient(180deg,#2a4d2c,#0a1d10); border-radius: 4px 4px 2px 2px; }
.lh-mock-ampoule .lh-glass {
  width: 100%; flex: 1; min-height: 140px;
  background: linear-gradient(180deg, rgba(180,200,160,0.25), rgba(120,160,90,0.18));
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 0 0 4px 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--lh-font-serif); font-size: 10px;
  color: rgba(0,0,0,0.7);
  text-align: center; padding: 6px;
}
.lh-mock-spiculebox {
  width: 80%; height: 80%;
  background: linear-gradient(180deg, #161616, #050505);
  border: 1px solid #2a2a2a;
  display: flex; align-items: center; justify-content: center;
  padding: 12%;
  position: relative;
}
.lh-mock-spiculebox::before {
  content: 'LUBYLAB';
  color: rgba(255,255,255,0.85);
  font-family: var(--lh-font-mono);
  font-size: 8px;
  letter-spacing: 0.32em;
  position: absolute;
  top: 16%;
}
.lh-mock-sunblock { display: flex; gap: 6px; align-items: flex-end; width: 80%; height: 80%; }
.lh-mock-sunblock .lh-tube { flex: 1; height: 80%; background: linear-gradient(180deg, #2a2a2a, #050505); border-radius: 4px 4px 8px 8px; position: relative; }
.lh-mock-sunblock .lh-tube::before { content: ''; position: absolute; top: 0; left: 15%; right: 15%; height: 8px; background: #f5f5f5; border-radius: 4px 4px 0 0; }
.lh-mock-sunblock .lh-tube::after {
  content: 'LUBYLAB ELIXIR';
  position: absolute; top: 30%; left: 50%;
  transform: translateX(-50%) rotate(-90deg);
  transform-origin: center;
  color: rgba(255,255,255,0.5);
  font-family: var(--lh-font-mono); font-size: 7px; letter-spacing: 0.18em;
  white-space: nowrap;
}

/* ============== 3 STAGES ============== */
.lh-stages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--lh-dark);
}
.lh-stage-card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #1a1a1a;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.lh-stage-card .lh-stage-bg { position: absolute; inset: 0; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.lh-stage-card:hover .lh-stage-bg { transform: scale(1.05); }

/* Floating cutout product shot (no background) layered over the gradient. */
.lh-stage-product-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}
.lh-stage-card:hover .lh-stage-product-wrap { transform: scale(1.06); }
/* Elixir is a slim tube — it reads small next to the dropper bottle and
   ampoule, so scale its floating cutout up for visual parity. The float
   animation lives on the inner .lh-stage-product img, so scaling the wrap
   composes with it cleanly. Hover override keeps the larger size + nudge. */
.lh-stage-elixir .lh-stage-product-wrap { transform: scale(1.42); }
.lh-stage-elixir.lh-stage-card:hover .lh-stage-product-wrap { transform: scale(1.5); }
.lh-stage-product {
  width: 92%;
  max-height: 96%;
  object-fit: contain;
  filter: drop-shadow(0 26px 46px rgba(0,0,0,0.38));
  animation: lh-stage-float 6s ease-in-out infinite;
}
.lh-stage-recovery .lh-stage-product { animation-delay: -2s; }
.lh-stage-daily .lh-stage-product {
  animation-delay: -4s;
  filter: drop-shadow(0 26px 46px rgba(0,0,0,0.22));
}
@keyframes lh-stage-float {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50%      { transform: translateY(-14px) rotate(1.5deg); }
}
@media (prefers-reduced-motion: reduce) {
  .lh-stage-product { animation: none; }
}

/* Hover CTA that slides up from the lower edge. */
.lh-stage-cta {
  position: absolute;
  left: 32px; bottom: 78px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--lh-font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lh-snow);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s ease, transform .4s cubic-bezier(.22,.61,.36,1);
}
.lh-stage-cta span { transition: transform .4s cubic-bezier(.22,.61,.36,1); }
.lh-stage-card:hover .lh-stage-cta { opacity: 1; transform: translateY(0); }
.lh-stage-card:hover .lh-stage-cta span { transform: translateX(4px); }
.lh-stage-daily .lh-stage-cta { color: var(--lh-dark); }
.lh-stage-card .lh-stage-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55) 100%); }
.lh-stage-label {
  position: absolute;
  left: 32px; bottom: 32px; right: 32px;
  display: flex; align-items: center; justify-content: space-between;
  color: var(--lh-snow);
}
.lh-stage-label .lh-stage-name { font-family: var(--lh-font-serif); font-size: 32px; font-weight: 500; letter-spacing: -0.01em; }
.lh-stage-label .lh-stage-num { font-family: var(--lh-font-mono); font-size: 10px; letter-spacing: 0.22em; }
.lh-stage-elixir .lh-stage-bg {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.18) 0%, transparent 50%),
    linear-gradient(135deg, #2a2a2a 0%, #161616 100%);
}
/* Mock bottle highlight removed — a real cutout product shot sits on top now. */
.lh-stage-elixir .lh-stage-bg::after { content: none; }
.lh-stage-recovery .lh-stage-bg {
  background:
    radial-gradient(ellipse at 60% 30%, rgba(159,201,60,0.4) 0%, transparent 60%),
    linear-gradient(135deg, #226653 0%, #1A4644 50%, #9FC93C 130%);
}
.lh-stage-recovery .lh-stage-bg::after {
  content: ''; position: absolute;
  top: 20%; left: 30%;
  width: 40%; height: 60%;
  background: radial-gradient(ellipse at 40% 40%, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.1) 30%, transparent 60%);
  filter: blur(1px);
}
.lh-stage-daily .lh-stage-bg {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.35) 0%, transparent 60%),
    linear-gradient(135deg, #FBF1E2 0%, #E8DCC2 80%, #C8B89A 100%);
}
/* Mock product block removed — a real cutout product shot sits on top now. */
.lh-stage-daily .lh-stage-bg::after { content: none; }
.lh-stage-daily .lh-stage-label { color: var(--lh-dark); }
.lh-stage-daily .lh-stage-overlay { background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.05) 100%); }

/* ============== HERO BANNER (01) — fade carousel ============== */
.lh-hero-banner {
  background: var(--lh-dark);
  display: block;
}
.lh-hb-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms cubic-bezier(.45,.05,.25,1);
  pointer-events: none;
  color: var(--lh-snow);
  z-index: 0;
}
.lh-hb-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.lh-hb-slide.is-light { color: var(--lh-dark); }
.lh-hb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lh-hb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 45%, transparent 75%);
}
.lh-hb-slide.is-light .lh-hb-overlay {
  background: linear-gradient(90deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.25) 45%, transparent 75%);
}
.lh-hb-copy {
  position: absolute;
  left: 56px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 560px;
  z-index: 2;
}
.lh-hb-eyebrow {
  font-family: var(--lh-font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  opacity: 0.9;
  margin-bottom: 24px;
}
.lh-hb-title {
  font-family: var(--lh-font-serif);
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 20px;
}
.lh-hb-sub {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.5;
  margin: 0 0 32px;
  opacity: 0.9;
  max-width: 460px;
}
.lh-hb-num {
  font-family: var(--lh-font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  opacity: 0.7;
}
.lh-hb-dots {
  position: absolute;
  left: 56px;
  bottom: 56px;
  display: flex;
  gap: 10px;
  z-index: 3;
}
.lh-hb-dot {
  width: 36px; height: 3px;
  padding: 0; border: 0;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 250ms ease, transform 250ms ease;
}
.lh-hb-dot.is-active { background: rgba(255,255,255,0.95); transform: scaleY(1.6); }
.lh-hero-banner .lh-scroll-hint {
  position: absolute;
  right: 32px;
  bottom: 40px;
  z-index: 3;
}
@media (max-width: 768px) {
  .lh-hb-copy { left: 24px; right: 24px; max-width: none; }
  .lh-hb-dots { left: 24px; bottom: 32px; }
  .lh-hero-banner .lh-scroll-hint { right: 20px; bottom: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .lh-hb-slide { transition: none; }
}

/* ============== VIDEO REVIEWS ============== */
.lh-reviews { padding: 120px 0; background: #ffffff; }
.lh-reviews .lh-section-head { padding: 0 56px; }
.lh-reviews-track {
  display: flex;
  /* Gap lives on each card (margin-right) instead of flex `gap` so the
     duplicated set width is an exact multiple — translateX(-50%) lands
     precisely on the seam and the loop is perfectly continuous. */
  animation: lhScrollLeft 60s linear infinite;
  width: max-content;
}
.lh-reviews-mask {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
/* Only hovering the centre 70% pauses the marquee — the faded edges keep
   scrolling so the cursor passing near them doesn't freeze the loop. */
.lh-reviews-hoverzone {
  position: absolute;
  left: 15%;
  width: 70%;
  top: 0;
  bottom: 0;
  z-index: 3;
}
.lh-reviews-hoverzone:hover ~ .lh-reviews-track { animation-play-state: paused; }
.lh-review-card {
  width: 352px; flex-shrink: 0;
  margin-right: 16px;
  aspect-ratio: 352 / 613;
  background: transparent;
  position: relative; overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s;
}
.lh-review-card:hover { transform: translateY(-4px); }
/* Looping product GIF fills the whole tile. */
.lh-review-gif { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* Author credit, bottom-left. Text-shadow keeps it legible over any GIF
   without re-adding a full dark overlay. */
.lh-review-author {
  position: absolute;
  left: 12px; bottom: 12px;
  z-index: 2;
  color: #fff;
  font-family: var(--lh-font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.65), 0 0 1px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
@keyframes lhScrollLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============== MARQUEE ============== */
.lh-marquee {
  padding: 28px 0;
  background: var(--lh-snow);
  border-top: 1px solid rgba(38,38,38,0.08);
  border-bottom: 1px solid rgba(38,38,38,0.08);
  overflow: hidden;
}
.lh-marquee-track {
  display: flex;
  gap: 64px;
  animation: lhScrollLeft 40s linear infinite;
  width: max-content;
  align-items: center;
}
.lh-marquee-item {
  display: inline-flex; align-items: center;
  gap: 64px;
  font-family: var(--lh-font-serif);
  font-size: 28px;
  font-weight: 500;
  font-style: italic;
  color: var(--lh-dark);
  white-space: nowrap;
}
.lh-marquee-item .lh-glyph { width: 8px; height: 8px; background: var(--lh-cica); border-radius: 50%; display: inline-block; }

/* ============== LONG LANDSCAPE VIDEO ============== */
.lh-landscape-video { padding: 0; background: var(--lh-dark); color: var(--lh-snow); }
.lh-lv-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}
.lh-lv-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;  /* let overlays receive hover; remove to allow video controls */
  z-index: 0;
}
.lh-lv-frame::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 25%, rgba(0,0,0,0.15) 75%, rgba(0,0,0,0.6) 100%),
    repeating-linear-gradient(180deg, transparent 0px, transparent 3px, rgba(0,0,0,0.02) 3px, rgba(0,0,0,0.02) 4px);
  pointer-events: none;
  z-index: 1;
}
.lh-lv-spacer { flex: 1; }
.lh-lv-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 56px;
  z-index: 2;
  pointer-events: none;
}
.lh-lv-content > * { pointer-events: auto; }
.lh-lv-top {
  display: flex; justify-content: space-between;
  font-family: var(--lh-font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.lh-lv-rec { display: inline-flex; align-items: center; gap: 8px; }
.lh-lv-rec .lh-dot { width: 8px; height: 8px; border-radius: 50%; background: #ff4444; animation: lhPulseDot 1.4s infinite; }
.lh-lv-center { flex: 1; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 28px; }
.lh-lv-embed {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  min-height: 0;
}
.lh-lv-embed iframe {
  width: min(100%, calc((100vh - 220px) * 16 / 9));
  aspect-ratio: 16 / 9;
  height: auto;
  max-height: 100%;
  border: 0;
  display: block;
  background: #000;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}
.lh-lv-play-btn {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(12px);
  color: var(--lh-snow);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.lh-lv-play-btn:hover { background: rgba(255,255,255,0.25); transform: scale(1.06); }
.lh-lv-title {
  font-family: var(--lh-font-serif);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.01em;
  text-align: center;
  max-width: 720px;
}
.lh-lv-title em { font-style: italic; color: rgba(255,255,255,0.75); }
.lh-lv-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  font-family: var(--lh-font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.lh-lv-bottom strong { color: var(--lh-snow); font-weight: 500; }
.lh-lv-progress {
  height: 1px; width: 100%;
  background: rgba(255,255,255,0.2);
  margin-top: 12px;
  position: relative;
}
.lh-lv-progress::after { content: ''; position: absolute; top: 0; left: 0; height: 100%; width: 35%; background: var(--lh-cica); }

/* ============== FEATURE BLOCKS ============== */
.lh-feature {
  padding: 140px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--lh-snow);
}
.lh-feature.lh-reverse .lh-feature-copy { order: 2; }
.lh-feature.lh-dark { background: var(--lh-elixir); color: var(--lh-snow); }

.lh-feature-media {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #f8f8f6, #ebebe8);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.lh-feature.lh-dark .lh-feature-media { background: linear-gradient(135deg, #1f1f1f, #0a0a0a); }
.lh-feature-media .lh-float { position: absolute; animation: lhFloat 6s ease-in-out infinite; }

/* Full-width banner image — each replaces an entire feature section. */
.lh-feature-banner { display: block; position: relative; }
.lh-feature-banner-img { width: 100%; height: auto; display: block; border-radius: 0; }

/* Text overlay on the empty left half of the banner. */
.lh-banner-copy {
  position: absolute;
  left: 16%;
  top: 50%;
  transform: translateY(-50%);
  max-width: min(32%, 380px);
  color: #1d1d1d;
}
.lh-banner-title {
  margin: 0;
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.lh-banner-sub {
  margin: 12px 0 0;
  font-size: clamp(11px, 1vw, 14px);
  line-height: 1.55;
  color: #6b6b6b;
}
.lh-banner-btn {
  display: inline-block;
  margin-top: clamp(14px, 2vw, 28px);
  padding: 12px 22px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.18);
  color: #1d1d1d;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.lh-banner-btn:hover { background: #1d1d1d; color: #fff; border-color: #1d1d1d; }
/* Right-aligned variant — copy sits on the empty right half of the banner. */
.lh-banner-copy--right { left: auto; right: 12%; }
@media (max-width: 768px) {
  /* The wide banner art (assets/HOMEPAGE/*.jpg, 1920×940) reserves half its
     width as empty space for the desktop overlay copy. Shown full-width on a
     phone it becomes a thin strip with a tiny, off-centre product. Instead:
     stack image on top + copy below, and crop the art to a taller 4:3 frame
     so the product fills it. */
  .lh-feature-banner { display: flex; flex-direction: column; background: var(--lh-snow); }
  .lh-feature-banner-img {
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
    object-position: center;
  }
  .lh-banner-copy,
  .lh-banner-copy--right {
    position: static;
    transform: none;
    left: auto; right: auto;
    max-width: none;
    padding: 24px 24px 8px;
  }
  .lh-banner-btn { padding: 10px 18px; margin-top: 14px; }
}
@keyframes lhFloat {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-16px) rotate(-6deg); }
}
.lh-feature-tag {
  font-family: var(--lh-font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(38,38,38,0.5);
  margin-bottom: 24px;
}
.lh-feature.lh-dark .lh-feature-tag { color: rgba(255,255,255,0.5); }
.lh-feature-tag .lh-dot { display: inline-block; width: 6px; height: 6px; background: var(--lh-cica); border-radius: 50%; margin-right: 10px; vertical-align: middle; }
.lh-feature-headline {
  font-family: var(--lh-font-serif);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
}
.lh-feature-headline em { font-style: italic; color: var(--lh-cica); }
.lh-feature-body {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(38,38,38,0.7);
  max-width: 480px;
  margin: 0 0 36px;
}
.lh-feature.lh-dark .lh-feature-body { color: rgba(255,255,255,0.7); }
.lh-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  border: 1px solid currentColor;
  font-family: var(--lh-font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  color: var(--lh-dark);
  background: transparent;
  transition: background 0.25s, color 0.25s, gap 0.25s;
}
.lh-btn:hover { background: var(--lh-dark); color: var(--lh-snow); gap: 18px; }
.lh-feature.lh-dark .lh-btn { color: var(--lh-snow); }
.lh-feature.lh-dark .lh-btn:hover { background: var(--lh-snow); color: var(--lh-dark); }
.lh-btn .lh-arrow { transition: transform 0.25s; }
.lh-btn:hover .lh-arrow { transform: translateX(4px); }

.lh-feature-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(38,38,38,0.1);
}
.lh-feature.lh-dark .lh-feature-stats { border-top-color: rgba(255,255,255,0.1); }
.lh-feature-stat-num {
  font-family: var(--lh-font-serif);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.lh-feature.lh-dark .lh-feature-stat-num { color: var(--lh-cica); }
.lh-feature-stat-label {
  font-family: var(--lh-font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(38,38,38,0.5);
  margin-top: 6px;
  line-height: 1.5;
}
.lh-feature.lh-dark .lh-feature-stat-label { color: rgba(255,255,255,0.5); }

.lh-tube-float {
  width: 38%; height: 70%;
  background: linear-gradient(180deg, rgba(159,201,60,0.92) 0%, rgba(159,201,60,1) 70%);
  border-radius: 30% 30% 8px 8px / 10% 10% 8px 8px;
  position: relative;
  color: #1a2a05;
  display: flex; flex-direction: column-reverse;
  align-items: center;
  padding-bottom: 8%;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}
.lh-tube-float::before {
  content: ''; position: absolute;
  top: 0; left: 30%; right: 30%; height: 8%;
  background: linear-gradient(180deg, #1a1a1a, #0a0a0a);
  border-radius: 50% 50% 4px 4px / 80% 80% 4px 4px;
}
.lh-tube-float::after {
  content: ''; position: absolute;
  top: 18%; left: 12%;
  width: 6%; height: 60%;
  background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent);
  border-radius: 4px;
}
.lh-tube-float .lh-tf-label {
  font-family: var(--lh-font-serif);
  font-size: clamp(10px, 1.2vw, 16px);
  font-weight: 500;
  text-align: center;
  line-height: 1.1;
}
.lh-tube-float .lh-tf-sub {
  font-family: var(--lh-font-mono);
  font-size: clamp(7px, 0.7vw, 9px);
  letter-spacing: 0.15em;
  opacity: 0.7;
  margin-top: 6px;
  text-align: center;
}

.lh-coupon-strip {
  position: absolute;
  left: 0; bottom: 0;
  padding: 8px 16px;
  background: var(--lh-snow);
  border-right: 1px solid rgba(38,38,38,0.1);
  border-top: 1px solid rgba(38,38,38,0.1);
  font-family: var(--lh-font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lh-dark);
  display: flex; align-items: center; gap: 10px;
}
.lh-coupon-strip .lh-close { opacity: 0.5; cursor: pointer; }

.lh-bottle-pair {
  position: relative;
  width: 80%; height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.lh-bottle-pair .lh-pump {
  width: 30%; height: 85%;
  background: linear-gradient(180deg, #d8d8d6, #b8b8b6);
  border-radius: 50% 50% 8px 8px / 6% 6% 8px 8px;
  position: relative;
  transform: rotate(-6deg);
  box-shadow: 0 30px 50px rgba(0,0,0,0.12);
}
.lh-bottle-pair .lh-pump::before {
  content: ''; position: absolute;
  top: 0; left: 35%; right: 35%; height: 14%;
  background: #e8e8e6;
  border-radius: 4px 4px 6px 6px;
}
.lh-bottle-pair .lh-pump-label {
  position: absolute;
  top: 40%; left: 50%; transform: translateX(-50%);
  width: 70%;
  text-align: center;
  font-family: var(--lh-font-mono);
  font-size: 7px;
  letter-spacing: 0.18em;
  color: rgba(0,0,0,0.65);
  line-height: 1.4;
}
.lh-bottle-pair .lh-small-tube {
  width: 16%; height: 60%;
  background: linear-gradient(180deg, #f4f1ea, #d8d4ca);
  border-radius: 50% 50% 4px 4px / 6% 6% 4px 4px;
  transform: rotate(20deg);
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}
.lh-bottle-pair .lh-small-tube::before {
  content: ''; position: absolute;
  top: 0; left: 30%; right: 30%; height: 14%;
  background: #f4f1ea;
  border-radius: 50% 50% 4px 4px / 100% 100% 4px 4px;
}
.lh-bottle-pair .lh-splash {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--lh-cica);
  border-radius: 50%;
  filter: blur(0.5px);
}

/* ============== INSTAGRAM GRID ============== */
.lh-insta { padding: 120px 56px; background: #ffffff; }
/* Hashtag header — centered, smaller than the page's section titles. */
.lh-insta-head { text-align: center; margin-bottom: 48px; }
.lh-insta-tags {
  font-family: var(--lh-font-serif);
  font-size: clamp(16px, 1.8vw, 24px);
  font-weight: 500;
  letter-spacing: 0.01em;
  margin: 0;
}
.lh-insta-carousel {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 16px;
}
.lh-insta-viewport {
  overflow: hidden;
}
.lh-insta-track {
  display: flex;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}
.lh-insta-slide {
  flex: 0 0 100%;
  display: grid;
  /* Desktop: a single row of 5 tiles per page. Narrower widths collapse to
     2 cols (≤640px) then 1 col (≤360px). See the media queries below. */
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.lh-insta-tile {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #efe6d4;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  font: inherit;
  color: inherit;
}
.lh-insta-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 800ms cubic-bezier(.2,.7,.2,1);
}
.lh-insta-tile:hover .lh-insta-img { transform: scale(1.06); }

/* Instagram photo lightbox (popup viewer) */
.lh-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(4px);
  cursor: zoom-out;
  animation: lh-lightbox-in 0.2s ease;
}
@keyframes lh-lightbox-in { from { opacity: 0; } to { opacity: 1; } }
.lh-lightbox-img {
  max-width: min(92vw, 600px);
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  cursor: default;
}
.lh-lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lh-lightbox-close:hover { background: rgba(255, 255, 255, 0.25); }
.lh-insta-nav {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.18);
  background: var(--lh-snow);
  color: var(--lh-dark);
  font-size: 22px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}
.lh-insta-nav:hover {
  background: var(--lh-dark);
  color: var(--lh-snow);
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.lh-insta-pager {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.lh-insta-dot {
  width: 28px; height: 3px;
  padding: 0; border: 0;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  transition: background 220ms ease, transform 220ms ease;
}
.lh-insta-dot.is-active {
  background: rgba(0,0,0,0.75);
  transform: scaleY(1.4);
}
@media (prefers-reduced-motion: reduce) {
  .lh-insta-track,
  .lh-insta-img { transition: none; }
}

/* ============== Responsive ============== */
@media (max-width: 1080px) {
  .lh-bestseller-grid { grid-template-columns: repeat(2, 1fr); }
  .lh-feature { grid-template-columns: 1fr; padding: 100px 32px; gap: 48px; }
  .lh-feature.lh-reverse .lh-feature-copy { order: 0; }
  .lh-stages-grid { grid-template-columns: 1fr; }
  .lh-stage-card { aspect-ratio: 4 / 3; }
  .lh-block { padding: 80px 32px; }
  .lh-block--full .lh-section-head { padding-left: 32px; padding-right: 32px; }
  .lh-hero-grid { padding: 60px 32px 0; }
  .lh-lv-content { padding: 32px; }
  .lh-lv-bottom { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 640px) {
  .lh-bestseller-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .lh-section-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .lh-insta-slide { grid-template-columns: repeat(3, 1fr); }
  .lh-insta-carousel { grid-template-columns: 36px 1fr 36px; gap: 8px; }
  .lh-insta-nav { width: 36px; height: 36px; font-size: 18px; }
  .lh-bs-carousel { grid-template-columns: 36px 1fr 36px; gap: 8px; }
  .lh-bs-nav { width: 36px; height: 36px; font-size: 18px; }
  .lh-marquee-item { font-size: 20px; gap: 32px; }
  .lh-marquee-track { gap: 32px; }
  .lh-hero-products { gap: 12px; padding: 0 12px; }
  .lh-bottle.lh-box { width: 56px; height: 140px; }
  .lh-bottle.lh-dropper { width: 46px; height: 150px; }
  .lh-bottle.lh-tube { width: 54px; height: 150px; }
  .lh-bottle.lh-cream { width: 62px; height: 140px; }
}
/* Narrowest phones — drop to 2 columns (2×3) so tiles stay large enough. */
@media (max-width: 360px) {
  .lh-insta-slide { grid-template-columns: repeat(2, 1fr); }
}
