:root {
  --ink: #102019;
  --muted: #58655f;
  --line: #d9e8df;
  --paper: #ffffff;
  --wash: #f0fbf4;
  --mint: #dcf8e8;
  --green: #078d58;
  --green-dark: #05643f;
  --teal: #009c8c;
  --lime: #d4f65b;
  --gold: #f0aa24;
  --orange: #f97316;
  --red: #d92d20;
  --danger: #b42318;
  --shadow: 0 18px 45px rgba(16, 32, 25, 0.1);
  --font-body: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Outfit", "Manrope", Inter, ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: linear-gradient(180deg, #fbfffc 0%, var(--paper) 28%, #f8fcfa 100%);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(223, 232, 226, 0.85);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--green), var(--teal));
}

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

.header-nav a:hover,
.site-footer a:hover,
.back-link:hover {
  color: var(--green);
}

.header-cta,
.secure-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  color: white;
  background: var(--green);
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(7, 141, 88, 0.18);
}

.promo-strip {
  position: sticky;
  top: 69px;
  z-index: 19;
  border-bottom: 1px solid rgba(217, 232, 223, 0.7);
  background: linear-gradient(135deg, #d92d20, #f97316 52%, #f0aa24);
  color: white;
  box-shadow: 0 10px 24px rgba(217, 45, 32, 0.18);
}

.promo-strip-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  min-height: 48px;
  margin-inline: auto;
  font-weight: 900;
}

.promo-strip span {
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.promo-strip strong {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.promo-timer,
.offer-deadline strong,
.checkout-promo-card time {
  display: inline-flex;
  justify-content: center;
  border-radius: 8px;
  padding: 8px 11px;
  background: rgba(16, 32, 25, 0.2);
  font-family: var(--font-heading);
  font-weight: 900;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.section-grid,
.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.78fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.section-grid > *,
.checkout-shell > *,
.field-grid > *,
.benefit-grid > *,
.variant-grid > *,
.review-list > * {
  min-width: 0;
}

.hero-shell {
  padding: 34px 0 56px;
  align-items: start;
}

.gallery {
  min-width: 0;
}

.main-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--wash);
  box-shadow: var(--shadow);
}

.main-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  cursor: zoom-in;
}

.media-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 8px;
  color: white;
  background: rgba(22, 26, 23, 0.72);
  font-size: 0.86rem;
  font-weight: 700;
}

.zoom-photo-button {
  position: absolute;
  right: 14px;
  bottom: 14px;
  min-height: 40px;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  cursor: zoom-in;
  font-weight: 900;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 12px;
  min-width: 0;
}

.thumb {
  padding: 0;
  overflow: hidden;
  min-width: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: white;
  cursor: pointer;
}

.thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.thumb.is-active {
  border-color: var(--green);
}

.buy-panel {
  align-self: start;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 14px;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4.9rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

h2 {
  margin-bottom: 14px;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
}

h3 {
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-size: 1.12rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.hero-copy {
  font-size: 1.08rem;
}

.rating-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 12px 0 18px;
  color: var(--muted);
  font-weight: 650;
}

.promo-card {
  display: grid;
  gap: 8px;
  margin: 16px 0 4px;
  border: 1px solid rgba(240, 170, 36, 0.45);
  border-radius: 8px;
  padding: 16px;
  background: linear-gradient(135deg, #fff8e8, #ffffff);
  box-shadow: 0 14px 30px rgba(240, 170, 36, 0.14);
}

.promo-card span {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 9px;
  color: white;
  background: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promo-card strong {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  line-height: 1.15;
}

.promo-card p {
  margin: 0;
  color: #8a5700;
  font-weight: 850;
}

.stars {
  color: var(--gold);
  letter-spacing: 0;
}

.price-block {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #effbf4, #ffffff);
}

.price-label {
  color: var(--muted);
  font-weight: 700;
}

#price {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
}

.stock-message {
  color: var(--green);
  font-weight: 750;
}

.stock-message.is-sold-out {
  color: var(--danger);
}

.purchase-form,
.checkout-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

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

.meter-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.meter-option {
  display: grid;
  gap: 2px;
  min-height: 62px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  color: var(--ink);
  background: white;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 10px 22px rgba(16, 32, 25, 0.04);
}

.meter-option span {
  font-family: var(--font-heading);
  font-weight: 850;
}

.meter-option small {
  color: var(--green);
  font-weight: 800;
}

.meter-option em {
  color: #8a5700;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 850;
}

.meter-option:hover,
.meter-option.is-selected {
  border-color: var(--green);
  background: #edf9f2;
}

.meter-option.is-selected {
  box-shadow: inset 0 0 0 1px var(--green), 0 12px 26px rgba(7, 141, 88, 0.12);
}

.meter-option.is-sold-out {
  opacity: 0.5;
  cursor: not-allowed;
}

.purchase-form label,
.checkout-form label,
legend {
  color: var(--ink);
  font-weight: 750;
}

select,
input,
textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: white;
}

select:focus,
input:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(19, 122, 85, 0.22);
  outline-offset: 2px;
}

