:root {
  --gold: #c99b31;
  --gold-deep: #8b6519;
  --champagne: #f8e8b8;
  --ivory: #fffaf1;
  --cream: #fff6df;
  --glass-bg: rgba(255, 255, 255, 0.58);
  --glass-strong: rgba(255, 255, 255, 0.76);
  --glass-border: rgba(218, 173, 71, 0.34);
  --text-dark: #2f2616;
  --text-muted: #796b50;
  --whatsapp-green: #1fae5b;
  --surface-shadow: 0 20px 60px rgba(111, 80, 21, 0.14);
  --soft-shadow: 0 12px 32px rgba(122, 90, 28, 0.12);
  --inner-highlight: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --content: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  color: var(--text-dark);
  background:
    radial-gradient(circle at 50% -12%, rgba(255, 217, 102, 0.52), transparent 32rem),
    radial-gradient(circle at 0% 35%, rgba(255, 238, 184, 0.78), transparent 24rem),
    linear-gradient(180deg, #fffaf0 0%, #fff5dc 42%, #fffaf1 100%);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.34) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 65%);
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

img,
video {
  display: block;
  max-width: 100%;
}

.app-shell {
  min-height: 100vh;
  padding-bottom: 112px;
}

.page-content {
  opacity: 1;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.page-content.is-fading {
  opacity: 0.45;
  transform: translateY(4px);
}

.section {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: 30px 16px;
  scroll-margin-top: 94px;
}

.section:first-child {
  padding-top: 18px;
}

.section-band {
  width: 100%;
  padding: 22px 0;
  background: linear-gradient(180deg, transparent, rgba(255, 243, 209, 0.64), transparent);
}

.GlassCard {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 251, 238, 0.44)),
    var(--glass-bg);
  box-shadow: var(--surface-shadow), var(--inner-highlight);
  backdrop-filter: blur(22px) saturate(1.26);
  -webkit-backdrop-filter: blur(22px) saturate(1.26);
}

.GlassCard::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.68), transparent 34%),
    radial-gradient(circle at 80% 12%, rgba(255, 229, 142, 0.42), transparent 28%);
  opacity: 0.8;
}

.GlassCard > * {
  position: relative;
  z-index: 1;
}

