:root {
  --ink: #17322f;
  --muted: #657370;
  --line: #dce8e4;
  --paper: #fbfcf7;
  --surface: #ffffff;
  --mint: #dbf3e7;
  --mint-strong: #0c7c64;
  --leaf: #0f5f4f;
  --lime: #d7f25b;
  --gold: #f6c94f;
  --blue: #dbeafe;
  --danger: #9d3c2f;
  --shadow: 0 18px 55px rgba(23, 50, 47, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  padding-bottom: 0;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.cart-drawer-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(251, 252, 247, 0.82);
  border-bottom: 1px solid rgba(220, 232, 228, 0.6);
  backdrop-filter: saturate(140%) blur(18px);
  transition: padding 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  padding-top: 8px;
  padding-bottom: 8px;
  background: rgba(251, 252, 247, 0.95);
  border-bottom-color: rgba(220, 232, 228, 0.95);
  box-shadow: 0 8px 28px rgba(23, 50, 47, 0.1);
}

/* Right-side cluster: nav links + cart icon + mobile toggle */
.header-bar {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  border-radius: 50%;
  padding: 5px;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 28px);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.top-nav a:not(.nav-cart) {
  position: relative;
  padding: 6px 1px;
  color: var(--muted);
  transition: color 0.2s ease;
}

.top-nav a:not(.nav-cart)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 999px;
  background: var(--leaf);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.26s cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

.top-nav a:not(.nav-cart):hover::after,
.top-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.top-nav a[aria-current="page"] {
  color: var(--leaf);
}

/* Cart icon button (replaces the Checkout text link) */
.nav-cart {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--ink);
  color: white;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-cart:hover {
  background: var(--leaf);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(15, 95, 79, 0.26);
}

.nav-cart[aria-current="page"] {
  background: var(--leaf);
}

.nav-cart .icon {
  width: 20px;
  height: 20px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

.site-header.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta {
  padding: 0 18px;
  background: var(--ink);
  color: white;
  font-size: 14px;
}

.cart-link {
  gap: 8px;
}

.cart-link.has-items {
  background: var(--leaf);
  box-shadow: 0 12px 26px rgba(15, 95, 79, 0.18);
}

.cart-badge {
  display: inline-grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.cart-badge[hidden],
.cart-header-total[hidden] {
  display: none;
}

.cart-header-total {
  color: var(--lime);
  font-size: 13px;
}

.floating-cart {
  position: fixed;
  right: clamp(16px, 4vw, 34px);
  bottom: calc(18px + env(safe-area-inset-bottom));
  z-index: 35;
  min-height: 56px;
  padding-inline: 22px;
  box-shadow: 0 18px 44px rgba(15, 95, 79, 0.22);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.floating-cart.has-items {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.button {
  padding: 0 20px;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.floating-cart:hover {
  -webkit-transform: translateY(-1px) translateZ(0);
  transform: translateY(-1px) translateZ(0);
}

.primary {
  background: var(--leaf);
  color: white;
  box-shadow: 0 12px 26px rgba(15, 95, 79, 0.18);
}

.primary:hover {
  background: #0a4d40;
}

.secondary {
  background: white;
  color: var(--leaf);
  border: 1px solid var(--line);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 44px);
  padding: clamp(46px, 7vw, 82px) clamp(18px, 5vw, 72px) clamp(44px, 5vw, 64px);
  background:
    radial-gradient(circle at 85% 18%, rgba(215, 242, 91, 0.42), transparent 28%),
    linear-gradient(135deg, #f7fbf0 0%, #e5f5ec 46%, #fbfcf7 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--mint-strong);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.01em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(26px, 3.1vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
  letter-spacing: 0;
}

.hero-text {
  max-width: 660px;
  color: #40524e;
  font-size: clamp(17px, 2vw, 21px);
}

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

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span {
  padding: 8px 12px;
  border: 1px solid rgba(15, 95, 79, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--leaf);
  font-size: 13px;
  font-weight: 800;
}

.hero-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 860px;
}

.hero-card {
  min-height: 180px;
  padding: 22px;
  border: 1px solid rgba(23, 50, 47, 0.08);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.lead-card {
  grid-column: auto;
  min-height: 230px;
  background:
    linear-gradient(rgba(23, 50, 47, 0.72), rgba(23, 50, 47, 0.52)),
    url("https://images.unsplash.com/photo-1505751172876-fa1923c5c528?auto=format&fit=crop&w=1200&q=80") center/cover;
  color: white;
}

.tirzepatide-card {
  background:
    linear-gradient(rgba(23, 50, 47, 0.74), rgba(23, 50, 47, 0.48)),
    url("https://images.unsplash.com/photo-1733916968091-3c017d6a2077?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.card-label,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.lead-card strong {
  display: block;
  max-width: 280px;
  margin: 36px 0 10px;
  font-size: clamp(20px, 1.9vw, 27px);
  line-height: 1.05;
}

.lead-card p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.hero-disclaimer {
  max-width: 620px;
  margin: 20px 0 0;
  padding: 12px 0 0 14px;
  border-left: 3px solid rgba(15, 95, 79, 0.18);
  color: #596966;
  line-height: 1.45;
}

.offers-section {
  background: #fbfcf7;
}

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

.offer-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  align-items: start;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(23, 50, 47, 0.06);
}

.offer-card-highlight {
  background:
    linear-gradient(135deg, rgba(255, 249, 220, 0.95), rgba(219, 243, 231, 0.88)),
    url("https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&w=1400&q=80") center/cover;
}

.offer-card h3 {
  max-width: 640px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.04;
}

.offer-card p {
  max-width: 660px;
  color: var(--muted);
  font-size: 17px;
}

.offer-card ul {
  display: grid;
  gap: 8px;
  margin: 8px 0 24px;
  padding-left: 20px;
  color: var(--leaf);
  font-weight: 800;
}

.offer-card .button {
  margin-top: auto;
}

.section {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

/* Tighten the gap between the (sticky) header and the first block on every page */
main > section:first-of-type {
  padding-top: clamp(24px, 3vw, 44px);
}

.retatrutide-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
  background:
    radial-gradient(circle at 12% 0%, rgba(215, 242, 91, 0.16), transparent 44%),
    linear-gradient(135deg, var(--leaf) 0%, var(--ink) 100%);
  color: white;
}

.retatrutide-section h2 {
  color: white;
}

.retatrutide-copy .eyebrow {
  color: var(--lime);
}

.retatrutide-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

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

.retatrutide-points article {
  min-height: 250px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
}

.retatrutide-points span {
  display: inline-flex;
  margin-bottom: 40px;
  color: var(--lime);
  font-weight: 800;
}

.retatrutide-points h3 {
  color: white;
}

.retatrutide-points p {
  color: rgba(255, 255, 255, 0.8);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
  background: #eaf6ef;
}

.catalog-section {
  background: #eaf6ef;
}

.split-section > div:first-child p,
.section-heading p,
.catalog-heading p,
.form-heading p,
.faq-section > div:first-child p {
  color: var(--muted);
}

.feature-grid,
.product-grid,
.comparison-grid,
.results-grid,
.info-section {
  display: grid;
  gap: 16px;
}

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

.product-card,
.feature-card,
.comparison-card,
.result-card,
.info-section article,
.cart-panel,
.checkout-form {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  box-shadow:
    0 1px 2px rgba(23, 50, 47, 0.04),
    0 14px 32px rgba(23, 50, 47, 0.08);
}

.feature-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
}

.feature-card.is-selected,
.product-card.is-selected {
  border-color: var(--mint-strong);
  box-shadow: 0 14px 34px rgba(12, 124, 100, 0.14);
}

.feature-card.is-selected {
  background: #f3fbf5;
}

.feature-card strong,
.product-price {
  font-size: 28px;
  line-height: 1;
}

.feature-card p,
.product-card p {
  color: var(--muted);
}

.feature-card footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.product-action {
  display: grid;
  gap: 8px;
  margin-left: auto;
  justify-items: end;
}

.compare-section {
  background: var(--paper);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.compare-tool {
  max-width: 1040px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 34px rgba(23, 50, 47, 0.08);
  overflow: hidden;
}

.segmented-control {
  display: inline-flex;
  gap: 4px;
  margin: 20px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f4f8ef;
}

.compare-tab {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
}

.compare-tab.active {
  background: var(--ink);
  color: white;
  box-shadow: 0 8px 18px rgba(23, 50, 47, 0.16);
}

.comparison-table-wrap {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  border-top: 1px solid var(--line);
  text-align: left;
}

.comparison-table th {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.comparison-table td {
  color: var(--ink);
  font-weight: 800;
}

.comparison-table .deer-row {
  background: #f3fbf5;
}

.comparison-table .deer-row td:first-child::after {
  content: "Best value";
  display: inline-flex;
  margin-left: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.comparison-note {
  margin: 0;
  padding: 18px 20px 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}

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

.comparison-card {
  min-height: 260px;
  padding: 24px;
}

.comparison-card strong {
  display: block;
  margin-top: 22px;
  font-size: 34px;
  line-height: 1;
}

.comparison-card p {
  color: var(--muted);
}

.comparison-card.deer-win {
  background: var(--ink);
  color: white;
}

.comparison-card.deer-win p {
  color: rgba(255, 255, 255, 0.76);
}

.pill.muted {
  background: #eef2ef;
  color: var(--muted);
}

.catalog-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

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

.filter-button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
}

.filter-button.active {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

.catalog-carousel {
  position: relative;
}

.catalog-cta {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.product-grid {
  display: grid;
  grid-auto-columns: minmax(300px, calc((100% - 48px) / 4));
  grid-auto-flow: column;
  grid-template-columns: none;
  gap: 16px;
  margin-inline: -4px;
  padding: 4px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-padding: 4px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.product-grid::-webkit-scrollbar {
  display: none;
}

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow);
  color: var(--ink);
  cursor: pointer;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-50%);
}

.carousel-button:hover {
  background: var(--lime);
}

.carousel-button-prev {
  left: -22px;
}

.carousel-button-next {
  right: -22px;
}

.product-card {
  display: flex;
  scroll-snap-align: start;
  min-height: 250px;
  flex-direction: column;
  gap: 16px;
  padding: 18px;
}

.product-card.is-selected {
  background:
    linear-gradient(0deg, rgba(219, 243, 231, 0.42), rgba(219, 243, 231, 0.42)),
    var(--surface);
}

.product-card header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.product-category {
  color: var(--mint-strong);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card h3 {
  margin-top: 8px;
}

.product-card footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: auto;
}

.product-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: end;
}

.add-button,
.qty-button,
.remove-button {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}

.add-button {
  min-height: 40px;
  padding: 0 14px;
  background: var(--lime);
  color: var(--ink);
}

.add-button:hover {
  background: #c8e84a;
}

.is-selected .add-button {
  background: var(--ink);
  color: white;
}

.is-selected .add-button:hover {
  background: var(--leaf);
}

.details-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--leaf);
  font-size: 14px;
  font-weight: 800;
}

.details-link:hover {
  border-color: var(--mint-strong);
  background: #f3fbf5;
}

.details-link[hidden] {
  display: none;
}

.strong-link {
  width: fit-content;
  margin-top: 12px;
  background: var(--lime);
  color: var(--ink);
}

.hero-card .strong-link {
  position: relative;
  z-index: 1;
  margin-top: 8px;
}

.info-section {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--ink);
}

.info-section article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: white;
}

.info-section p {
  color: rgba(255, 255, 255, 0.74);
}

.info-icon {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--lime);
  font-weight: 800;
}

.results-section {
  background: #fbfcf7;
}

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

.result-card {
  padding: clamp(22px, 3vw, 30px);
}

.result-kicker {
  color: var(--mint-strong);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.result-card strong {
  display: block;
  margin: 16px 0 14px;
  color: var(--leaf);
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 0.98;
}

.result-card p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.result-timeline {
  color: var(--leaf);
  font-weight: 800;
}

.result-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 0;
}

.result-stats div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f4f8ef;
}

