:root {
  --yellow-primary: #ffc400;
  --yellow-bright: #ffd429;
  --yellow-soft: #fff1b8;
  --yellow-pale: #fff8e2;
  --red-primary: #d90f0f;
  --red-dark: #a90808;
  --red-soft: #fce6e3;
  --black: #111111;
  --black-soft: #181818;
  --charcoal: #242424;
  --charcoal-light: #343434;
  --cream: #fff9ec;
  --off-white: #fffdf7;
  --white: #ffffff;
  --text-dark: #151515;
  --text-medium: #4d4d4d;
  --text-light: #f6f2ea;
  --text-muted-light: #c8c8c8;
  --border-dark: #3c3c3c;
  --border-light: #e9ddbd;
  --forest: var(--black);
  --charcoal-green: var(--black-soft);
  --sage: var(--yellow-soft);
  --herbal: var(--red-primary);
  --gold: var(--yellow-primary);
  --text: var(--text-dark);
  --text-soft: var(--text-medium);
  --border: var(--border-light);
  --success: #337a52;
  --warning-background: var(--yellow-pale);
  --danger: #b84b45;
  --warning: #ffb900;
  --shadow-soft: 0 12px 30px rgba(35, 25, 0, 0.12);
  --shadow-medium: 0 16px 40px rgba(0, 0, 0, 0.17);
  --shadow-dark: 0 20px 45px rgba(0, 0, 0, 0.28);
  --font-display: "Anton", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: var(--font-display);
  --sans: var(--font-body);
  --max-width: 1200px;
  --radius-xs: 10px;
  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --shadow-sm: var(--shadow-soft);
  --shadow-md: var(--shadow-medium);
  --shadow-lg: var(--shadow-dark);
  --header-height: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(183, 150, 85, 0.12), transparent 26%),
    linear-gradient(180deg, #f8f4eb 0%, var(--cream) 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

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

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

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

textarea {
  resize: vertical;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

main,
section {
  scroll-margin-top: 124px;
}

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

.container {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 76px 0;
}

.section-cream {
  background: rgba(245, 240, 230, 0.8);
}

.section-white {
  background: rgba(255, 255, 255, 0.92);
}

.section-sage {
  background: linear-gradient(180deg, #e2e8dc 0%, #d4dfcd 100%);
}

.section-forest {
  background:
    radial-gradient(circle at top right, rgba(183, 150, 85, 0.26), transparent 24%),
    linear-gradient(135deg, var(--forest) 0%, var(--charcoal-green) 100%);
  color: var(--cream);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.section-head h2,
.display-title,
.page-title,
.checkout-title,
.success-title {
  margin: 0;
  font-family: var(--serif);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.section-head h2 {
  font-size: clamp(2.1rem, 3vw, 3rem);
  color: var(--forest);
}

.section-forest .section-head h2 {
  color: var(--white);
}

.section-head p,
.lead,
.page-lead,
.muted {
  color: var(--text-soft);
}

.section-forest .section-head p,
.section-forest .page-lead,
.section-forest .lead,
.section-forest .muted {
  color: var(--sage);
}

.lead {
  font-size: 1.0625rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(32, 56, 44, 0.18);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #274736;
}

.btn-secondary {
  border-color: rgba(32, 56, 44, 0.18);
  background: rgba(255, 255, 255, 0.74);
  color: var(--forest);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--forest);
  background: rgba(32, 56, 44, 0.08);
}

.btn-gold {
  background: var(--gold);
  color: #35280f;
  box-shadow: 0 10px 24px rgba(183, 150, 85, 0.24);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: #c7a468;
}

.btn-block {
  width: 100%;
}

.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.38);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: btn-spin 0.8s linear infinite;
}

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

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 12px;
  color: var(--forest);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.icon-btn:hover,
.icon-btn:focus-visible {
  background: rgba(32, 56, 44, 0.08);
}

.icon-btn svg,
.btn svg,
.inline-icon svg,
.feature-check svg,
.contact-card svg,
.footer-social svg,
.faq-toggle svg,
.policy-card svg,
.tracker-step svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.badge-gold {
  background: rgba(183, 150, 85, 0.18);
  color: #6b5428;
}

.badge-soft {
  background: rgba(203, 213, 196, 0.5);
  color: var(--forest);
}

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

.price-current {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--forest);
}

.price-compare {
  color: var(--text-soft);
  font-size: 1.15rem;
  text-decoration: line-through;
}

.price-save {
  background: rgba(183, 150, 85, 0.2);
  color: #6d5527;
}

.panel,
.card,
.glass-card {
  border: 1px solid rgba(221, 217, 207, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.card {
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover,
.card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-body {
  padding: 24px;
}

.card-media {
  position: relative;
  overflow: hidden;
}

.card-media .image-frame {
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(221, 217, 207, 0.92);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(203, 213, 196, 0.36)),
    linear-gradient(180deg, #f4efe4 0%, #e7e2d5 100%);
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.image-frame.is-ready img {
  opacity: 1;
}

.image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  text-align: center;
  color: var(--forest);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.76), transparent 48%),
    linear-gradient(135deg, rgba(203, 213, 196, 0.74), rgba(245, 240, 230, 0.94));
}

.image-frame.is-ready .image-placeholder {
  opacity: 0;
  pointer-events: none;
}

.product-image img,
.hero-media img,
.product-gallery img,
.cart-line-item img,
.checkout-line-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  visibility: visible;
}

.product-image,
.product-gallery,
.cart-line-item .image-frame,
.checkout-line-item .image-frame {
  width: 100%;
  margin: 0;
}

.image-placeholder strong {
  font-size: 0.94rem;
  font-weight: 800;
}

.image-placeholder small {
  font-size: 0.72rem;
  color: var(--text-soft);
  word-break: break-word;
}

.image-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(24, 39, 31, 0.08);
}

.announce-bar {
  position: sticky;
  top: 0;
  z-index: 220;
  min-height: 38px;
  background: var(--charcoal-green);
  color: var(--sage);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.announce-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 38px;
  padding: 6px 16px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.announce-track svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.site-header {
  position: sticky;
  top: 38px;
  z-index: 210;
  backdrop-filter: blur(14px);
  background: rgba(245, 240, 230, 0.9);
  border-bottom: 1px solid rgba(221, 217, 207, 0.92);
}

.header-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: var(--header-height);
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  background: linear-gradient(135deg, rgba(183, 150, 85, 0.22), rgba(32, 56, 44, 0.08));
  box-shadow: inset 0 0 0 1px rgba(32, 56, 44, 0.08);
}

.brand-mark svg {
  width: 34px;
  height: 34px;
}

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

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
}

.brand-copy span {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.header-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-trigger {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: 3px;
  right: 3px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #35280f;
  font-size: 0.68rem;
  font-weight: 800;
  transform: scale(0);
  transition: transform 0.2s ease;
}

.cart-badge.is-visible {
  transform: scale(1);
}

.mobile-menu-toggle {
  display: none;
}

.mobile-only {
  display: none;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 320;
  visibility: hidden;
  pointer-events: none;
}

.mobile-menu.is-open {
  visibility: visible;
  pointer-events: auto;
}

.menu-overlay,
.drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(24, 39, 31, 0.56);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.mobile-menu.is-open .menu-overlay,
.cart-drawer.is-open .drawer-overlay {
  opacity: 1;
}

.menu-panel {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(86vw, 360px);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: linear-gradient(180deg, #f7f3ea 0%, #efe6d6 100%);
  box-shadow: var(--shadow-lg);
  transform: translateX(-100%);
  transition: transform 0.24s ease;
}

.mobile-menu.is-open .menu-panel {
  transform: translateX(0);
}

.menu-head,
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.menu-links {
  display: grid;
}

.menu-links a {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(221, 217, 207, 0.92);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
}

.menu-support {
  margin-top: auto;
  display: grid;
  gap: 12px;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 42px 0 54px;
  background:
    radial-gradient(circle at top right, rgba(183, 150, 85, 0.24), transparent 24%),
    radial-gradient(circle at bottom left, rgba(135, 155, 131, 0.14), transparent 22%),
    linear-gradient(180deg, #f8f4eb 0%, #efe7d8 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  gap: 40px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 0.95;
  color: var(--forest);
}

.hero-copy p {
  max-width: 520px;
  margin: 0 0 28px;
  font-size: 1.08rem;
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0 26px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-trust-item,
.trust-item,
.support-pill,
.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(221, 217, 207, 0.92);
  color: var(--forest);
  font-size: 0.87rem;
  font-weight: 700;
}

.hero-media {
  position: relative;
}

.hero-media .image-frame {
  min-height: 540px;
  border-radius: 28px;
}

.hero-inline-media {
  margin: 18px 0 22px;
}

.hero-inline-media {
  position: relative;
}

.hero-inline-media::before {
  content: "";
  position: absolute;
  inset: 10px 10px 54px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.98), rgba(252, 247, 236, 0.98) 62%, rgba(255, 255, 255, 0) 63%);
}

.hero-inline-media::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 18px;
  height: 90px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff8ee 0%, #ead9ba 100%);
  box-shadow: inset 0 -10px 18px rgba(0, 0, 0, 0.08);
}

.hero-inline-media .image-frame {
  position: relative;
  z-index: 2;
  min-height: 360px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-inline-media .image-frame img {
  object-fit: contain;
  padding: 18px 12px 0;
  transform: scale(1.02);
}

.hero-media .image-placeholder {
  padding: 30px;
}

.hero-orb {
  position: absolute;
  inset: auto auto 34px -22px;
  width: 136px;
  height: 136px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 150, 85, 0.42), rgba(183, 150, 85, 0) 70%);
  filter: blur(8px);
}

.hero-floating-card {
  position: absolute;
  top: 20px;
  right: -14px;
}

.hero-floating-card.secondary {
  top: auto;
  right: auto;
  bottom: 18px;
  left: -12px;
}

.trust-strip {
  background: linear-gradient(135deg, var(--forest) 0%, #274634 100%);
  color: var(--cream);
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 24px 0;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-strip-item .icon-wrap,
.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: var(--gold);
  background: rgba(183, 150, 85, 0.16);
  flex-shrink: 0;
}

.trust-strip-item strong,
.trust-label {
  display: block;
  font-size: 0.95rem;
}

.trust-strip-item span {
  display: block;
  font-size: 0.78rem;
  color: var(--sage);
}

.grid-2,
.grid-3,
.grid-4,
.grid-5 {
  display: grid;
  gap: 22px;
}

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

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

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

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

.issue-card .card-media .image-frame,
.benefit-card .card-media .image-frame {
  min-height: 214px;
}

.issue-card h3,
.benefit-card h3,
.ingredient-card h3,
.review-card h3,
.pack-card h3,
.value-card h3,
.policy-card h3,
.contact-card h3,
.standard-item strong,
.process-card h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}

.issue-card p,
.benefit-card p,
.ingredient-card p,
.value-card p,
.policy-card p,
.contact-card p,
.process-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.split-copy h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--forest);
}

.section-forest .split-copy h2 {
  color: var(--white);
}

.split-copy p {
  margin: 0 0 16px;
  color: var(--text-soft);
  font-size: 1rem;
}

.section-forest .split-copy p {
  color: var(--sage);
}

.highlight-quote {
  margin: 12px 0 24px;
  padding: 10px 0 10px 18px;
  border-left: 3px solid var(--gold);
  font-family: var(--serif);
  font-size: 1.46rem;
  color: var(--forest);
}

.section-forest .highlight-quote {
  color: var(--cream);
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 36px;
  align-items: center;
}

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

.showcase-media .image-frame {
  min-height: 220px;
}

.showcase-media .image-frame.featured {
  grid-column: 1 / -1;
  min-height: 290px;
}

.inside-pack-section {
  background: var(--cream);
}

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

.inside-pack-card {
  overflow: hidden;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, #fffdf8 0%, #fbf4e8 100%);
  box-shadow: 0 16px 34px rgba(23, 23, 23, 0.08);
}

.inside-pack-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #fffaf0;
  border-bottom: 1px solid rgba(23, 23, 23, 0.07);
}

.inside-pack-card__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.inside-pack-card__media--contain img {
  object-fit: contain;
  object-position: center;
  padding: 18px;
}

.inside-pack-card__media--cover img {
  object-fit: cover;
  object-position: center;
}

.inside-pack-card__media--icon {
  background:
    radial-gradient(circle at top, rgba(255, 196, 0, 0.18), transparent 42%),
    linear-gradient(180deg, #fffaf0 0%, #f6ead6 100%);
}

.inside-pack-card__media--icon svg {
  width: 72px;
  height: 72px;
  fill: none;
  stroke: #171717;
}

.order-process-section .inside-pack-card__media--icon {
  position: relative;
}

.order-process-section .inside-pack-card__media--icon::before {
  content: "";
  position: absolute;
  width: 104px;
  height: 104px;
  border-radius: 999px;
  background: var(--yellow-primary);
  box-shadow: 0 14px 28px rgba(183, 150, 85, 0.24);
}

.order-process-section .inside-pack-card__media--icon svg {
  position: relative;
  z-index: 1;
}

.order-process-section .inside-pack-card:nth-child(2) .inside-pack-card__media--icon::before {
  background: #ffe38a;
}

.order-process-section .inside-pack-card:nth-child(3) .inside-pack-card__media--icon::after {
  content: "";
  position: absolute;
  right: calc(50% - 54px);
  bottom: calc(50% - 46px);
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--red-primary);
  box-shadow: 0 0 0 5px rgba(217, 15, 15, 0.12);
}

@media (max-width: 768px) {
  .order-process-section .inside-pack-grid {
    grid-template-columns: 1fr !important;
  }

  .order-process-section .inside-pack-cta .btn {
    width: 100%;
  }
}

