:root {
  --ink: #17201d;
  --muted: #5e6a66;
  --soft: #eef7f5;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --line: rgba(23, 32, 29, 0.12);
  --teal: #238b8f;
  --teal-dark: #14666b;
  --gold: #c7a761;
  --rose: #a94255;
  --shadow: 0 22px 60px rgba(23, 32, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(35, 139, 143, 0.14), transparent 28%),
    linear-gradient(180deg, #fbfaf6 0%, #f4f7f2 54%, #fbfaf6 100%);
  color: var(--ink);
  font-family:
    "Avenir Next", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
    system-ui, sans-serif;
  letter-spacing: 0;
}

body.cart-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 246, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  background: var(--teal);
  color: white;
  font-weight: 900;
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.5vw, 30px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--teal-dark);
}

.icon-button {
  position: relative;
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  color: var(--ink);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.icon-button:hover {
  border-color: rgba(35, 139, 143, 0.45);
}

.icon-button:active,
.primary-link:active,
.ghost-link:active,
.buy-button:active,
.ghost-button:active,
.package-option:active,
.stepper button:active {
  transform: translateY(1px) scale(0.99);
}

.icon-button svg {
  width: 21px;
  height: 21px;
}

.cart-trigger span {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  min-width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.mobile-buy-bar {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: center;
  width: min(100%, 1320px);
  min-height: calc(100dvh - 72px);
  margin: 0 auto;
  padding: clamp(42px, 6vw, 88px) clamp(18px, 4vw, 44px) clamp(34px, 6vw, 84px);
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-copy h2,
.proof-copy h2,
.usage-panel h2,
.cart-head h2 {
  margin: 12px 0 16px;
  color: var(--ink);
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.04;
}

.hero-lede,
.section-copy p,
.proof-copy p {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.84;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-link,
.ghost-link,
.buy-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  gap: 10px;
  border-radius: 10px;
  font-weight: 900;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.primary-link,
.buy-button {
  border: 0;
  background: var(--teal);
  color: white;
}

.primary-link {
  padding: 0 22px;
}

.primary-link:hover,
.buy-button:hover {
  background: var(--teal-dark);
}

.ghost-link,
.ghost-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  padding: 0 18px;
}

.primary-link svg,
.buy-button svg {
  width: 19px;
  height: 19px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 620px;
  margin: 38px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--line);
}

.hero-stats div {
  min-height: 104px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.74);
}

.hero-stats dt {
  margin: 0;
  color: var(--gold);
  font-size: 32px;
  font-weight: 950;
}

.hero-stats dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.hero-stage {
  position: relative;
}

.product-visual {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  border: 1px solid rgba(35, 139, 143, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(238, 247, 245, 0.9)),
    linear-gradient(180deg, rgba(199, 167, 97, 0.12), transparent 48%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.image-showcase {
  min-height: 600px;
  margin: 0;
  background: var(--ink);
}

.hero-product-image {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  object-position: center top;
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 26px;
  z-index: 1;
  border: 1px solid rgba(35, 139, 143, 0.12);
  border-radius: 14px;
  pointer-events: none;
}

.formula-card {
  position: relative;
  width: min(100%, 420px);
  margin: 16px 0 0 auto;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 50px rgba(23, 32, 29, 0.14);
}

.formula-card span,
.formula-card strong {
  display: block;
}

.formula-card span {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.formula-card strong {
  margin-top: 8px;
  font-size: 20px;
  line-height: 1.3;
}

.formula-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.trust-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 14px clamp(18px, 4vw, 48px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  scrollbar-width: none;
}

.trust-strip::-webkit-scrollbar {
  display: none;
}

.trust-strip span {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid rgba(35, 139, 143, 0.2);
  border-radius: 999px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.section {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 112px) clamp(18px, 4vw, 44px);
}

.buy-section,
.why-section,
.proof-section,
.faq-section,
.visual-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.82fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.visual-section {
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.78fr);
  align-items: center;
  gap: clamp(22px, 4vw, 52px);
  padding-top: clamp(42px, 6vw, 78px);
  padding-bottom: clamp(42px, 6vw, 78px);
}

.specs-section,
.feedback-section {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 0.95fr);
}

.why-section {
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.78fr);
  align-items: center;
  gap: clamp(22px, 4vw, 52px);
  padding-top: clamp(42px, 6vw, 78px);
  padding-bottom: clamp(42px, 6vw, 78px);
}

.section-copy {
  position: sticky;
  top: 104px;
}

.visual-copy {
  display: grid;
  align-self: center;
  gap: 16px;
  max-width: 620px;
}

.visual-copy p {
  max-width: 56ch;
}

.visual-points {
  display: grid;
  gap: 0;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid var(--line);
}

.visual-points li {
  display: grid;
  grid-template-columns: minmax(94px, 0.34fr) 1fr;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.visual-points b {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}

.visual-points span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.lab-description {
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.82;
}

.section-copy h2,
.proof-copy h2,
.usage-panel h2 {
  font-size: clamp(31px, 4.5vw, 56px);
}

.tier-matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 700px;
  margin-top: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--line);
}