.result-stats dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.result-stats dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.results-note {
  max-width: 820px;
  margin-top: 18px;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.35fr) minmax(0, 1fr);
  gap: 36px;
  background: #eaf6ef;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(23, 50, 47, 0.06);
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  min-height: 64px;
  padding: 20px 56px 20px 20px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--leaf);
  transform: translateY(-50%);
  font-size: 20px;
  line-height: 1;
}

.faq-list details[open] summary {
  border-bottom: 1px solid var(--line);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 18px 20px 20px;
  color: var(--muted);
}

.product-page {
  background: var(--paper);
}

.program-page {
  background: var(--paper);
}

.product-detail-section {
  background:
    radial-gradient(circle at 82% 12%, rgba(215, 242, 91, 0.38), transparent 28%),
    linear-gradient(135deg, #f7fbf0 0%, #e5f5ec 50%, #fbfcf7 100%);
}

.breadcrumbs {
  margin-bottom: clamp(16px, 2.5vw, 24px);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 700;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.breadcrumbs li:not(:first-child)::before {
  content: "";
  width: 6px;
  height: 6px;
  border: solid var(--muted);
  border-width: 1.5px 1.5px 0 0;
  transform: rotate(45deg);
  opacity: 0.55;
}

.breadcrumbs a,
.breadcrumbs [aria-current="page"] {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--muted);
}

.breadcrumbs a {
  transition: color 0.2s ease, background 0.2s ease;
}

.breadcrumbs a:hover {
  color: var(--leaf);
  background: rgba(15, 95, 79, 0.09);
}

.breadcrumbs [aria-current="page"] {
  color: var(--ink);
  background: rgba(23, 50, 47, 0.06);
}

.product-detail-layout {
  max-width: 860px;
}

.product-detail-copy {
  max-width: 720px;
}

.product-detail-copy h1 {
  font-size: clamp(44px, 6vw, 78px);
}

.product-detail-summary {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.product-detail-price {
  display: block;
  margin: 26px 0;
  color: var(--leaf);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.product-info-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.35fr) minmax(0, 1fr);
  gap: 36px;
}

.product-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.product-info-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(23, 50, 47, 0.06);
}

