:root {
  --cream: #f7f0e6;
  --paper: #fffaf2;
  --ink: #171412;
  --muted: #6d6258;
  --line: rgba(23, 20, 18, 0.12);
  --soft: #e7d7c5;
  --brown: #4b3328;
  --black: #0f0d0c;
  --shadow: 0 24px 70px rgba(36, 25, 18, 0.14);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: #ffffff;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: calc(var(--max) + 48px);
  margin: 0 auto;
  padding: 18px 24px;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 0.82rem;
}

.brand-name {
  font-family: "Libre Baskerville", serif;
  font-size: 1.08rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.74);
}

.section-pad {
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 24px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  align-items: center;
  gap: 54px;
  min-height: calc(100vh - 88px);
  padding-top: 52px;
}

.eyebrow,
.section-label,
.drink-tag {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--brown);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(4rem, 10vw, 8.9rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 4vw, 3rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.hero-text,
.story p,
.shop-card p,
.drink-card p,
.detail-list p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.05rem;
}

.hero-text {
  max-width: 570px;
  margin-bottom: 32px;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  color: var(--paper);
  background: var(--black);
  box-shadow: 0 16px 30px rgba(15, 13, 12, 0.18);
}

.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.7);
}

.mini-receipt {
  width: min(280px, 100%);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.72);
  box-shadow: 0 16px 38px rgba(36, 25, 18, 0.08);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mini-receipt span {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(23, 20, 18, 0.22);
}

.mini-receipt span:last-child {
  border-bottom: 0;
}

.hero-visual {
  position: relative;
  min-height: 660px;
}

.product-card,
.floating-card,
.drink-card,
.detail-panel,
.shop-card,
.offer-card {
  border: 1px solid rgba(255,255,255,0.56);
  background: rgba(255, 250, 242, 0.65);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

/* Glassy off-white offer cards */
.offer-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 8px 32px rgba(36, 25, 18, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.main-card {
  position: absolute;
  right: 7%;
  top: 8%;
  width: min(420px, 78%);
  padding: 28px;
  border-radius: var(--radius-xl);
}

.main-card img {
  width: 100%;
  aspect-ratio: 0.82;
  object-fit: contain;
  filter: drop-shadow(0 28px 28px rgba(36, 25, 18, 0.16));
}

.card-caption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  color: var(--muted);
}

.card-caption strong {
  color: var(--ink);
}

.floating-card {
  position: absolute;
  display: grid;
  place-items: center;
  width: 190px;
  height: 230px;
  padding: 20px;
  border-radius: var(--radius-lg);
}

.floating-card img {
  max-height: 188px;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(36, 25, 18, 0.14));
}

.top-card {
  left: 2%;
  top: 3%;
  transform: rotate(-8deg);
}

.bottom-card {
  left: 10%;
  bottom: 8%;
  transform: rotate(7deg);
}

.ticker {
  display: flex;
  gap: 10px;
  overflow: hidden;
  padding: 18px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.48);
  white-space: nowrap;
}

.ticker span {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.86rem;
}

@media (min-width: 901px) {
  .ticker {
    justify-content: center;
  }
}

.story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: start;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.drink-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.drink-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.drink-card img {
  width: 100%;
  height: 360px;
  padding: 28px;
  object-fit: contain;
  background: linear-gradient(180deg, rgba(255,255,255,0.48), rgba(231,215,197,0.36));
}

.drink-card div {
  padding: 26px;
}

.drink-tag {
  margin-bottom: 8px;
}

.detail-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  padding: clamp(28px, 5vw, 64px);
  border-radius: var(--radius-xl);
}

.detail-list {
  display: grid;
  gap: 16px;
}

.detail-list div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.detail-list div:last-child {
  border-bottom: 0;
}

.detail-list span {
  font-family: "Libre Baskerville", serif;
  color: var(--brown);
}

.shop {
  padding-top: 48px;
}

.shop-card {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 72px);
  border-radius: var(--radius-xl);
  text-align: center;
}

.shop-card p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
}