.tier-matrix div {
  min-height: 140px;
  padding: 20px;
  background: var(--panel);
}

.tier-matrix span,
.tier-matrix small {
  display: block;
  color: var(--muted);
}

.tier-matrix strong {
  display: block;
  margin: 14px 0 6px;
  color: var(--rose);
  font-size: 36px;
}

.quick-buy,
.cart-panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.quick-buy {
  position: sticky;
  top: 104px;
  padding: 24px;
}

.buy-heading h3,
.cart-head h2 {
  margin: 8px 0 10px;
  font-size: 28px;
  line-height: 1.18;
}

.buy-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.package-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.package-option {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 76px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  color: var(--ink);
  text-align: left;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.package-option[aria-pressed="true"] {
  border-color: var(--teal);
  background: var(--soft);
}

.package-option strong,
.package-option small {
  display: block;
}

.package-option small {
  margin-top: 5px;
  color: var(--muted);
}

.package-option b {
  color: var(--rose);
  font-size: 22px;
}

.quantity-row,
.total-row,
.cart-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.quantity-row {
  margin-top: 20px;
}

.stepper {
  display: grid;
  grid-template-columns: 42px 50px 42px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
}

.stepper button {
  display: grid;
  height: 42px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.stepper svg {
  width: 18px;
  height: 18px;
}

.stepper output {
  display: grid;
  height: 42px;
  place-items: center;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  font-weight: 900;
}

.total-row {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.total-row strong {
  color: var(--rose);
  font-size: 38px;
}

.saving-line {
  min-height: 24px;
  margin: 6px 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.buy-button {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  font-size: 16px;
}

.food-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.logic-grid {
  display: grid;
  gap: 14px;
}

.mechanism-column {
  display: grid;
  gap: 18px;
}

.content-frame {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(35, 139, 143, 0.18);
  border-radius: 18px;
  background: #eaf7fb;
  box-shadow: var(--shadow);
}

.content-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.content-frame-tall {
  width: min(100%, 460px);
  justify-self: center;
}

.content-frame-wide {
  justify-self: stretch;
}

.feedback-section .primary-link {
  margin-top: 26px;
}

.why-section .logic-grid {
  margin-top: 4px;
}

.why-section .logic-grid article {
  min-height: auto;
  padding: 18px;
}

.why-section .logic-grid h3 {
  font-size: 22px;
}

.logic-grid article {
  display: grid;
  grid-template-columns: 74px 1fr;
  column-gap: 18px;
  min-height: 160px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
}

.logic-grid span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(35, 139, 143, 0.2);
  border-radius: 14px;
  color: var(--teal-dark);
  font-size: 20px;
  font-weight: 950;
}

.logic-grid h3,
.logic-grid p {
  grid-column: 2;
}

.logic-grid h3 {
  margin: 2px 0 10px;
  font-size: 24px;
  line-height: 1.25;
}

.logic-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.how-section {
  max-width: none;
  background: var(--ink);
  color: white;
}

.usage-panel {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 44px);
}

.usage-panel .eyebrow,
.how-section h2 {
  color: white;
}

.usage-steps {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.1fr;
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.16);
}

.usage-steps div {
  min-height: 210px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
}

.usage-steps span,
.usage-steps p {
  color: rgba(255, 255, 255, 0.7);
}

.usage-steps strong {
  display: block;
  margin: 18px 0 10px;
  color: var(--gold);
  font-size: 42px;
}

.usage-steps p {
  margin: 0;
  line-height: 1.7;
}

.proof-section {
  align-items: center;
}

.proof-media {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(35, 139, 143, 0.18);
  border-radius: 18px;
  background: #e5f7fb;
  box-shadow: var(--shadow);
}

.proof-image {
  display: block;
  width: 100%;
  height: auto;
}

.proof-facts {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--line);
}

.proof-facts div {
  padding: 20px;
  background: var(--panel);
}

.proof-facts dt {
  margin: 0 0 8px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 950;
}

