:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-cool: #f0f7ff;
  --surface-soft: #f8fbfe;
  --text: #071d3b;
  --body: #243349;
  --muted: #667085;
  --border: #d9e0ea;
  --border-strong: #b8c3d2;
  --accent: #0b63ce;
  --accent-dark: #023b78;
  --teal: #009aa6;
  --green: #087631;
  --warning: #f8b72b;
  --danger: #b91c1c;
  --shadow: 0 18px 55px rgba(5, 24, 51, 0.1);
  --radius: 8px;
  --radius-sm: 6px;
  --field-h: 50px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.45;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: var(--accent);
  text-decoration: none;
}

svg {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 40px;
  padding: 3px 14px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.brand,
.support-link {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 9px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0;
}

.brand-wordmark {
  display: inline-block;
  color: #111827;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: clamp(80px, 21vw, 90px);
  height: auto;
}

@media (max-width: 767px) {
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--teal);
  font-size: 28px;
  font-weight: 650;
  line-height: 1;
}

.brand-word {
  font-size: 16px;
  letter-spacing: 8px;
}

.support-link {
  gap: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.support-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.countdown-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 14px;
  border-top: 8px solid #fff;
  border-bottom: 0;
  background: linear-gradient(180deg, #f2f9ff 0%, #e8f4ff 100%);
  color: var(--text);
  font-size: 21px;
  font-weight: 720;
  text-align: center;
}

.countdown-strip strong {
  color: var(--danger);
  font-size: 26px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}

.countdown-strip span {
  white-space: nowrap;
}

.checkout-shell {
  display: grid;
  gap: 26px;
  width: min(100%, 1420px);
  margin: 0 auto;
  padding: 16px;
}

.checkout-main,
.checkout-sidebar {
  min-width: 0;
}

.express-card,
.checkout-section,
.summary-card,
.guarantee-card,
.faq-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.express-card,
.checkout-section {
  padding: 18px;
}

.express-card {
  text-align: center;
}

.express-card h1,
.section-heading h2,
.summary-header h2,
.guarantee-card h2,
.faq-card h2 {
  margin: 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: 0;
}

.express-card h1 {
  display: flex;
  align-items: center;
  gap: clamp(8px, 3vw, 14px);
  width: 100%;
  margin-bottom: 14px;
  font-size: 26px;
  line-height: 1.15;
  white-space: nowrap;
}

.express-card h1::before,
.express-card h1::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: #d7dee8;
}

.wallet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.wallet {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  height: 48px;
  min-height: 48px;
  border: 0;
  border-radius: var(--radius-sm);
  box-sizing: border-box;
  color: #fff;
  font-size: 17px;
  font-weight: 760;
}

.wallet svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.wallet-shop {
  background: #5a31f4;
}

.wallet-shop strong {
  padding: 1px 4px;
  border-radius: 4px;
  background: #fff;
  color: #5a31f4;
  font-size: 13px;
}

.apple-pay-button {
  width: 100%;
  height: 48px;
  min-height: 48px;
  border: 0;
  border-radius: var(--radius-sm);
  appearance: none;
  -webkit-appearance: none;
  background: #02050a;
  color: #fff;
}

.apple-pay-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 23px;
  font-weight: 560;
  letter-spacing: 0;
  line-height: 1;
}

.apple-pay-fallback svg {
  width: 27px;
  height: 27px;
  transform: translateY(-1px);
}

.wallet-paypal,
.wallet-paypal-fallback {
  background: #ffc439;
  color: #003087;
  font-style: normal;
  font-weight: 850;
}

.wallet-paypal-sdk {
  width: 100%;
  height: 48px;
  min-height: 48px;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.wallet-paypal-sdk .paypal-buttons,
.wallet-paypal-sdk iframe {
  width: 100% !important;
  height: 48px !important;
  min-height: 48px !important;
  border-radius: var(--radius-sm);
}

.wallet-paypal-fallback {
  display: none;
}

.wallet-paypal-fallback.is-visible {
  display: flex;
}

.wallet-google-pay-sdk,
.google-pay-inline-sdk,
.google-pay-sticky-sdk {
  width: 100%;
  height: 48px;
  min-height: 48px;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.wallet-google-pay-sdk > button,
.google-pay-inline-sdk > button,
.google-pay-sticky-sdk > button {
  width: 100% !important;
  height: 48px !important;
  min-height: 48px !important;
}

.wallet-google-pay-fallback {
  width: 100%;
  margin: 0;
  background: #000;
  color: #fff;
  font-weight: 780;
}

.google-pay-express-lockup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 23px;
  font-weight: 560;
  letter-spacing: 0;
  line-height: 1;
}

.google-pay-express-lockup img {
  display: block;
  width: 26px;
  height: 26px;
}

.google-pay-inline-sdk {
  width: 258px;
  max-width: 100%;
  margin: 12px auto 0;
}

.google-pay-sticky-sdk {
  width: 100%;
  height: 50px;
}

.paypal-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-size: 22px;
  font-weight: 850;
  letter-spacing: -0.2px;
}

.paypal-wordmark span:last-child {
  color: #009cde;
}

.divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.checkout-or-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 13px;
  margin: 16px 0;
  color: var(--body);
  font-size: 26px;
  font-weight: 850;
  letter-spacing: 0;
}

.checkout-or-divider::before,
.checkout-or-divider::after {
  content: "";
  height: 1px;
  background: #c8d1de;
}

.checkout-or-divider span {
  color: var(--body);
}

.express-consent {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid #b7d5fb;
  border-radius: var(--radius);
  background: var(--surface-cool);
  text-align: left;
}