.offers {
  width: 100%;
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 20px;
  text-align: left;
}

.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  padding: clamp(18px, 3vw, 24px);
}

.offer-card h3 {
  margin-bottom: 6px;
}

.offer-card .price {
  margin: 0 0 6px;
  color: var(--ink);
  font-family: "Libre Baskerville", serif;
  font-size: clamp(2rem, 4vw, 2.4rem);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.06em;
  line-height: 1;
}

.price-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 6px;
}

.compare-price {
  color: #b45a54;
  font-family: "Libre Baskerville", serif;
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
  text-decoration: line-through;
  opacity: 0.85;
}

.offer-card .perk {
  margin: 0 0 10px;
  color: var(--brown);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.best-value .perk {
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  color: #3f3b38;
  background: #f1efec;
}

.offer-card p {
  margin-bottom: 10px;
}

@media (min-width: 901px) {
  .offers {
    grid-template-rows: repeat(6, auto);
    column-gap: 20px;
    row-gap: 0;
    align-items: stretch;
  }

  .offer-card {
    display: grid;
    grid-row: span 6;
    grid-template-rows: subgrid;
  }

  .offer-card h3,
  .offer-card > .price,
  .offer-card > .price-wrapper,
  .offer-card > .perk,
  .offer-card > .offer-summary,
  .offer-card > .shopify-product-media,
  .offer-card > .coming-soon-button {
    align-self: start;
  }

  .offer-card > .coming-soon-button {
    align-self: end;
  }
}

.best-value {
  border-color: rgba(15, 13, 12, 0.15);
  box-shadow: 0 28px 76px rgba(36, 25, 18, 0.12);
}

.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(15, 13, 12, 0.85);
  color: var(--paper);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.92;
}

.shopify-product-media {
  width: 100%;
  height: 620px;
  margin: 8px 0 14px;
  overflow: hidden;
}

.desktop-native-gallery {
  display: grid;
  grid-template-rows: minmax(0, 1fr) 64px;
  gap: 12px;
  width: 100%;
  height: 100%;
}

.desktop-gallery-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #fbfaf8;
}

.desktop-gallery-main {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 50%;
}