.quantity-control {
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.quantity-control button {
  border: 0;
  background: var(--wash);
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 800;
}

.quantity-control input {
  margin: 0;
  border: 0;
  border-inline: 1px solid var(--line);
  border-radius: 0;
  text-align: center;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  width: 100%;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  color: white;
  background: linear-gradient(135deg, var(--green), var(--teal));
  box-shadow: 0 14px 28px rgba(7, 141, 88, 0.24);
  cursor: pointer;
  font-weight: 900;
  text-align: center;
  white-space: normal;
}

.primary-button:hover {
  background: var(--green-dark);
}

.primary-button:disabled {
  background: #9aa59e;
  cursor: not-allowed;
  box-shadow: none;
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.assurance-grid span,
.summary-benefits span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 10px;
  color: var(--muted);
  background: white;
  font-size: 0.9rem;
  font-weight: 700;
}

.assurance-grid span::before,
.summary-benefits span::before,
.check-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.full-band {
  padding: 76px 0;
}

.offer-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) 230px;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 42px;
  border: 1px solid rgba(240, 170, 36, 0.45);
  border-radius: 8px;
  padding: clamp(18px, 4vw, 28px);
  background: linear-gradient(135deg, #fff9ed, #ffffff 46%, #edf9f2);
  box-shadow: var(--shadow);
}

.offer-copy p:last-child {
  margin-bottom: 0;
}

.offer-deadline {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border-radius: 8px;
  padding: 18px;
  color: white;
  background: linear-gradient(135deg, var(--red), var(--orange));
  text-align: center;
}

.offer-deadline span,
.offer-deadline small {
  font-weight: 850;
}

.offer-deadline strong {
  background: rgba(255, 255, 255, 0.18);
  font-size: 1.6rem;
}

.gift-table {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.gift-table div {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: white;
}

.gift-table span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.gift-table strong {
  color: var(--green-dark);
  font-family: var(--font-heading);
}

.soft-band {
  background: var(--wash);
  border-block: 1px solid var(--line);
}

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

.benefit-grid,
.variant-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.benefit-grid article,
.variant-card,
.review-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: white;
}

.benefit-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 850;
}

.product-story {
  padding: 78px 0;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 700;
}

.check-list li::before {
  margin-top: 8px;
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 12px;
  align-items: end;
}

.image-stack img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--line);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-stack img:first-child {
  aspect-ratio: 4 / 5;
}

.image-stack img:last-child {
  aspect-ratio: 1 / 1;
  margin-bottom: 32px;
}