.mini-title {
  margin: 0 0 2px;
  color: var(--text);
  font-weight: 760;
}

.muted,
.section-heading p,
.secure-copy {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.secure-copy {
  font-size: 16px;
  line-height: 1.45;
}

.inline-fields {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.secondary-action {
  min-height: var(--field-h);
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #fff;
  font-weight: 720;
}

.checkout-section {
  margin-top: 14px;
}

.package-selector-section {
  margin-top: 0;
  padding: 12px;
}

.contact-capture-section {
  margin-top: 14px;
}

.contact-capture-section .section-heading {
  align-items: center;
  margin-bottom: 8px;
}

.section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.section-heading h2 {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.payment-heading {
  align-items: center;
  margin-bottom: 8px;
}

.payment-secure-line {
  margin-bottom: 14px;
}

.assurance-badge {
  display: inline-grid;
  grid-template-columns: 29px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  width: 176px;
  min-height: 48px;
  padding: 6px 9px 6px 6px;
  border: 1px solid #d4e3f1;
  border-radius: 9px;
  background: linear-gradient(180deg, #fff 0%, #f7fbfe 100%);
  color: var(--text);
  box-shadow: none;
}

.assurance-badge-privacy {
  width: 176px;
}

.assurance-badge-checkout {
  grid-template-columns: 34px minmax(0, 1fr);
  width: 188px;
  min-height: 52px;
  padding: 7px 9px 7px 7px;
}

.assurance-badge-icon {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 8px;
  background: #75c900;
  color: #fff;
}

.assurance-badge-icon svg {
  width: 20px;
  height: 20px;
}

.assurance-badge-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.assurance-badge-icon-lock path {
  stroke-width: 2.25;
}

.assurance-badge-icon-shield {
  background: #eef7ff;
  color: #0c2b4b;
  border: 1px solid #c8ddf1;
}

.assurance-badge-checkout .assurance-badge-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.assurance-badge-checkout .assurance-badge-icon svg {
  width: 27px;
  height: 27px;
}

.assurance-badge-icon-shield .shield {
  fill: #0c2b4b;
  stroke: none;
}

.assurance-badge-icon-shield .lock-shackle {
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
}

.assurance-badge-icon-shield .lock-body {
  fill: #fff;
  stroke: none;
}

.assurance-badge-icon-shield .lock-check {
  fill: none;
  stroke: #21a45b;
  stroke-width: 2.5;
}

.assurance-badge-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
  line-height: 1.08;
}

.assurance-badge-copy strong {
  color: #10233d;
  font-size: 14px;
  font-weight: 820;
  white-space: nowrap;
}

.assurance-badge-copy small {
  color: #627089;
  font-size: 12px;
  font-weight: 680;
  line-height: 1.12;
  text-transform: none;
}

.section-reassurance {
  margin: 0 0 12px 35px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 560;
  line-height: 1.45;
}

.section-heading h2 .step-number {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 820;
  line-height: 1;
  box-shadow: 0 2px 7px rgba(13, 108, 220, 0.22);
}

.section-heading a {
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
}

.field-stack,
.billing-fields {
  display: grid;
  gap: 10px;
}

label,
.form-field {
  display: grid;
  gap: 6px;
  color: var(--body);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.35;
  text-align: left;
}

.required-marker {
  color: var(--danger);
  font-weight: 800;
}

.field-note {
  margin: -1px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
}

input,
select {
  width: 100%;
  min-height: var(--field-h);
  padding: 0 13px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  font-size: 16px;
  line-height: 1.25;
  outline: none;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

input::placeholder {
  color: var(--muted);
  opacity: 1;
}

input:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(11, 99, 206, 0.14);
}

.form-field label {
  display: block;
  color: var(--body);
  font-size: 16px;
  font-weight: 650;
}

.field-error {
  margin-top: -1px;
  color: var(--danger);
  font-size: 16px;
  font-weight: 620;
  line-height: 1.35;
}

input.is-invalid,
select.is-invalid {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.12);
}

.checkbox-row {
  grid-template-columns: 18px 1fr;
  align-items: flex-start;
  gap: 9px;
  color: var(--body);
  font-size: 16px;
  font-weight: 560;
  line-height: 1.45;
}

.checkbox-row input {
  width: 18px;
  min-height: 18px;
  margin: 1px 0 0;
  accent-color: var(--accent);
}

.sms-optin-row {
  margin-left: 8px;
}

.sms-optin-copy {
  display: grid;
  gap: 2px;
}

.sms-legal {
  margin: -2px 0 0 35px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
}

.sms-legal strong {
  color: var(--body);
  font-weight: 760;
}

.sms-legal a {
  color: var(--accent);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.shipping-address-section {
  overflow: visible;
}

.address-lookup-flow {
  position: relative;
}

.address-lookup-wrap {
  position: relative;
}

.address-lookup-wrap input {
  padding-right: 40px;
}

.address-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  left: 0;
  z-index: 12;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: 0 18px 40px rgba(9, 21, 39, 0.16);
}

.suggestion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 38px;
  padding: 8px 12px;
  border-bottom: 1px solid #edf1f6;
  color: var(--muted);
  font-size: 12px;
  font-weight: 620;
}

.suggestion-close {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
}

.address-suggestion,
.manual-address-link {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: #fff;
  text-align: left;
}

.address-suggestion {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.25;
}

.address-suggestion + .address-suggestion {
  border-top: 1px solid #f1f4f8;
}

.address-suggestion strong {
  flex: 0 0 auto;
  font-weight: 820;
}

.address-suggestion span {
  min-width: 0;
  color: var(--muted);
  font-weight: 540;
}

.address-suggestion.is-highlighted {
  border-left: 4px solid var(--accent);
  background: #f3f8ff;
  padding-left: 8px;
}

.manual-address-link {
  min-height: 40px;
  padding: 10px 12px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.address-secondary-toggle {
  margin-top: -2px;
}

.secondary-address-link {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent);
  font-size: 16px;
  font-weight: 760;
  text-align: left;
}

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

.two-col,
.three-col {
  display: grid;
  gap: 10px;
}

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

.package-grid {
  display: grid;
  gap: 26px;
}

.package-card {
  --package-media-size: clamp(92px, 26vw, 112px);
  position: relative;
  display: grid;
  grid-template-columns: var(--package-media-size) minmax(0, 1fr);
  align-items: stretch;
  column-gap: clamp(14px, 4vw, 18px);
  row-gap: 10px;
  min-height: 0;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  overflow: visible;
  text-align: left;
  transition: background 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.package-card.is-selected {
  border-color: var(--accent);
  background: #edf7ff;
  box-shadow: inset 0 0 0 2px #86bfff, 0 0 0 3px rgba(11, 99, 206, 0.1);
}

.package-media {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  aspect-ratio: 1;
  min-height: 0;
  padding: 3px 5px 13px;
  align-self: start;
  overflow: visible;
  border: 2px solid #1f2937;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}

.tile-caption-badge {
  position: absolute;
  left: 50%;
  bottom: -11px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 21px;
  padding: 3px 8px;
  border: 1px solid #d2dae6;
  border-radius: 999px;
  background: #f8fafc;
  color: #4b5b73;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transform: translateX(-50%);
  box-shadow: 0 1px 2px rgba(9, 21, 39, 0.08);
}

.tile-caption-badge-six {
  border-color: #7fcf9a;
  background: #e5f7ec;
  color: #08703a;
}

.tile-caption-badge-three {
  border-color: #9ccaf8;
  background: #eaf4ff;
  color: #0a58a7;
}

.tile-caption-badge-one {
  border-color: #d2dae6;
  background: #f8fafc;
  color: #4b5b73;
}

.bottle-stack {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.bottle-stack img {
  width: auto;
  height: clamp(88px, 27vw, 112px);
  max-width: calc(var(--package-media-size) - 34px);
  object-fit: contain;
  object-position: center;
  mix-blend-mode: normal;
  filter: drop-shadow(0 4px 5px rgba(9, 21, 39, 0.20));
  transform: translateY(-1px);
}

.bottle-stack img + img {
  margin-left: 0;
}

.count-bubble {
  position: absolute;
  top: -15px;
  right: -15px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #1f2937;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.package-info {
  min-width: 0;
  padding-top: 1px;
}

.package-info h3 {
  margin: 0 0 4px;
  padding-right: 0;
  color: #091527;
  font-size: 16px;
  line-height: 1.16;
}

.per-bottle-price {
  margin: 0 0 8px;
  color: var(--accent-dark);
  font-size: 16px;
  font-weight: 830;
  line-height: 1.15;
}

.package-meta,
.package-charge,
.ship-line,
.package-detail-list p {
  margin: 0;
  color: var(--body);
  font-size: 16px;
  line-height: 1.35;
}

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

.package-detail-list p {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 3px 5px;
}

.package-price-pair {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  white-space: nowrap;
}

.package-detail-list p > span:first-child {
  min-width: 41px;
  color: #091527;
  font-weight: 800;
}

.package-detail-list strong {
  color: var(--text);
  font-weight: 500;
}

.package-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px;
  margin-top: 8px;
}

.compare-price,
.mini-compare {
  color: #5f6673;
  text-decoration: line-through;
}

.current-price {
  color: #07111f;
  font-size: 20px;
  font-weight: 800;
}

.savings,
.ship-free {
  color: var(--text);
  font-weight: 500;
}

.ship-free,
.ship-paid {
  font-size: inherit;
}

.package-meta {
  margin-top: 8px;
}

.ship-paid {
  color: var(--body);
  font-weight: 500;
}

.select-control {
  position: absolute;
  top: 50%;
  right: -17px;
  transform: translateY(-50%);
  z-index: 4;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 2px solid #c8ced8;
  border-radius: 999px;
  background: #fff;
  color: #fff;
  box-shadow: 0 2px 8px rgba(9, 21, 39, 0.16);
}

.select-control svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.package-card.is-selected .select-control {
  border-color: var(--accent);
  background: var(--accent);
}

.contact-capture-section + .express-card {
  margin-top: 14px;
}

.subscribe-box {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: start;
  justify-content: start;
  gap: 8px;
  margin-top: 18px;
  padding: 12px 12px;
  border: 1px solid #b7dfc7;
  border-radius: var(--radius);
  background: #effaf3;
}

.subscribe-copy {
  display: block;
  min-width: 0;
}

.subscribe-copy strong {
  display: block;
  color: #091527;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
  white-space: normal;
}

.subscribe-copy p {
  margin: 4px 0 0;
  color: var(--body);
  font-size: 16px;
  line-height: 1.35;
}

.subscribe-box.is-off {
  border-color: #d6dde7;
  background: #fff;
}

.subscribe-box.is-off .subscribe-copy strong {
  color: #3f4a5b;
}

.subscribe-box.is-off .subscribe-copy p {
  color: #5f6877;
}

.icon-chip {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #d7ebff;
  color: var(--accent);
}

.icon-chip svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.switch {
  order: -1;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin: 0;
  padding: 0;
  border: 1.5px solid #b9c6d5;
  border-radius: 8px;
  background: #fff;
  color: #fff;
  box-shadow: none;
  transition: background 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.switch svg {
  display: block;
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
}

.switch.is-on {
  border-color: #0d6cdc;
  background: #0d6cdc;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22), 0 2px 6px rgba(13, 108, 220, 0.22);
}

.switch.is-on svg {
  opacity: 1;
}

@media (max-width: 374px) {
  .subscribe-copy strong {
    font-size: 15px;
  }

  .trust-badges {
    gap: 8px;
  }

  .assurance-badge {
    grid-template-columns: 28px minmax(0, 1fr);
    min-height: 48px;
    gap: 7px;
    padding: 6px 8px 6px 6px;
  }

  .assurance-badge-privacy {
    width: 164px;
  }

  .assurance-badge-checkout {
    grid-template-columns: 31px minmax(0, 1fr);
    width: 170px;
    min-height: 50px;
    gap: 6px;
    padding: 6px 8px 6px 6px;
  }

  .assurance-badge-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
  }

  .assurance-badge-icon svg {
    width: 20px;
    height: 20px;
  }

  .assurance-badge-checkout .assurance-badge-icon {
    width: 31px;
    height: 31px;
    border-radius: 8px;
  }

  .assurance-badge-checkout .assurance-badge-icon svg {
    width: 25px;
    height: 25px;
  }

  .assurance-badge-copy strong {
    font-size: 13.5px;
  }

  .assurance-badge-copy small {
    font-size: 12px;
  }

  .section-reassurance {
    margin-left: 34px;
    font-size: 15px;
  }

  .package-card {
    --package-media-size: 84px;
    column-gap: 12px;
    padding-right: 24px;
  }

  .package-media {
    min-height: 88px;
  }

  .bottle-stack img {
    height: 84px;
    max-width: calc(var(--package-media-size) - 26px);
  }

  .credit-card-option .payment-option-header {
    grid-template-columns: 20px minmax(82px, 1fr) auto;
    gap: 8px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .payment-method-label {
    white-space: nowrap;
  }

  .card-brand-row {
    gap: 2px;
  }

  .card-brand-icon {
    width: 31px;
    height: 20px;
  }
}

.mobile-cart {
  display: block;
  padding: 14px 18px;
}

.mobile-cart .section-heading {
  margin-bottom: 0;
}

.payment-layout {
  display: grid;
  gap: 12px;
}

.payment-options {
  display: grid;
  gap: 0;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.payment-option {
  position: relative;
  display: grid;
  grid-template-columns: 20px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 60px;
  padding: 0 12px;
  border-bottom: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
}

.credit-card-option {
  display: block;
  min-height: 0;
  padding: 0;
}

.credit-card-option .payment-option-header {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 60px;
  margin: 0;
  padding: 0 12px;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
}

.wallet-method-option {
  grid-template-columns: 20px minmax(0, 1fr) auto;
}

.payment-options > .wallet-method-option:last-of-type {
  border-bottom: 0;
}

.payment-option.is-selected {
  background: #eef7ff;
}

.credit-card-option.is-selected {
  background: #fff;
  box-shadow: none;
}

.credit-card-option.is-selected .payment-option-header {
  background: #eef7ff;
}

.payment-option input[name="payment"] {
  width: 18px;
  min-height: 18px;
  accent-color: var(--accent);
}

.payment-method-label {
  min-width: 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 780;
  line-height: 1;
}

.card-brand-row {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  min-width: 0;
}

.card-brand-icon {
  display: block;
  width: 36px;
  height: 23px;
  flex: 0 0 auto;
  border-radius: 3px;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(9, 21, 39, 0.1);
  opacity: 1;
  transition: opacity 140ms ease, transform 140ms ease, box-shadow 140ms ease;
}

.card-brand-icon.is-detected {
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 0 0 2px rgba(11, 99, 206, 0.2);
}

.payment-option-note {
  color: var(--muted);
  font-size: 14px;
  font-weight: 680;
  white-space: nowrap;
}

.summary-line .tax-pending {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 3px 10px;
  border: 1px solid #d9e1eb;
  border-radius: 9px;
  background: #f5f7fb;
  color: #5f6877;
  font-size: 14px;
  font-weight: 740;
  line-height: 1;
  text-align: right;
}

.wallet-row-mark {
  display: inline-grid;
  grid-template-columns: 28px auto;
  align-items: center;
  gap: 8px;
  justify-self: start;
  min-width: 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.wallet-row-icon {
  display: block;
  justify-self: center;
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.wallet-row-paypal-icon {
  width: 21px;
  height: 25px;
}

.wallet-row-apple-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
  transform: translateY(-1px);
}

.wallet-row-google-icon {
  width: 22px;
  height: 22px;
}

.paypal-mark,
.apple-pay-mark,
.google-pay-mark {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-width: 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
}

.paypal-mark {
  color: #003087;
}

.paypal-mark span:last-child {
  color: #009cde;
}

.apple-pay-mark {
  gap: 3px;
}

.apple-pay-mark svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.google-pay-mark {
  gap: 3px;
}

.google-pay-mark span {
  color: #4285f4;
}

.wallet-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  flex: 0 0 auto;
}

.wallet-paypal-badge {
  min-width: 74px;
}

.wallet-paypal-badge .paypal-mark {
  font-size: 18px;
  letter-spacing: -0.2px;
}

.wallet-apple-pay-badge {
  min-width: 50px;
  min-height: 29px;
  gap: 3px;
  padding: 0 7px;
  border: 1.5px solid #1f2937;
  border-radius: 4px;
  background: #fff;
  color: #050505;
  font-size: 17px;
  font-weight: 760;
  line-height: 1;
}

.wallet-apple-pay-badge svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  transform: translateY(-1px);
}

.wallet-google-pay-badge {
  width: auto;
  min-width: 72px;
  height: 30px;
  gap: 4px;
  padding: 0 10px;
  border-radius: 999px;
  background: #fff;
  color: #202124;
  font-size: 17px;
  font-weight: 560;
  line-height: 1;
  box-shadow: 0 0 0 1px rgba(32, 33, 36, 0.18);
}

.wallet-google-pay-badge img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.card-form {
  display: grid;
  gap: 10px;
  padding: 14px 12px 12px;
  border-top: 1px solid var(--border);
  background: #f7f9fc;
}

.wallet-guidance-slot {
  display: grid;
  gap: 9px;
  padding: 12px 14px 14px 42px;
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.wallet-guidance-slot[hidden],
.card-form[hidden],
.billing-fields[hidden] {
  display: none;
}

.payment-options > .wallet-guidance-slot:last-child {
  border-bottom: 0;
}

.wallet-guidance-card {
  display: grid;
  gap: 9px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--body);
}

.wallet-guidance-title {
  display: inline-grid;
  grid-template-columns: 28px auto;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 16px;
  font-weight: 820;
  line-height: 1;
}

.wallet-guidance-icon {
  display: block;
  justify-self: center;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.wallet-guidance-apple {
  fill: currentColor;
}

.wallet-guidance-card p {
  max-width: none;
  margin: 0;
  color: var(--body);
  font-size: 16px;
  font-weight: 680;
  line-height: 1.4;
}

.secure-title {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text);
  font-size: 14px;
  font-weight: 780;
  line-height: 1.18;
  white-space: nowrap;
}

.card-input-wrap {
  position: relative;
  display: block;
}

.card-input-wrap input {
  padding-right: 58px;
}

.detected-card-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 38px;
  height: 24px;
  border-radius: 3px;
  object-fit: contain;
  transform: translateY(-50%);
  box-shadow: 0 0 0 1px rgba(9, 21, 39, 0.1);
}

.field-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.field-label-row label {
  white-space: nowrap;
}

.security-code-help {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent);
  font-size: 14px;
  font-weight: 720;
  white-space: nowrap;
}

.security-code-help svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.security-code-help-popover {
  margin-top: 2px;
  padding: 10px;
  border: 1px solid #b7d5fb;
  border-radius: var(--radius-sm);
  background: var(--surface-cool);
  color: var(--body);
  font-size: 16px;
  font-weight: 520;
  line-height: 1.45;
}

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

.billing-toggle {
  margin: 0;
  padding: 11px 12px 12px;
  border-top: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-weight: 640;
}

.billing-fields {
  margin: 0;
  padding: 12px;
  border-top: 1px dashed var(--border-strong);
  border-radius: 0;
  background: #f8fbff;
}

.mobile-cta-block {
  margin-top: 16px;
}

.desktop-payment-cta {
  display: none;
}

body.is-wallet-payment .mobile-cta-block .complete-button {
  display: inline-flex;
}

.mobile-cta-trust {
  margin-top: 10px;
  padding-top: 0;
  border-top: 0;
}

.mobile-cta-trust .trust-badges {
  margin-top: 0;
}

.mobile-guarantee-card,
.mobile-faq-card {
  margin-top: 14px;
}

.mobile-faq-card {
  margin-bottom: 76px;
}

.complete-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #063e7e 0%, #022b5a 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 820;
  letter-spacing: 0;
  box-shadow: 0 9px 18px rgba(3, 43, 90, 0.22);
}

.complete-button span,
.complete-button .button-label {
  line-height: 1;
}

.complete-button .button-copy {
  display: inline-block;
  flex: 0 0 auto;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.complete-button .button-brand-lockup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-left: 0;
  box-sizing: border-box;
  width: 96px;
  height: 32px;
}

.complete-button .button-wallet-logo {
  display: block;
  flex: 0 0 auto;
  max-width: 104px;
  height: auto;
  object-fit: contain;
}

.complete-button .button-paypal-logo {
  width: 78px;
}

.complete-button .button-paypal-mark {
  gap: 4px;
  border-radius: 999px;
  background: #fff;
  color: #003087;
  box-shadow: 0 0 0 1px rgba(32, 33, 36, 0.18);
}

.complete-button .button-paypal-monogram {
  display: block;
  width: 18px;
  height: 22px;
  object-fit: contain;
  transform: translateY(-0.5px);
}

.complete-button .button-paypal-wordmark {
  display: inline-flex;
  align-items: baseline;
  font-size: 18px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.2px;
  transform: translateY(-0.5px);
}

.complete-button .button-paypal-wordmark span:last-child {
  color: #009cde;
}

.complete-button .button-google-pay-logo {
  width: 24px;
  height: 24px;
}

.button-google-pay-mark {
  gap: 4px;
  padding: 0;
  border-radius: 999px;
  background: #fff;
  color: #202124;
  font-size: 18px;
  font-weight: 560;
  letter-spacing: 0;
  line-height: 1;
  box-shadow: 0 0 0 1px rgba(32, 33, 36, 0.18);
}

.button-google-pay-mark img {
  display: block;
  width: 24px;
  height: 24px;
}

.button-apple-pay-mark {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 0;
  border: 1.5px solid #1f2937;
  border-radius: 4px;
  background: #fff;
  color: #050505;
  font-size: 18px;
  font-weight: 780;
  line-height: 1;
}

.button-apple-pay-mark span {
  line-height: 1;
}

.button-apple-pay-mark svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
  transform: translateY(-1px);
}