.product-info-grid p,
.product-info-grid li {
  color: var(--muted);
}

.product-info-grid p a {
  color: var(--leaf);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-info-grid ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin: 0;
}

.program-hero {
  background:
    linear-gradient(135deg, #f7fbf0 0%, #e5f5ec 54%, #fbfcf7 100%);
}

.program-hero h1 {
  max-width: 960px;
  font-size: clamp(44px, 6vw, 80px);
}

.program-hero .hero-text {
  max-width: 760px;
}

.program-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 18px;
}

.program-overview {
  background: #fff9dc;
}

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

.program-grid article,
.program-step-list article,
.coach-stats div,
.program-final-cta {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(23, 50, 47, 0.06);
}

.program-grid article {
  min-height: 245px;
  padding: 24px;
}

.program-grid p,
.coach-section p,
.program-step-list p,
.program-final-cta p {
  color: var(--muted);
}

.coach-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 0.55fr);
  gap: 36px;
  align-items: start;
  background: #fbfcf7;
}

.coach-section > div:first-child {
  max-width: 720px;
}

.coach-stats {
  display: grid;
  gap: 12px;
  margin: 0;
}

.coach-stats div {
  padding: 20px;
}

.coach-stats dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.coach-stats dd {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.08;
}

.program-step-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.program-step-list article {
  padding: 22px;
}