.inside-pack-card__body {
  padding: 22px;
}

.inside-pack-card__body h3 {
  margin: 0 0 8px;
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 800;
  color: #171717;
}

.inside-pack-card__body p {
  margin: 0;
  color: var(--text-medium);
  line-height: 1.65;
}

.inside-pack-cta {
  margin-top: 28px;
  text-align: center;
}

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

.feature-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(245, 240, 230, 0.72);
  border: 1px solid rgba(221, 217, 207, 0.92);
}

.feature-check svg {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

.ingredient-story {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: start;
}

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

.ingredient-card {
  padding: 22px;
}

.ingredient-card .ingredient-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(203, 213, 196, 0.58);
  color: var(--forest);
}

.ingredient-card .ingredient-icon svg {
  width: 22px;
  height: 22px;
}

.ingredient-card .ingredient-note {
  display: inline-flex;
  margin-top: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(245, 240, 230, 0.92);
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 800;
}

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

.step-card {
  padding: 28px 24px;
  text-align: center;
}

.step-number,
.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
}

.step-card h3,
.process-card h3 {
  margin: 0 0 10px;
}

.warning-box {
  display: flex;
  gap: 14px;
  max-width: 920px;
  margin: 28px auto 0;
  padding: 18px 20px;
  border: 1px solid #e7d8a9;
  border-radius: 16px;
  background: var(--warning-background);
  color: #6e5a2a;
}

.warning-box svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--gold);
}

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

.standard-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(221, 217, 207, 0.92);
}

.standard-item .icon-box {
  width: 42px;
  height: 42px;
}

.review-shell {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.rating-card {
  padding: 28px 24px;
  text-align: center;
}

.rating-value {
  font-size: 3.9rem;
  font-weight: 800;
  line-height: 0.92;
  color: var(--forest);
}

.stars {
  display: inline-flex;
  gap: 4px;
  margin: 10px 0;
  color: var(--gold);
}

.stars svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: currentColor;
}

.rating-caption {
  font-size: 0.84rem;
  color: var(--text-soft);
}

.demo-label {
  display: inline-flex;
  margin-top: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(203, 213, 196, 0.5);
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.review-bars {
  display: grid;
  gap: 12px;
}

.bar-row {
  display: grid;
  grid-template-columns: 38px 1fr 40px;
  gap: 12px;
  align-items: center;
  font-size: 0.82rem;
}

.bar-row span {
  color: var(--text-soft);
  font-weight: 700;
}

.bar-track {
  overflow: hidden;
  height: 8px;
  border-radius: 999px;
  background: rgba(221, 217, 207, 0.92);
}

.bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), #d2ba86);
}

.review-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(221, 217, 207, 0.92);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--text);
}

.filter-chip.is-active,
.filter-chip:hover,
.filter-chip:focus-visible {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}

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

.review-card {
  padding: 22px;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(203, 213, 196, 0.74);
  color: var(--forest);
  font-weight: 800;
}

.review-meta {
  display: grid;
  gap: 2px;
}

.review-meta strong {
  font-size: 0.95rem;
}

.review-meta span {
  font-size: 0.76rem;
  color: var(--text-soft);
}

.review-card p {
  margin: 0;
  font-size: 0.95rem;
}

.review-tag {
  display: inline-flex;
  margin-top: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(245, 240, 230, 0.92);
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 800;
}

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

.pack-card {
  position: relative;
  padding: 24px 22px;
  border: 2px solid rgba(221, 217, 207, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pack-card:hover,
.pack-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(32, 56, 44, 0.25);
}

.pack-card[aria-selected="true"] {
  border-color: var(--forest);
  box-shadow: 0 16px 34px rgba(32, 56, 44, 0.14);
}

.pack-checkmark {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(221, 217, 207, 0.92);
  border-radius: 50%;
  color: var(--white);
  background: var(--white);
}

.pack-card[aria-selected="true"] .pack-checkmark {
  border-color: var(--forest);
  background: var(--forest);
}

.pack-checkmark svg {
  width: 15px;
  height: 15px;
  opacity: 0;
}

.pack-card[aria-selected="true"] .pack-checkmark svg {
  opacity: 1;
}

.buy-pack[aria-selected="true"] .pack-checkmark svg {
  opacity: 1;
}

.pack-topline {
  display: inline-flex;
  min-height: 28px;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(245, 240, 230, 0.9);
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pack-topline.is-better {
  background: rgba(203, 213, 196, 0.72);
  color: var(--forest);
}

.pack-topline.is-best {
  background: rgba(183, 150, 85, 0.2);
  color: #654e1e;
}

.pack-name {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.pack-price {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--forest);
}

.pack-unit,
.pack-savings,
.pack-note {
  margin-top: 6px;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.pack-savings {
  color: var(--success);
  font-weight: 800;
}

.pack-card .btn {
  margin-top: 18px;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(221, 217, 207, 0.92);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 22px;
  text-align: left;
  font-weight: 800;
  color: var(--text);
}

.faq-toggle .faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(221, 217, 207, 0.92);
  color: var(--forest);
  flex-shrink: 0;
}

.faq-item [hidden] {
  display: none !important;
}

.faq-answer {
  padding: 0 22px 20px;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  padding: 40px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(183, 150, 85, 0.25), transparent 22%),
    linear-gradient(135deg, var(--forest) 0%, var(--charcoal-green) 100%);
  color: var(--cream);
  box-shadow: var(--shadow-lg);
}

.final-cta h2 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--white);
}

.final-cta p {
  margin: 0 0 18px;
  color: var(--sage);
}

.final-cta .image-frame {
  min-height: 280px;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.final-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-hero {
  padding: 54px 0 56px;
  background:
    radial-gradient(circle at top right, rgba(183, 150, 85, 0.18), transparent 24%),
    linear-gradient(180deg, #f6f1e7 0%, #ece2d1 100%);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 38px;
  align-items: center;
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--forest);
}

.page-lead {
  margin-top: 18px;
  font-size: 1.06rem;
}

.page-hero .image-frame {
  min-height: 360px;
}

.value-card,
.process-card,
.policy-card,
.contact-card {
  padding: 24px;
}

.value-icon,
.policy-icon,
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 16px;
  color: var(--forest);
  background: rgba(245, 240, 230, 0.94);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

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

.process-number {
  background: rgba(203, 213, 196, 0.72);
  color: var(--forest);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 32px;
  align-items: start;
}

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

.contact-card p a {
  color: var(--forest);
  text-decoration: underline;
}

.response-note {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.response-note svg {
  width: 18px;
  height: 18px;
  color: var(--forest);
}

.contact-form,
.checkout-form,
.checkout-summary,
.success-card {
  padding: 28px;
}

.contact-form h2,
.checkout-form h2,
.checkout-summary h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 1.9rem;
  color: var(--forest);
}

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

.field {
  margin-bottom: 16px;
}

.field:last-child {
  margin-bottom: 0;
}

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.86rem;
  font-weight: 800;
}

.field label .optional {
  font-weight: 600;
  color: var(--text-soft);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  border: 1.5px solid rgba(221, 217, 207, 0.92);
  border-radius: 12px;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.field textarea {
  min-height: 108px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(32, 56, 44, 0.08);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(184, 75, 69, 0.12);
}

.field-hint,
.field-error {
  margin-top: 6px;
  font-size: 0.76rem;
}

.field-hint {
  color: var(--text-soft);
}

.field-error {
  display: none;
  color: var(--danger);
  font-weight: 700;
}

.field.is-invalid .field-error {
  display: block;
}

.checkbox-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.checkbox-row input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--forest);
  flex-shrink: 0;
}

.checkbox-row span {
  font-size: 0.92rem;
}

.checkbox-row.is-invalid span {
  color: var(--danger);
}

.form-success {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(51, 122, 82, 0.32);
  border-radius: 14px;
  background: rgba(234, 244, 238, 0.9);
  color: var(--success);
  font-weight: 700;
}

.form-success.is-visible {
  display: block;
}

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

.policy-card {
  scroll-margin-top: 124px;
}

.site-footer {
  padding: 58px 0 26px;
  background:
    radial-gradient(circle at top right, rgba(183, 150, 85, 0.16), transparent 18%),
    linear-gradient(180deg, #1b2a21 0%, var(--charcoal-green) 100%);
  color: var(--sage);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand p {
  max-width: 320px;
  margin: 16px 0 20px;
  color: var(--herbal);
  font-size: 0.92rem;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: var(--sage);
  background: rgba(255, 255, 255, 0.06);
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: rgba(183, 150, 85, 0.22);
  color: var(--gold);
}

.footer-column h3 {
  margin: 0 0 18px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--white);
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  gap: 10px;
  list-style: none;
}

.footer-column a {
  font-size: 0.92rem;
  color: var(--sage);
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--herbal);
  font-size: 0.82rem;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.94fr);
  gap: 42px;
  align-items: start;
  padding: 36px 0 24px;
}

.gallery-shell {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
}

.gallery-thumbs {
  display: grid;
  gap: 12px;
}

.gallery-thumb {
  width: 92px;
  padding: 0;
  border: 2px solid rgba(221, 217, 207, 0.92);
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
}

.gallery-thumb.is-active,
.gallery-thumb:hover,
.gallery-thumb:focus-visible {
  border-color: var(--forest);
}

.gallery-thumb .image-frame {
  min-height: 92px;
  border-radius: 12px;
  border: 0;
  box-shadow: none;
}

.gallery-main {
  display: grid;
  gap: 14px;
}

.gallery-main .image-frame {
  min-height: 620px;
  border-radius: 24px;
}

.gallery-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(221, 217, 207, 0.92);
}

.gallery-caption strong {
  font-size: 0.95rem;
}

.gallery-caption span {
  font-size: 0.84rem;
  color: var(--text-soft);
}

.buy-box {
  position: sticky;
  top: calc(38px + var(--header-height) + 18px);
  padding: 30px;
}

.buy-box h1 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.04;
  color: var(--forest);
}

.buy-box-subtitle {
  margin: 0 0 16px;
  color: var(--text-soft);
}

.review-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.88rem;
  font-weight: 700;
}

.review-inline a {
  text-decoration: underline;
}

.benefit-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 24px;
  list-style: none;
}

.benefit-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.94rem;
  font-weight: 700;
}

.benefit-list svg {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--success);
  flex-shrink: 0;
}

.selector-label {
  display: block;
  margin-bottom: 12px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  text-transform: uppercase;
}

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

.buy-pack {
  min-height: 110px;
  padding: 14px 12px;
  border: 2px solid rgba(221, 217, 207, 0.92);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  text-align: center;
}

.buy-pack[aria-selected="true"] {
  border-color: var(--forest);
  background: rgba(245, 240, 230, 0.92);
}

.buy-pack strong {
  display: block;
  font-size: 0.98rem;
}

.buy-pack span {
  display: block;
  margin-top: 4px;
  font-size: 0.76rem;
  color: var(--text-soft);
}

.buy-pack em {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--forest);
}

.qty-row,
.cart-qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid rgba(221, 217, 207, 0.92);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
}

.qty-row button,
.cart-qty button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--forest);
}

.qty-row button:hover,
.cart-qty button:hover,
.qty-row button:focus-visible,
.cart-qty button:focus-visible {
  background: rgba(245, 240, 230, 0.82);
}

.qty-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 42px;
  padding: 0 12px;
  font-weight: 800;
}

.buy-actions {
  display: grid;
  gap: 12px;
  margin: 18px 0 22px;
}

.buy-reassurance {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(221, 217, 207, 0.92);
}

.buy-reassurance div {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 700;
}

.buy-reassurance svg {
  width: 18px;
  height: 18px;
  color: var(--forest);
}

.expand-note {
  margin-top: 18px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(245, 240, 230, 0.72);
  border: 1px solid rgba(221, 217, 207, 0.92);
}

.expand-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.expand-note p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.sticky-purchase-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 205;
  display: none;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid rgba(221, 217, 207, 0.92);
  box-shadow: 0 -12px 26px rgba(24, 39, 31, 0.12);
  transform: translateY(120%);
  transition: transform 0.22s ease;
}

.sticky-purchase-bar.is-visible {
  transform: translateY(0);
}

.sticky-purchase-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
}

.sticky-purchase-inner strong {
  display: block;
  font-size: 1rem;
  color: var(--forest);
}

.sticky-purchase-inner span {
  font-size: 0.76rem;
  color: var(--text-soft);
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 330;
  visibility: hidden;
  pointer-events: none;
}

.cart-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.drawer-panel {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(100vw, 456px);
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #f7f2e9 0%, #f1e7d8 100%);
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform 0.24s ease;
}

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

.drawer-head {
  padding: 22px 24px;
  border-bottom: 1px solid rgba(221, 217, 207, 0.92);
}

.drawer-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--forest);
}

.drawer-head span {
  font-size: 0.82rem;
  color: var(--text-soft);
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 24px;
}

.cart-empty {
  display: grid;
  gap: 14px;
  justify-items: center;
  padding: 44px 18px;
  text-align: center;
}

.cart-empty .icon-box {
  width: 68px;
  height: 68px;
}

.cart-empty h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--forest);
}

.cart-empty p {
  margin: 0;
  max-width: 240px;
  color: var(--text-soft);
}

.cart-item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(221, 217, 207, 0.92);
}

.cart-item .image-frame {
  min-height: 98px;
  border-radius: 14px;
}

.cart-item h3 {
  margin: 0 0 4px;
  font-size: 0.98rem;
}

.cart-item p,
.cart-item span {
  margin: 0;
  font-size: 0.84rem;
  color: var(--text-soft);
}