.complete-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.complete-button .button-apple-pay-mark svg {
  fill: currentColor;
  stroke: none;
  stroke-width: 0;
}

.complete-button.is-paypal-action,
.complete-button.is-apple-pay-action,
.complete-button.is-google-pay-action {
  border: 0;
  background: linear-gradient(180deg, #0a4f9c 0%, #063e7e 100%);
  color: #fff;
  box-shadow: 0 9px 18px rgba(3, 43, 90, 0.24);
}

body.wallet-cta-green .complete-button.is-paypal-action,
body.wallet-cta-green .complete-button.is-apple-pay-action,
body.wallet-cta-green .complete-button.is-google-pay-action {
  background: linear-gradient(180deg, #168553 0%, #0f6b3e 100%);
  box-shadow: 0 9px 18px rgba(15, 107, 62, 0.24);
}

.wallet-inline-button {
  min-height: 48px;
  border-radius: var(--radius-sm);
  font-size: 16px;
}

.wallet-inline-button.is-paypal-action {
  box-shadow: none;
}

.complete-button.is-waiting {
  cursor: progress;
  opacity: 0.88;
}

.statement-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
}

.checkout-sidebar {
  display: none;
}

.summary-card {
  overflow: hidden;
}

.summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
}

.summary-header h2 span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.summary-header button {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  color: var(--text);
}