.program-step-list strong {
  display: block;
  margin-bottom: 10px;
  color: var(--leaf);
  font-size: 22px;
}

.program-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding: 24px;
  background: var(--ink);
  color: white;
}

.program-final-cta h3,
.program-final-cta p {
  margin: 0;
}

.program-final-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.checkout-page {
  background: #f4f8ef;
}

.checkout-section {
  display: block;
  padding-top: clamp(26px, 4vw, 44px);
  padding-bottom: clamp(40px, 6vw, 72px);
  background: #f4f8ef;
}

.checkout-head {
  max-width: 760px;
  margin-bottom: clamp(20px, 3vw, 30px);
}

.checkout-head h1 {
  margin: 10px 0 8px;
  font-size: clamp(27px, 3.2vw, 38px);
}

.checkout-sub {
  max-width: 560px;
  color: var(--muted);
  font-size: 16px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(310px, 0.4fr) minmax(0, 0.6fr);
  gap: 22px;
  align-items: start;
}

.checkout-review {
  position: sticky;
  top: 92px;
}

.cart-panel,
.checkout-form {
  padding: clamp(20px, 3vw, 32px);
}

.checkout-form {
  max-width: 920px;
  width: 100%;
  margin-inline: auto;
}

.checkout-page .checkout-form {
  max-width: none;
  margin-inline: 0;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(23, 50, 47, 0.34);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(460px, calc(100vw - 24px));
  height: 100dvh;
  padding: 22px;
  border-left: 1px solid var(--line);
  background: var(--paper);
  box-shadow: -22px 0 60px rgba(23, 50, 47, 0.16);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 220ms ease;
}