.cart-line-price {
  margin-top: 8px;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--forest);
}

.cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.remove-link {
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.remove-link:hover,
.remove-link:focus-visible {
  color: var(--danger);
}

.bundle-upgrade {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin: 16px 0 6px;
  padding: 16px;
  border: 1px dashed rgba(183, 150, 85, 0.8);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
}

.bundle-upgrade .icon-box {
  width: 42px;
  height: 42px;
}

.bundle-upgrade p {
  margin: 0;
  font-size: 0.88rem;
}

.bundle-upgrade .btn {
  min-height: 40px;
  padding: 10px 14px;
}

.drawer-foot {
  padding: 18px 24px 24px;
  border-top: 1px solid rgba(221, 217, 207, 0.92);
  background: rgba(255, 255, 255, 0.94);
}

.cash-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: rgba(234, 244, 238, 0.92);
  color: var(--success);
  font-size: 0.82rem;
  font-weight: 800;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
  font-size: 0.92rem;
}

.summary-row strong {
  font-weight: 800;
}

.summary-row.total {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(221, 217, 207, 0.92);
  font-size: 1.1rem;
  color: var(--forest);
}

.drawer-links {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.drawer-note {
  margin: 12px 0 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 340;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--forest);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translate(-50%, 140%);
  transition: transform 0.22s ease;
}

.toast.is-visible {
  transform: translate(-50%, 0);
}

.toast svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.checkout-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(183, 150, 85, 0.18), transparent 28%),
    linear-gradient(180deg, #f7f2e9 0%, #efe6d6 100%);
}

.checkout-header {
  position: sticky;
  top: 0;
  z-index: 220;
  border-bottom: 1px solid rgba(221, 217, 207, 0.92);
  background: rgba(245, 240, 230, 0.92);
  backdrop-filter: blur(14px);
}

.checkout-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

.checkout-title {
  margin: 0;
  font-size: 1.5rem;
  color: var(--forest);
}

.secure-pill,
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  font-size: 0.88rem;
  font-weight: 800;
}

.secure-pill {
  color: var(--success);
}

.back-link {
  color: var(--forest);
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  padding: 34px 0 84px;
}

.checkout-summary-column {
  order: 2;
}

.checkout-form-column {
  order: 1;
}

.checkout-summary {
  position: sticky;
  top: 94px;
}

.checkout-summary-items {
  display: grid;
  gap: 16px;
}

.checkout-line-item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 14px;
}

.checkout-line-item .image-frame {
  min-height: 88px;
  border-radius: 14px;
}

.checkout-line-item h3 {
  margin: 0 0 4px;
  font-size: 0.96rem;
}

.checkout-line-item p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.checkout-line-item strong {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.96rem;
  color: var(--forest);
}

.checkout-block {
  margin-bottom: 28px;
}

.checkout-block:last-of-type {
  margin-bottom: 20px;
}

.checkout-block h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--forest);
}

.checkout-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 800;
  font-family: var(--sans);
}

.payment-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border: 2px solid rgba(32, 56, 44, 0.16);
  border-radius: 16px;
  background: rgba(245, 240, 230, 0.92);
}

.payment-radio {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  border: 2px solid var(--forest);
  border-radius: 50%;
  flex-shrink: 0;
}

.payment-radio::after {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--forest);
}

.payment-box strong {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}

.payment-box p {
  margin: 4px 0 0;
  color: var(--text-soft);
}

.success-page {
  padding: 54px 0 80px;
}

.success-wrap {
  width: min(100% - 32px, 760px);
  margin: 0 auto;
  text-align: center;
}

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--success);
  background: rgba(234, 244, 238, 0.92);
}

.success-icon svg {
  width: 44px;
  height: 44px;
}

.success-title {
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  color: var(--forest);
}

.success-subtitle {
  max-width: 620px;
  margin: 12px auto 30px;
  color: var(--text-soft);
  font-size: 1rem;
}

.success-card {
  text-align: left;
}

.order-number-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(221, 217, 207, 0.92);
}

.order-number-row span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-soft);
}

.order-number-row strong {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--forest);
}

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

.detail-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.detail-row span:first-child {
  color: var(--text-soft);
}

.detail-row span:last-child {
  text-align: right;
  font-weight: 700;
}

.detail-row.total {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(221, 217, 207, 0.92);
  color: var(--forest);
  font-size: 1.08rem;
}

.tracker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 32px 0 26px;
}

.tracker-step {
  padding: 20px 16px;
  border-radius: 18px;
  border: 1px solid rgba(221, 217, 207, 0.92);
  background: rgba(255, 255, 255, 0.86);
  text-align: center;
}

.tracker-step.is-active {
  border-color: rgba(32, 56, 44, 0.16);
  background: rgba(245, 240, 230, 0.92);
}

.tracker-step .icon-box {
  width: 46px;
  height: 46px;
  margin: 0 auto 12px;
}

.tracker-step strong {
  display: block;
  font-size: 0.92rem;
}

.tracker-step span {
  display: block;
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 0.82rem;
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.reminder-box {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 16px 18px;
  border: 1px solid #e7d8a9;
  border-radius: 16px;
  background: var(--warning-background);
  color: #6e5a2a;
}

.reminder-box svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(183, 150, 85, 0.8);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}

/* ============================================================
   KS Herbals Redesign Overrides
   ============================================================ */
body {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.78), transparent 18%),
    linear-gradient(180deg, var(--yellow-pale) 0%, #fff6d7 100%);
  font-family: var(--font-body);
  color: var(--text-dark);
}

.section-yellow {
  background:
    radial-gradient(circle at 75% 30%, rgba(255, 255, 255, 0.85), transparent 34%),
    linear-gradient(135deg, #ffd429 0%, #ffc400 55%, #ffb600 100%);
}

.section-cream {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--cream) 100%);
}

.section-white {
  background: linear-gradient(180deg, #fffef7 0%, var(--off-white) 100%);
}

.section-sage {
  background:
    radial-gradient(circle at right top, rgba(255, 255, 255, 0.55), transparent 24%),
    linear-gradient(135deg, #ffe271 0%, var(--yellow-bright) 42%, var(--yellow-primary) 100%);
}

.section-forest {
  background:
    radial-gradient(circle at top right, rgba(255, 212, 41, 0.14), transparent 20%),
    linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
  color: var(--text-light);
}

.section-head h2,
.display-title,
.page-title,
.checkout-title,
.success-title,
.split-copy h2,
.final-cta h2,
.buy-box h1,
.success-wrap h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.98;
}

.section-head h2,
.display-title,
.page-title,
.split-copy h2 {
  color: var(--black);
}

.section-forest .section-head h2,
.section-forest .split-copy h2,
.section-forest .display-title,
.section-forest .page-title,
.section-forest .final-cta h2 {
  color: var(--yellow-bright);
}

.section-head p,
.lead,
.page-lead,
.muted,
.split-copy p,
.hero-copy p,
.buy-box-subtitle,
.warning-box span,
.feature-check p,
.process-card p,
.contact-card p,
.policy-card p,
.review-card p {
  color: var(--text-medium);
}

.section-forest .section-head p,
.section-forest .page-lead,
.section-forest .lead,
.section-forest .muted,
.section-forest .split-copy p,
.section-forest .review-card p {
  color: var(--text-muted-light);
}

.eyebrow,
.eyebrow-red {
  color: var(--red-primary);
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.eyebrow::before,
.eyebrow-red::before {
  background: var(--black);
  opacity: 1;
}

.announce-bar {
  background: var(--black);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.announce-track {
  min-height: 34px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--white);
}

.announce-track svg {
  color: var(--yellow-primary);
}

.site-header {
  top: 34px;
  background: rgba(255, 253, 247, 0.96);
  border-bottom: 2px solid rgba(17, 17, 17, 0.12);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.header-shell {
  min-height: 88px;
}

.brand-mark {
  background: linear-gradient(180deg, var(--yellow-bright) 0%, var(--yellow-primary) 100%);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.brand-mark svg {
  color: var(--black);
}

.brand-copy strong {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.03em;
}

.brand-copy span {
  color: var(--red-primary);
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
}

.header-nav a {
  color: var(--black);
  font-size: 0.94rem;
  font-weight: 700;
}

.header-nav a::after,
.header-nav a:hover::after,
.header-nav a[aria-current="page"]::after {
  background: var(--red-primary);
}

.header-nav a:hover,
.header-nav a[aria-current="page"] {
  color: var(--red-primary);
}

.icon-btn {
  color: var(--black);
}

.icon-btn:hover,
.icon-btn:focus-visible {
  background: rgba(0, 0, 0, 0.06);
}

.cart-badge {
  background: var(--red-primary);
  color: var(--white);
}

.btn,
.btn-red,
.btn-dark,
.btn-light,
.btn-yellow {
  min-height: 50px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
}

.btn-primary,
.btn-red {
  background: linear-gradient(180deg, #ea1616 0%, #c70707 100%);
  color: var(--white);
  border-color: #b70606;
  box-shadow: 0 10px 25px rgba(190, 0, 0, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.btn-red:hover,
.btn-red:focus-visible {
  background: linear-gradient(180deg, #f11a1a 0%, #a90808 100%);
  box-shadow: 0 14px 30px rgba(190, 0, 0, 0.3);
  transform: translateY(-2px);
}

.btn-secondary,
.btn-light {
  background: var(--off-white);
  color: var(--black);
  border: 1px solid rgba(17, 17, 17, 0.18);
}

.btn-secondary:hover,
.btn-secondary:focus-visible,
.btn-light:hover,
.btn-light:focus-visible {
  border-color: var(--red-primary);
  color: var(--red-primary);
  background: var(--white);
}

.btn-gold,
.btn-yellow {
  background: linear-gradient(180deg, var(--yellow-bright) 0%, var(--yellow-primary) 100%);
  color: var(--black);
  border: 1px solid rgba(17, 17, 17, 0.18);
  box-shadow: 0 12px 24px rgba(255, 196, 0, 0.22);
}

.btn-gold:hover,
.btn-gold:focus-visible,
.btn-yellow:hover,
.btn-yellow:focus-visible {
  background: linear-gradient(180deg, #ffe156 0%, #ffca18 100%);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--yellow-primary);
}

.btn-dark:hover,
.btn-dark:focus-visible {
  color: var(--yellow-primary);
}

.badge,
.badge-red,
.badge-yellow,
.pack-topline,
.review-tag,
.demo-label,
.image-chip,
.meta-item,
.support-pill {
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 800;
}

.badge-gold,
.badge-yellow,
.pack-topline.is-better,
.pack-topline.is-best {
  background: var(--red-primary);
  color: var(--white);
}

.badge-soft,
.meta-item,
.support-pill {
  background: rgba(255, 255, 255, 0.18);
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card,
.panel,
.glass-card,
.card-light,
.pack-card,
.buy-pack,
.standard-item,
.feature-check,
.faq-item,
.policy-card,
.contact-card,
.checkout-form,
.checkout-summary,
.success-card,
.buy-box {
  background: linear-gradient(180deg, rgba(255, 253, 247, 0.98) 0%, rgba(255, 249, 236, 0.96) 100%);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
}

.card:hover,
.card:focus-within,
.pack-card:hover,
.buy-pack:hover,
.standard-item:hover,
.contact-card:hover,
.policy-card:hover {
  box-shadow: var(--shadow-medium);
}

.hero {
  padding: 52px 0 44px;
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.86), transparent 24%),
    radial-gradient(circle at 8% 82%, rgba(255, 255, 255, 0.18), transparent 18%),
    linear-gradient(135deg, #ffd429 0%, #ffc400 56%, #ffb600 100%);
}

.hero-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 28px;
  min-height: 650px;
  align-items: center;
}

.hero h1,
.hero-title,
.heading-display {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
  max-width: 8ch;
  margin-bottom: 20px;
  color: var(--black);
}

.hero-copy p {
  max-width: 520px;
  font-size: 1.14rem;
  line-height: 1.48;
}

.price-current,
.pack-price,
.sticky-purchase-inner strong {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.price-current {
  font-size: clamp(2.3rem, 4vw, 3rem);
  color: var(--black);
}

.hero .price-current {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  font-family: "Inter", sans-serif;
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.3px;
}

.hero .price-currency,
.hero .price-amount {
  margin: 0;
  padding: 0;
}

.price-compare {
  color: rgba(17, 17, 17, 0.45);
  font-weight: 700;
}

.price-save {
  background: var(--red-primary);
  color: var(--white);
}

.hero-actions {
  margin: 28px 0 26px;
  align-items: center;
}

.hero-trust-item {
  position: relative;
  padding-left: 44px;
  background: rgba(255, 253, 247, 0.88);
  border: 1px solid rgba(17, 17, 17, 0.1);
  color: var(--black);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.hero-trust-item::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--white) 0 34%, transparent 36%),
    linear-gradient(180deg, #ea1616 0%, #c70707 100%);
  box-shadow: 0 2px 8px rgba(190, 0, 0, 0.22);
}

.hero-media {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 22px 36px 62px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.98), rgba(252, 247, 236, 0.98) 62%, rgba(255, 255, 255, 0) 63%);
  filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.12));
}

.hero-media::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 10%;
  bottom: 34px;
  height: 118px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, #fff8ee 0%, #ead9ba 100%);
  box-shadow:
    inset 0 -10px 18px rgba(0, 0, 0, 0.08),
    0 20px 28px rgba(0, 0, 0, 0.12);
}

.hero-media .image-frame {
  position: relative;
  z-index: 2;
  min-height: 600px;
  width: 100%;
  padding: 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-media .image-frame img {
  object-fit: contain;
  padding: 18px 10px 0;
  transform: scale(1.05);
}

.hero-orb {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(217, 15, 15, 0.24), rgba(217, 15, 15, 0) 72%);
}

.image-chip,
.hero-floating-card {
  top: 30px;
  right: 56px;
  background: var(--red-primary);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.trust-strip {
  background: transparent;
  margin-top: -18px;
  position: relative;
  z-index: 3;
}

.trust-strip .container {
  border-radius: 28px;
  padding: 20px 18px 22px;
  background: linear-gradient(180deg, #101010 0%, #191919 100%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.trust-strip-grid {
  padding: 0;
  gap: 16px;
}

.trust-strip-item,
.trust-card {
  min-height: 124px;
  padding: 20px 18px;
  background: linear-gradient(180deg, #1b1b1b 0%, #232323 100%);
  border: 1px solid var(--border-dark);
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.trust-strip-item .icon-wrap,
.icon-yellow,
.icon-box {
  background: linear-gradient(180deg, var(--yellow-bright) 0%, var(--yellow-primary) 100%);
  color: var(--black);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.12);
}

.trust-strip svg {
  display: block !important;
  width: 26px !important;
  height: 26px !important;
  fill: none !important;
  stroke: #171717 !important;
  stroke-width: 2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.trust-strip svg path,
.trust-strip svg rect,
.trust-strip svg circle,
.trust-strip svg line,
.trust-strip svg polyline {
  fill: none !important;
  stroke: #171717 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.trust-strip-item strong {
  color: var(--white);
}

.trust-strip-item span {
  color: var(--text-muted-light);
}

.card-media .image-frame {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.78), transparent 40%),
    linear-gradient(180deg, #fff8de 0%, #ffe9a6 100%);
}

.issue-card .card-media .image-frame,
.benefit-card .card-media .image-frame {
  min-height: 226px;
}

.issue-card .card-media .image-frame img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  border-radius: inherit;
}

.benefit-card .card-media .image-frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: inherit;
}

.benefit-card .card-media .image-frame {
  width: 100%;
  min-height: 0;
  aspect-ratio: 1 / 1;
  margin: 0;
}

.privacy-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 196, 0, 0.16), transparent 28%),
    linear-gradient(180deg, #111 0%, #1d1d1d 100%);
}

.privacy-inner {
  display: grid;
  gap: 30px;
}

.privacy-head {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.privacy-head h2 {
  margin: 0;
  color: var(--white);
}

.privacy-head p {
  margin: 14px auto 0;
  max-width: 760px;
  color: var(--yellow-soft);
  font-size: 1.05rem;
  line-height: 1.65;
}

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

.privacy-card {
  display: grid;
  gap: 13px;
  min-height: 300px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, #171717 0%, #232323 100%);
  box-shadow: 0 22px 34px rgba(0, 0, 0, 0.22);
}

.privacy-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--black);
  background: linear-gradient(180deg, var(--yellow-bright) 0%, var(--yellow-primary) 100%);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.14);
}