.video-band {
  color: white;
  padding: 58px 0;
  background: radial-gradient(circle at top left, rgba(212, 246, 91, 0.22), transparent 34%), linear-gradient(135deg, #0b2319, #07442f 54%, #053426);
}

.video-band p,
.video-band .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.video-band .eyebrow {
  color: var(--lime);
}

.video-layout {
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
}

.video-layout video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: black;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.options-section {
  padding: 78px 0;
}

.variant-card {
  display: grid;
  gap: 8px;
  text-align: left;
}

.variant-card strong {
  font-family: var(--font-heading);
  font-size: 1.3rem;
}

.variant-card small {
  color: #8a5700;
  font-weight: 850;
}

.variant-card em {
  color: var(--green);
  font-size: 0.84rem;
  font-style: normal;
  font-weight: 850;
}

.variant-card button {
  min-height: 42px;
  border: 1px solid var(--green);
  border-radius: 8px;
  color: var(--green);
  background: white;
  cursor: pointer;
  font-weight: 800;
}

.variant-card button:hover {
  color: white;
  background: var(--green);
}

.variant-card.is-sold-out {
  opacity: 0.58;
}

.variant-card.is-sold-out button {
  border-color: var(--line);
  color: var(--muted);
  cursor: not-allowed;
}

.review-section {
  padding: 0 0 78px;
  grid-template-columns: 0.75fr 1fr;
}

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

.review-list strong {
  display: block;
  margin-top: 16px;
}

.faq-band {
  background: var(--wash);
  border-top: 1px solid var(--line);
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  background: white;
}

summary {
  cursor: pointer;
  font-weight: 850;
}

details p {
  margin: 14px 0 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 4vw, 48px);
  color: white;
  background: var(--ink);
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  color: var(--mint);
  font-weight: 800;
}

.gallery-open {
  overflow: hidden;
}

.photo-dialog {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 14px;
  background: rgba(16, 32, 25, 0.74);
  backdrop-filter: blur(4px);
}

.photo-dialog[hidden] {
  display: none;
}

.photo-dialog-inner {
  position: relative;
  display: grid;
  width: min(920px, 100%);
  gap: 12px;
  border-radius: 10px;
  padding: 16px;
  background: white;
}

.photo-dialog img {
  width: 100%;
  max-height: 78vh;
  border-radius: 8px;
  object-fit: contain;
  background: var(--wash);
}

.photo-dialog p {
  margin: 0;
  color: var(--ink);
  font-weight: 850;
  text-align: center;
}

.photo-close,
.photo-nav {
  position: absolute;
  z-index: 2;
  border: 0;
  border-radius: 8px;
  color: white;
  background: rgba(16, 32, 25, 0.82);
  cursor: pointer;
  font-weight: 900;
}

.photo-close {
  top: 26px;
  right: 26px;
  min-height: 38px;
  padding: 0 13px;
}

.photo-nav {
  top: 50%;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  transform: translateY(-50%);
  font-size: 2rem;
}

.photo-prev {
  left: 26px;
}

.photo-next {
  right: 26px;
}

.checkout-page {
  background: var(--wash);
}

.checkout-header {
  position: static;
}

.secure-pill {
  background: var(--green);
}

.checkout-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: clamp(18px, 4vw, 34px);
  width: min(1120px, calc(100% - 36px));
  margin: 34px auto 70px;
  align-items: start;
}

.checkout-card,
.summary-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.checkout-card {
  padding: clamp(22px, 4vw, 34px);
}

.checkout-card h1 {
  max-width: none;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.checkout-promo-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 14px;
  align-items: center;
  margin: 0 0 20px;
  border: 1px solid rgba(240, 170, 36, 0.45);
  border-radius: 8px;
  padding: 16px;
  background: linear-gradient(135deg, #fff8e8, #ffffff);
}

.checkout-promo-card span {
  grid-column: 1 / -1;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.checkout-promo-card strong {
  font-family: var(--font-heading);
  line-height: 1.18;
}

.checkout-promo-card time {
  color: white;
  background: linear-gradient(135deg, var(--red), var(--orange));
}

.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 750;
}

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

fieldset {
  display: grid;
  gap: 10px;
  margin: 2px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.choice-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) max-content;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}

.choice-row input {
  width: auto;
  margin: 0;
}

.choice-row strong {
  color: var(--green);
  white-space: nowrap;
}