.summary-header svg,
.chevron {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.summary-product {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
}

.summary-product.is-compact {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.summary-product img {
  width: 70px;
  height: 58px;
  object-fit: contain;
  object-position: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  mix-blend-mode: multiply;
}

.summary-product.is-compact img {
  display: none;
}

.summary-product h3,
.summary-product p,
.summary-product strong {
  margin: 0;
}

.summary-product h3 {
  color: var(--text);
  font-size: 16px;
  line-height: 1.25;
}

.summary-product p {
  color: var(--muted);
  font-size: 14px;
}

.summary-count-pill {
  align-self: center;
  padding: 5px 8px;
  border: 1px solid #b7d5fb;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 820;
  line-height: 1;
  white-space: nowrap;
}

.summary-product strong {
  display: block;
  color: var(--text);
  font-size: 16px;
  text-align: right;
}

.summary-product .mini-compare {
  display: block;
  margin-top: 2px;
  font-size: 14px;
  font-weight: 650;
}

.summary-lines {
  display: grid;
  gap: 12px;
  padding: 16px 18px;
}

.mobile-cart .summary-product.is-compact {
  padding-top: 14px;
  padding-bottom: 14px;
}

.mobile-cart .summary-product.is-compact p {
  margin-top: 3px;
  color: var(--body);
  line-height: 1.25;
}

.mobile-cart .summary-lines {
  gap: 10px;
  padding: 0;
}

.mobile-cart .summary-total {
  margin-top: 2px;
  padding-top: 12px;
}

.mobile-cart .summary-total span:first-child,
.mobile-cart .summary-total strong {
  font-size: 17px;
  font-weight: 760;
  line-height: 1.3;
}

@media (max-width: 767px) {
  .mobile-cart .summary-total {
    display: none;
  }
}

.summary-line,
.summary-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  font-size: 16px;
}

.summary-line span:first-child,
.summary-total span:first-child {
  color: var(--body);
}

.summary-note {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.summary-line strong {
  color: var(--text);
  font-weight: 720;
}

.summary-line .green {
  color: var(--green);
}

.summary-lines .mini-compare {
  color: #606a79;
  font-weight: 620;
  text-decoration-color: #606a79;
}

.summary-line .price-pair .mini-compare {
  color: #606a79;
}

.mobile-cart .summary-line .price-pair .mini-compare,
.summary-card .summary-line .price-pair .mini-compare,
.mobile-summary-panel .summary-line .price-pair .mini-compare {
  color: #606a79;
  text-decoration-color: #606a79;
}

.guarantee-badge-picture {
  display: block;
  width: 100%;
}

.summary-line .price-pair {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
}

.summary-total {
  margin-top: 4px;
  padding-top: 15px;
  border-top: 1px solid var(--border);
}

.summary-total span:first-child {
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
}

.summary-total strong {
  color: #273141;
  font-size: 24px;
  font-weight: 820;
}

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 10px 0 0;
}

.trust-badge-img {
  display: block;
  width: auto;
  max-width: none;
  height: auto;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  box-shadow: none;
}

.guarantee-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 18px 18px 20px;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, #f9fcff 100%);
}