body.cart-drawer-open .cart-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.cart-drawer-open .cart-drawer {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
}

.cart-drawer-header h2 {
  margin-bottom: 0;
  font-size: 30px;
}

.drawer-close {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--leaf);
  cursor: pointer;
  font-weight: 800;
}

.drawer-close:hover {
  background: var(--mint);
}

.cart-drawer .cart-panel {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.drawer-checkout {
  width: 100%;
  margin-top: 20px;
}

.compact {
  margin-bottom: 18px;
}

.cart-items {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.cart-items.empty {
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.cart-line strong {
  display: block;
  margin-bottom: 4px;
}

.cart-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-button,
.remove-button {
  width: 32px;
  height: 32px;
  background: #eef5f1;
  color: var(--ink);
}

.remove-button {
  width: auto;
  padding: 0 10px;
  color: var(--danger);
}

.region-row {
  display: grid;
  gap: 8px;
  margin: 20px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

select,
input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  padding: 0 12px;
}

select:focus,
input:focus {
  outline: 3px solid rgba(12, 124, 100, 0.16);
  border-color: var(--mint-strong);
}

input.is-invalid {
  border-color: var(--danger);
  background: #fff8f6;
}

input.is-invalid:focus {
  outline-color: rgba(157, 60, 47, 0.16);
}

.totals {
  display: grid;
  gap: 10px;
  margin: 0;
}

.totals div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.totals dt {
  color: var(--muted);
}

.totals dd {
  margin: 0;
  font-weight: 800;
}

.grand-total {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 22px;
}

.delivery-summary {
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f4f8ef;
}

.delivery-cutoff-note {
  margin: 8px 0 0;
}

.delivery-summary summary {
  cursor: pointer;
  padding: 14px;
  color: var(--leaf);
  font-weight: 800;
}

.delivery-summary dl {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0 14px 14px;
}

.delivery-summary div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.delivery-summary dt {
  color: var(--muted);
}

.delivery-summary dd {
  margin: 0;
  text-align: right;
  font-weight: 800;
}

.delivery-summary .fine-print {
  margin: 0;
  padding: 0 14px 14px;
}

.fine-print {
  color: var(--muted);
  font-size: 13px;
}

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

label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

label input {
  margin-top: 8px;
}

.field-help,
.field-error {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.35;
}

.field-help {
  color: var(--muted);
  font-weight: 600;
}

.field-error {
  min-height: 16px;
  color: var(--danger);
}

.full {
  grid-column: 1 / -1;
}

.address-field {
  position: relative;
}

.address-suggestions {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 12;
  display: none;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 34px rgba(23, 50, 47, 0.14);
  overflow: hidden;
}

.address-suggestions.active {
  display: grid;
}

.address-suggestion {
  min-height: 44px;
  padding: 10px 12px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: white;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-weight: 800;
}

.address-suggestion:last-child {
  border-bottom: 0;
}

.address-suggestion:hover,
.address-suggestion:focus {
  background: #f3fbf5;
  outline: none;
}

.submit-button {
  width: 100%;
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--mint-strong);
  font-weight: 800;
}

.confirmation-page {
  background: var(--paper);
}

.confirmation-hero {
  padding-bottom: clamp(28px, 4vw, 44px);
  background:
    linear-gradient(135deg, #f7fbf0 0%, #e5f5ec 54%, #fbfcf7 100%);
}

.confirmation-hero h1 {
  max-width: 900px;
}

.confirmation-hero .hero-text {
  max-width: 820px;
}

/* Primary pair: pay (left, dominant) + order summary (right) */
.confirmation-action {
  padding-top: clamp(28px, 4vw, 44px);
}

.confirmation-action[hidden],
.confirmation-secondary[hidden] {
  display: none;
}

.confirmation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.75fr);
  gap: 18px;
  align-items: start;
}

/* Section heading with an icon chip */
.panel-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 4px;
}