.choice-row span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.checkout-info-box {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(7, 141, 88, 0.28);
  border-radius: 8px;
  padding: 16px;
  background: #eefaf3;
}

.checkout-info-box.is-warning {
  border-color: rgba(240, 170, 36, 0.46);
  background: #fff8e6;
}

.checkout-info-box strong {
  color: var(--green-dark);
  font-family: var(--font-heading);
  font-size: 1.08rem;
}

.checkout-info-box.is-warning strong {
  color: #8a5700;
}

.checkout-info-box span {
  color: var(--muted);
  line-height: 1.55;
}

.checkout-info-box::before {
  content: "OK";
  display: grid;
  width: 34px;
  height: 30px;
  margin-bottom: 4px;
  place-items: center;
  border-radius: 8px;
  color: var(--green-dark);
  background: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
}

.checkout-info-box.is-warning::before {
  content: "!";
  color: #8a5700;
  background: #ffd66b;
}

.checkout-note {
  margin: 0;
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.checkout-note.is-error {
  color: var(--danger);
  font-weight: 800;
}

.summary-card {
  position: sticky;
  top: 24px;
  overflow: hidden;
}

.summary-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.summary-copy {
  padding: 22px;
}

.summary-copy h2 {
  font-size: 1.4rem;
}

dl {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

dl div,
.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

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

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

.summary-total {
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  font-size: 1.2rem;
}

.summary-total strong {
  color: var(--green);
  font-size: 1.5rem;
}

.summary-benefits {
  display: grid;
  gap: 8px;
  padding: 0 22px 22px;
}

.success-dialog {
  width: min(420px, calc(100% - 32px));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.success-dialog::backdrop {
  background: rgba(22, 26, 23, 0.5);
}

@media (max-width: 980px) {
  .section-grid,
  .checkout-shell,
  .video-layout,
  .review-section,
  .offer-section {
    grid-template-columns: 1fr;
  }

  .buy-panel,
  .summary-card {
    position: static;
  }

  .benefit-grid,
  .variant-grid,
  .gift-table {
    grid-template-columns: repeat(2, 1fr);
  }

  h1 {
    max-width: 14ch;
  }
}

@media (max-width: 700px) {
  .site-header {
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
  }

  .header-nav {
    display: none;
  }

  .header-cta,
  .secure-pill {
    min-height: 36px;
    padding-inline: 10px;
    font-size: 0.88rem;
  }

  .header-cta {
    display: none;
  }

  .promo-strip {
    top: 63px;
  }

  .promo-strip-inner {
    grid-template-columns: 1fr auto;
    width: calc(100% - 24px);
    gap: 8px;
    padding: 8px 0;
  }

  .promo-strip span {
    display: none;
  }

  .promo-strip strong {
    font-size: 0.95rem;
  }

  .promo-timer {
    padding: 7px 9px;
    font-size: 0.92rem;
  }

  .secure-pill {
    font-size: 0;
  }

  .secure-pill::after {
    content: "Seguro";
    font-size: 0.88rem;
  }

  .section-grid,
  .section-inner,
  .checkout-shell {
    width: calc(100% - 32px);
  }

  .hero-shell {
    padding-top: 20px;
  }

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

  .buy-panel {
    padding: 16px;
  }

  .checkout-card {
    padding: 20px 14px;
  }

  .benefit-grid,
  .variant-grid,
  .review-list,
  .field-grid,
  .assurance-grid,
  .gift-table {
    grid-template-columns: 1fr;
  }

  .checkout-promo-card {
    grid-template-columns: 1fr;
  }

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

  .choice-row {
    gap: 8px;
    padding: 10px;
    font-size: 0.86rem;
    grid-template-columns: auto minmax(0, 1fr);
  }

  .choice-row strong {
    grid-column: 2;
    justify-self: start;
  }

  .full-band,
  .product-story,
  .options-section {
    padding: 54px 0;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img:last-child {
    margin-bottom: 0;
  }

  .site-footer {
    display: grid;
  }
}