.GlassButton {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff;
  font-weight: 750;
  letter-spacing: 0;
  background:
    linear-gradient(135deg, rgba(41, 193, 107, 0.98), rgba(25, 151, 79, 0.98)),
    var(--whatsapp-green);
  box-shadow:
    0 16px 34px rgba(31, 174, 91, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.GlassButton:hover,
.GlassButton:focus-visible {
  transform: translateY(-1px);
  box-shadow:
    0 20px 42px rgba(31, 174, 91, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.GlassButton--gold {
  color: var(--text-dark);
  background: linear-gradient(135deg, #ffeeb8, #d7a43a);
  box-shadow:
    0 16px 34px rgba(201, 155, 49, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.SectionHeader {
  display: grid;
  gap: 8px;
  max-width: 720px;
  margin: 0 0 18px;
}

.SectionHeader.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.SectionHeader__eyebrow {
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.SectionHeader h2,
.SectionHeader h1 {
  margin: 0;
  font-size: clamp(1.66rem, 7vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.SectionHeader p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.top-bar {
  position: sticky;
  top: 8px;
  z-index: 30;
  width: min(calc(100% - 20px), 1160px);
  min-height: 58px;
  margin: 8px auto 0;
  padding: 8px;
  border: 1px solid rgba(222, 180, 83, 0.32);
  border-radius: 999px;
  background: rgba(255, 252, 242, 0.72);
  box-shadow: 0 14px 36px rgba(107, 79, 22, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(22px) saturate(1.18);
  -webkit-backdrop-filter: blur(22px) saturate(1.18);
}

.top-bar__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
  min-height: 42px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 0;
  padding-left: 4px;
  font-weight: 850;
}

.header-logo,
.brand-logo-frame {
  flex: 0 0 auto;
}

.header-logo.asset-frame {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  min-width: 120px;
  max-width: 180px;
  height: 44px;
  line-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.header-logo.asset-frame img {
  display: block;
  width: auto;
  height: 34px;
  max-width: 170px;
  object-fit: contain;
  object-position: center;
  padding: 0;
  transform: translateY(1px);
}

.header-logo.asset-frame.logo-si img {
  height: 31px;
  max-width: 176px;
}

.brand-logo-frame .asset-placeholder {
  padding: 4px 8px;
}

.brand-logo-frame .asset-placeholder strong {
  font-size: 0.56rem;
  line-height: 1.05;
}

.brand-logo-frame .asset-placeholder small {
  display: none;
}

.brand-lockup__mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #5f4510;
  background: linear-gradient(145deg, #fff6cb, #d5a33d);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 10px 20px rgba(201, 155, 49, 0.22);
}

.brand-lockup__text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top-nav {
  display: none;
  justify-content: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.top-nav a {
  padding: 9px 10px;
  border-radius: 999px;
}

.top-nav a:hover {
  background: rgba(255, 238, 184, 0.68);
  color: var(--text-dark);
}

.top-bar__actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.top-bar__cta {
  display: none;
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.88rem;
}

.LanguageSwitcher {
  display: inline-flex;
  padding: 3px;
  border: 1px solid rgba(212, 166, 57, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.LanguageSwitcher button {
  min-width: 39px;
  min-height: 32px;
  padding: 0 9px;
  border-radius: 999px;
  color: var(--text-muted);
  background: transparent;
  font-size: 0.82rem;
  font-weight: 850;
  transition:
    color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.LanguageSwitcher button.is-active {
  color: var(--text-dark);
  background: linear-gradient(135deg, rgba(255, 246, 210, 0.95), rgba(255, 216, 123, 0.74));
  box-shadow:
    0 6px 16px rgba(201, 155, 49, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.hero-section {
  display: grid;
  gap: 18px;
}

.hero-visual {
  display: grid;
  place-items: center;
}

.product-frame {
  width: min(100%, 390px);
  min-height: 340px;
  padding: 20px;
  border-radius: var(--radius-xl);
}

.product-frame .asset-frame {
  aspect-ratio: 1 / 1.08;
  min-height: 288px;
}

.hero-copy {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: var(--radius-xl);
}

.hero-badge {
  width: fit-content;
  padding: 8px 13px;
  border: 1px solid rgba(211, 163, 52, 0.38);
  border-radius: 999px;
  color: #725412;
  background: rgba(255, 238, 184, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  font-weight: 850;
}

.product-kicker {
  margin: 0;
  color: var(--gold-deep);
  font-size: 0.88rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2rem, 9vw, 4.65rem);
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero-main-headline {
  margin: 0;
  color: var(--gold-deep);
  font-size: clamp(1.18rem, 5.8vw, 2.35rem);
  font-weight: 900;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.hero-copy .support-line,
.hero-copy .description,
.hero-copy .care-line,
.hero-copy .seo-line {
  margin: 0;
}

.support-line {
  color: #5f4514;
  font-size: 1.05rem;
  font-weight: 780;
}

.description,
.care-line,
.seo-line,
.note-copy,
.rich-copy {
  color: var(--text-muted);
}

.seo-line {
  font-size: 0.88rem;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.price-chip {
  padding: 8px 13px;
  border-radius: 999px;
  color: #5c4312;
  background: rgba(255, 237, 183, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  font-weight: 850;
}

.hero-actions {
  display: grid;
  gap: 10px;
}

.hero-actions .GlassButton {
  width: fit-content;
  min-width: 220px;
  max-width: min(92vw, 320px);
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  white-space: nowrap;
  text-align: center;
  line-height: 1.1;
  box-sizing: border-box;
  font-size: clamp(0.88rem, 3.6vw, 1rem);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.benefit-card {
  min-height: 142px;
  padding: 16px;
}

.benefit-card h3,
.ingredient-card h3,
.product-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.18;
}

.benefit-card p,
.ingredient-card p,
.product-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.content-card {
  padding: 20px;
}

.content-card p {
  margin: 0 0 12px;
}

.content-card p:last-child {
  margin-bottom: 0;
}

.note-pill {
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 999px;
  color: #765617;
  background: rgba(255, 238, 184, 0.65);
  font-size: 0.9rem;
  font-weight: 750;
}

.flow-grid {
  display: grid;
  gap: 12px;
}

.flow-card {
  padding: 18px;
}

.flow-step {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 50%;
  color: #593e0a;
  background: linear-gradient(145deg, #fff6cc, #d7a33d);
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(201, 155, 49, 0.24);
}

.flow-card h3 {
  margin: 0 0 8px;
  font-size: 1.06rem;
}

.flow-card p {
  margin: 0;
  color: var(--text-muted);
}

.ingredient-section {
  padding-bottom: 18px;
}

.ingredient-reference-section {
  padding-top: 18px;
}

.ingredient-image-layout {
  display: grid;
  gap: 14px;
}

.ingredients-image-stage {
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  border-radius: 32px;
  overflow: hidden;
}

.ingredients-image-stage.asset-frame {
  display: block;
}

.ingredients-image-stage .ingredients-showcase-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.ingredients-hotspot-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.ingredient-image-hotspot {
  position: absolute;
  z-index: 3;
  border: 0;
  border-radius: 16px;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
}

.ingredient-image-hotspot:focus-visible {
  outline: 2px solid rgba(201, 155, 49, 0.9);
  outline-offset: 2px;
}

@media (hover: hover) and (pointer: fine) {
  .ingredient-image-hotspot:hover {
    background: rgba(255, 238, 169, 0.08);
    box-shadow: inset 0 0 0 1px rgba(201, 155, 49, 0.36);
  }
}

.key-ingredient-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ingredient-spotlight-card {
  display: grid;
  min-height: 176px;
  align-content: start;
  gap: 9px;
  padding: 16px;
}

.ingredient-tag,
.ingredient-detail-kicker {
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid rgba(209, 160, 45, 0.28);
  border-radius: 999px;
  color: #6a4a0f;
  background: rgba(255, 239, 190, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 900;
}

.ingredient-showcase-stage {
  position: relative;
  isolation: isolate;
  min-height: 620px;
  padding: clamp(20px, 4vw, 38px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 48% 44%, rgba(255, 255, 245, 0.88), transparent 26rem),
    radial-gradient(circle at 82% 18%, rgba(245, 181, 55, 0.34), transparent 23rem),
    radial-gradient(circle at 5% 76%, rgba(255, 231, 163, 0.74), transparent 22rem),
    linear-gradient(135deg, #fff7dc 0%, #f8df9d 42%, #e8b452 100%);
  overflow: hidden;
}

.ingredient-showcase-stage::after {
  content: "";
  position: absolute;
  inset: -22% -14% -12% -22%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 11% 22%, transparent 0 42%, rgba(255, 255, 255, 0.58) 43%, transparent 44%),
    radial-gradient(ellipse at 10% 28%, transparent 0 48%, rgba(220, 154, 35, 0.18) 49%, transparent 50%),
    radial-gradient(circle at 93% 78%, rgba(255, 255, 255, 0.42) 0 1px, transparent 2px);
  background-size: auto, auto, 24px 24px;
  opacity: 0.82;
}

.ingredient-showcase-top,
.ingredient-showcase-main {
  position: relative;
  z-index: 1;
}

.ingredient-showcase-top {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 210px));
  justify-content: center;
  gap: clamp(28px, 7vw, 86px);
  margin: 0 auto 26px;
}

.ingredient-showcase-main {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) minmax(310px, 0.92fr) minmax(230px, 1fr);
  align-items: end;
  gap: clamp(18px, 3vw, 40px);
}

.ingredient-showcase-side {
  display: grid;
  gap: 14px;
}

.ingredient-showcase-item {
  display: grid;
  grid-template-columns: 76px 34px minmax(0, 1fr);
  align-items: center;
  min-width: 0;
}

.ingredient-showcase-item--top {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.ingredient-showcase-item strong {
  color: #3e3019;
  font-size: clamp(0.78rem, 1.15vw, 0.96rem);
  font-weight: 850;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.ingredient-showcase-line {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(193, 128, 17, 0.06), rgba(177, 118, 18, 0.78));
}

.ingredient-showcase-line::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b57911;
  box-shadow: 0 0 0 4px rgba(255, 226, 149, 0.36);
  transform: translateY(-50%);
}

.ingredient-showcase-item--top .ingredient-showcase-line {
  display: none;
}

.ingredient-showcase-orb {
  position: relative;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.95), rgba(255, 248, 218, 0.44) 35%, rgba(210, 145, 22, 0.18) 68%, rgba(255, 255, 255, 0.62) 100%);
  box-shadow:
    0 16px 32px rgba(116, 81, 18, 0.16),
    inset 0 2px 5px rgba(255, 255, 255, 0.92),
    inset 0 -7px 18px rgba(189, 128, 18, 0.17);
}

.ingredient-showcase-orb::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(214, 150, 31, 0.22);
  border-radius: inherit;
}

.showcase-orb-art {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
}

.showcase-orb-art i {
  position: absolute;
  display: block;
}

.showcase-orb-art--primrose i {
  left: 16px;
  top: 10px;
  width: 17px;
  height: 25px;
  border-radius: 55% 55% 48% 48%;
  background: linear-gradient(145deg, #fff068, #f0ba18);
  transform-origin: 50% 16px;
}

.showcase-orb-art--primrose i:nth-child(1) { transform: rotate(0deg) translateY(-7px); }
.showcase-orb-art--primrose i:nth-child(2) { transform: rotate(72deg) translateY(-7px); }
.showcase-orb-art--primrose i:nth-child(3) { transform: rotate(144deg) translateY(-7px); }
.showcase-orb-art--primrose i:nth-child(4) { transform: rotate(216deg) translateY(-7px); }
.showcase-orb-art--primrose i:nth-child(5) { transform: rotate(288deg) translateY(-7px); }

.showcase-orb-art--primrose::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 20px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #a66c0d;
}

.showcase-orb-art--grapes i {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #f9c5d4, #9a244f 72%);
}

.showcase-orb-art--grapes i:nth-child(1) { left: 12px; top: 9px; }
.showcase-orb-art--grapes i:nth-child(2) { left: 23px; top: 10px; }
.showcase-orb-art--grapes i:nth-child(3) { left: 17px; top: 22px; }
.showcase-orb-art--grapes i:nth-child(4) { left: 29px; top: 23px; }
.showcase-orb-art--grapes i:nth-child(5) {
  left: 29px;
  top: 2px;
  width: 15px;
  height: 9px;
  border-radius: 90% 0 90% 0;
  background: linear-gradient(135deg, #8fd06b, #317c31);
  transform: rotate(-20deg);
}

.showcase-orb-art--bark i:nth-child(n+4),
.showcase-orb-art--licorice i:nth-child(n+4),
.showcase-orb-art--tea i:nth-child(n+4),
.showcase-orb-art--collagen i:nth-child(n+4),
.showcase-orb-art--hyaluronic i:nth-child(n+4),
.showcase-orb-art--molecule i:nth-child(n+4),
.showcase-orb-art--carotenoids i,
.showcase-orb-art--citrus i {
  display: none;
}

.showcase-orb-art--bark i,
.showcase-orb-art--licorice i {
  left: 8px;
  width: 33px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7a421c, #c58237 48%, #633216);
}

.showcase-orb-art--bark i:nth-child(1),
.showcase-orb-art--licorice i:nth-child(1) { top: 13px; transform: rotate(-11deg); }
.showcase-orb-art--bark i:nth-child(2),
.showcase-orb-art--licorice i:nth-child(2) { top: 23px; transform: rotate(8deg); }
.showcase-orb-art--bark i:nth-child(3),
.showcase-orb-art--licorice i:nth-child(3) { top: 31px; transform: rotate(-5deg); }

.showcase-orb-art--licorice i {
  background: linear-gradient(90deg, #9d6d36, #e0b06b 48%, #7b4a1e);
}

.showcase-orb-art--tea i {
  width: 23px;
  height: 13px;
  border-radius: 90% 0 90% 0;
  background: linear-gradient(135deg, #b3ec80, #2f8e32);
}

.showcase-orb-art--tea i:nth-child(1) { left: 8px; top: 15px; transform: rotate(-22deg); }
.showcase-orb-art--tea i:nth-child(2) { left: 20px; top: 19px; transform: rotate(28deg); }
.showcase-orb-art--tea i:nth-child(3) { left: 13px; top: 27px; transform: rotate(-7deg); }

.showcase-orb-art--collagen i {
  left: 5px;
  width: 38px;
  height: 14px;
  border-bottom: 4px solid rgba(28, 156, 214, 0.78);
  border-radius: 50%;
}

.showcase-orb-art--collagen i:nth-child(1) { top: 12px; transform: rotate(-12deg); }
.showcase-orb-art--collagen i:nth-child(2) { top: 20px; transform: rotate(10deg); border-color: rgba(92, 196, 235, 0.78); }
.showcase-orb-art--collagen i:nth-child(3) { top: 28px; transform: rotate(-8deg); border-color: rgba(176, 232, 250, 0.92); }

.showcase-orb-art--carotenoids {
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #fff9c8 0 16%, #ffbf2f 34%, #c87909 72%, rgba(255, 219, 92, 0.1) 74%);
  box-shadow: 0 0 18px rgba(255, 176, 32, 0.52);
}

.showcase-orb-art--hyaluronic i,
.showcase-orb-art--molecule i {
  width: 15px;
  height: 15px;
  border: 2px solid rgba(148, 179, 185, 0.86);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.showcase-orb-art--hyaluronic i:nth-child(1),
.showcase-orb-art--molecule i:nth-child(1) { left: 9px; top: 10px; }
.showcase-orb-art--hyaluronic i:nth-child(2),
.showcase-orb-art--molecule i:nth-child(2) { left: 26px; top: 18px; }
.showcase-orb-art--hyaluronic i:nth-child(3),
.showcase-orb-art--molecule i:nth-child(3) { left: 14px; top: 30px; }

.showcase-orb-art--hyaluronic::before,
.showcase-orb-art--molecule::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 21px;
  width: 24px;
  height: 2px;
  background: rgba(126, 161, 170, 0.58);
  transform: rotate(26deg);
}

.showcase-orb-art--molecule i {
  border-color: rgba(206, 148, 24, 0.82);
}

.showcase-orb-art--molecule::before {
  background: rgba(206, 148, 24, 0.56);
}

.showcase-orb-art--citrus {
  border: 3px solid #f6a90d;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.96) 0 8%, transparent 9%),
    conic-gradient(from 6deg, #ffc44d 0 13%, #fff4bc 13% 16%, #ffad17 16% 30%, #fff4bc 30% 33%, #ffca55 33% 47%, #fff4bc 47% 50%, #ffb01a 50% 64%, #fff4bc 64% 67%, #ffc95b 67% 81%, #fff4bc 81% 84%, #ffb117 84% 100%);
}

.showcase-orb-art--letters {
  display: grid;
  place-items: center;
  color: #a46d13;
  font-size: 1.45rem;
  font-weight: 900;
}

.ingredient-showcase-product {
  display: grid;
  align-self: end;
  justify-items: center;
  padding: 56px 0 12px;
}

.showcase-product-box {
  position: relative;
  display: grid;
  width: min(100%, 356px);
  aspect-ratio: 1.72 / 1;
  padding: 28px 30px 24px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(145deg, #d8a00d 0%, #b98205 54%, #916308 100%);
  box-shadow:
    0 30px 50px rgba(105, 69, 9, 0.26),
    0 12px 28px rgba(255, 255, 255, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
  transform: perspective(900px) rotateY(-7deg) rotateX(1deg);
  transform-style: preserve-3d;
}

.showcase-product-box::before,
.showcase-product-box::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.showcase-product-box::before {
  left: 26px;
  right: -18px;
  top: -25px;
  height: 25px;
  border-radius: 8px 9px 0 0;
  background: linear-gradient(90deg, #e1ae22, #b47a05);
  transform: skewX(-48deg);
  transform-origin: bottom left;
}

.showcase-product-box::after {
  top: -6px;
  right: -33px;
  width: 33px;
  height: calc(100% + 1px);
  border-radius: 0 8px 9px 0;
  background: linear-gradient(180deg, #9a6908, #7d5207);
  transform: skewY(-18deg);
  transform-origin: left top;
}

.showcase-product-box span,
.showcase-product-box strong,
.showcase-product-box em,
.showcase-product-box small {
  position: relative;
  z-index: 1;
}

.showcase-product-box span {
  align-self: start;
  font-size: 0.85rem;
  font-weight: 850;
}

.showcase-product-box strong {
  align-self: end;
  margin-top: 16px;
  font-size: clamp(2.45rem, 5vw, 4rem);
  line-height: 0.82;
  letter-spacing: -0.04em;
}

.showcase-product-box em {
  justify-self: end;
  margin-top: -6px;
  color: rgba(98, 73, 22, 0.62);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.showcase-product-box small {
  align-self: end;
  font-size: 0.64rem;
  font-weight: 850;
  line-height: 1.1;
}

.ingredient-label-layout {
  display: grid;
  gap: 14px;
}

.label-stage {
  position: relative;
  min-height: 360px;
  padding: 8px;
  border-radius: var(--radius-xl);
}

.label-stage .asset-frame {
  min-height: 342px;
  aspect-ratio: 1.34 / 1;
  border-radius: calc(var(--radius-xl) - 8px);
  background: rgba(255, 248, 226, 0.72);
}

.label-stage .asset-frame img {
  object-fit: contain;
  filter: saturate(1.05) contrast(1.04) brightness(1.02);
}

.hotspot-layer {
  position: absolute;
  inset: 14px;
  z-index: 2;
  pointer-events: none;
}

.ingredient-callout-layer {
  position: absolute;
  inset: 14px;
  z-index: 2;
  pointer-events: none;
}

.ingredient-callout-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.ingredient-callout-lines line {
  stroke: rgba(116, 82, 17, 0.36);
  stroke-width: 0.36;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  marker-end: url("#calloutArrow");
  filter: drop-shadow(0 5px 10px rgba(106, 73, 9, 0.1));
}

.ingredient-callout-lines marker path {
  fill: rgba(150, 105, 20, 0.58);
}

.ingredient-callout-lines line.is-selected {
  stroke: rgba(201, 155, 49, 0.92);
  stroke-width: 0.72;
}

.IngredientHotspot {
  position: absolute;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: #5d4108;
  background:
    radial-gradient(circle at 35% 30%, #ffffff, #ffe28d 45%, #c89118 100%);
  box-shadow:
    0 0 0 7px rgba(255, 215, 105, 0.16),
    0 12px 24px rgba(130, 93, 18, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  font-size: 0.76rem;
  font-weight: 900;
  pointer-events: auto;
  transform: translate(-50%, -50%);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.IngredientHotspot.is-secondary {
  width: 23px;
  height: 23px;
  opacity: 0.82;
  color: #6c501a;
  background:
    radial-gradient(circle at 35% 30%, #ffffff, #f7df9a 48%, #c99b31 100%);
  box-shadow:
    0 0 0 4px rgba(255, 215, 105, 0.12),
    0 8px 18px rgba(130, 93, 18, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  font-size: 0.64rem;
}

.IngredientCallout {
  position: absolute;
  z-index: 4;
  max-width: 150px;
  min-height: 34px;
  padding: 8px 11px;
  border: 1px solid rgba(165, 116, 18, 0.24);
  border-radius: 999px;
  color: #614511;
  background: rgba(255, 252, 242, 0.9);
  box-shadow:
    0 12px 26px rgba(111, 80, 21, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px) saturate(1.18);
  -webkit-backdrop-filter: blur(16px) saturate(1.18);
  font-size: 0.7rem;
  font-weight: 850;
  line-height: 1.05;
  text-align: center;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.IngredientCallout:hover,
.IngredientCallout.is-selected {
  background: rgba(255, 242, 197, 0.9);
  box-shadow:
    0 14px 34px rgba(201, 155, 49, 0.21),
    0 0 0 5px rgba(255, 216, 112, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform: translate(-50%, -50%) scale(1.03);
}

.IngredientHotspot::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(215, 163, 47, 0.32);
  border-radius: inherit;
  animation: hotspotPulse 2.8s ease-in-out infinite;
}

.IngredientHotspot:hover,
.IngredientHotspot.is-selected {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow:
    0 0 0 10px rgba(255, 214, 95, 0.22),
    0 16px 34px rgba(130, 93, 18, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.IngredientHotspot.is-secondary:hover,
.IngredientHotspot.is-secondary.is-selected {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.18);
}

.hotspot-panel,
.hotspot-sheet {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 20px;
}

.hotspot-panel h3,
.hotspot-sheet h3 {
  margin: 0;
  color: var(--text-dark);
  font-size: 1.32rem;
  line-height: 1.08;
}

.hotspot-panel p,
.hotspot-sheet p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.58;
}

.ingredient-detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.ingredient-detail-badges span {
  padding: 6px 9px;
  border-radius: 999px;
  color: #6b4b10;
  background: rgba(255, 242, 203, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
  font-size: 0.74rem;
  font-weight: 820;
}

.hotspot-sheet {
  position: fixed;
  right: 14px;
  bottom: 96px;
  left: 14px;
  z-index: 60;
  max-height: 38vh;
  overflow-y: auto;
  border-radius: 24px;
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.hotspot-sheet.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.hotspot-sheet__close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.62);
  font-weight: 900;
}

.ingredient-scroller {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  padding: 4px 2px 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.ingredient-scroller::-webkit-scrollbar,
.gallery-track::-webkit-scrollbar,
.product-tray-track::-webkit-scrollbar {
  display: none;
}

.ingredient-card {
  flex: 0 0 78%;
  min-height: 172px;
  padding: 18px;
  scroll-snap-align: center;
}

.ingredient-spotlight-card h3 {
  margin: 0;
  color: var(--text-dark);
  font-size: 0.98rem;
  line-height: 1.18;
}

.ingredient-spotlight-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.42;
}

.accordion-stack {
  display: grid;
  gap: 12px;
}

.composition-grid {
  align-items: start;
}

.FAQAccordion,
.formula-accordion {
  overflow: hidden;
}

.FAQAccordion summary,
.formula-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 56px;
  padding: 0 18px;
  color: var(--text-dark);
  font-weight: 850;
  list-style: none;
  cursor: pointer;
}

.FAQAccordion summary::-webkit-details-marker,
.formula-accordion summary::-webkit-details-marker {
  display: none;
}

.FAQAccordion summary::after,
.formula-accordion summary::after {
  content: "";
  display: grid;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 235, 171, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 8px 18px rgba(143, 100, 20, 0.12);
  background-image:
    linear-gradient(135deg, transparent 42%, #614512 42%, #614512 52%, transparent 52%),
    linear-gradient(45deg, transparent 42%, #614512 42%, #614512 52%, transparent 52%);
  background-position: 9px 9px, 13px 9px;
  background-repeat: no-repeat;
  background-size: 8px 8px;
  font-weight: 900;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    background-color 260ms ease;
}

.FAQAccordion.is-open summary::after,
.formula-accordion.is-open summary::after {
  transform: rotate(180deg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 22px rgba(201, 155, 49, 0.2);
}

.accordion-body {
  padding: 0 18px 18px;
  color: var(--text-muted);
}

.accordion-content {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    height 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms ease;
}

.formula-accordion .formula-content,
.FAQAccordion .accordion-content {
  display: block;
}

.formula-accordion.is-open .accordion-content,
.FAQAccordion.is-open .accordion-content {
  opacity: 1;
}

.formula-accordion.is-opening {
  animation: formulaSoftGlow 700ms ease;
}

.formula-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.formula-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(183, 142, 49, 0.14);
}

.formula-list li span {
  min-width: 0;
  color: var(--text-dark);
  line-height: 1.3;
}

.formula-list li strong {
  flex: 0 0 auto;
  color: var(--gold-deep);
  font-weight: 900;
  white-space: nowrap;
}

.formula-list li:last-child {
  border-bottom: 0;
}

.usage-grid {
  display: grid;
  gap: 12px;
}

.routine-card {
  padding: 18px;
}

.routine-card h3 {
  margin: 0 0 10px;
}

.routine-card ul,
.timeline-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.routine-card li,
.timeline-list li {
  display: grid;
  gap: 3px;
  padding: 12px;
  border-radius: 15px;
  background: rgba(255, 245, 215, 0.58);
}

.timeline-card {
  padding: 18px;
}

.timeline-list {
  position: relative;
}

.timeline-list li strong {
  color: var(--gold-deep);
}

.MixedGallery {
  width: 100%;
  max-width: 100%;
  overflow: visible;
  box-sizing: border-box;
}

.gallery-shell {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
  box-sizing: border-box;
  padding-top: 34px;
}

.gallery-viewport {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
  box-sizing: border-box;
  padding: 26px 0 24px;
  perspective: 1200px;
  cursor: grab;
  touch-action: pan-y;
}

.gallery-track {
  display: flex;
  gap: 14px;
  width: max-content;
  max-width: none;
  padding-left: 16px;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transform-style: preserve-3d;
  user-select: none;
}

.gallery-track.is-dragging {
  cursor: grabbing;
}

.gallery-track.is-dragging * {
  cursor: grabbing;
}

.gallery-track.is-dragging .gallery-card {
  transition:
    opacity 120ms ease,
    box-shadow 120ms ease;
}

.gallery-card {
  position: relative;
  flex: 0 0 min(78vw, 320px);
  max-width: 320px;
  min-height: 500px;
  padding: 10px;
  border-radius: 30px;
  overflow: hidden;
  box-sizing: border-box;
  isolation: isolate;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transform: scale(0.92);
  opacity: 0.66;
  transition:
    transform 220ms ease,
    opacity 220ms ease,
    box-shadow 220ms ease;
}

.gallery-card.is-active {
  opacity: 1;
  z-index: 3;
  box-shadow:
    0 26px 72px rgba(120, 84, 12, 0.24),
    0 0 0 1px rgba(255, 231, 154, 0.28),
    var(--inner-highlight);
}

.gallery-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  overflow: hidden;
  border-radius: 26px;
  box-sizing: border-box;
  isolation: isolate;
}

.gallery-card__media,
.gallery-placeholder,
.carousel-card,
.carousel-viewport,
.carousel-slide {
  position: relative;
  height: 100%;
  min-height: 480px;
  overflow: hidden;
  border-radius: inherit;
  box-sizing: border-box;
  background: rgba(255, 242, 204, 0.48);
  cursor: grab;
}

.gallery-card video,
.gallery-card img,
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  overflow: hidden;
  box-sizing: border-box;
}

.gallery-card__media > video,
.gallery-card__media > .reel-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card__media > .reel-poster {
  z-index: 1;
}

.gallery-card__media > video {
  z-index: 2;
}

.gallery-card__media.is-square-media,
.carousel-slide.is-square-media {
  background-image: var(--gallery-blur-bg);
  background-position: center;
  background-size: cover;
}

.gallery-card__media.is-square-media::before,
.carousel-slide.is-square-media::before {
  content: "";
  position: absolute;
  inset: -24px;
  z-index: 0;
  background-image: var(--gallery-blur-bg);
  background-position: center;
  background-size: cover;
  filter: blur(22px);
  opacity: 0.78;
  transform: scale(1.08);
}

.gallery-card__media.is-square-media::after,
.carousel-slide.is-square-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 245, 217, 0.18);
  pointer-events: none;
}

.gallery-card__media.is-square-media > img,
.carousel-slide.is-square-media > img {
  position: relative;
  z-index: 2;
  object-fit: contain;
}

.gallery-card.has-padding .gallery-card-inner,
.gallery-card.has-padding .gallery-card__media,
.gallery-card.has-padding .carousel-viewport {
  border-radius: 22px;
}

.gallery-label {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;
  padding: 7px 11px;
  border-radius: 999px;
  color: #5b4211;
  background: rgba(255, 246, 220, 0.78);
  box-shadow: var(--inner-highlight);
  backdrop-filter: blur(14px);
  font-size: 0.78rem;
  font-weight: 850;
}

.gallery-see-more-cta {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255, 240, 187, 0.62);
  border-radius: 999px;
  color: #4d3510;
  background:
    linear-gradient(135deg, rgba(255, 250, 231, 0.92), rgba(240, 188, 72, 0.76)),
    rgba(255, 238, 177, 0.74);
  box-shadow:
    0 16px 34px rgba(141, 91, 8, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.28) inset,
    var(--inner-highlight);
  backdrop-filter: blur(16px);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-decoration: none;
  pointer-events: auto;
  cursor: pointer;
  touch-action: manipulation;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.gallery-see-more-cta *,
.carousel-controls button,
.gallery-media-viewer__close,
.gallery-media-viewer__controls button,
.gallery-carousel-viewer__close,
.gallery-carousel-viewer__controls button {
  cursor: pointer;
}

.gallery-see-more-cta:hover,
.gallery-see-more-cta:focus-visible {
  filter: saturate(1.06) brightness(1.03);
  transform: translateY(-2px);
  box-shadow:
    0 20px 40px rgba(141, 91, 8, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.36) inset,
    var(--inner-highlight);
}

.gallery-see-more-cta--viewer {
  right: 18px;
  bottom: 18px;
}

.carousel-viewport {
  position: relative;
  height: 100%;
  min-height: 480px;
  overflow: hidden;
  border-radius: inherit;
  touch-action: pan-y;
}

.carousel-slides {
  display: flex;
  height: 100%;
  overflow: visible;
  border-radius: inherit;
  box-sizing: border-box;
  transition: transform 230ms ease;
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.carousel-controls {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  overflow: hidden;
  border-radius: 999px;
  box-sizing: border-box;
}

.carousel-controls button,
.gallery-media-viewer__controls button,
.gallery-carousel-viewer__controls button,
.product-tray-controls button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 231, 153, 0.5);
  border-radius: 50%;
  color: var(--text-dark);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 229, 152, 0.74)),
    rgba(255, 246, 220, 0.82);
  box-shadow:
    0 12px 28px rgba(120, 84, 12, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    inset 0 -1px 0 rgba(142, 94, 15, 0.12);
  backdrop-filter: blur(16px) saturate(1.18);
  font-weight: 900;
  transition:
    transform 170ms ease,
    box-shadow 170ms ease,
    background 170ms ease;
}

.carousel-controls button:hover,
.gallery-media-viewer__controls button:hover,
.gallery-carousel-viewer__controls button:hover,
.product-tray-controls button:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow:
    0 16px 34px rgba(201, 155, 49, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.carousel-controls button:active,
.gallery-media-viewer__controls button:active,
.gallery-carousel-viewer__controls button:active,
.product-tray-controls button:active {
  transform: translateY(1px) scale(0.98);
}

.carousel-dots {
  display: inline-flex;
  gap: 5px;
  padding: 8px 10px;
  border-radius: 999px;
  overflow: hidden;
  box-sizing: border-box;
  background: rgba(255, 246, 220, 0.72);
  backdrop-filter: blur(14px);
}

.carousel-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(133, 96, 22, 0.28);
}

.carousel-dots span.is-active {
  background: var(--gold-deep);
}

body.gallery-viewer-open,
body.carousel-viewer-open {
  overflow: hidden;
}

.gallery-media-viewer[hidden],
.gallery-carousel-viewer[hidden] {
  display: none;
}

.gallery-media-viewer,
.gallery-carousel-viewer {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 18px;
  box-sizing: border-box;
}

.gallery-media-viewer__backdrop,
.gallery-carousel-viewer__backdrop {
  position: absolute;
  inset: 0;
  border-radius: 0;
  background: rgba(38, 28, 9, 0.38);
  backdrop-filter: blur(18px);
}

.gallery-media-viewer__panel,
.gallery-carousel-viewer__panel {
  position: relative;
  z-index: 1;
  width: min(92vw, 580px);
  aspect-ratio: 0.78 / 1;
  overflow: hidden;
  border-radius: 26px;
  animation: viewerIn 260ms ease both;
}

.gallery-media-viewer__close,
.gallery-carousel-viewer__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--text-dark);
  background: rgba(255, 246, 220, 0.78);
  box-shadow: var(--inner-highlight);
  backdrop-filter: blur(14px);
  font-size: 0.78rem;
  font-weight: 850;
}

.gallery-media-viewer__viewport,
.gallery-carousel-viewer__viewport {
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.gallery-media-viewer__slides,
.gallery-carousel-viewer__slides {
  height: 100%;
  overflow: visible;
  border-radius: inherit;
}

.gallery-media-viewer__slides,
.gallery-carousel-viewer__slides {
  display: flex;
  transition: transform 230ms ease;
  touch-action: pan-y;
  will-change: transform;
}

.gallery-media-viewer__slide,
.gallery-carousel-viewer__slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 0;
  background: rgba(255, 242, 204, 0.48);
}

.gallery-media-viewer__slide img,
.gallery-media-viewer__slide video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.gallery-media-viewer__slide .reel-poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  object-fit: cover;
}

.gallery-media-viewer__slide video {
  position: relative;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 213, 105, 0.24), transparent 18rem),
    rgba(35, 24, 8, 0.82);
}

.gallery-media-viewer__controls,
.gallery-carousel-viewer__controls {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  overflow: hidden;
  border-radius: 999px;
  box-sizing: border-box;
}

.ProductTray {
  overflow: hidden;
}

.product-tray-shell,
.product-tray-viewport {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.product-tray-shell {
  position: relative;
}

.product-tray-track {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: auto;
  padding: 4px 2px 18px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.product-tray-track.is-dragging {
  scroll-behavior: auto;
  scroll-snap-type: none;
  cursor: grabbing;
}

.product-card {
  flex: 0 0 72%;
  min-height: 240px;
  padding: 14px;
  scroll-snap-align: center;
}

.product-tray-controls {
  position: absolute;
  top: 46%;
  right: 6px;
  left: 6px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.product-tray-controls button {
  font-size: 1.4rem;
  pointer-events: auto;
}

.product-card__image {
  margin-bottom: 12px;
  border-radius: 18px;
}

.product-card__image.asset-frame {
  aspect-ratio: 1.2 / 1;
  min-height: 132px;
}

.product-card__meta {
  display: grid;
  gap: 6px;
}

.product-card__price {
  color: var(--gold-deep);
  font-weight: 900;
}

.representative-card,
.delivery-card,
.footer-card {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.footer-card {
  border-radius: var(--radius-xl);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-links a {
  padding: 8px 10px;
  border-radius: 999px;
  color: #644711;
  background: rgba(255, 238, 184, 0.65);
  font-size: 0.88rem;
  font-weight: 780;
}

.footer-meta {
  display: grid;
  gap: 7px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.subscribe-card {
  display: grid;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-xl);
}

.subscribe-fields {
  display: grid;
  gap: 10px;
}

.subscribe-fields input {
  width: 100%;
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid rgba(218, 173, 71, 0.28);
  border-radius: 999px;
  color: var(--text-dark);
  background: rgba(255, 252, 242, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  outline: 0;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.subscribe-fields input:focus {
  border-color: rgba(201, 155, 49, 0.6);
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 0 0 4px rgba(255, 219, 128, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.subscribe-message {
  min-height: 1.2em;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.subscribe-card.has-error .subscribe-message {
  color: #9b4a1a;
}

.subscribe-card.has-success .subscribe-message {
  color: #5f7f19;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.asset-frame {
  position: relative;
  display: grid;
  width: 100%;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(218, 173, 71, 0.24);
  border-radius: inherit;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(255, 236, 178, 0.38)),
    rgba(255, 248, 229, 0.72);
}

.asset-frame img,
.asset-frame video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 180ms ease;
}

.asset-frame.cover img,
.asset-frame.cover video {
  object-fit: cover;
}

.asset-frame.cover.is-square-media img {
  object-fit: contain;
}

.asset-placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border-radius: inherit;
  overflow: hidden;
  box-sizing: border-box;
  text-align: center;
  color: #6d5014;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 221, 126, 0.42), transparent 14rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.66), rgba(255, 238, 185, 0.48));
}

.asset-placeholder__inner {
  display: grid;
  gap: 8px;
}

.asset-placeholder strong {
  font-size: 1rem;
}

.asset-placeholder small {
  color: var(--text-muted);
  word-break: break-word;
}

.asset-frame.is-missing img,
.asset-frame.is-missing video {
  display: none;
}

.asset-frame.is-loaded .asset-placeholder {
  display: none;
}

.asset-frame.is-missing .asset-placeholder {
  display: flex;
}

.StickyWhatsAppCTA {
  position: fixed;
  right: 16px;
  bottom: max(16px, env(safe-area-inset-bottom));
  left: 16px;
  z-index: 50;
  display: inline-flex;
  width: min(100% - 32px, 380px);
  min-height: 54px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 999px;
  color: #fff;
  font-weight: 850;
  isolation: isolate;
  box-shadow:
    0 18px 42px rgba(31, 174, 91, 0.27),
    0 10px 28px rgba(79, 56, 9, 0.16);
}

.StickyWhatsAppCTA::before {
  content: "";
  position: absolute;
  inset: -55%;
  z-index: -2;
  background: conic-gradient(
    from 0deg,
    rgba(255, 255, 255, 0),
    rgba(255, 236, 164, 0.96),
    rgba(255, 255, 255, 0),
    rgba(31, 174, 91, 0.95),
    rgba(255, 255, 255, 0)
  );
  animation: borderRay 5.8s linear infinite;
}

.StickyWhatsAppCTA::after {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(50, 200, 119, 0.94), rgba(26, 150, 80, 0.94)),
    var(--whatsapp-green);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.StickyWhatsAppCTA span:last-child {
  position: relative;
  z-index: 2;
}

.BackToTopButton {
  position: fixed;
  right: 18px;
  bottom: calc(max(16px, env(safe-area-inset-bottom)) + 76px);
  z-index: 48;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 231, 153, 0.46);
  border-radius: 50%;
  color: #654812;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 229, 152, 0.74)),
    rgba(255, 252, 242, 0.78);
  box-shadow:
    0 18px 40px rgba(111, 80, 21, 0.18),
    0 0 22px rgba(255, 216, 126, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  font-size: 1.2rem;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.94);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.BackToTopButton.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.BackToTopButton:hover,
.BackToTopButton:focus-visible {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 24px 48px rgba(201, 155, 49, 0.28),
    0 0 28px rgba(255, 216, 126, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.BackToTopButton span {
  font-size: 0;
}

.BackToTopButton span::before {
  content: "\2191";
  font-size: 1.18rem;
}

.builder-fab {
  position: fixed;
  left: max(10px, env(safe-area-inset-left));
  bottom: max(10px, env(safe-area-inset-bottom));
  z-index: 49;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(139, 98, 22, 0.2);
  border-radius: 50%;
  background: rgba(118, 84, 18, 0.18);
  box-shadow:
    0 14px 28px rgba(111, 80, 21, 0.12),
    var(--inner-highlight);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  opacity: 0.72;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.builder-fab img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  border-radius: 50%;
}

.builder-fab:hover,
.builder-fab:focus-visible {
  opacity: 0.92;
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 20px 38px rgba(111, 80, 21, 0.16),
    var(--inner-highlight);
}

.toast-host {
  position: fixed;
  right: 14px;
  bottom: calc(max(16px, env(safe-area-inset-bottom)) + 68px);
  left: 14px;
  z-index: 45;
  display: grid;
  justify-items: center;
  pointer-events: none;
}

.hotspot-sheet-open .toast-host {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.ToastNotification {
  width: min(100%, 360px);
  padding: 12px 14px;
  border: 1px solid rgba(222, 180, 83, 0.34);
  border-radius: 18px;
  color: #5d4616;
  background: rgba(255, 252, 242, 0.78);
  box-shadow: 0 16px 36px rgba(93, 66, 12, 0.14), var(--inner-highlight);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  font-size: 0.9rem;
  font-weight: 750;
  animation: toastIn 420ms ease both;
}

.ToastNotification.is-leaving {
  animation: toastOut 260ms ease both;
}

.noscript-copy {
  max-width: 720px;
}

.loading-section {
  min-height: 60vh;
  display: grid;
  place-items: center;
}

.loading-card {
  padding: 22px;
}

.loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 230, 143, 0.5), transparent 22rem),
    radial-gradient(circle at 8% 18%, rgba(255, 255, 255, 0.68), transparent 18rem),
    radial-gradient(circle at 92% 82%, rgba(207, 158, 43, 0.22), transparent 20rem),
    linear-gradient(145deg, rgba(255, 253, 246, 0.96), rgba(255, 240, 197, 0.9));
  isolation: isolate;
  transition:
    opacity 760ms ease,
    visibility 760ms ease,
    filter 760ms ease,
    transform 760ms ease;
}

.loading-overlay.is-hidden {
  opacity: 0;
  filter: blur(12px);
  transform: scale(1.018);
  pointer-events: none;
}

.loading-overlay__aura {
  position: absolute;
  inset: -18%;
  z-index: -1;
  background:
    linear-gradient(118deg, transparent 0 28%, rgba(255, 255, 255, 0.5) 38%, transparent 52%),
    radial-gradient(circle at 46% 42%, rgba(255, 220, 128, 0.38), transparent 18rem);
  opacity: 0.78;
  animation: loadingAuraDrift 8s ease-in-out infinite alternate;
}

.loading-butterfly-field {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease;
}

.loading-butterfly-field.is-ready {
  opacity: 1;
}

.loading-butterfly {
  position: absolute;
  left: var(--start-left);
  top: var(--start-top);
  width: var(--size);
  opacity: 0;
  filter:
    blur(var(--blur))
    drop-shadow(0 18px 22px rgba(113, 78, 13, 0.14));
  transform: translate3d(0, 0, 0) rotate(var(--rotation));
  will-change: transform, opacity;
  animation: loadingButterflyFlight var(--duration) cubic-bezier(0.37, 0, 0.22, 1) infinite;
  animation-delay: var(--delay);
  pointer-events: none;
}

.loading-butterfly__drift {
  animation: loadingButterflyDrift var(--drift-duration) ease-in-out infinite alternate;
  will-change: transform;
}

.loading-lottie-butterfly {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.loading-lottie-butterfly .wing-left,
.loading-lottie-butterfly .wing-right {
  transform-box: view-box;
  animation-duration: var(--wing-speed);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.loading-lottie-butterfly .wing-left {
  animation-name: lottieWingLeft;
}

.loading-lottie-butterfly .wing-right {
  animation-name: lottieWingRight;
}

.loading-overlay__brand {
  position: absolute;
  right: 20px;
  bottom: calc(max(34px, env(safe-area-inset-bottom)) + 18px);
  left: 20px;
  z-index: 2;
  text-align: center;
  color: #5f4410;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7), 0 18px 40px rgba(121, 88, 18, 0.16);
}

.loading-overlay__brand strong {
  display: block;
  color: var(--text-dark);
  font-size: clamp(1.35rem, 6vw, 2.35rem);
  font-weight: 920;
  letter-spacing: 0;
}

.loading-overlay__brand small {
  display: block;
  margin-top: 5px;
  color: var(--text-muted);
  font-weight: 720;
}

body.loading-active .app-shell,
body.loading-active .StickyWhatsAppCTA,
body.loading-active .builder-fab,
body.loading-active .BackToTopButton,
body.loading-active .toast-host {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(12px);
  pointer-events: none;
}

body.site-ready .app-shell,
body.site-ready .StickyWhatsAppCTA,
body.site-ready .builder-fab,
body.site-ready .BackToTopButton,
body.site-ready .toast-host {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition:
    opacity 900ms ease,
    filter 900ms ease,
    transform 900ms ease;
}

@keyframes borderRay {
  to {
    transform: rotate(1turn);
  }
}

@keyframes loadingAuraDrift {
  from {
    transform: translate3d(-2%, -1%, 0) rotate(-2deg);
  }
  to {
    transform: translate3d(2%, 1.5%, 0) rotate(2deg);
  }
}

@keyframes loadingButterflyFlight {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(var(--rotation)) scale(0.82);
  }
  12% {
    opacity: var(--opacity);
  }
  50% {
    opacity: var(--opacity);
    transform: translate3d(var(--mid-x), var(--mid-y), 0) rotate(calc(var(--rotation) + var(--turn-mid))) scale(1);
  }
  88% {
    opacity: var(--opacity);
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--end-x), var(--end-y), 0) rotate(calc(var(--rotation) + var(--turn-end))) scale(0.88);
  }
}

@keyframes loadingButterflyDrift {
  from {
    transform: translate3d(-5px, -8px, 0);
  }
  to {
    transform: translate3d(7px, 9px, 0);
  }
}

@keyframes lottieWingLeft {
  0%,
  100% {
    transform: scaleX(1);
  }
  18% {
    transform: scaleX(0.28);
  }
  31% {
    transform: scaleX(0.74);
  }
  44% {
    transform: scaleX(0.22);
  }
  64% {
    transform: scaleX(0.86);
  }
}

@keyframes lottieWingRight {
  0%,
  100% {
    transform: scaleX(1);
  }
  18% {
    transform: scaleX(0.28);
  }
  31% {
    transform: scaleX(0.74);
  }
  44% {
    transform: scaleX(0.22);
  }
  64% {
    transform: scaleX(0.86);
  }
}

@keyframes viewerIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hotspotPulse {
  0%,
  100% {
    opacity: 0.26;
    transform: scale(0.9);
  }
  50% {
    opacity: 0.76;
    transform: scale(1.08);
  }
}

@keyframes formulaSoftGlow {
  0% {
    box-shadow: 0 0 0 rgba(201, 155, 49, 0);
    transform: translateY(8px);
  }
  55% {
    box-shadow:
      0 18px 45px rgba(201, 155, 49, 0.18),
      var(--inner-highlight);
  }
  100% {
    box-shadow: var(--surface-shadow), var(--inner-highlight);
    transform: translateY(0);
  }
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes toastOut {
  to {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
}

@media (min-width: 620px) {
  .section {
    padding: 46px 24px;
  }

  .benefit-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .key-ingredient-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ingredient-card {
    flex-basis: 310px;
  }

  .product-card {
    flex-basis: 290px;
  }

}

@media (max-width: 620px) {
  .IngredientCallout,
  .ingredient-callout-lines {
    display: none;
  }

  .ingredient-callout-layer {
    inset: 8px;
  }

  .label-stage {
    min-height: 286px;
  }

  .label-stage .asset-frame {
    min-height: 270px;
  }
}

@media (max-width: 859px) {
  .ingredient-showcase-stage {
    min-height: auto;
    padding: 18px 14px 22px;
    border-radius: 28px;
  }

  .ingredient-showcase-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
  }

  .ingredient-showcase-main {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ingredient-showcase-product {
    order: 1;
    padding: 24px 0 18px;
  }

  .ingredient-showcase-side {
    order: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .ingredient-showcase-item {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 9px;
    min-height: 132px;
    padding: 10px 6px;
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 20px;
    background: rgba(255, 250, 235, 0.36);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
    text-align: center;
  }

  .ingredient-showcase-line {
    display: none;
  }

  .ingredient-showcase-item strong {
    max-width: 100%;
    font-size: 0.76rem;
  }

  .ingredient-showcase-orb {
    width: 64px;
    height: 64px;
  }

  .showcase-orb-art {
    transform: scale(0.9);
  }

  .showcase-product-box {
    width: min(292px, 84vw);
    padding: 24px 24px 20px;
    transform: perspective(900px) rotateY(-5deg) rotateX(1deg);
  }

  .showcase-product-box::before {
    left: 21px;
    right: -14px;
    top: -20px;
    height: 20px;
  }

  .showcase-product-box::after {
    right: -25px;
    width: 25px;
  }

  .hotspot-panel {
    display: none;
  }
}

@media (max-width: 480px) {
  .header-logo.asset-frame {
    min-width: 104px;
    max-width: 145px;
    height: 40px;
  }

  .header-logo.asset-frame img {
    height: 30px;
    max-width: 140px;
  }

  .header-logo.asset-frame.logo-si img {
    height: 27px;
    max-width: 140px;
  }

  .brand-logo-frame .asset-placeholder strong {
    font-size: 0.5rem;
  }

  .IngredientHotspot {
    width: 24px;
    height: 24px;
    font-size: 0.64rem;
  }

  .IngredientHotspot.is-secondary {
    width: 19px;
    height: 19px;
    font-size: 0.54rem;
  }

  .ingredient-showcase-stage {
    padding: 16px 12px 20px;
  }

  .ingredient-showcase-top,
  .ingredient-showcase-side {
    gap: 10px;
  }

  .ingredient-showcase-item {
    min-height: 124px;
    border-radius: 18px;
  }

  .ingredient-showcase-orb {
    width: 58px;
    height: 58px;
  }

  .showcase-orb-art {
    transform: scale(0.82);
  }

  .ingredient-showcase-item strong {
    font-size: 0.68rem;
    line-height: 1.08;
  }

  .showcase-product-box {
    width: min(258px, 78vw);
    padding: 20px 20px 17px;
  }

  .showcase-product-box strong {
    font-size: 2.35rem;
  }

  .showcase-product-box em {
    font-size: 1.45rem;
  }

  .showcase-product-box small {
    font-size: 0.5rem;
  }

  .IngredientCallout {
    display: none;
  }

  .ingredient-callout-lines {
    display: none;
  }
}

@media (min-width: 860px) {
  .top-bar__inner {
    grid-template-columns: 1fr auto 1fr;
  }

  .top-nav {
    display: flex;
  }

  .top-bar__cta {
    display: inline-flex;
  }

  .hero-section {
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
    gap: 24px;
    padding-top: 40px;
  }

  .hero-copy {
    padding: 34px;
  }

  .hero-actions {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .flow-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ingredient-image-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    align-items: start;
    gap: 18px;
  }

  .ingredient-label-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    align-items: start;
    gap: 18px;
  }

  .label-stage {
    min-height: 510px;
    padding: 10px;
  }

  .label-stage .asset-frame {
    min-height: 490px;
  }

  .hotspot-panel {
    position: sticky;
    top: 92px;
    min-height: 310px;
    align-content: start;
  }

  .composition-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hotspot-sheet {
    display: none;
  }

  .usage-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-track {
    padding-left: 18px;
  }

  .gallery-viewport {
    padding-top: 34px;
  }

  .gallery-card {
    flex-basis: clamp(220px, 24vw, 340px);
    max-width: 340px;
  }

  .product-tray-track {
    gap: 16px;
  }

  .toast-host {
    right: auto;
    left: 24px;
    justify-items: start;
  }
}

@media (min-width: 1100px) {
  .section {
    padding-block: 56px;
  }

  .hero-copy h1 {
    font-size: 4.9rem;
  }
}

@media (min-width: 720px) {
  .subscribe-fields {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .subscribe-fields .GlassButton {
    min-width: 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

}