.desktop-gallery-arrow {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(15, 13, 12, 0.12);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 5px 18px rgba(36, 25, 18, 0.08);
  font: 400 2rem/1 system-ui, sans-serif;
  transform: translateY(-50%);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.desktop-gallery-previous {
  left: 14px;
}

.desktop-gallery-next {
  right: 14px;
}

.desktop-gallery-thumbnails {
  display: flex;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.desktop-gallery-thumbnails::-webkit-scrollbar {
  display: none;
}

.desktop-gallery-thumbnails button {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  padding: 4px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: #fbfaf8;
  cursor: pointer;
}

.desktop-gallery-thumbnails button.is-active {
  border-color: rgba(15, 13, 12, 0.42);
}

.desktop-gallery-thumbnails img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.coming-soon-button {
  width: fit-content;
  min-height: 48px;
  margin-top: auto;
  padding: 0 32px;
  border: 0;
  border-radius: 999px;
  color: #fffaf2;
  background: #6d6258;
  font: 600 0.9rem/1 "Arimo", sans-serif;
  letter-spacing: 0.04em;
  cursor: not-allowed;
  opacity: 0.72;
}

.mobile-shop-hint,
.mobile-details-toggle {
  display: none;
}

.purchase-notes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.78rem;
}

.purchase-notes span,
.purchase-notes a {
  position: relative;
}

.purchase-notes a {
  color: var(--brown);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-information {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  text-align: left;
}

.shop-card .product-information-label {
  max-width: none;
  margin: 0;
  padding: 22px 2px 12px;
  color: var(--brown);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.info-accordion {
  border-bottom: 1px solid var(--line);
}

.info-accordion summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 40px 18px 2px;
  color: var(--ink);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  list-style: none;
}

.info-accordion summary::-webkit-details-marker {
  display: none;
}

.info-accordion summary span {
  color: var(--brown);
  font-family: "Libre Baskerville", serif;
  font-size: 0.78rem;
  font-weight: 400;
}

.info-accordion summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  color: var(--muted);
  font-size: 1.3rem;
  font-weight: 400;
}

.info-accordion[open] summary::after {
  content: "−";
}

.info-content {
  padding: 0 2px 24px 34px;
}

.shop-card .info-content p {
  max-width: none;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.68;
}

.shop-card .info-content p strong {
  color: var(--ink);
}

.info-content h4 {
  margin: 22px 0 10px;
  color: var(--ink);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.info-content ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.62;
}

.info-content li + li {
  margin-top: 5px;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.care-grid h4 {
  margin-top: 0;
}

.shop-card .info-content .closing-note {
  margin-top: 20px;
  color: var(--brown);
  font-family: "Libre Baskerville", serif;
  font-size: 0.9rem;
}

.safety-accordion .info-content {
  margin-bottom: 20px;
  padding: 20px 22px;
  border: 1px solid rgba(75, 51, 40, 0.2);
  border-radius: 14px;
  background: rgba(255, 250, 242, 0.72);
}

.safety-accordion .info-content h4 {
  margin-top: 0;
}

.share-card,
.policy-card {
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 242, 0.72);
  box-shadow: 0 18px 50px rgba(36, 25, 18, 0.08);
}

.share-card {
  padding: clamp(28px, 5vw, 54px);
}

.share-card a,
.policy-card a {
  color: var(--brown);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.customer-care {
  padding-top: 28px;
}

.care-policy-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr 0.8fr;
  gap: 18px;
}

.policy-card {
  padding: 24px;
}

.policy-card h3 {
  margin-bottom: 10px;
}

.policy-card p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.62;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 30px 24px 44px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer p {
  margin-bottom: 6px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 18px;
}

.footer-nav a:hover {
  color: var(--ink);
}

.mobile-storefront {
  display: none;
}

@media (max-width: 900px) {
  main {
    display: flex;
    flex-direction: column;
  }

  .hero {
    order: 1;
  }

  .ticker {
    order: 2;
  }

  .shop {
    order: 3;
  }

  .drinks {
    order: 4;
  }

  .story {
    order: 5;
  }

  .share {
    order: 6;
  }

  .customer-care {
    order: 7;
  }

  #shop,
  #product-information,
  #shipping,
  #returns,
  #contact {
    scroll-margin-top: 88px;
  }

  .nav {
    display: flex;
    margin-left: auto;
  }

  .nav a:not(.nav-cta) {
    display: none;
  }

  .hero,
  .story-grid,
  .detail-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 20px;
    min-height: auto;
  }

  .hero-visual {
    min-height: 480px;
  }

  .main-card {
    right: 0;
    left: 12%;
    width: 76%;
  }

  .top-card,
  .bottom-card {
    width: 150px;
    height: 190px;
  }

  .drink-grid,
  .offers,
  .care-grid,
  .care-policy-grid {
    grid-template-columns: 1fr;
  }

  .offers .best-value {
    order: -1;
  }

  .drink-card img {
    height: 260px;
  }
}