.panel-head > div {
  display: grid;
  gap: 2px;
}

.panel-head h2 {
  margin: 0;
}

.panel-head .eyebrow {
  margin: 0;
}

.panel-icon {
  display: inline-grid;
  flex: none;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--leaf);
  color: white;
}

.panel-icon-muted {
  background: var(--mint);
  color: var(--leaf);
}

.icon {
  width: 20px;
  height: 20px;
  flex: none;
}

/* PAY PANEL: the can't-miss primary action */
.pay-panel {
  padding: clamp(22px, 3vw, 34px);
  border: 2px solid var(--leaf);
  border-radius: 10px;
  background: #f3fbf5;
  box-shadow: 0 18px 44px rgba(15, 95, 79, 0.16);
}

.pay-panel-head .eyebrow {
  color: var(--leaf);
}

.pay-panel-head h2 {
  margin-top: 6px;
  font-size: clamp(24px, 3vw, 30px);
}

.pay-amount {
  display: grid;
  gap: 4px;
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 8px;
  background: var(--leaf);
  color: white;
}

.pay-amount-label {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.pay-amount-value {
  font-size: clamp(34px, 6vw, 44px);
  line-height: 1;
}

.pay-amount-hint {
  font-size: 13px;
  font-weight: 700;
  color: var(--lime);
}

.pay-fields {
  margin: 20px 0 0;
}

.pay-fields div {
  display: grid;
  grid-template-columns: minmax(120px, 0.34fr) minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(15, 95, 79, 0.16);
}

.pay-fields dt {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.pay-fields dt .icon {
  width: 16px;
  height: 16px;
  color: var(--leaf);
}

.pay-fields dd {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  word-break: break-word;
}

.pay-steps {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: pay-step;
}

.pay-steps li {
  position: relative;
  padding-left: 40px;
  color: var(--muted);
  font-weight: 600;
}

.pay-steps li strong {
  color: var(--ink);
  font-weight: 800;
}

.pay-steps li::before {
  counter-increment: pay-step;
  content: counter(pay-step);
  position: absolute;
  left: 0;
  top: -2px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--leaf);
  font-size: 14px;
  font-weight: 800;
}

.payment-warning {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 22px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(157, 60, 47, 0.18);
  color: var(--danger);
  font-weight: 800;
}

.payment-warning .icon {
  flex: none;
  margin-top: 1px;
  color: var(--danger);
}

/* ORDER SUMMARY: reference companion */
.order-ref {
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(23, 50, 47, 0.06);
}

.order-ref .eyebrow {
  color: var(--muted);
}

.order-ref h2 {
  margin: 6px 0 4px;
}

.order-ref-meta {
  margin: 14px 0 20px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
}

.order-ref-meta div:first-child {
  padding-top: 0;
  border-top: 0;
}

/* SECONDARY: demoted below the fold */
.confirmation-secondary {
  background: #f4f8ef;
}

.confirmation-layout.secondary {
  margin-top: 0;
}

.confirmation-panel {
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(23, 50, 47, 0.06);
}

.confirmation-panel h2 {
  margin-bottom: 12px;
}

.confirmation-panel p {
  color: var(--muted);
}

.confirmation-panel .button {
  margin-top: 18px;
}

.confirmation-meta {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.confirmation-meta div {
  display: grid;
  grid-template-columns: minmax(130px, 0.32fr) minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.confirmation-meta dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.confirmation-meta dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.confirmation-items {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.confirmation-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.confirmation-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.confirmation-totals {
  margin-top: 16px;
}

.confirmation-address {
  font-size: 17px;
  font-weight: 700;
}

.confirmation-empty {
  max-width: 680px;
  margin: clamp(40px, 6vw, 72px) clamp(18px, 5vw, 72px);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(23, 50, 47, 0.06);
}

/* Order success animation: logo, spinner, then checkmark, then reveal page */
.order-success {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, #f7fbf0 0%, #e5f5ec 54%, #fbfcf7 100%);
  transition: opacity 520ms ease;
}

.order-success-playing .order-success {
  display: grid;
}

.order-success.is-hiding {
  opacity: 0;
}

.order-success-card {
  display: grid;
  justify-items: center;
  gap: 22px;
  text-align: center;
}

.order-success-logo {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  animation: os-pop 520ms ease both;
}

.order-success-logo img {
  width: 100%;
  height: 100%;
}

.order-success-spinner {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 5px solid rgba(15, 95, 79, 0.18);
  border-top-color: var(--leaf);
  animation: os-spin 760ms linear infinite;
}

.order-success.is-success .order-success-spinner {
  display: none;
}

.order-success-check {
  display: none;
  width: 72px;
  height: 72px;
}

.order-success.is-success .order-success-check {
  display: block;
}

.osc-ring {
  stroke: var(--leaf);
  stroke-width: 3;
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  animation: os-draw 420ms ease forwards;
}

.osc-tick {
  stroke: var(--leaf);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: os-draw 300ms 360ms ease forwards;
}

.order-success-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  opacity: 0;
}

.order-success.is-success .order-success-text {
  animation: os-fade 360ms 200ms ease forwards;
}

@keyframes os-spin {
  to { transform: rotate(360deg); }
}

@keyframes os-pop {
  from { opacity: 0; transform: scale(0.82); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes os-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes os-fade {
  to { opacity: 1; }
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) auto minmax(260px, 1fr);
  align-items: start;
  gap: 24px;
  padding: 36px clamp(18px, 5vw, 72px);
  background: #102622;
  color: white;
}

body.has-floating-cart .site-footer {
  padding-bottom: calc(120px + env(safe-area-inset-bottom));
}

.site-footer p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-email {
  color: var(--lime);
  font-weight: 800;
}

.footer-email:hover {
  color: white;
}

.catalog-group + .catalog-group {
  margin-top: 40px;
}

.catalog-group-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.catalog-group-heading span {
  color: var(--muted);
  font-weight: 800;
}

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

@media (max-width: 1080px) {
  .hero,
  .split-section,
  .retatrutide-section,
  .faq-section,
  .product-info-section,
  .coach-section,
  .confirmation-layout,
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .checkout-review {
    position: static;
  }

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

  .product-grid {
    grid-auto-columns: minmax(300px, calc((100% - 16px) / 2));
  }

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

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

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

  .retatrutide-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: center;
    gap: 12px;
  }

  /* Slim the brand on mobile so the cart icon + toggle always fit the bar */
  .brand {
    flex: 1 1 auto;
    min-width: 0;
    gap: 8px;
  }

  .brand > span:last-child {
    min-width: 0;
  }

  .brand strong {
    max-width: 46vw;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 16px;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    flex: none;
  }

  .header-bar {
    flex: none;
    gap: 10px;
  }

  .nav-cart {
    width: 40px;
    height: 40px;
  }

  .nav-toggle {
    display: inline-flex;
    width: 40px;
    height: 40px;
  }

  .top-nav {
    display: none;
  }

  /* Mobile menu: dropdown panel below the header (cart stays in the bar) */
  .site-header.nav-open .top-nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px clamp(18px, 4vw, 56px) 14px;
    background: rgba(251, 252, 247, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(23, 50, 47, 0.12);
    backdrop-filter: saturate(140%) blur(18px);
    font-size: 16px;
  }

  .site-header.nav-open .top-nav a {
    padding: 14px 2px;
    border-top: 1px solid var(--line);
  }

  .site-header.nav-open .top-nav a:first-child {
    border-top: 0;
  }

  .header-cta {
    min-width: 100px;
  }

  .floating-cart {
    right: 16px;
    left: 16px;
    width: auto;
  }

  .cart-header-total {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hero-panel,
  .offer-grid,
  .comparison-grid,
  .product-grid,
  .info-section,
  .results-grid,
  .result-stats,
  .product-info-grid,
  .program-grid,
  .program-step-list,
  .confirmation-layout,
  .site-footer,
  .catalog-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .catalog-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .filters {
    width: 100%;
  }

  .filter-button {
    flex: 1 1 auto;
  }

  .product-grid {
    grid-auto-flow: row;
    grid-auto-columns: initial;
    margin-inline: 0;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .carousel-button {
    display: none;
  }

  .cart-drawer {
    width: 100vw;
    padding: 18px;
  }

  .cart-line {
    grid-template-columns: 1fr;
  }

  .cart-controls {
    flex-wrap: wrap;
  }

  .confirmation-meta div,
  .pay-fields div {
    grid-template-columns: 1fr;
  }

  .segmented-control {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 40px);
  }

  .site-footer {
    align-items: stretch;
  }

  .program-final-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .feature-card footer {
    align-items: start;
    flex-direction: column;
  }

  .product-action {
    justify-items: start;
  }

  .product-card-actions {
    justify-content: start;
  }

  .lead-card {
    min-height: 270px;
  }
}

/* ============================================================
   Visual depth + motion (see motion.js)
   ============================================================ */

/* Lift + deepen cards on hover for tactility */
.offer-card,
.feature-card,
.result-card,
.info-section article,
.program-grid article,
.program-step-list article,
.product-info-grid article,
.hero-card,
.product-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

@media (hover: hover) {
  .offer-card:hover,
  .feature-card:hover,
  .result-card:hover,
  .info-section article:hover,
  .program-grid article:hover,
  .program-step-list article:hover,
  .product-info-grid article:hover,
  .product-card:hover {
    transform: translateY(-5px);
    box-shadow:
      0 2px 4px rgba(23, 50, 47, 0.05),
      0 26px 50px rgba(23, 50, 47, 0.14);
    border-color: rgba(12, 124, 100, 0.32);
  }

  .lead-card:hover,
  .hero-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(15, 95, 79, 0.28);
  }

  .result-stats div {
    transition: transform 0.2s ease, background 0.2s ease;
  }

  .result-card:hover .result-stats div {
    background: #eef7ee;
  }
}

/* Buttons gain a little depth */
.button.primary,
.header-cta {
  box-shadow: 0 10px 22px rgba(15, 95, 79, 0.18);
}

.button.primary:hover {
  box-shadow: 0 16px 30px rgba(15, 95, 79, 0.26);
}

/* Section eyebrows get a small accent tick for less flatness */
.section-heading .eyebrow::before,
.offer-card .eyebrow::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  margin-right: 8px;
  vertical-align: middle;
  border-radius: 999px;
  background: var(--lime);
}

/* Scroll reveal: only applied (by motion.js) to off-screen blocks */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* Animated weight-loss bar injected into result cards */
.weight-bar {
  margin: 16px 0 4px;
}

.weight-bar-track {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: var(--mint);
  overflow: hidden;
}

.weight-bar-fill {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mint-strong), var(--leaf));
  transition: width 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .weight-bar-fill {
    transition: none;
  }
}