.privacy-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy-kicker {
  width: max-content;
  max-width: 100%;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(217, 15, 15, 0.16);
  color: var(--yellow-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-card h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.18rem;
  line-height: 1.28;
}

.privacy-card p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.65;
}

.privacy-actions {
  display: flex;
  justify-content: center;
}

@media (max-width: 860px) {
  .privacy-card-grid {
    grid-template-columns: 1fr;
  }

  .privacy-card {
    min-height: 0;
  }
}

.card-body h3,
.issue-card h3,
.benefit-card h3,
.ingredient-card h3,
.process-card h3,
.value-card h3,
.policy-card h3,
.contact-card h3,
.review-card strong {
  color: var(--black);
}

.highlight-quote {
  border-left: 4px solid var(--yellow-primary);
  color: var(--yellow-bright);
}

.feature-check {
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
}

.feature-check svg {
  color: var(--red-primary);
}

.showcase-media .image-frame.featured {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.88), transparent 30%),
    linear-gradient(135deg, #fff8e3 0%, #ffe48d 100%);
}

.ingredient-card {
  padding-top: 0;
  overflow: hidden;
}

.ingredient-card .ingredient-icon {
  width: 100%;
  height: auto;
  margin: 0 0 18px;
  padding: 18px 22px 0;
  border-radius: 0;
  background: linear-gradient(180deg, var(--yellow-bright) 0%, var(--yellow-soft) 100%);
  justify-content: flex-start;
}

.ingredient-card .ingredient-icon svg {
  width: 24px;
  height: 24px;
  color: var(--black);
}

.ingredient-card .ingredient-note {
  background: rgba(217, 15, 15, 0.08);
  color: var(--red-primary);
}