@media (max-width: 560px) {
  :root {
    --mobile-ink: #111111;
    --mobile-muted: #6f6b66;
    --mobile-line: #e9e7e3;
    --mobile-soft: #f5f5f7;
    --mobile-radius: 28px;
  }

  html {
    scroll-padding-top: 68px;
  }

  body {
    padding-bottom: env(safe-area-inset-bottom);
    color: var(--mobile-ink);
    background: #ffffff;
    font-family: "Inter", system-ui, sans-serif;
  }

  button,
  summary {
    font-family: inherit;
  }

  main {
    display: block;
  }

  main > :not(.mobile-storefront),
  .footer {
    display: none !important;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    max-width: none;
    min-height: 66px;
    padding: 10px 18px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.07);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 0.68rem;
  }

  .brand-name {
    font-family: "Inter", sans-serif;
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: -0.025em;
  }

  .nav {
    display: none;
  }

  .mobile-storefront {
    display: block;
    width: 100%;
    overflow: hidden;
    background: #ffffff;
  }

  /* Never show purchase summaries over the opening brand story. */
  .mobile-story-product-bar,
  .mobile-sticky-cta {
    display: none !important;
  }

  .mobile-storefront h1,
  .mobile-storefront h2,
  .mobile-storefront p {
    margin-top: 0;
  }

  .mobile-storefront h1,
  .mobile-storefront h2 {
    color: var(--mobile-ink);
    font-family: "Inter", sans-serif;
    font-weight: 600;
    letter-spacing: -0.045em;
  }

  .mobile-product-hero {
    padding: 76px 18px 26px;
    border-top: 1px solid var(--mobile-line);
  }

  .mobile-kicker,
  .mobile-section-label {
    margin-bottom: 12px;
    color: var(--mobile-muted);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .mobile-product-switch {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    width: 100%;
    margin-bottom: 12px;
    padding: 4px;
    border-radius: 14px;
    background: var(--mobile-soft);
  }

  .mobile-product-tab {
    min-height: 40px;
    border: 0;
    border-radius: 11px;
    color: var(--mobile-muted);
    background: transparent;
    font-size: 0.82rem;
    font-weight: 600;
  }

  .mobile-product-tab.is-active {
    color: var(--mobile-ink);
    background: #ffffff;
    box-shadow: 0 1px 5px rgba(17, 17, 17, 0.08);
  }

  .mobile-product-stage {
    position: relative;
    width: 100%;
    height: min(57vh, 490px);
    min-height: 410px;
    overflow: hidden;
    border-radius: var(--mobile-radius);
    background: #fbfbfa;
  }

  .mobile-product-panel {
    position: absolute;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .mobile-product-panel.is-active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-product-panel {
    width: 100%;
    height: 100%;
  }

  .mobile-product-summary[hidden] {
    display: none !important;
  }

  .mobile-native-gallery {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 20px 16px 14px;
  }

  .mobile-gallery-main {
    display: block;
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    object-fit: contain;
    object-position: 50% 50%;
  }

  .mobile-gallery-thumbnails {
    display: flex;
    flex: 0 0 auto;
    justify-content: flex-start;
    gap: 10px;
    width: max-content;
    max-width: 100%;
    min-height: 52px;
    margin: 8px auto 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-gallery-thumbnails::-webkit-scrollbar {
    display: none;
  }

  .mobile-gallery-thumbnails button {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    padding: 3px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: #ffffff;
  }

  .mobile-gallery-thumbnails button.is-active {
    border-color: #8e8e93;
  }

  .mobile-gallery-thumbnails img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .mobile-product-summary {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4px 18px;
    align-items: end;
    padding-top: 20px;
  }

  .mobile-product-summary h1 {
    margin-bottom: 0;
    font-size: 1.85rem;
    line-height: 1.05;
  }

  .mobile-status {
    margin-bottom: 6px;
    color: var(--mobile-muted);
    font-size: 0.74rem;
    font-weight: 500;
  }

  .mobile-price {
    margin-bottom: 0;
    color: var(--mobile-ink);
    font-size: 1.85rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.055em;
    line-height: 1;
  }

  .mobile-bundle-price {
    display: flex;
    gap: 8px;
    align-items: baseline;
  }

  .mobile-old-price {
    margin-bottom: 0;
    color: #9d9994;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: line-through;
  }

  .mobile-offer {
    grid-column: 1 / -1;
    margin: 8px 0 0;
    color: var(--mobile-muted);
    font-size: 0.82rem;
    font-weight: 500;
  }

  .mobile-primary-cta,
  .mobile-sticky-cta button {
    border: 0;
    border-radius: 14px;
    color: #ffffff;
    background: #111111;
    font-weight: 600;
  }

  .mobile-primary-cta {
    width: 100%;
    min-height: 54px;
    margin-top: 18px;
    font-size: 0.92rem;
  }

  .mobile-primary-cta:disabled,
  .mobile-sticky-cta button:disabled {
    cursor: not-allowed;
    opacity: 0.72;
  }

  .mobile-launch-note {
    margin: 10px 0 0;
    color: #8a8580;
    font-size: 0.7rem;
    line-height: 1.45;
    text-align: center;
  }

  .mobile-brand-story {
    padding: 38px 20px 0;
    background: #ffffff;
    text-align: center;
  }

  .mobile-brand-story-copy {
    max-width: 326px;
    margin: 0 auto;
  }

  .mobile-brand-story .mobile-section-label {
    margin-bottom: 16px;
  }

  .mobile-brand-story h2 {
    margin-bottom: 22px;
    font-family: "Caveat", cursive;
    font-size: clamp(3rem, 14vw, 3.75rem);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 0.92;
  }

  .mobile-brand-story-copy > p:last-child {
    max-width: 310px;
    margin: 0 auto;
    color: var(--mobile-muted);
    font-size: 0.88rem;
    line-height: 1.62;
  }

  .mobile-brand-story-image {
    width: 100%;
    margin: 38px 0 0;
    overflow: hidden;
    border-radius: var(--mobile-radius) var(--mobile-radius) 0 0;
    background: var(--mobile-soft);
  }

  .mobile-brand-story-image img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }

  .mobile-benefits,
  .mobile-product-details,
  .mobile-trust {
    padding: 68px 20px;
  }

  .mobile-benefits {
    margin-top: 0;
    border: 0;
    background: var(--mobile-soft);
  }

  .mobile-benefits h2,
  .mobile-product-details h2,
  .mobile-trust h2 {
    max-width: 330px;
    margin-bottom: 30px;
    font-size: 2rem;
    line-height: 1.06;
  }

  .mobile-benefits ul {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mobile-benefits li {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px 0;
    border-bottom: 1px solid var(--mobile-line);
  }

  .mobile-benefits li:first-child {
    border-top: 1px solid var(--mobile-line);
  }

  .mobile-benefits li > span {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border: 1px solid #d2d2d7;
    border-radius: 50%;
    color: var(--mobile-ink);
    font-size: 0.72rem;
  }

  .mobile-benefits strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.92rem;
    font-weight: 600;
  }

  .mobile-benefits small {
    display: block;
    color: var(--mobile-muted);
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .mobile-glass-warning {
    margin-top: 26px;
    padding: 18px 0 0;
    border-top: 1px solid var(--mobile-line);
  }

  .mobile-glass-warning strong {
    display: block;
    margin: 0 0 6px;
    color: var(--mobile-ink);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.4;
  }

  .mobile-glass-warning p {
    margin: 0;
    color: var(--mobile-muted);
    font-size: 0.76rem;
    line-height: 1.55;
  }

  .mobile-visual-story {
    padding: 72px 0 72px;
    overflow: hidden;
    background: #ffffff;
  }

  .mobile-visual-story-heading {
    padding: 0 20px 28px;
  }

  .mobile-visual-story-heading .mobile-section-label {
    margin-bottom: 10px;
  }

  .mobile-visual-story-heading h2 {
    margin: 0;
    font-size: 2rem;
    line-height: 1.05;
  }

  .mobile-visual-story-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min(88vw, 430px);
    gap: 12px;
    width: 100%;
    padding: 0 20px 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-padding-inline: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-visual-story-track::-webkit-scrollbar {
    display: none;
  }

  .mobile-visual-story figure {
    margin: 0;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .mobile-visual-story img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: var(--mobile-radius);
    object-fit: cover;
    background: var(--mobile-soft);
  }

  .mobile-visual-story figcaption {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    min-height: 106px;
    padding: 18px 6px 0;
  }

  .mobile-visual-story figcaption > span {
    color: #86868b;
    font-size: 0.72rem;
  }

  .mobile-visual-story strong {
    display: block;
    margin-bottom: 5px;
    font-size: 0.94rem;
    font-weight: 600;
  }

  .mobile-visual-story figcaption p {
    margin-bottom: 0;
    color: var(--mobile-muted);
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .mobile-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 8px;
  }

  .mobile-carousel-dots button {
    width: 6px;
    height: 6px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d2d2d7;
    transition: width 180ms ease, border-radius 180ms ease, background 180ms ease;
  }

  .mobile-carousel-dots button.is-active {
    width: 20px;
    border-radius: 999px;
    background: #1d1d1f;
  }

  .mobile-social-note {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 13px;
    align-items: center;
    margin: 32px 20px 0;
    padding: 16px 18px;
    border-radius: 20px;
    color: var(--mobile-muted);
    background: var(--mobile-soft);
  }

  .mobile-social-note > div {
    min-width: 0;
  }

  .mobile-social-title {
    display: block;
    margin-bottom: 5px;
    color: var(--mobile-ink);
    font-size: 0.82rem;
    font-weight: 600;
  }

  .mobile-social-note p {
    display: grid;
    grid-template-columns: max-content max-content;
    align-items: baseline;
    column-gap: 12px;
    margin: 0;
    font-size: 0.74rem;
    line-height: 1.4;
    white-space: nowrap;
  }

  .mobile-social-note a,
  .mobile-social-note strong {
    display: block;
    color: var(--mobile-muted);
    font: inherit;
    font-weight: 500;
    line-height: inherit;
  }

  .mobile-social-note a {
    text-decoration: none;
  }

  .mobile-social-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid #d7d7da;
    border-radius: 11px;
    color: var(--mobile-ink);
    background: #ffffff;
  }

  .mobile-social-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
  }

  .mobile-social-icon .mobile-social-dot {
    fill: currentColor;
    stroke: none;
  }

  .mobile-product-details {
    border-top: 1px solid var(--mobile-line);
  }

  .mobile-product-details details {
    border-bottom: 1px solid var(--mobile-line);
  }

  .mobile-product-details details:first-of-type {
    border-top: 1px solid var(--mobile-line);
  }

  .mobile-product-details summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 62px;
    color: var(--mobile-ink);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    list-style: none;
  }

  .mobile-product-details summary::-webkit-details-marker {
    display: none;
  }

  .mobile-product-details summary span {
    color: var(--mobile-muted);
    font-size: 1.2rem;
    font-weight: 400;
  }

  .mobile-product-details details > div {
    padding: 0 0 22px;
    color: var(--mobile-muted);
    font-size: 0.82rem;
    line-height: 1.65;
  }

  .mobile-product-details details p {
    margin-bottom: 12px;
  }

  .mobile-product-details details p:last-child {
    margin-bottom: 0;
  }

  .mobile-product-details ul {
    margin: 0;
    padding-left: 1.1rem;
  }

  .mobile-product-details li + li {
    margin-top: 7px;
  }

  .mobile-trust {
    padding-top: 86px;
    padding-bottom: 110px;
    background: var(--mobile-soft);
  }

  .mobile-trust h2 {
    margin-bottom: 16px;
  }

  .mobile-trust > p:last-child {
    margin-bottom: 0;
    color: var(--mobile-muted);
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .mobile-trust a {
    color: var(--mobile-ink);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(17, 17, 17, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -8px 24px rgba(17, 17, 17, 0.06);
    opacity: 0;
    transform: translateY(110%);
    transition: opacity 180ms ease, transform 180ms ease;
    pointer-events: none;
    backdrop-filter: blur(18px);
  }

  .mobile-sticky-cta.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-sticky-cta > div {
    display: grid;
    gap: 2px;
  }

  .mobile-sticky-cta span {
    color: var(--mobile-muted);
    font-size: 0.7rem;
  }

  .mobile-sticky-cta strong {
    font-size: 0.95rem;
    font-variant-numeric: tabular-nums;
  }

  .mobile-sticky-cta button {
    min-width: 132px;
    min-height: 46px;
    padding: 0 18px;
    font-size: 0.82rem;
  }
}