.proof-facts dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  color: var(--teal-dark);
  font-weight: 950;
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-section {
  grid-template-columns: minmax(220px, 0.5fr) minmax(0, 1.5fr);
  gap: clamp(18px, 4vw, 44px);
  padding-top: clamp(42px, 5vw, 68px);
}

.faq-intro {
  position: sticky;
  top: 104px;
  align-self: start;
}

.faq-heading {
  padding: clamp(18px, 2.5vw, 24px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
}

.faq-heading h2 {
  margin: 8px 0 0;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.12;
}

.faq-answer-sheet {
  display: grid;
  gap: 8px;
}

.faq-answer-sheet article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 6px 12px;
  padding: 16px clamp(16px, 2vw, 20px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
}

.faq-answer-sheet span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: var(--soft);
  color: var(--teal-dark);
  font-weight: 950;
}

.faq-answer-sheet h3 {
  margin: 4px 0 0;
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 1.38;
}

.faq-answer-sheet p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  overflow: hidden;
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 58px;
  gap: 16px;
  border: 0;
  background: transparent;
  padding: 0 18px;
  color: var(--ink);
  font-weight: 950;
  text-align: left;
}

.faq-item svg {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.faq-item p {
  display: none;
  margin: 0;
  padding: 0 18px 16px;
  color: var(--muted);
  line-height: 1.62;
}

.faq-item.is-open p {
  display: block;
}

.faq-item.is-open svg {
  transform: rotate(180deg);
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  justify-items: end;
  background: rgba(23, 32, 29, 0.54);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.cart-drawer[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.cart-panel {
  width: min(100%, 440px);
  height: 100dvh;
  overflow: auto;
  padding: 24px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  transform: translateX(20px);
  transition: transform 180ms ease;
}

.cart-drawer[aria-hidden="false"] .cart-panel {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.cart-head .icon-button {
  flex: 0 0 auto;
}

.cart-summary {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
}

.cart-summary strong,
.cart-summary span {
  display: block;
}

.cart-summary span {
  margin-top: 6px;
  color: var(--muted);
}

.cart-summary b {
  color: var(--rose);
  font-size: 24px;
}

.checkout-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.checkout-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition: border-color 180ms ease;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
  border-color: var(--teal);
}

.checkout-form small {
  min-height: 18px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 700;
}

.checkout-success {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(35, 139, 143, 0.26);
  border-radius: 14px;
  background: var(--soft);
}

.checkout-success[hidden] {
  display: none;
}

.checkout-success span {
  color: var(--teal-dark);
  font-weight: 950;
}

.checkout-success strong {
  font-size: 28px;
}

.checkout-success p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.ghost-button {
  border-color: var(--line);
  background: var(--panel);
  color: var(--ink);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero,
  .buy-section,
  .why-section,
  .proof-section,
  .faq-section,
  .visual-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .quick-buy,
  .section-copy,
  .faq-intro {
    position: static;
  }

  .visual-copy {
    max-width: none;
  }

  .faq-section {
    gap: 18px;
  }

  .specs-section .section-copy,
  .feedback-section .section-copy {
    order: -1;
  }

  .faq-answer-sheet article {
    grid-template-columns: 1fr;
  }

  .faq-answer-sheet p {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 64px;
    padding: 10px 14px;
  }

  .brand-text small {
    font-size: 11px;
  }

  .hero {
    padding: 34px 14px 28px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-stats,
  .tier-matrix,
  .usage-steps {
    grid-template-columns: 1fr;
  }

  .product-visual {
    min-height: 410px;
  }

  .image-showcase,
  .hero-product-image {
    min-height: 430px;
  }

  .formula-card {
    width: 100%;
    margin-top: 12px;
  }

  .section {
    padding: 58px 14px;
  }

  .content-frame {
    border-radius: 14px;
  }

  .content-frame-tall {
    width: 100%;
  }

  .visual-points li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .quick-buy {
    padding: 18px;
  }

  .logic-grid article {
    grid-template-columns: 1fr;
  }

  .logic-grid h3,
  .logic-grid p {
    grid-column: auto;
  }

  .cart-panel {
    width: 100%;
    border-radius: 0;
  }

  .proof-image {
    height: auto;
  }

  .mobile-buy-bar {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 18;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px 10px 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 42px rgba(23, 32, 29, 0.18);
    backdrop-filter: blur(16px);
  }

  .mobile-buy-bar span {
    color: var(--ink);
    font-weight: 950;
  }

  .mobile-buy-bar a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--teal);
    color: white;
    padding: 0 16px;
    font-weight: 950;
  }
}