.step-card {
  background: linear-gradient(180deg, #181818 0%, #242424 100%);
  border-color: var(--border-dark);
  color: var(--text-light);
}

.step-card h3,
.step-card p {
  color: inherit;
}

.step-number,
.process-number {
  background: linear-gradient(180deg, var(--red-primary) 0%, var(--red-dark) 100%);
  color: var(--white);
  font-family: var(--font-display);
}

.warning-box {
  border: 2px solid rgba(217, 15, 15, 0.22);
  background: linear-gradient(180deg, var(--off-white) 0%, #fff3e1 100%);
}

.warning-box svg {
  color: var(--red-primary);
}

.standard-item {
  background: linear-gradient(180deg, #191919 0%, #242424 100%);
  border-color: var(--border-dark);
  color: var(--text-light);
}

.standard-item strong {
  color: var(--white);
}

.rating-card {
  background: linear-gradient(180deg, #181818 0%, #242424 100%);
  border-color: var(--border-dark);
  color: var(--white);
}

.rating-value {
  color: var(--yellow-bright);
  font-family: var(--font-display);
}

.rating-caption {
  color: var(--text-muted-light);
}

.stars {
  color: var(--yellow-primary);
}

.bar-track {
  background: rgba(17, 17, 17, 0.12);
}

.bar-fill {
  background: linear-gradient(90deg, var(--yellow-primary), var(--yellow-bright));
}

.filter-chip.is-active,
.filter-chip:hover,
.filter-chip:focus-visible {
  background: var(--red-primary);
  border-color: var(--red-primary);
}

.review-card {
  border-color: rgba(17, 17, 17, 0.12);
}

.review-tag,
.demo-label {
  background: rgba(255, 196, 0, 0.16);
  color: var(--black);
}

.pack-card {
  border: 2px solid rgba(17, 17, 17, 0.1);
}

.pack-card[aria-selected="true"] {
  background: linear-gradient(180deg, #171717 0%, #242424 100%);
  border-color: var(--yellow-primary);
  color: var(--white);
}

.pack-card[aria-selected="true"] .pack-name,
.pack-card[aria-selected="true"] .pack-unit,
.pack-card[aria-selected="true"] .pack-note {
  color: var(--text-light);
}

.pack-card[aria-selected="true"] .pack-price {
  color: var(--yellow-bright);
}

.pack-card[aria-selected="true"] .pack-checkmark {
  border-color: var(--yellow-primary);
  background: var(--yellow-primary);
}

.pack-topline {
  background: rgba(255, 196, 0, 0.14);
  color: var(--black);
}

.pack-price {
  color: var(--black);
  font-size: 2.2rem;
}

.pack-savings {
  color: var(--red-primary);
}

.faq-item {
  background: var(--white);
}

.faq-toggle {
  color: var(--black);
}

.faq-toggle .faq-icon {
  color: var(--red-primary);
  border-color: rgba(217, 15, 15, 0.18);
}

.faq-item[data-open="true"],
.faq-item:has(.faq-toggle[aria-expanded="true"]) {
  background: var(--yellow-pale);
  border-color: rgba(255, 196, 0, 0.4);
}

.final-cta {
  background:
    radial-gradient(circle at right top, rgba(255, 212, 41, 0.24), transparent 24%),
    linear-gradient(135deg, var(--black) 0%, #1d1d1d 100%);
}

.final-cta .image-frame {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.8), transparent 42%),
    linear-gradient(180deg, #fff8df 0%, #ffe88d 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.page-hero {
  background:
    radial-gradient(circle at 72% 26%, rgba(255, 255, 255, 0.82), transparent 30%),
    linear-gradient(135deg, #ffd429 0%, #ffc400 55%, #ffb600 100%);
}

body[data-page="contact"] .page-hero {
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 212, 41, 0.12), transparent 28%),
    linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
}

body[data-page="contact"] .page-title {
  color: var(--yellow-bright);
}

body[data-page="contact"] .page-lead {
  color: var(--text-light);
}

body[data-page="about"] .value-card {
  background: linear-gradient(180deg, #181818 0%, #242424 100%);
  border-color: var(--border-dark);
}

body[data-page="about"] .value-card h3 {
  color: var(--white);
}

body[data-page="about"] .value-card p {
  color: var(--text-muted-light);
}

body[data-page="about"] .value-icon {
  background: linear-gradient(180deg, var(--yellow-bright) 0%, var(--yellow-primary) 100%);
  color: var(--black);
}

.site-footer {
  background: linear-gradient(180deg, #111111 0%, #161616 100%);
  border-top: 4px solid var(--yellow-primary);
}

.footer-brand p {
  color: var(--text-muted-light);
}

.footer-column h3 {
  color: var(--yellow-bright);
}

.footer-column a {
  color: #bfbfbf;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--red-primary);
}

.footer-bottom {
  background: rgba(255, 255, 255, 0.02);
  color: #a9a9a9;
  border-top-color: rgba(255, 255, 255, 0.08);
}

.gallery-main .image-frame,
.gallery-thumb .image-frame,
.buy-box,
.gallery-caption {
  border-color: rgba(17, 17, 17, 0.12);
}

.gallery-main .image-frame {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.88), transparent 28%),
    linear-gradient(180deg, #fffaf0 0%, #ffe8a1 100%);
}

.gallery-main .image-frame img,
.gallery-thumb .image-frame img,
.cart-item .image-frame img,
.checkout-line-item .image-frame img,
.hero-media .image-frame img,
.final-cta .image-frame img {
  object-fit: contain;
}

.gallery-thumb {
  border-color: rgba(17, 17, 17, 0.16);
}

.gallery-thumb.is-active {
  border-color: var(--red-primary);
}

.gallery-thumb:hover,
.gallery-thumb:focus-visible {
  border-color: var(--yellow-primary);
}

.gallery-caption {
  background: rgba(255, 253, 247, 0.96);
}

.buy-box {
  border-radius: 24px;
  box-shadow: var(--shadow-dark);
}

.buy-pack {
  background: linear-gradient(180deg, #fffef7 0%, #fff5d8 100%);
  border-color: rgba(17, 17, 17, 0.12);
}

.buy-pack[aria-selected="true"] {
  background: linear-gradient(180deg, #111111 0%, #1f1f1f 100%);
  color: var(--white);
}

.buy-pack[aria-selected="true"] strong,
.buy-pack[aria-selected="true"] em {
  color: var(--yellow-bright);
}

.qty-row,
.cart-qty {
  border-color: rgba(17, 17, 17, 0.18);
  background: var(--off-white);
}

.qty-row button,
.cart-qty button {
  color: var(--black);
}

.qty-row button:hover,
.cart-qty button:hover,
.qty-row button:focus-visible,
.cart-qty button:focus-visible {
  background: rgba(217, 15, 15, 0.08);
  color: var(--red-primary);
}

.sticky-purchase-bar {
  background: rgba(17, 17, 17, 0.96);
  border-top: 2px solid var(--yellow-primary);
}

.sticky-purchase-inner strong {
  color: var(--white);
}

.sticky-purchase-inner span {
  color: var(--yellow-soft);
}

.sticky-purchase-inner .btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

.sticky-purchase-inner .btn-primary {
  box-shadow: none;
}

.cart-drawer .drawer-panel {
  background: linear-gradient(180deg, #fffdf7 0%, #fff5dc 100%);
}

.drawer-head {
  background: linear-gradient(180deg, #151515 0%, #202020 100%);
}

.drawer-head h2,
.drawer-head span {
  color: var(--white);
}

.cart-item {
  border-bottom-color: rgba(17, 17, 17, 0.08);
}

.cart-line-price {
  color: var(--red-primary);
}

.bundle-upgrade {
  background: linear-gradient(180deg, #fff7d8 0%, #fff0b3 100%);
  border: 2px solid rgba(217, 15, 15, 0.22);
}

.bundle-upgrade p {
  color: var(--black);
}

.bundle-upgrade .btn {
  background: linear-gradient(180deg, #ea1616 0%, #c70707 100%);
  color: var(--white);
  border-color: #b70606;
}

.cash-badge {
  background: linear-gradient(180deg, #1a1a1a 0%, #242424 100%);
  color: var(--yellow-bright);
}

.cash-badge svg {
  color: var(--yellow-bright);
}

.summary-row.total {
  color: var(--yellow-bright);
}

.cart-empty .icon-box {
  background: linear-gradient(180deg, var(--yellow-bright) 0%, var(--yellow-primary) 100%);
  color: var(--black);
}

.cart-empty h3 {
  color: var(--black);
}

.checkout-page {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.84), transparent 20%),
    linear-gradient(180deg, #fff8e3 0%, #ffefba 100%);
}

.checkout-top-strip {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  background: var(--black);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.checkout-header {
  top: 34px;
  background: rgba(255, 253, 247, 0.96);
}

.secure-pill {
  color: var(--red-primary);
}

.checkout-form,
.checkout-summary {
  border-radius: 24px;
}

.checkout-form h2,
.checkout-summary h2,
.checkout-block h2 {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 1.55rem;
  text-transform: none;
  line-height: 1.1;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red-primary);
  box-shadow: 0 0 0 3px rgba(217, 15, 15, 0.12);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea,
.checkbox-row.is-invalid {
  background: var(--red-soft);
}

.payment-box {
  background: linear-gradient(180deg, #111111 0%, #1d1d1d 100%);
  border: 2px solid var(--yellow-primary);
}

.payment-box strong {
  color: var(--white);
}

.payment-box p {
  color: var(--text-muted-light);
}

.payment-radio {
  border-color: var(--yellow-primary);
}

.payment-radio::after {
  background: var(--yellow-primary);
}

.checkout-summary {
  background: linear-gradient(180deg, #111111 0%, #1d1d1d 100%);
  border-color: var(--border-dark);
}

.checkout-summary h2 {
  color: var(--white);
}

.checkout-line-item h3 {
  color: var(--white);
}

.checkout-line-item p {
  color: var(--text-muted-light);
}

.checkout-line-item strong,
.summary-row.total strong,
[data-checkout-total] {
  color: var(--yellow-bright);
}

.summary-row {
  color: var(--text-light);
}

.success-page {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.76), transparent 20%),
    linear-gradient(180deg, #ffe57a 0%, #fff8e2 34%, #fff2c1 100%);
}

.success-icon {
  background: linear-gradient(180deg, var(--yellow-bright) 0%, var(--yellow-primary) 100%);
  color: var(--black);
}

.success-title {
  color: var(--black);
}

.success-card {
  background: linear-gradient(180deg, var(--black) 0%, #1d1d1d 100%);
  border-color: var(--border-dark);
}

.order-number-row strong {
  color: var(--red-primary);
  font-family: var(--font-display);
}

.success-card .detail-row span:first-child,
.success-card .order-number-row span {
  color: var(--text-muted-light);
}

.success-card .detail-row span:last-child {
  color: var(--white);
}

.success-card .detail-row.total {
  color: var(--yellow-bright);
}

.tracker-step {
  background: rgba(255, 253, 247, 0.92);
}

.tracker-step .icon-box {
  background: linear-gradient(180deg, var(--yellow-bright) 0%, var(--yellow-primary) 100%);
  color: var(--black);
}

.tracker-step.is-active {
  border-color: var(--yellow-primary);
}

.tracker-step.is-active strong {
  color: var(--yellow-bright);
}

.success-actions .btn-secondary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.success-actions .btn-secondary:hover,
.success-actions .btn-secondary:focus-visible {
  color: var(--yellow-bright);
  border-color: var(--yellow-primary);
}

.reminder-box {
  background: linear-gradient(180deg, #fff6d7 0%, #ffedb0 100%);
  border-color: rgba(255, 196, 0, 0.45);
  color: var(--black);
}

.image-frame {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.78), transparent 42%),
    linear-gradient(180deg, #fff8de 0%, #ffe39a 100%);
  border-color: rgba(17, 17, 17, 0.1);
}

.image-placeholder {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.82), transparent 44%),
    linear-gradient(180deg, #ffe888 0%, #ffd13e 100%);
  color: var(--black);
}

.image-placeholder::before {
  content: "KS HERBALS";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--black);
  color: var(--yellow-bright);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.image-placeholder::after {
  content: "";
  width: 72px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red-primary), #ff5b5b);
}

.image-placeholder strong,
.image-placeholder small {
  display: none;
}

.footer-social a {
  background: rgba(255, 255, 255, 0.08);
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: var(--red-primary);
  color: var(--white);
}

.checkout-header .brand-copy strong,
.site-footer .brand-copy strong {
  font-family: var(--font-body);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(255, 196, 0, 0.86);
}

/* ============================================================
   Homepage Typography and Spacing Refinement
   ============================================================ */
body[data-page="home"] section {
  padding-top: 68px;
  padding-bottom: 68px;
}

body[data-page="home"] .trust-strip {
  padding-top: 32px;
  padding-bottom: 32px;
}

body[data-page="home"] .section-head {
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 28px;
}

body[data-page="home"] .section-head h2,
body[data-page="home"] .split-copy h2,
body[data-page="home"] .display-title,
body[data-page="home"] .final-cta h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(32px, 3.4vw, 52px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #151515;
  margin: 0;
  text-wrap: balance;
}

body[data-page="home"] .hero-copy h1 {
  font-family: "Anton", "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(3.2rem, 6vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

body[data-page="home"] .section-head h2 {
  max-width: 850px;
  margin-inline: auto;
}

body[data-page="home"] .split-copy h2,
body[data-page="home"] .final-cta h2 {
  max-width: 760px;
}

body[data-page="home"] .section-forest .section-head h2,
body[data-page="home"] .section-forest .split-copy h2,
body[data-page="home"] .section-forest .display-title,
body[data-page="home"] .section-forest .final-cta h2 {
  color: #fff9ec;
}

body[data-page="home"] .eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d90f0f;
  margin-bottom: 10px;
}

body[data-page="home"] .section-head p {
  margin-top: 12px;
}

body[data-page="home"] .split-copy,
body[data-page="home"] .final-cta > div:last-child {
  display: grid;
  gap: 16px;
}

body[data-page="home"] .grid-3,
body[data-page="home"] .grid-4,
body[data-page="home"] .standard-grid,
body[data-page="home"] .review-grid,
body[data-page="home"] .pack-grid,
body[data-page="home"] .ingredient-cards,
body[data-page="home"] .steps-grid,
body[data-page="home"] .faq-list {
  gap: 20px;
}

body[data-page="home"] .ingredient-story,
body[data-page="home"] .split-section,
body[data-page="home"] .showcase-grid,
body[data-page="home"] .review-shell,
body[data-page="home"] .final-cta {
  gap: 24px;
}

body[data-page="home"] .card,
body[data-page="home"] .panel {
  padding: 22px;
}

body[data-page="home"] .card .card-body,
body[data-page="home"] .benefit-card .card-body,
body[data-page="home"] .issue-card .card-body,
body[data-page="home"] .ingredient-card,
body[data-page="home"] .review-card,
body[data-page="home"] .pack-card,
body[data-page="home"] .step-card,
body[data-page="home"] .value-card,
body[data-page="home"] .policy-card,
body[data-page="home"] .contact-card,
body[data-page="home"] .rating-card {
  padding: 22px;
}

body[data-page="home"] .issue-card h3,
body[data-page="home"] .benefit-card h3,
body[data-page="home"] .ingredient-card h3,
body[data-page="home"] .review-card h3,
body[data-page="home"] .pack-card h3 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

body[data-page="home"] .ingredients-section {
  padding-top: 64px;
  padding-bottom: 68px;
}

body[data-page="home"] .ingredients-section .section-header {
  max-width: 840px;
  margin: 0 auto 28px;
  text-align: center;
}

body[data-page="home"] .ingredients-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  margin-top: 30px;
}

body[data-page="home"] .ingredient-flip-card {
  position: relative;
  min-width: 0;
  min-height: 390px;
  perspective: 1200px;
}

body[data-page="home"] .ingredient-flip-card__button {
  width: 100%;
  height: 100%;
  min-height: 390px;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: transparent;
  color: inherit;
  text-align: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

body[data-page="home"] .ingredient-flip-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 390px;
  display: block;
  transform-style: preserve-3d;
  transition: transform 520ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

body[data-page="home"] .ingredient-flip-card__face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-radius: 20px;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: 0 14px 30px rgba(90, 55, 0, 0.14);
}

body[data-page="home"] .ingredient-flip-card__front {
  background: #fffaf0;
}

body[data-page="home"] .ingredient-flip-card__media {
  height: 235px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(
      180deg,
      rgba(255, 212, 41, 0.22) 0%,
      rgba(255, 255, 255, 0) 100%
    );
}

body[data-page="home"] .ingredient-flip-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
}

body[data-page="home"] .ingredient-flip-card__front-content {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  background: #fffaf0;
}

body[data-page="home"] .ingredient-flip-card__name {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  color: #151515;
}

body[data-page="home"] .ingredient-flip-card__hint {
  width: max-content;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #fce6e3;
  color: #c70707;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

body[data-page="home"] .ingredient-flip-card__back {
  transform: rotateY(180deg);
  background:
    radial-gradient(
      circle at 85% 12%,
      rgba(255, 212, 41, 0.2),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      #171717 0%,
      #242424 100%
    );
  color: #fff9ec;
}

body[data-page="home"] .ingredient-flip-card__back-content {
  width: 100%;
  height: 100%;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 26px 24px;
}

body[data-page="home"] .ingredient-flip-card__back-label {
  margin-bottom: 10px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffc400;
}

body[data-page="home"] .ingredient-flip-card__back-title {
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  color: #fff9ec;
}

body[data-page="home"] .ingredient-flip-card__benefits {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body[data-page="home"] .ingredient-flip-card__benefits li {
  position: relative;
  margin: 0;
  padding-left: 24px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #f6f2ea;
}

body[data-page="home"] .ingredient-flip-card__benefits li::before {
  content: "\2713";
  position: absolute;
  top: 0;
  left: 0;
  color: #ffc400;
  font-size: 15px;
  font-weight: 800;
}

body[data-page="home"] .ingredient-flip-card__return {
  margin-top: auto;
  padding-top: 20px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #c8c8c8;
}

body[data-page="home"]
.ingredient-flip-card.is-flipped
.ingredient-flip-card__inner,
body[data-page="home"]
.ingredient-flip-card__button[aria-expanded="true"]
.ingredient-flip-card__inner {
  transform: rotateY(180deg);
}

@media (hover: hover) and (pointer: fine) {
  body[data-page="home"]
  .ingredient-flip-card:hover
  .ingredient-flip-card__inner {
    transform: rotateY(180deg);
  }
}

body[data-page="home"]
.ingredient-flip-card__button:focus-visible {
  outline: 3px solid #d90f0f;
  outline-offset: 4px;
}

body[data-page="home"]
.ingredient-flip-card__button:hover
.ingredient-flip-card__face {
  box-shadow: 0 18px 38px rgba(35, 20, 0, 0.2);
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] .ingredient-flip-card__inner {
    transition: none;
  }
}

body[data-page="home"]
.ingredient-flip-card__media.has-image-error {
  background:
    linear-gradient(
      135deg,
      #fff2b7 0%,
      #fffaf0 100%
    );
}

body[data-page="home"]
.ingredient-flip-card__media.has-image-error::after {
  content: "Ingredient image";
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #4d4d4d;
}

/* ============================================================
   Product Page Typography and Spacing Refinement
   ============================================================ */
body[data-page="product"] main > section,
body[data-page="product"] .product-section {
  padding-top: 64px;
  padding-bottom: 64px;
}

body[data-page="product"] .selector-label,
body[data-page="product"] .buy-box-subtitle,
body[data-page="product"] .review-inline,
body[data-page="product"] .review-inline strong,
body[data-page="product"] .review-inline a,
body[data-page="product"] .benefit-list li,
body[data-page="product"] .buy-reassurance div,
body[data-page="product"] .warning-box span,
body[data-page="product"] .expand-note strong,
body[data-page="product"] .expand-note p {
  font-family: "Inter", sans-serif;
}

body[data-page="product"] .section-head,
body[data-page="product"] .section-header {
  margin-bottom: 26px;
}

body[data-page="product"] .section-head p,
body[data-page="product"] .section-header p {
  margin-top: 10px;
}

body[data-page="product"] .section-head h2,
body[data-page="product"] .split-copy h2,
body[data-page="product"] .section-title,
body[data-page="product"] .section-heading,
body[data-page="product"] .product-section h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #151515;
  margin: 0;
  text-wrap: balance;
}

body[data-page="product"] .final-cta h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff9ec;
  margin: 0;
  text-wrap: balance;
}

body[data-page="product"] .section-forest .section-head h2,
body[data-page="product"] .section-forest .split-copy h2,
body[data-page="product"] .section-dark h2,
body[data-page="product"] .section-dark .section-title {
  color: #fff9ec;
}

body[data-page="product"] .buy-box h1 {
  margin: 0 0 12px;
  font-family: "Inter", sans-serif;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
  text-transform: none;
  color: #151515;
  text-wrap: balance;
}

body[data-page="product"] .eyebrow,
body[data-page="product"] .section-eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 9px;
  color: var(--red-primary);
}

body[data-page="product"] .section-forest .eyebrow,
body[data-page="product"] .section-forest .section-eyebrow {
  color: var(--yellow-bright);
}

body[data-page="product"] .price-row,
body[data-page="product"] .price-cluster {
  align-items: baseline;
  gap: 10px;
}

body[data-page="product"] .price-current,
body[data-page="product"] [data-product-field="priceFormatted"] {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  font-family: "Inter", sans-serif;
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  word-spacing: -2px;
  color: #151515;
  white-space: nowrap;
}

body[data-page="product"] .price-currency,
body[data-page="product"] .price-amount {
  margin: 0;
  padding: 0;
}

body[data-page="product"] .price-compare,
body[data-page="product"] .price-old {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: #696969;
  text-decoration: line-through;
}

body[data-page="product"] .price-save,
body[data-page="product"] .saving-badge {
  display: inline-flex;
  align-items: center;
  min-height: auto;
  padding: 8px 12px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

body[data-page="product"] .product-layout {
  gap: 36px;
  padding: 28px 0 18px;
}

body[data-page="product"] .split-section {
  gap: 36px;
}

body[data-page="product"] .product-overview-section {
  align-items: center;
}

body[data-page="product"] .product-overview-media {
  min-height: 0;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(23, 23, 23, 0.1);
  background: #fff8ea;
}

body[data-page="product"] .product-overview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

body[data-page="product"] .overview-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

body[data-page="product"] .overview-points span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #171717;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
}

body[data-page="product"] .ingredient-story,
body[data-page="product"] .final-cta {
  gap: 24px;
}

body[data-page="product"] .buy-box {
  padding: 28px;
}

body[data-page="product"] .buy-box > * + * {
  margin-top: 14px;
}

body[data-page="product"] .buy-box > h1 + * {
  margin-top: 0;
}

body[data-page="product"] .review-inline,
body[data-page="product"] .benefit-list,
body[data-page="product"] .buy-actions,
body[data-page="product"] .buy-reassurance {
  margin-bottom: 0;
}

body[data-page="product"] .benefit-list {
  margin-top: 6px;
}

body[data-page="product"] .buy-actions {
  margin-top: 18px;
}

body[data-page="product"] .buy-reassurance {
  padding-top: 16px;
  gap: 10px;
}

body[data-page="product"] .grid-4,
body[data-page="product"] .ingredient-cards,
body[data-page="product"] .steps-grid,
body[data-page="product"] .review-grid,
body[data-page="product"] .faq-list {
  gap: 20px;
}

body[data-page="product"] .ingredient-card,
body[data-page="product"] .step-card,
body[data-page="product"] .review-card {
  padding: 22px;
}

body[data-page="product"] .card .card-body {
  padding: 22px;
}

body[data-page="product"] .buy-pack-grid {
  gap: 12px;
  margin-bottom: 18px;
}

body[data-page="product"] .buy-pack strong,
body[data-page="product"] .pack-option-title {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 600;
}

body[data-page="product"] .buy-pack em,
body[data-page="product"] .pack-option-price {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #151515;
}

body[data-page="product"] .buy-pack span,
body[data-page="product"] .pack-option-meta {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
}

/* Refined package selection cards */
.pack-card,
.buy-pack {
  background: linear-gradient(180deg, #fffdf8 0%, #fbf4e8 100%) !important;
  border: 1px solid rgba(23, 23, 23, 0.1) !important;
  color: #171717 !important;
  box-shadow: 0 12px 28px rgba(23, 23, 23, 0.07) !important;
}

.pack-card[aria-selected="true"],
.buy-pack[aria-selected="true"] {
  background: linear-gradient(180deg, #fffef9 0%, #fbf4e8 100%) !important;
  border-color: var(--yellow-primary) !important;
  color: #171717 !important;
  box-shadow: 0 16px 34px rgba(183, 150, 85, 0.18) !important;
}

.pack-card:hover,
.pack-card:focus-visible,
.buy-pack:hover,
.buy-pack:focus-visible {
  border-color: rgba(183, 150, 85, 0.55) !important;
  box-shadow: 0 16px 34px rgba(23, 23, 23, 0.1) !important;
}

.pack-card[aria-selected="true"]:hover,
.pack-card[aria-selected="true"]:focus-visible,
.buy-pack[aria-selected="true"]:hover,
.buy-pack[aria-selected="true"]:focus-visible {
  border-color: var(--yellow-primary) !important;
}

.pack-checkmark {
  border-color: rgba(183, 150, 85, 0.35) !important;
  background: #fff9e6 !important;
  color: #171717 !important;
}

.pack-card[aria-selected="true"] .pack-checkmark,
.buy-pack[aria-selected="true"] .pack-checkmark {
  border-color: var(--yellow-primary) !important;
  background: var(--yellow-primary) !important;
}

.pack-checkmark svg,
.pack-checkmark svg path {
  fill: none !important;
  stroke: #171717 !important;
}

.pack-card .pack-name,
.pack-card .pack-unit,
.pack-card .pack-note,
.pack-card[aria-selected="true"] .pack-name,
.pack-card[aria-selected="true"] .pack-unit,
.pack-card[aria-selected="true"] .pack-note,
.buy-pack strong,
.buy-pack span,
.buy-pack em,
.buy-pack[aria-selected="true"] strong,
.buy-pack[aria-selected="true"] span,
.buy-pack[aria-selected="true"] em {
  color: #171717 !important;
}

.pack-price,
.pack-card[aria-selected="true"] .pack-price {
  color: #171717 !important;
  font-size: clamp(1.72rem, 2.4vw, 2rem) !important;
  line-height: 1.05;
}

.pack-unit,
.buy-pack-unit {
  color: rgba(23, 23, 23, 0.68) !important;
  font-size: 0.9rem !important;
}

.pack-savings,
.buy-pack-savings {
  color: var(--red-primary) !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
}

.pack-note,
.buy-pack-note {
  color: rgba(23, 23, 23, 0.72) !important;
  font-size: 0.9rem !important;
}

.pack-topline {
  background: rgba(255, 196, 0, 0.16) !important;
  color: #171717 !important;
  letter-spacing: 0.04em;
}

.pack-topline.is-better {
  background: rgba(255, 196, 0, 0.2) !important;
  color: #171717 !important;
}

.pack-topline.is-best {
  background: var(--red-primary) !important;
  color: var(--white) !important;
}

.buy-pack .pack-topline.is-best {
  color: var(--white) !important;
}

.pack-select-label,
.buy-pack-select {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 18px !important;
  border-radius: 999px;
  background: #171717;
  color: var(--white) !important;
  font-weight: 800;
  font-size: 0.9rem !important;
}

.pack-card[aria-selected="true"] .pack-select-label,
.buy-pack[aria-selected="true"] .buy-pack-select {
  background: var(--yellow-primary);
  color: #171717 !important;
}

.buy-pack {
  position: relative;
  min-height: 0 !important;
  padding: 18px 14px !important;
  text-align: left;
}

.buy-pack .pack-checkmark {
  position: absolute;
  top: 12px;
  right: 12px;
}

.buy-pack .pack-topline {
  margin-bottom: 12px;
}

.buy-pack strong {
  font-size: 1rem !important;
  font-weight: 800 !important;
}

.buy-pack em {
  margin-top: 10px !important;
  font-size: 1.25rem !important;
  font-weight: 800 !important;
}

.pack-card .pack-price,
.pack-card[aria-selected="true"] .pack-price,
.buy-pack em,
.buy-pack[aria-selected="true"] em {
  font-family: var(--sans) !important;
  font-size: clamp(1.55rem, 2vw, 1.82rem) !important;
  font-weight: 650 !important;
  letter-spacing: normal !important;
  line-height: 1.15 !important;
  color: #111 !important;
}

.buy-pack-unit,
.buy-pack-savings,
.buy-pack-note {
  display: block;
  margin-top: 6px !important;
}

.pack-trust-line {
  margin: 12px 0 0;
  color: rgba(23, 23, 23, 0.68);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
}

/* Product page gallery and pack-card cleanup */
body[data-page="product"] .gallery-thumb {
  border: 1px solid #e5dcc8 !important;
  border-radius: 14px !important;
  background: #fffdf8 !important;
  box-shadow: none !important;
  outline: 0 !important;
}

body[data-page="product"] .gallery-thumb.is-active {
  border-color: var(--yellow-primary) !important;
  box-shadow: 0 0 0 1px rgba(255, 196, 0, 0.28) !important;
}

body[data-page="product"] .gallery-thumb:hover,
body[data-page="product"] .gallery-thumb:focus-visible {
  border-color: rgba(23, 23, 23, 0.18) !important;
  box-shadow: 0 8px 18px rgba(23, 23, 23, 0.06) !important;
}

body[data-page="product"] .gallery-thumb .image-frame {
  border-radius: 12px !important;
  background: #fffaf0 !important;
}

body[data-page="product"] .gallery-thumb .image-frame img {
  object-fit: contain !important;
  object-position: center;
}

body[data-page="product"] .gallery-caption {
  display: none !important;
}

body[data-page="product"] .buy-pack-grid {
  align-items: stretch;
}

body[data-page="product"] .buy-pack {
  display: flex !important;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  min-height: 286px !important;
  padding: 18px 14px 14px !important;
  text-align: center;
}

body[data-page="product"] .buy-pack .pack-checkmark {
  top: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
}

body[data-page="product"] .buy-pack .pack-checkmark svg {
  width: 13px;
  height: 13px;
}

body[data-page="product"] .buy-pack .pack-topline {
  align-self: center;
  justify-content: center;
  min-width: 94px;
  margin: 0 auto 14px !important;
  padding: 5px 10px;
}

body[data-page="product"] .buy-pack strong {
  margin-top: 0;
  line-height: 1.2;
}

body[data-page="product"] .buy-pack em {
  margin-top: 10px !important;
}

body[data-page="product"] .buy-pack-unit,
body[data-page="product"] .buy-pack-savings,
body[data-page="product"] .buy-pack-note {
  line-height: 1.35;
}

body[data-page="product"] .buy-pack-note {
  min-height: 38px;
}

body[data-page="product"] .buy-pack-select {
  margin-top: auto !important;
  min-height: 40px;
  background: #171717;
  color: var(--white) !important;
  white-space: normal;
}

.pack-cta {
  margin-top: 28px;
  text-align: center;
}

@media (max-width: 768px) {
  .pack-cta .btn,
  .buy-actions .btn {
    width: 100%;
  }
}

body[data-page="product"] .sticky-purchase-inner strong,
body[data-page="product"] [data-sticky-price] {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  word-spacing: -2px;
}

body[data-page="product"] .product-tab-panel {
  padding-top: 42px;
  padding-bottom: 54px;
}

body[data-page="product"] .product-ingredients-tab {
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
}

body[data-page="product"] .product-ingredients-tab__header {
  max-width: 820px;
  margin: 0 auto 26px;
  text-align: center;
}

body[data-page="product"] .product-ingredients-tab__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 9px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #d90f0f;
}

body[data-page="product"] .product-ingredients-tab__title {
  max-width: 760px;
  margin: 0 auto;
  font-family: "Oswald", sans-serif;
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: #151515;
  text-wrap: balance;
}

body[data-page="product"] .product-ingredients-tab__intro {
  max-width: 650px;
  margin: 12px auto 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #4f4a42;
}

body[data-page="product"] .product-ingredients-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  margin-top: 28px;
}

body[data-page="product"] .product-ingredient-card {
  position: relative;
  min-width: 0;
  min-height: 370px;
  perspective: 1200px;
}

body[data-page="product"] .product-ingredient-card__button {
  width: 100%;
  height: 100%;
  min-height: 370px;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: transparent;
  color: inherit;
  text-align: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

body[data-page="product"] .product-ingredient-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 370px;
  display: block;
  transform-style: preserve-3d;
  transition: transform 520ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

body[data-page="product"] .product-ingredient-card__face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 370px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 18px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: 0 12px 28px rgba(65, 40, 0, 0.12);
}

body[data-page="product"] .product-ingredient-card__front {
  background: #fffaf0;
}

body[data-page="product"] .product-ingredient-card__media {
  height: 220px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(
      180deg,
      rgba(255, 212, 41, 0.22) 0%,
      rgba(255, 255, 255, 0) 100%
    );
}

body[data-page="product"] .product-ingredient-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
}

body[data-page="product"] .product-ingredient-card__front-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  padding: 19px;
  background: #fffaf0;
}

body[data-page="product"] .product-ingredient-card__name {
  font-family: "Inter", sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.25;
  color: #151515;
}

body[data-page="product"] .product-ingredient-card__hint {
  width: max-content;
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #fce6e3;
  color: #c70707;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

body[data-page="product"] .product-ingredient-card__back {
  transform: rotateY(180deg);
  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(255, 212, 41, 0.2),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      #171717 0%,
      #242424 100%
    );
  color: #fff9ec;
}

body[data-page="product"] .product-ingredient-card__back-content {
  width: 100%;
  height: 100%;
  min-height: 370px;
  display: flex;
  flex-direction: column;
  padding: 24px 22px;
}

body[data-page="product"] .product-ingredient-card__back-label {
  margin-bottom: 9px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffc400;
}

body[data-page="product"] .product-ingredient-card__back-title {
  margin-bottom: 18px;
  font-family: "Inter", sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.25;
  color: #fff9ec;
}

body[data-page="product"] .product-ingredient-card__benefits {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body[data-page="product"] .product-ingredient-card__benefits li {
  position: relative;
  margin: 0;
  padding-left: 23px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #f6f2ea;
}

body[data-page="product"] .product-ingredient-card__benefits li::before {
  content: "\2713";
  position: absolute;
  top: 0;
  left: 0;
  color: #ffc400;
  font-size: 14px;
  font-weight: 800;
}

body[data-page="product"] .product-ingredient-card__return {
  margin-top: auto;
  padding-top: 18px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #c8c8c8;
}

body[data-page="product"]
.product-ingredient-card.is-flipped
.product-ingredient-card__inner,
body[data-page="product"]
.product-ingredient-card__button[aria-expanded="true"]
.product-ingredient-card__inner {
  transform: rotateY(180deg);
}

@media (hover: hover) and (pointer: fine) {
  body[data-page="product"]
  .product-ingredient-card:hover
  .product-ingredient-card__inner {
    transform: rotateY(180deg);
  }
}

body[data-page="product"]
.product-ingredient-card__button:focus-visible {
  outline: 3px solid #d90f0f;
  outline-offset: 4px;
}

body[data-page="product"]
.product-ingredient-card__button:hover
.product-ingredient-card__face {
  box-shadow: 0 17px 36px rgba(35, 20, 0, 0.19);
}

body[data-page="home"] .ingredient-flip-card__media,
body[data-page="product"] .product-ingredient-card__media {
  background: transparent !important;
}

body[data-page="home"] .ingredient-flip-card__image,
body[data-page="product"] .product-ingredient-card__image {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: contain;
  object-position: center;
  background: transparent !important;
  mix-blend-mode: normal;
  border: 0;
  border-radius: 0;
}

.product-image img,
.hero-media img,
.product-gallery img,
.cart-line-item img,
.checkout-line-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  visibility: visible;
}

.product-image,
.product-gallery,
.cart-line-item .image-frame,
.checkout-line-item .image-frame {
  width: 100%;
  margin: 0;
}

/* ============================================================
   About Page Typography and Spacing Refinement
   ============================================================ */
body[data-page="about"] main > section,
body[data-page="about"] .about-section {
  padding-top: 64px;
  padding-bottom: 64px;
}

body[data-page="about"] .page-hero,
body[data-page="about"] .about-hero {
  padding-top: 72px;
  padding-bottom: 72px;
}

body[data-page="about"] .section-head,
body[data-page="about"] .section-header {
  max-width: 850px;
  margin: 0 auto 26px;
  text-align: center;
}

body[data-page="about"] .section-header.is-centered {
  margin-inline: auto;
  text-align: center;
}

body[data-page="about"] .section-head p,
body[data-page="about"] .section-header p {
  margin-top: 10px;
}

body[data-page="about"] .page-hero-grid,
body[data-page="about"] .split-layout,
body[data-page="about"] .about-split,
body[data-page="about"] .split-section {
  gap: 38px;
  align-items: center;
}

body[data-page="about"] .about-hero h1,
body[data-page="about"] .page-hero h1,
body[data-page="about"] .hero-title,
body[data-page="about"] .page-title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #151515;
  max-width: 780px;
  margin: 0 0 18px;
  text-wrap: balance;
}

body[data-page="about"] .section-title,
body[data-page="about"] .section-heading,
body[data-page="about"] h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: #151515;
  margin: 0;
  text-wrap: balance;
}

body[data-page="about"] .section-forest h2,
body[data-page="about"] .section-dark h2,
body[data-page="about"] .section-dark .section-title,
body[data-page="about"] .section-dark .section-heading {
  color: #fff9ec;
}

body[data-page="about"] .eyebrow,
body[data-page="about"] .section-eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d90f0f;
  margin-bottom: 9px;
}

body[data-page="about"] .section-forest .eyebrow,
body[data-page="about"] .section-dark .eyebrow,
body[data-page="about"] .section-dark .section-eyebrow {
  color: #ffc400;
}

body[data-page="about"] p,
body[data-page="about"] .section-copy,
body[data-page="about"] .about-copy,
body[data-page="about"] .page-lead {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

body[data-page="about"] .page-lead,
body[data-page="about"] .split-copy,
body[data-page="about"] .section-copy,
body[data-page="about"] .about-copy {
  max-width: 650px;
}

body[data-page="about"] .page-lead {
  margin-top: 0;
}

body[data-page="about"] .split-copy h2,
body[data-page="about"] .final-cta h2,
body[data-page="about"] .display-title {
  margin-bottom: 0;
}

body[data-page="about"] .display-title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(30px, 3.2vw, 48px) !important;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: #151515 !important;
  text-wrap: balance;
}

body[data-page="about"] .split-copy p + p,
body[data-page="about"] .section-head p + p {
  margin-top: 14px;
}

body[data-page="about"] .grid-4,
body[data-page="about"] .grid-5,
body[data-page="about"] .values-grid {
  gap: 18px;
}

body[data-page="about"] .process-grid,
body[data-page="about"] .quality-process {
  gap: 18px;
}

body[data-page="about"] .value-card {
  padding: 22px;
  border-radius: 18px;
}

body[data-page="about"] .process-card,
body[data-page="about"] .process-step {
  padding: 22px;
}

body[data-page="about"] .value-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 8px;
}

body[data-page="about"] .value-card p {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

body[data-page="about"] .process-number {
  font-family: "Inter", sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}

body[data-page="about"] .process-card h3,
body[data-page="about"] .process-step h3 {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  margin: 10px 0 7px;
}

body[data-page="about"] .final-cta {
  padding-top: 58px;
  padding-bottom: 58px;
}

body[data-page="about"] .final-cta h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 500;
  line-height: 1.08;
}

/* ============================================================
   Contact Page Typography and Spacing Refinement
   ============================================================ */
body[data-page="contact"] main > section,
body[data-page="contact"] .contact-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

body[data-page="contact"] .contact-hero,
body[data-page="contact"] .page-hero {
  padding-top: 64px;
  padding-bottom: 64px;
}

body[data-page="contact"] .contact-layout,
body[data-page="contact"] .contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 34px;
  align-items: start;
}

body[data-page="contact"] .contact-hero h1,
body[data-page="contact"] .page-hero h1,
body[data-page="contact"] .hero-title,
body[data-page="contact"] .page-title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 0 0 16px;
  text-wrap: balance;
  color: #fff9ec;
}