.guarantee-badge-img {
  display: block;
  justify-self: center;
  width: clamp(164px, 48vw, 196px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 7px 12px rgba(3, 23, 47, 0.16));
}

.guarantee-copy {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.mobile-guarantee-heading {
  display: grid;
  grid-template-columns: clamp(108px, 32vw, 128px) minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  width: 100%;
}

.mobile-guarantee-card {
  justify-items: stretch;
  text-align: left;
}

.mobile-guarantee-card .guarantee-badge-img {
  width: 100%;
}

.guarantee-card.mobile-guarantee-card h2 {
  justify-self: start;
  max-width: none;
  font-size: 1.5rem;
  line-height: 1.12;
  text-align: left;
  text-wrap: balance;
}

.guarantee-card.mobile-guarantee-card p {
  max-width: none;
}

.guarantee-card h2 {
  max-width: 22ch;
  font-size: 19px;
  line-height: 1.18;
  text-align: center;
}

.guarantee-card p {
  max-width: 42ch;
  margin: 0;
  color: #44536a;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
}

@media (max-width: 359px) {
  .mobile-guarantee-heading {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
  }

  .guarantee-card.mobile-guarantee-card h2 {
    font-size: 1.3125rem;
  }
}

.faq-card {
  margin-top: 14px;
  padding: 18px;
}

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

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  overflow: hidden;
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  border: 0;
  background: #fff;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}

.faq-trigger svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.faq-answer {
  display: none;
  padding: 0 12px 14px;
  color: var(--body);
  font-size: 16px;
  line-height: 1.45;
}

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

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

.mobile-summary-toggle {
  position: sticky;
  top: 40px;
  z-index: 18;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 0;
  border-bottom: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  text-align: left;
}

.summary-toggle-label,
.mobile-summary-toggle > span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.summary-toggle-label {
  font-weight: 760;
}

.summary-toggle-label svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.mobile-summary-toggle strong {
  font-size: 16px;
}

.mobile-summary-toggle[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

.mobile-summary-panel {
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.mobile-summary-panel .summary-product,
.mobile-summary-panel .summary-lines {
  padding-right: 18px;
  padding-left: 18px;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  z-index: 25;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 10px;
  align-items: center;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 -12px 28px rgba(7, 29, 59, 0.12);
  backdrop-filter: blur(16px);
}

.sticky-cta > div > span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.sticky-cta > div > strong {
  display: block;
  color: var(--text);
  font-size: 18px;
}

.sticky-cta .complete-button {
  min-height: 50px;
  gap: 5px;
  font-size: 16px;
  font-weight: 820;
}

.google-pay-sticky-sdk {
  display: none;
}

.sticky-cta .button-paypal-logo {
  width: 66px;
}

.sticky-cta .button-google-pay-logo {
  width: 88px;
  height: 35px;
}

.sticky-cta .button-apple-pay-mark {
  font-size: 16px;
}

.sticky-cta .button-apple-pay-mark svg {
  width: 17px;
  height: 17px;
}

@media (min-width: 560px) {
  .wallet-grid,
  .two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .three-col {
    grid-template-columns: 1fr 0.85fr 0.85fr;
  }

  .inline-fields {
    grid-template-columns: 1fr 160px;
    align-items: end;
  }
}

@media (min-width: 1024px) {
  body {
    background: linear-gradient(90deg, #fff 0, #fff 50%, var(--bg) 50%, var(--bg) 100%);
  }

  .site-header {
    min-height: 70px;
    padding: 14px max(24px, calc((100vw - 1004px) / 2 + 20px));
  }

  .checkout-shell {
    grid-template-columns: minmax(0, 460px) minmax(360px, 460px);
    justify-content: center;
    gap: 44px;
    width: min(100%, 1004px);
    padding: 20px 20px 64px;
  }

  .checkout-main {
    display: grid;
    align-content: start;
    gap: 10px;
  }

  .checkout-main > .package-selector-section {
    display: none;
  }

  .checkout-main > .checkout-section,
  .checkout-main > .express-card,
  .checkout-main > .checkout-or-divider {
    margin-top: 0;
  }

  .express-card {
    order: 2;
  }

  .checkout-or-divider {
    order: 3;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 24px;
  }

  .contact-capture-section {
    order: 1;
  }

  .shipping-address-section {
    order: 4;
  }

  .payment-section {
    order: 5;
  }

  .mobile-summary-toggle,
  .mobile-summary-panel,
  .mobile-cart,
  .sticky-cta,
  .mobile-cta-block {
    display: none;
  }

  .mobile-guarantee-card,
  .mobile-faq-card {
    display: none;
  }

  .checkout-sidebar {
    display: grid;
    align-content: start;
    gap: 14px;
  }

  .sidebar-sticky {
    position: sticky;
    top: 94px;
    z-index: 8;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0 2px 2px;
    background: var(--bg);
    scrollbar-gutter: stable;
  }

  .sidebar-sticky::before {
    content: none;
  }

  .sidebar-sticky > .desktop-complete,
  .sidebar-sticky > .statement-note {
    display: none;
  }

  .sidebar-support {
    display: grid;
    gap: 14px;
    margin-top: 14px;
  }

  .sidebar-support .guarantee-card,
  .sidebar-support .faq-card {
    margin-top: 0;
  }

  .express-card,
  .checkout-section {
    padding: 22px;
  }

  .checkout-main > .express-card,
  .checkout-main > .checkout-section {
    border: 0;
    border-radius: 0;
    background: transparent;
    padding-right: 0;
    padding-left: 0;
  }

  .express-card {
    padding-top: 8px;
    padding-bottom: 0;
    border-top: 1px solid #e2e8f0;
  }

  .express-card h1 {
    margin-bottom: 12px;
  }

  .shipping-address-section,
  .payment-section {
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
  }

  .contact-capture-section {
    padding-top: 0;
    padding-bottom: 8px;
    border-top: 0;
  }

  .contact-capture-section .section-heading {
    align-items: center;
    margin-bottom: 6px;
  }

  .contact-capture-section .assurance-badge {
    margin-top: 0;
  }

  .section-reassurance {
    margin-bottom: 9px;
  }

  .inline-fields {
    gap: 9px 12px;
    margin-top: 8px;
  }

  .wallet-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 48px;
    gap: 12px;
    align-items: stretch;
  }

  .wallet,
  .apple-pay-button,
  .wallet-paypal-sdk,
  .wallet-google-pay-sdk,
  .wallet-google-pay-fallback {
    width: 100%;
    height: 48px;
    min-height: 48px;
    margin: 0;
  }

  .wallet-paypal-sdk .paypal-buttons,
  .wallet-paypal-sdk iframe,
  .wallet-google-pay-sdk > button {
    height: 48px !important;
    min-height: 48px !important;
  }

  .wallet-grid .apple-pay-fallback,
  .wallet-grid .google-pay-express-lockup,
  .wallet-grid .paypal-wordmark {
    transform: translateY(0);
  }

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

  .desktop-package-slot {
    --desktop-package-media-size: clamp(104px, 8vw, 116px);
    display: grid;
    gap: 12px;
    min-height: 558px;
  }

  .desktop-package-slot .package-selector-section {
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .desktop-package-slot .package-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .package-card {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 252px;
    padding: 12px;
  }

  .desktop-package-slot .package-card {
    --package-media-size: var(--desktop-package-media-size);
    grid-template-columns: var(--desktop-package-media-size) minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 0;
    padding: 12px 28px 12px 12px;
  }

  .desktop-package-slot .package-card.is-selected {
    border-color: #4fa3f7;
    background: #eff8ff;
    box-shadow: inset 0 0 0 1px #9dcaff, 0 1px 4px rgba(11, 99, 206, 0.12);
  }

  .package-media {
    min-height: 98px;
  }

  .desktop-package-slot .package-media {
    width: var(--desktop-package-media-size);
    min-height: var(--desktop-package-media-size);
    padding: 5px 7px 9px;
  }

  .desktop-package-slot .bottle-stack img {
    height: calc(var(--desktop-package-media-size) - 16px);
    max-width: calc(var(--desktop-package-media-size) - 32px);
  }

  .desktop-package-slot .count-bubble {
    top: -11px;
    right: -11px;
    width: 24px;
    height: 24px;
    font-size: 13px;
  }

  .desktop-package-slot .tile-caption-badge {
    bottom: -9px;
    min-height: 20px;
    padding: 2px 7px;
    font-size: 12px;
  }

  .select-control {
    position: absolute;
    top: 50%;
    right: -14px;
    transform: translateY(-50%);
  }

  .desktop-package-slot .select-control {
    position: absolute;
    top: 50%;
    right: -15px;
    width: 30px;
    height: 30px;
    transform: translateY(-50%);
  }

  .package-info {
    padding-top: 0;
  }

  .package-info h3 {
    padding-right: 0;
  }

  .desktop-package-slot .package-info h3 {
    font-size: 16px;
    line-height: 1.16;
  }

  .desktop-package-slot .per-bottle-price {
    margin-bottom: 6px;
    font-size: 16px;
  }

  .desktop-package-slot .package-detail-list {
    gap: 3px;
  }

  .desktop-package-slot .package-detail-list p {
    font-size: 16px;
  }

  .desktop-package-slot .subscribe-box {
    margin-top: 14px;
  }

  .payment-layout {
    display: block;
  }

  .payment-options {
    width: 100%;
  }

  .payment-option,
  .credit-card-option .payment-option-header {
    min-height: 64px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .credit-card-option {
    padding-right: 0;
    padding-left: 0;
  }

  .card-form {
    grid-template-columns: minmax(142px, 0.62fr) minmax(240px, 1fr);
    gap: 14px;
    padding: 16px;
  }

  .card-form .secure-copy,
  .card-form > .form-field:first-of-type,
  .card-form > .form-field:last-of-type {
    grid-column: 1 / -1;
  }

  .billing-toggle,
  .billing-fields {
    padding-right: 16px;
    padding-left: 16px;
  }

  .wallet-guidance-slot {
    padding-right: 16px;
  }

  .desktop-payment-cta {
    display: block;
    margin-top: 16px;
  }

  .checkout-sidebar .summary-product {
    display: none;
  }

  .summary-header {
    padding: 15px 16px;
  }

  .summary-lines {
    padding: 15px 16px 17px;
  }

  .desktop-inline-guarantee.guarantee-card {
    grid-template-columns: minmax(0, 1fr);
    justify-items: stretch;
    gap: 14px;
    padding: 20px;
    text-align: left;
  }

  .desktop-guarantee-heading {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    width: 100%;
  }

  .desktop-guarantee-heading .guarantee-badge-img {
    justify-self: start;
    width: 132px;
    height: auto;
  }

  .desktop-inline-guarantee.guarantee-card h2 {
    max-width: none;
    font-size: 1.75rem;
    line-height: 1.12;
    text-align: left;
    text-wrap: balance;
  }

  .desktop-inline-guarantee.guarantee-card p {
    max-width: none;
    font-size: 1rem;
    line-height: 1.55;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .sticky-cta {
    display: none;
  }

  .checkout-shell {
    padding-bottom: 32px;
  }

  .mobile-faq-card {
    margin-bottom: 14px;
  }
}

@media (min-width: 1180px) {
  .package-card {
    min-height: 234px;
  }

  .desktop-package-slot .package-card {
    min-height: 0;
  }

  .summary-product img {
    width: 74px;
    height: 60px;
  }
}

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

body.copy-trim-reassurance .contact-capture-section > .section-reassurance,
body.copy-trim-reassurance .payment-secure-line {
  display: none;
}

body.copy-trim-reassurance .contact-capture-section .section-heading,
body.copy-trim-reassurance .payment-heading {
  margin-bottom: 14px;
}