body[data-page="contact"] .section-title,
body[data-page="contact"] .section-heading,
body[data-page="contact"] h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(29px, 3vw, 46px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
  text-wrap: balance;
}

body[data-page="contact"] .section-head,
body[data-page="contact"] .section-header {
  max-width: 800px;
  margin: 0 auto 24px;
  text-align: center;
}

body[data-page="contact"] .section-header.is-centered {
  margin-inline: auto;
  text-align: center;
}

body[data-page="contact"] .section-head p,
body[data-page="contact"] .section-header p {
  margin-top: 9px;
}

body[data-page="contact"] .section-forest h2,
body[data-page="contact"] .section-dark h2,
body[data-page="contact"] .section-dark .section-title {
  color: #fff9ec;
}

body[data-page="contact"] .eyebrow,
body[data-page="contact"] .section-eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #d90f0f;
  margin-bottom: 9px;
}

body[data-page="contact"] .section-dark .eyebrow,
body[data-page="contact"] .contact-hero .eyebrow,
body[data-page="contact"] .page-hero .eyebrow {
  color: #ffc400;
}

body[data-page="contact"] .contact-hero p,
body[data-page="contact"] .page-hero p,
body[data-page="contact"] .hero-copy,
body[data-page="contact"] .page-lead {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 620px;
  margin: 0;
}

body[data-page="contact"] .page-hero .container {
  display: grid;
  justify-items: center;
}

body[data-page="contact"] .contact-cards,
body[data-page="contact"] .support-cards {
  gap: 16px;
}

body[data-page="contact"] .contact-card,
body[data-page="contact"] .support-card,
body[data-page="contact"] .policy-card {
  padding: 20px;
  border-radius: 16px;
}

body[data-page="contact"] .contact-card h3,
body[data-page="contact"] .support-card h3,
body[data-page="contact"] .policy-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 6px;
}

body[data-page="contact"] .contact-card p,
body[data-page="contact"] .support-card p,
body[data-page="contact"] .policy-card p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

body[data-page="contact"] .contact-icon,
body[data-page="contact"] .contact-card .icon,
body[data-page="contact"] .support-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
}

body[data-page="contact"] .contact-form,
body[data-page="contact"] .contact-form-card,
body[data-page="contact"] .form-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 18px;
}

body[data-page="contact"] .contact-form h2,
body[data-page="contact"] .contact-form-card h2,
body[data-page="contact"] .form-card h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 500;
  line-height: 1.08;
  margin-bottom: 10px;
}

body[data-page="contact"] .contact-form > p,
body[data-page="contact"] .contact-form-card > p,
body[data-page="contact"] .form-intro {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.55;
}

body[data-page="contact"] .form-grid,
body[data-page="contact"] .field-grid,
body[data-page="contact"] .contact-form {
  gap: 16px;
}

body[data-page="contact"] .field,
body[data-page="contact"] .form-group {
  margin-bottom: 0;
}

body[data-page="contact"] label,
body[data-page="contact"] .field label {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 6px;
}

body[data-page="contact"] input,
body[data-page="contact"] select,
body[data-page="contact"] textarea {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 10px;
}

body[data-page="contact"] textarea {
  min-height: 130px;
  resize: vertical;
}

body[data-page="contact"] .contact-form button[type="submit"],
body[data-page="contact"] .contact-submit,
body[data-page="contact"] [data-contact-submit] {
  min-height: 50px;
  padding: 13px 24px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: 11px;
}

body[data-page="contact"] .response-note {
  margin-top: 14px;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

body[data-page="contact"] .policy-grid {
  gap: 16px;
}

body[data-page="contact"] a[data-whatsapp-link].btn {
  margin-top: 14px !important;
  font-family: "Inter", sans-serif;
}

body[data-page="contact"] a[href="index.html#faq"] {
  display: inline-block;
  margin-top: 14px !important;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600 !important;
  color: var(--forest);
  text-decoration: underline;
}

/* Cart drawer and quantity controls */
.qty-row,
.cart-qty {
  display: inline-grid !important;
  grid-template-columns: 40px minmax(42px, auto) 40px;
  align-items: center;
  width: max-content;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.12) !important;
  border-radius: 12px;
  background: #fffdf7 !important;
}

.qty-row button,
.cart-qty button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #fffdf7 !important;
  color: #171717 !important;
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  opacity: 1 !important;
  visibility: visible !important;
}

.qty-row button span,
.cart-qty button span {
  display: block;
  color: #171717 !important;
  line-height: 1;
}

.qty-row button:hover,
.cart-qty button:hover,
.qty-row button:focus-visible,
.cart-qty button:focus-visible {
  background: var(--yellow-primary) !important;
  color: #171717 !important;
}

.qty-row .qty-value,
.cart-qty .qty-value {
  min-width: 42px;
  height: 40px;
  padding: 0 10px;
  border-inline: 1px solid rgba(17, 17, 17, 0.08);
  background: #fffaf0;
  color: #171717 !important;
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1;
}

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

.drawer-head .icon-btn {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  box-shadow: none;
}

.drawer-head .icon-btn:hover,
.drawer-head .icon-btn:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
}

.drawer-head .icon-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.cart-item {
  grid-template-columns: 86px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  padding: 16px 0;
}

.cart-item .image-frame {
  width: 86px;
  height: 86px;
  min-height: 86px;
  border-radius: 12px;
}

.cart-item .image-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
}

.cart-item-main {
  min-width: 0;
}

.cart-item h3 {
  margin-bottom: 5px;
  color: #171717;
  line-height: 1.2;
}

.cart-item p {
  line-height: 1.35;
}

.cart-line-price {
  margin-top: 8px;
  color: #171717 !important;
  font-weight: 800;
}

.cart-item-actions {
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.remove-link {
  min-height: 36px;
  padding: 0 2px;
  color: #6b6258;
  text-align: right;
}

.cash-badge {
  justify-content: flex-start !important;
  gap: 12px;
  min-height: auto;
  margin-bottom: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(245, 193, 66, 0.32);
  border-radius: 14px;
  background: linear-gradient(180deg, #171717 0%, #222222 100%) !important;
  color: var(--white) !important;
  text-align: left;
}

.cash-badge-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--yellow-primary);
  color: #171717 !important;
}

.cash-badge-icon svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
}

.cash-badge strong,
.cash-badge small {
  display: block;
}

.cash-badge strong {
  color: var(--white);
  font-size: 0.86rem;
  line-height: 1.2;
}

.cash-badge small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
}

.drawer-foot .summary-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 16px;
  margin: 0;
  padding: 8px 0;
  color: #51493f;
}

.drawer-foot .summary-row span {
  text-align: left;
}

.drawer-foot .summary-row strong {
  min-width: 110px;
  color: #171717;
  text-align: right;
  white-space: nowrap;
}

.drawer-foot .summary-row.total {
  margin-top: 8px;
  padding-top: 12px;
  color: #171717 !important;
  font-size: 1rem;
}

.drawer-foot .summary-row.total strong {
  font-size: 1.08rem;
  font-weight: 900;
}

@media (max-width: 520px) {
  .drawer-head,
  .drawer-body,
  .drawer-foot {
    padding-inline: 18px;
  }

  .cart-item {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px;
  }

  .cart-item .image-frame {
    width: 76px;
    height: 76px;
    min-height: 76px;
  }

  .cart-item-actions {
    align-items: flex-start;
  }

  .drawer-foot .summary-row strong {
    min-width: 92px;
  }
}

/* Checkout redesign */
body[data-page="checkout"].checkout-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #fff8e3 0%, #f7edda 48%, #fffdf7 100%);
}

body[data-page="checkout"] .checkout-top-strip {
  min-height: 30px;
  padding: 5px 16px;
  font-size: 0.72rem;
}

body[data-page="checkout"] .checkout-header {
  top: 30px;
  background: rgba(255, 253, 247, 0.98);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.05);
}

body[data-page="checkout"] .checkout-header-inner {
  min-height: 58px;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
  align-items: center;
  gap: 18px;
}

body[data-page="checkout"] .checkout-header .brand {
  justify-self: start;
}

body[data-page="checkout"] .checkout-header-status {
  justify-self: center;
  color: #171717;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

body[data-page="checkout"] .back-link {
  justify-self: end;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  background: #fffdf7;
  color: #171717;
  font-size: 0.82rem;
  font-weight: 800;
}

body[data-page="checkout"] .back-link:hover,
body[data-page="checkout"] .back-link:focus-visible {
  border-color: rgba(217, 15, 15, 0.28);
  color: var(--red-primary);
}

body[data-page="checkout"] .checkout-section {
  padding: 26px 0 56px;
}

body[data-page="checkout"] .checkout-layout {
  grid-template-columns: minmax(0, 1.52fr) minmax(320px, 0.98fr);
  gap: 28px;
  align-items: start;
  padding: 0;
}

body[data-page="checkout"] .checkout-form-column,
body[data-page="checkout"] .checkout-summary-column {
  order: initial;
}

body[data-page="checkout"] .checkout-form,
body[data-page="checkout"] .checkout-summary {
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(17, 17, 17, 0.08);
}

body[data-page="checkout"] .checkout-form {
  padding: 24px;
  background: rgba(255, 253, 247, 0.96);
}

body[data-page="checkout"] .checkout-block {
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.07);
}

body[data-page="checkout"] .checkout-block:last-of-type {
  margin-bottom: 18px;
  padding-bottom: 0;
  border-bottom: 0;
}

body[data-page="checkout"] .checkout-block h2 {
  margin-bottom: 14px;
  color: #171717;
  font-size: 1.05rem;
  font-weight: 900;
}

body[data-page="checkout"] .checkout-step {
  width: 26px;
  height: 26px;
  background: #171717;
  color: var(--yellow-primary);
  font-size: 0.78rem;
  font-family: var(--font-body);
}

body[data-page="checkout"] .field-grid {
  gap: 14px;
}

body[data-page="checkout"] .field {
  margin-bottom: 14px;
}

body[data-page="checkout"] .field-grid .field {
  margin-bottom: 0;
}

body[data-page="checkout"] .field label {
  margin-bottom: 6px;
  color: #171717;
  font-size: 0.82rem;
  font-weight: 800;
}

body[data-page="checkout"] .field input,
body[data-page="checkout"] .field select,
body[data-page="checkout"] .field textarea {
  min-height: 46px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 10px;
  background: #fffdf7;
  color: #171717;
  font-size: 0.92rem;
}

body[data-page="checkout"] .field textarea {
  min-height: 92px;
}

body[data-page="checkout"] .field-hint,
body[data-page="checkout"] .field-error {
  margin-top: 6px;
  font-size: 0.76rem;
}

body[data-page="checkout"] .payment-box {
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1.5px solid var(--yellow-primary);
  border-radius: 14px;
  background: #fffdf7;
  box-shadow: 0 10px 24px rgba(245, 193, 66, 0.12);
}

body[data-page="checkout"] .payment-radio {
  width: 34px;
  height: 34px;
  margin-top: 0;
  border: 0;
  background: var(--yellow-primary);
  color: #171717;
}

body[data-page="checkout"] .payment-radio::after {
  content: none;
}

body[data-page="checkout"] .payment-radio svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body[data-page="checkout"] .payment-box strong {
  display: block;
  color: #171717;
  font-size: 0.96rem;
  line-height: 1.2;
}

body[data-page="checkout"] .payment-box p,
body[data-page="checkout"] .payment-box small {
  margin: 3px 0 0;
  color: #61584e;
  font-size: 0.84rem;
  line-height: 1.35;
}

body[data-page="checkout"] .payment-box small {
  display: block;
  color: var(--red-primary);
  font-weight: 700;
}

body[data-page="checkout"] .checkbox-row {
  align-items: flex-start;
  gap: 10px;
  padding: 12px 13px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 12px;
  background: #fffaf0;
}

body[data-page="checkout"] .checkbox-row + .checkbox-row {
  margin-top: 10px;
}

body[data-page="checkout"] .checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--red-primary);
}

body[data-page="checkout"] .checkbox-row span {
  color: #28231f;
  font-size: 0.88rem;
  line-height: 1.45;
}

body[data-page="checkout"] [data-place-order] {
  min-height: 52px;
  border-color: #b70606;
  border-radius: 12px;
  background: linear-gradient(180deg, #ea1616 0%, #c70707 100%);
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 900;
  box-shadow: 0 14px 26px rgba(217, 15, 15, 0.18);
}

body[data-page="checkout"] .checkout-submit-note {
  margin: 10px 0 0;
  color: #6b6258;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

body[data-page="checkout"] .checkout-submit-status {
  min-height: 18px;
  margin: 9px 0 0;
  color: var(--red-primary);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

body[data-page="checkout"] .checkout-summary {
  position: sticky;
  top: 112px;
  padding: 20px;
  background: linear-gradient(180deg, #111111 0%, #1c1c1c 100%);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

body[data-page="checkout"] .checkout-summary h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 1.18rem;
  font-weight: 900;
}

body[data-page="checkout"] .checkout-summary-items {
  gap: 12px;
}

body[data-page="checkout"] .checkout-line-item {
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-page="checkout"] .checkout-line-item .image-frame {
  width: 64px;
  height: 64px;
  min-height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: #fff8e3;
}

body[data-page="checkout"] .checkout-line-item .image-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
}

body[data-page="checkout"] .checkout-line-copy {
  min-width: 0;
}

body[data-page="checkout"] .checkout-line-item h3 {
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1.25;
}

body[data-page="checkout"] .checkout-line-item p,
body[data-page="checkout"] .checkout-line-item span {
  display: block;
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  line-height: 1.3;
}

body[data-page="checkout"] .checkout-line-item strong {
  justify-self: end;
  margin: 0;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
}

body[data-page="checkout"] .checkout-summary-totals {
  padding: 12px 0 4px;
}

body[data-page="checkout"] .checkout-summary .summary-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 16px;
  margin: 0;
  padding: 7px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

body[data-page="checkout"] .checkout-summary .summary-row strong {
  min-width: 105px;
  color: var(--white);
  text-align: right;
  white-space: nowrap;
}

body[data-page="checkout"] .checkout-summary .summary-row.total {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--yellow-bright) !important;
}

body[data-page="checkout"] .checkout-summary .summary-row.total strong,
body[data-page="checkout"] [data-checkout-total] {
  color: var(--yellow-bright);
  font-size: 1.12rem;
  font-weight: 900;
}

body[data-page="checkout"] .checkout-trust-badges {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

body[data-page="checkout"] .checkout-trust-badges span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 10px;
  border: 1px solid rgba(245, 193, 66, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
  font-weight: 800;
}

body[data-page="checkout"] .checkout-trust-badges svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  fill: none;
  stroke: var(--yellow-primary);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body[data-page="checkout"] .checkout-summary-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.4;
}

@media (max-width: 900px) {
  body[data-page="checkout"] .checkout-layout {
    grid-template-columns: 1fr;
  }

  body[data-page="checkout"] .checkout-summary-column {
    order: 1;
  }

  body[data-page="checkout"] .checkout-form-column {
    order: 2;
  }

  body[data-page="checkout"] .checkout-summary {
    position: static;
  }
}

@media (max-width: 640px) {
  body[data-page="checkout"] .checkout-header-inner {
    grid-template-columns: minmax(120px, 1fr) auto auto;
    justify-items: stretch;
    gap: 8px;
    padding: 8px 0;
    min-height: 58px;
  }

  body[data-page="checkout"] .checkout-header .brand {
    justify-self: start;
  }

  body[data-page="checkout"] .checkout-header-status {
    justify-self: center;
    font-size: 0.76rem;
    white-space: nowrap;
  }

  body[data-page="checkout"] .back-link {
    justify-self: end;
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.74rem;
    white-space: nowrap;
  }

  body[data-page="checkout"] .checkout-header .brand-copy strong {
    font-size: 1rem;
  }

  body[data-page="checkout"] .checkout-header .brand-copy span {
    font-size: 0.64rem;
  }

  body[data-page="checkout"] .checkout-section {
    padding-top: 18px;
  }

  body[data-page="checkout"] .checkout-form,
  body[data-page="checkout"] .checkout-summary {
    padding: 18px;
    border-radius: 16px;
  }

  body[data-page="checkout"] .field-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="checkout"] .checkout-line-item {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  body[data-page="checkout"] .checkout-line-item strong {
    grid-column: 2;
    justify-self: start;
    margin-top: 4px;
  }

  body[data-page="checkout"] .checkout-line-item .image-frame {
    width: 58px;
    height: 58px;
    min-height: 58px;
  }
}

/* Success/order received redesign */
body[data-page="success"] .success-page {
  padding: 34px 0 58px;
  background: linear-gradient(180deg, #fff8e3 0%, #fffdf7 42%, #f7edda 100%);
}

body[data-page="success"] .success-wrap {
  width: min(100% - 32px, 900px);
  margin: 0 auto;
  text-align: center;
}

body[data-page="success"] .success-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  background: linear-gradient(180deg, var(--yellow-bright) 0%, var(--yellow-primary) 100%);
  color: #171717;
  box-shadow: 0 12px 24px rgba(245, 193, 66, 0.22);
}

body[data-page="success"] .success-icon svg {
  width: 25px;
  height: 25px;
}

body[data-page="success"] .success-title {
  margin: 0;
  color: #171717;
  font-family: var(--font-body);
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 900;
  line-height: 1;
  text-transform: none;
}

body[data-page="success"] .success-subtitle {
  max-width: 620px;
  margin: 10px auto 22px;
  color: #5f564c;
  font-size: 0.98rem;
  line-height: 1.55;
}

body[data-page="success"] .success-card {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 22px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  background: rgba(255, 253, 247, 0.98);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.09);
  color: #171717;
  text-align: left;
}

body[data-page="success"] .success-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

body[data-page="success"] .success-card-head span {
  color: #6b6258;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body[data-page="success"] .success-card-head strong {
  color: var(--red-primary);
  font-size: 1.15rem;
  font-weight: 900;
}

body[data-page="success"] .order-number-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 14px;
  padding: 0 0 14px;
  margin: 0 0 14px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

body[data-page="success"] .order-number-row > div {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 12px;
  background: #fffaf0;
}

body[data-page="success"] .order-number-row span,
body[data-page="success"] .detail-row span:first-child {
  display: block;
  color: #6b6258;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

body[data-page="success"] .order-number-row strong {
  display: block;
  margin-top: 4px;
  color: #171717;
  font-family: var(--font-body) !important;
  font-size: 0.98rem !important;
  font-weight: 900;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

body[data-page="success"] .detail-list {
  gap: 0;
}

body[data-page="success"] .detail-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.72fr) minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

body[data-page="success"] .detail-row span:last-child {
  color: #171717;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.4;
  text-align: right;
  overflow-wrap: anywhere;
}

body[data-page="success"] .detail-row.total {
  margin-top: 4px;
  padding: 12px 0;
  border-top: 1px solid rgba(217, 15, 15, 0.18);
  color: #171717;
}

body[data-page="success"] .detail-row.total span:first-child,
body[data-page="success"] .detail-row.total span:last-child {
  color: var(--red-primary);
  font-size: 1rem;
  font-weight: 900;
}

body[data-page="success"] .detail-row.address-row {
  grid-template-columns: 1fr;
  gap: 5px;
  border-bottom: 0;
}

body[data-page="success"] .detail-row.address-row span:last-child {
  text-align: left;
}

body[data-page="success"] .tracker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px auto 20px;
}

body[data-page="success"] .tracker-step {
  min-height: 174px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 18px 15px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 16px;
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.06);
}

body[data-page="success"] .tracker-step.is-active {
  border-color: rgba(245, 193, 66, 0.6);
  background: #fffaf0;
}

body[data-page="success"] .tracker-step .icon-box {
  width: 44px;
  height: 44px;
  margin: 0 auto 11px;
  background: linear-gradient(180deg, var(--yellow-bright) 0%, var(--yellow-primary) 100%);
  color: #171717;
}

body[data-page="success"] .tracker-step strong {
  min-height: 38px;
  color: #171717;
  font-size: 0.92rem;
  line-height: 1.25;
}

body[data-page="success"] .tracker-step span:not(.icon-box) {
  margin-top: 7px;
  color: #645b51;
  font-size: 0.82rem;
  line-height: 1.45;
}

body[data-page="success"] .success-actions {
  display: grid;
  grid-template-columns: minmax(220px, auto) repeat(2, minmax(150px, auto));
  justify-content: center;
  gap: 10px;
  margin: 0 auto 16px;
}

body[data-page="success"] .success-actions .btn {
  min-height: 48px;
  border-radius: 12px;
  font-size: 0.9rem;
}

body[data-page="success"] .success-actions .btn-primary {
  background: linear-gradient(180deg, #ea1616 0%, #c70707 100%);
  color: var(--white);
  border-color: #b70606;
}

body[data-page="success"] .success-actions .btn-secondary {
  background: #171717;
  color: var(--white);
  border-color: #171717;
}

body[data-page="success"] .success-actions .btn-secondary:hover,
body[data-page="success"] .success-actions .btn-secondary:focus-visible {
  color: var(--yellow-bright);
  border-color: var(--yellow-primary);
}

body[data-page="success"] .reminder-box {
  width: min(100%, 620px);
  margin: 0 auto;
  padding: 13px 16px;
  border: 1px solid rgba(245, 193, 66, 0.35);
  border-radius: 14px;
  background: #fff5d2;
  color: #3a3128;
  font-size: 0.88rem;
  font-weight: 700;
}

body[data-page="success"] .reminder-box svg {
  width: 19px;
  height: 19px;
  color: var(--red-primary);
}

@media (max-width: 760px) {
  body[data-page="success"] .success-page {
    padding: 24px 0 42px;
  }

  body[data-page="success"] .success-card {
    padding: 18px;
  }

  body[data-page="success"] .order-number-row,
  body[data-page="success"] .tracker,
  body[data-page="success"] .success-actions {
    grid-template-columns: 1fr;
  }

  body[data-page="success"] .detail-row {
    grid-template-columns: minmax(112px, 0.72fr) minmax(0, 1fr);
    gap: 12px;
  }

  body[data-page="success"] .detail-row span:last-child {
    text-align: right;
  }

  body[data-page="success"] .detail-row.address-row {
    grid-template-columns: 1fr;
  }

  body[data-page="success"] .detail-row.address-row span:last-child {
    text-align: left;
  }

  body[data-page="success"] .tracker-step {
    min-height: auto;
  }

  body[data-page="success"] .tracker-step strong {
    min-height: auto;
  }
}
