@import url('https://fonts.googleapis.com/css2?family=Anton&family=Manrope:wght@400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');

:root {
  --orange: #FF6B1A;
  --orange-dark: #B33D0B;
  --orange-soft: rgba(255, 107, 26, 0.10);

  --gold-1: #F7DE8A;
  --gold-2: #F5D56B;
  --gold-3: #D4A84B;
  --gold-4: #A8821F;

  --green: #2ECC71;
  --red: #E23B2E;
  --white: #FFFFFF;

  --page: #0A0A0A;
  --band: #0D0B0A;
  --surface: #171310;
  --surface-alt: #100D0B;
  --ink: #FFFFFF;
  --body: #C6C1BB;
  --muted: #8A8580;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);
  --shadow: 0 30px 70px -24px rgba(0, 0, 0, 0.85);

  --font-display: 'Anton', 'Impact', sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;

  --header-height: 64px;
  --content-max: 1180px;
  --wide-max: 1320px;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-gold: 0 10px 26px -10px rgba(212, 168, 75, 0.55);
}

.on-light {
  --band: #F4F1ED;
  --surface: #FFFFFF;
  --surface-alt: #EDEBE8;
  --ink: #17130F;
  --body: #3F3934;
  --muted: #6F6862;
  --line: rgba(23, 19, 15, 0.12);
  --line-strong: rgba(23, 19, 15, 0.20);
  --shadow: 0 2px 4px rgba(23, 19, 15, 0.04), 0 16px 36px -20px rgba(23, 19, 15, 0.25);
  color: var(--body);
}

/* ===== RESET / BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  background-color: var(--page);
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(255, 107, 26, 0.07), transparent 52%),
    radial-gradient(ellipse at 80% 100%, rgba(255, 107, 26, 0.04), transparent 60%);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: inherit;
  border: none;
  background: none;
  color: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 20px;
}

.container-wide {
  width: 100%;
  max-width: var(--wide-max);
  margin: 0 auto;
  padding: 0 20px;
}

.text-orange {
  color: var(--orange);
}

.text-gold {
  color: var(--gold-2);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-wrap: balance;
  color: var(--ink);
}

/* ===== GOLD BUY BUTTON ===== */
.btn-gold {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 17px 20px;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--gold-1) 0%, var(--gold-2) 45%, var(--gold-3) 75%, var(--gold-4) 100%);
  color: #1A1205;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 3.4vw, 1.15rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn-gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.75), transparent);
  transform: skewX(-18deg);
  animation: shine 3.4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shine {
  0%,
  62% {
    left: -60%;
  }
  92%,
  100% {
    left: 130%;
  }
}

.btn-gold:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 16px 34px -10px rgba(212, 168, 75, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.btn-gold:active {
  transform: translateY(0);
}

.btn-gold .cart-icon {
  flex: 0 0 auto;
}

/* ===== SECTION · ANNOUNCEMENT BAR ===== */
.announcement-bar {
  position: relative;
  z-index: 60;
  background: linear-gradient(90deg, var(--orange-dark), var(--orange));
  color: var(--white);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.announcement-bar a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 16px;
}

.discount-bubble {
  padding: 2px 9px;
  border-radius: 999px;
  background: var(--white);
  color: var(--orange-dark);
  font-size: 0.75rem;
}
/* ===== /SECTION · ANNOUNCEMENT BAR ===== */

/* ===== SECTION · HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: var(--wide-max);
  height: var(--header-height);
  margin: 0 auto;
  padding: 0 20px;
}

.header-logo {
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}

.logo-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.header-nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
  font-size: 0.85rem;
  font-weight: 600;
  color: #8A8580;
}

.header-nav a:hover {
  color: var(--white);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--gold-1), var(--gold-3));
  color: #1A1205;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.menu-toggle {
  display: none;
  color: var(--white);
}

.mobile-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 90;
  width: min(310px, 84vw);
  padding: 78px 26px 26px;
  background: #050505;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  color: #E8E5E0;
  visibility: hidden;
  transform: translateX(100%);
  transition: transform 0.28s ease, visibility 0.28s ease;
}

.mobile-drawer.open {
  visibility: visible;
  transform: translateX(0);
}

.drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--white);
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.drawer-nav a {
  padding: 13px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 700;
  font-size: 1rem;
}

.drawer-nav a.featured {
  margin-bottom: 12px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--gold-1), var(--gold-3));
  color: #1A1205;
  text-align: center;
}
/* ===== /SECTION · HEADER ===== */

/* ===== SECTION · VSL ===== */
.vsl-section {
  padding: 34px 0 30px;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(255, 107, 26, 0.18), transparent 62%),
    url('../images/hero-bg.jpg') center / cover no-repeat,
    #0A0A0A;
}

.vsl-inner {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 0 20px;
}

.vsl-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8A8580;
}

.vsl-eyebrow .dot-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(226, 59, 46, 0.7);
  animation: pulse-live 1.8s infinite;
}

@keyframes pulse-live {
  70% {
    box-shadow: 0 0 0 9px rgba(226, 59, 46, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(226, 59, 46, 0);
  }
}

.vsl-frame {
  width: min(100%, 440px);
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.vsl-frame vturb-smartplayer,
.vsl-frame iframe,
.vsl-frame video {
  display: block;
  width: 100%;
  border: 0;
}

.vsl-frame:empty,
.vsl-frame vturb-smartplayer:not(:defined) {
  display: block;
  min-height: 420px;
  background: linear-gradient(160deg, #17120d, #070707);
}

.vsl-note {
  margin-top: 14px;
  text-align: center;
  font-size: 0.8rem;
  color: #8A8580;
}
/* ===== /SECTION · VSL ===== */

/* ===== SECTION · SCARCITY / OFFER HEADER ===== */
.offer-head {
  padding: 46px 0 0;
  text-align: center;
}

.offer-head h2 {
  font-size: clamp(1.6rem, 6.4vw, 2.9rem);
  max-width: 40ch;
  margin: 0 auto;
}

.offer-head .offer-sub {
  margin-top: 5px;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-size: clamp(1.05rem, 3.4vw, 1.35rem);
  color: var(--orange);
}

.status-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 22px;
  max-width: 720px;
  margin: 20px auto 0;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-alt);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
}

.status-bar .live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
}

.status-bar .live::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 1.6s ease-in-out infinite;
}

@keyframes blink {
  50% {
    opacity: 0.25;
  }
}

.status-bar .stock strong {
  color: var(--orange);
  font-family: var(--font-mono);
}

.countdown {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 18px auto 0;
}

.countdown-label {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.countdown-display {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
}

.countdown-box {
  min-width: 52px;
  padding: 6px 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 107, 26, 0.4);
  background: var(--orange-soft);
  text-align: center;
}

.arrow-down {
  width: 68px;
  height: 30px;
  margin: 22px auto 0;
  background: linear-gradient(180deg, var(--gold-2), var(--gold-3));
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  animation: nudge 1.6s ease-in-out infinite;
}

@keyframes nudge {
  50% {
    transform: translateY(7px);
  }
}
/* ===== /SECTION · SCARCITY / OFFER HEADER ===== */

/* ===== SECTION · PRICING ===== */
.pricing-section {
  padding: 26px 0 58px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 22px;
  margin-top: 26px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 22px 20px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface), var(--surface-alt));
  box-shadow: var(--shadow);
}

.pricing-card.featured {
  border-color: rgba(245, 213, 107, 0.5);
  background: linear-gradient(180deg, #241B0E, #100D0B);
  box-shadow: 0 0 0 1px rgba(245, 213, 107, 0.2), var(--shadow);
  transform: scale(1.04);
  z-index: 2;
}

.pricing-flag {
  align-self: center;
  margin-bottom: 14px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-card.featured .pricing-flag {
  background: linear-gradient(180deg, var(--gold-1), var(--gold-3));
  color: #1A1205;
}

.pricing-qty {
  font-size: clamp(1.5rem, 5vw, 1.85rem);
  text-align: center;
}

.pricing-supply {
  margin-top: 3px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.pricing-img-wrap {
  display: grid;
  place-items: center;
  min-height: 180px;
  margin: 14px 0 4px;
}

.pricing-img-wrap img {
  max-height: 190px;
  width: auto;
  object-fit: contain;
}

.pricing-perbottle {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin: 6px 0 14px;
  color: var(--ink);
}

.pricing-perbottle .dollar {
  margin-top: 8px;
  font-size: 1.3rem;
  font-weight: 800;
}

.pricing-perbottle .big {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 0.9;
}

.pricing-perbottle .per {
  margin-top: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--muted);
}

.pricing-checks {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--body);
}

.pricing-checks li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.check-icon {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 3px;
  fill: var(--green);
}

.pricing-checks .off {
  color: var(--muted);
}

.pricing-checks .off .x-icon {
  flex: 0 0 auto;
  width: 17px;
  margin-top: 1px;
  text-align: center;
  color: #5A5550;
}

.pricing-checks .bonus {
  color: var(--gold-2);
}

.pricing-checks .bonus .check-icon {
  fill: var(--gold-2);
}

.pricing-cta-wrap {
  margin-top: auto;
}

.payment-icons {
  width: min(100%, 230px);
  margin: 12px auto 14px;
  border-radius: 4px;
}

.pricing-total {
  padding-top: 14px;
  border-top: 1px dashed var(--line-strong);
  text-align: center;
}

.pricing-total .line {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
}

.pricing-total .strike {
  margin-right: 8px;
  color: var(--muted);
  font-weight: 600;
  text-decoration: line-through;
}

.pricing-total .ship {
  margin-top: 3px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
}

.pricing-total .ship.free {
  color: var(--green);
}
/* ===== /SECTION · PRICING ===== */

/* ===== SECTION · SOCIAL PROOF BAR (light island) ===== */
.proof-bar {
  padding: 36px 0;
  background: var(--band);
}

.proof-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 26px 46px;
}

.press-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px 40px;
}

.press-logos img {
  height: 30px;
  width: auto;
  filter: brightness(0);
  opacity: 0.55;
}

.press-logos img.tall {
  height: 54px;
}

.press-caption {
  width: 100%;
  margin-top: 4px;
  text-align: center;
  font-size: 0.7rem;
  color: var(--muted);
}
/* ===== /SECTION · SOCIAL PROOF BAR ===== */

/* ===== TRUSTPILOT WIDGET ===== */
.trustpilot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: var(--surface-alt);
}

.tp-label {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
}

.tp-stars {
  display: flex;
  gap: 3px;
}

.tp-stars span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: #00B67A;
}

.tp-stars svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.tp-meta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--body);
}

.tp-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
}

.tp-brand svg {
  width: 20px;
  height: 20px;
  fill: #00B67A;
}

/* ===== SECTION · DISCOVER COPY ===== */
.discover-section {
  padding: 64px 0;
}

.discover-inner {
  max-width: 820px;
  margin: 0 auto;
}

.discover-inner h2 {
  font-size: clamp(1.55rem, 5.8vw, 2.5rem);
  text-align: center;
}

.accent-bar {
  width: 74px;
  height: 4px;
  margin: 18px auto 26px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--orange), var(--gold-2));
}

.discover-inner p {
  margin-bottom: 16px;
  font-size: clamp(0.98rem, 3.6vw, 1.06rem);
}

.discover-inner p strong {
  color: var(--ink);
}

.pull-quote {
  margin: 22px 0;
  padding: 16px 20px;
  border-left: 3px solid var(--orange);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: clamp(1.02rem, 4vw, 1.18rem);
  font-weight: 700;
  font-style: italic;
  color: var(--ink);
}

.shipping-callout {
  margin-top: 34px;
  padding: 26px 22px;
  border: 1px solid rgba(255, 107, 26, 0.3);
  border-radius: var(--radius-lg);
  background: var(--orange-soft);
  text-align: center;
}

.shipping-callout h3 {
  font-size: clamp(1.25rem, 4.8vw, 1.7rem);
}

.shipping-callout p {
  margin: 12px auto 0;
  max-width: 60ch;
  font-size: 0.98rem;
}

.ship-banner {
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(100%, 900px);
  margin: 30px auto 0;
  padding: 16px 22px;
  border: 1px solid rgba(255, 107, 26, 0.35);
  border-left: 6px solid var(--orange);
  border-radius: var(--radius-md);
  background: var(--orange-soft);
}

.ship-banner-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--orange);
  color: var(--white);
}

.ship-banner h3 {
  font-size: clamp(1.05rem, 3.9vw, 1.45rem);
}

.ship-banner p {
  margin-top: 3px;
  font-size: clamp(0.8rem, 3vw, 0.92rem);
}

.six-bottle-shot {
  width: min(100%, 620px);
  margin: 26px auto 0;
}

.mid-cta {
  width: min(100%, 460px);
  margin: 26px auto 0;
}
/* ===== /SECTION · DISCOVER COPY ===== */

/* ===== SECTION HEADINGS ===== */
.section-head {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.55rem, 6vw, 2.6rem);
}

.section-head p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.98rem;
}

/* ===== SECTION · REAL USERS ===== */
.reviews-section {
  padding: 64px 0;
}

.photo-panel {
  padding: clamp(14px, 2.4vw, 26px);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.photo-panel + .reviews-grid {
  margin-top: 36px;
}

.reviews-grid + .photo-panel {
  margin-top: 36px;
}

.ugc-fan {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, 1.2vw, 12px);
  margin: 0 auto;
  max-width: 960px;
}

.ugc-fan figure {
  flex: 1 1 0;
  min-width: 0;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  border: 3px solid var(--surface);
  background: var(--surface-alt);
  overflow: hidden;
  box-shadow: 0 8px 22px -10px rgba(0, 0, 0, 0.45);
}

.ugc-fan figure:nth-child(3),
.ugc-fan figure:nth-child(4) {
  flex-grow: 1.45;
  z-index: 3;
}

.ugc-fan figure:nth-child(2),
.ugc-fan figure:nth-child(5) {
  flex-grow: 1.2;
  z-index: 2;
  transform: translateY(6px);
}

.ugc-fan figure:first-child,
.ugc-fan figure:last-child {
  transform: translateY(14px);
}

.ugc-fan figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 620px) {
  .ugc-fan figure:first-child,
  .ugc-fan figure:last-child {
    display: none;
  }
}
/* ===== /SECTION · REAL USERS ===== */

/* ===== AMAZON-STYLE REVIEW CARDS (light islands) ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.review-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--surface-alt);
  box-shadow: var(--shadow);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--body);
}

.review-head strong {
  color: var(--ink);
}

.review-avatar {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--surface);
}

.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 4px 12px 4px 8px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  font-size: 0.92rem;
  font-weight: 800;
  color: #C25A18;
}

.review-verified svg {
  fill: #E8963A;
}

.review-package {
  margin: 10px 0;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink);
}

.review-card p:not(.review-package):not(.review-head) {
  font-size: 0.95rem;
}

.review-body + .review-body {
  margin-top: 10px;
}
/* ===== /AMAZON-STYLE REVIEW CARDS ===== */

/* ===== SECTION · GUARANTEE ===== */
.guarantee-section {
  padding: 64px 0;
  background: var(--band);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.guarantee-inner {
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: center;
  gap: 34px;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 20px;
}

.guarantee-seal img {
  width: 100%;
  max-width: 210px;
}

.guarantee-inner h2 {
  font-size: clamp(1.5rem, 5.6vw, 2.4rem);
}

.guarantee-inner p {
  margin-top: 14px;
  font-size: 0.98rem;
}

.guarantee-seals {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.guarantee-seals li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
}

.guarantee-seals .seal-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--gold-3);
  background: rgba(245, 213, 107, 0.12);
  color: var(--gold-2);
}
/* ===== /SECTION · GUARANTEE ===== */

/* ===== SECTION · JOURNEY (all 5 phases visible — no side scrolling) ===== */
.journey-section {
  padding: 64px 0;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  gap: 16px;
}

.journey-card {
  display: flex;
  flex-direction: column;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface), var(--surface-alt));
  box-shadow: var(--shadow);
}

.journey-week {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--orange);
}

.journey-pack {
  margin-top: 2px;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--muted);
}

.journey-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 14px 0 12px;
  border-radius: 14px;
  background: var(--orange-soft);
  border: 1px solid rgba(255, 107, 26, 0.32);
  color: var(--orange);
}

.journey-card h3 {
  font-size: 1.18rem;
}

.journey-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 14px;
  font-size: 0.86rem;
}

.journey-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.journey-list .check-icon {
  width: 15px;
  height: 15px;
  margin-top: 2px;
}
/* ===== /SECTION · JOURNEY ===== */

/* ===== SECTION · FAQ ===== */
.faq-section {
  padding: 64px 0;
  background: var(--band);
  border-top: 1px solid var(--line);
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 20px 4px;
  text-align: left;
  font-size: clamp(0.98rem, 3.8vw, 1.08rem);
  font-weight: 800;
  color: var(--ink);
}

.faq-toggle {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--orange);
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 0.22s ease;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-inner > div {
  padding: 0 4px 22px;
  font-size: 0.96rem;
}

.faq-answer-inner p + p,
.faq-answer-inner ul {
  margin-top: 10px;
}

.faq-answer-inner ul li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 6px;
}

.faq-answer-inner ul li::before {
  content: '';
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.faq-image {
  width: min(100%, 460px);
  margin: 16px 0 6px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
}
/* ===== /SECTION · FAQ ===== */

/* ===== SECTION · STOCK LINE + REFS ===== */
.stock-line {
  margin: 18px auto 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
}

.stock-line strong {
  color: var(--orange);
}

.refs-section {
  padding: 44px 0;
  background: var(--white);
}

.refs-section img {
  width: min(100%, 720px);
  margin: 0 auto;
}

.refs-badges {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
/* ===== /SECTION · STOCK LINE + REFS ===== */

/* ===== SECTION · FOOTER ===== */
.site-footer {
  padding: 48px 0 96px;
  border-top: 1px solid var(--line);
  background: #070707;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.footer-address {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-address a:hover {
  color: var(--orange);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin: 20px 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--body);
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-disclaimer {
  max-width: 900px;
  margin: 0 auto;
  font-size: 0.76rem;
  line-height: 1.65;
  color: #6B6660;
}

.footer-disclaimer + .footer-disclaimer {
  margin-top: 14px;
}

.footer-copy {
  margin-top: 18px;
  font-size: 0.8rem;
  color: var(--muted);
}

#disclaimer {
  display: block;
  max-width: 100%;
  margin-top: 20px;
  overflow-x: auto;
}
/* ===== /SECTION · FOOTER ===== */

/* ===== PITCH GATE ===== */
.gated-content[data-gated] {
  display: none;
}

body.is-gated .announcement-bar,
body.is-gated .header-nav,
body.is-gated .header-cta,
body.is-gated .sticky-cta {
  display: none;
}

body.is-gated .header-inner {
  justify-content: center;
}

/* ===== STICKY MOBILE CTA ===== */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: none;
  align-items: center;
  gap: 12px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(10, 9, 8, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 0.25s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta .sticky-copy {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--muted);
}

.sticky-cta .sticky-copy strong {
  display: block;
  color: var(--ink);
  font-size: 0.9rem;
}

.sticky-cta .btn-gold {
  width: auto;
  flex: 0 0 auto;
  padding: 13px 20px;
  font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1180px) {
  .journey-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .pricing-grid {
    gap: 16px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .guarantee-inner {
    grid-template-columns: 160px 1fr;
    gap: 24px;
  }

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

@media (max-width: 860px) {
  .header-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-right: 4px;
  }

  .header-cta {
    margin-left: auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-inline: auto;
  }

  .pricing-card.featured {
    order: -1;
  }

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

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

  .guarantee-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .guarantee-seals {
    text-align: left;
  }

  .sticky-cta {
    display: flex;
  }

  .ship-banner {
    flex-direction: column;
    text-align: center;
    border-left-width: 1px;
    border-top: 6px solid var(--orange);
  }
}

@media (max-width: 560px) {
  .journey-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-inline: auto;
  }
}

@media (max-width: 380px) {
  .section-head h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 520px) {
  .vsl-section {
    padding: 22px 0 20px;
  }

  .vsl-inner,
  .container,
  .container-wide {
    padding: 0 16px;
  }

  .status-bar {
    border-radius: var(--radius-md);
    gap: 6px;
    flex-direction: column;
  }

  .countdown-display {
    font-size: 1.3rem;
  }

  .pricing-img-wrap {
    min-height: 150px;
  }

  .pricing-img-wrap img {
    max-height: 160px;
  }

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

  .review-card {
    padding: 18px;
  }
}

/* ===== MOBILE POLISH ===== */
@media (max-width: 860px) {
  .menu-toggle {
    display: grid;
    place-items: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin-left: -10px;
    margin-right: 0;
  }

  .drawer-close {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    top: 14px;
    right: 14px;
  }

  .header-logo {
    padding: 6px 0;
  }

  .header-cta {
    padding: 13px 20px;
  }

  .drawer-nav a {
    padding: 16px 4px;
  }

  .footer-links {
    gap: 0 18px;
  }

  .footer-links a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 2px;
  }

  .footer-address a {
    display: inline-block;
    padding: 12px 2px;
  }

  #disclaimer div {
    font-size: 12px !important;
  }

  #disclaimer > div > div {
    flex-wrap: wrap !important;
  }

  #disclaimer > div > div > div {
    flex: 1 1 100% !important;
    min-width: 0 !important;
  }
}

@media (max-width: 620px) {
  .announcement-bar {
    font-size: 0.75rem;
  }

  .discount-bubble {
    font-size: 0.75rem;
  }

  .vsl-eyebrow {
    font-size: 0.75rem;
  }

  .pricing-flag {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }

  .pricing-perbottle .per {
    font-size: 0.75rem;
  }

  .press-caption {
    font-size: 0.75rem;
  }

  .journey-pack {
    font-size: 0.78rem;
  }

  .payment-icons {
    width: min(100%, 260px);
  }
}

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

.offer-until {
  margin-top: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
}

.offer-until strong {
  color: var(--ink);
}

.vsl-section {
  background: #000;
}

body.is-gated .menu-toggle {
  display: none;
}

body.is-gated .header-inner {
  justify-content: center;
}

.btn-gold {
  font-weight: 800;
  -webkit-text-stroke: 0.6px currentColor;
  letter-spacing: 0.005em;
}

.header-cta,
.drawer-nav a.featured {
  -webkit-text-stroke: 0.4px currentColor;
}

.offer-timer {
  position: relative;
  width: min(100%, 760px);
  margin: 26px auto 0;
  padding: 18px clamp(16px, 4vw, 30px) 30px;
  border-radius: 18px;
  border: 3px solid #FFF;
  background: #241E14;
  box-shadow: var(--shadow);
}

.offer-timer-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: clamp(0.85rem, 3.2vw, 1.05rem);
  font-weight: 800;
  color: #FFD200;
}

.offer-timer-status .live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.offer-timer-status .live::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #23D160;
  animation: blink 1.6s ease-in-out infinite;
}

.offer-timer-status .live b {
  color: #23D160;
}

.offer-timer-status .sep {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.35);
}

.offer-timer-status .stock strong {
  color: #FFD200;
  font-family: inherit;
}

.offer-timer-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  font-size: clamp(1rem, 3.8vw, 1.35rem);
  font-weight: 800;
  color: #FFF;
}

.offer-timer-label span {
  color: #FFD200;
  font-size: 1.1em;
  line-height: 1;
}

.offer-timer-clock {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(6px, 2vw, 18px);
  margin-top: 6px;
}

.offer-timer-clock .unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.offer-timer-clock .unit b {
  font-family: var(--font-body);
  font-size: clamp(3.6rem, 15vw, 6.2rem);
  font-weight: 800;
  line-height: 1;
  color: #FFD200;
  -webkit-text-stroke: 1px #FFD200;
}

.offer-timer-clock .unit small {
  margin-top: 2px;
  font-size: clamp(0.8rem, 3vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #FFF;
}

.offer-timer-clock .colon {
  font-size: clamp(2.6rem, 11vw, 4.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: #FFD200;
}

.offer-timer-arrow {
  position: absolute;
  left: 50%;
  bottom: -16px;
  width: 54px;
  height: 30px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #FFD200, #E0A800);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  animation: nudge 1.6s ease-in-out infinite;
}

.offer-clock-bar {
  position: relative;
  width: min(100%, 760px);
  margin: 18px auto 0;
  padding: 10px 20px 12px;
  border-radius: 6px;
  background: linear-gradient(180deg, #FFE27A 0%, #F3C13B 48%, #E0A800 100%);
  box-shadow: 0 10px 26px -14px rgba(224, 168, 0, 0.8);
  text-align: center;
}

.offer-clock-bar b {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 6vw, 2.1rem);
  font-weight: 800;
  color: #1A1205;
  -webkit-text-stroke: 0.5px #1A1205;
}

.offer-clock-bar .colon {
  margin: 0 2px;
  font-size: clamp(1.5rem, 6vw, 2.1rem);
  font-weight: 800;
  color: #1A1205;
}

.offer-clock-bar::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 40px;
  height: 22px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #F3C13B, #E0A800);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.offer-head .offer-sub {
  color: #F1C232;
}

.offer-head .offer-sub.is-mixed {
  color: var(--ink);
}

.text-yellow {
  color: #FFEB00;
}

.offer-head h2 .u {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 3px;
}

.offer-until {
  margin-top: 10px;
  color: var(--ink);
}

.offer-until strong {
  color: #F1C232;
}

.offer-clock-bar + .status-bar {
  margin-top: 26px;
}

@media (max-width: 860px) {
  .pricing-card.featured {
    order: 1;
  }

  .pricing-grid > .pricing-card:nth-child(3) {
    order: 2;
  }

  .pricing-grid > .pricing-card:nth-child(1) {
    order: 3;
  }
}

.pricing-card {
  padding: 0 20px 24px;
  overflow: hidden;
}

.pricing-flag {
  align-self: stretch;
  width: auto;
  margin: 0 -20px 18px;
  padding: 12px 16px;
  border-radius: 0;
  background: #000;
  color: #FFF;
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
}

.pricing-card.featured {
  border: 2px solid var(--gold-2);
  box-shadow: 0 0 0 6px rgba(245, 213, 107, 0.13), var(--shadow);
}

.pricing-card.featured .pricing-flag {
  background: #FFF;
  color: #C25A18;
}

.pricing-checks {
  gap: 0;
  margin-top: 4px;
  margin-bottom: 18px;
  border-top: 1px dashed var(--line-strong);
  text-align: center;
}

.pricing-checks li {
  align-items: center;
  justify-content: center;
  padding: 11px 2px;
  border-bottom: 1px dashed var(--line-strong);
}

.pricing-checks .check-icon,
.pricing-checks .off .x-icon {
  margin-top: 0;
}

.pricing-total .line {
  font-size: 1.1rem;
}

.pricing-total .strike {
  margin: 0 6px 0 0;
}

/* ===== BANNER DE FRETE (Seção 2) ===== */
.ship-banner {
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 107, 26, 0.55);
  border-left-width: 1px;
  border-radius: 14px;
  background: linear-gradient(180deg, #17100A, #0C0907);
}

.ship-banner-icon {
  width: auto;
  height: auto;
  align-self: stretch;
  gap: 6px;
  padding: 16px 30px 16px 20px;
  border-radius: 0;
  background: linear-gradient(135deg, #FF8A3D, #E2560A);
  color: var(--white);
  clip-path: polygon(0 0, 100% 0, calc(100% - 22px) 50%, 100% 100%, 0 100%);
}

.ship-banner-icon b {
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.ship-banner > div {
  padding: 14px 22px 16px 8px;
}

.ship-banner p {
  color: var(--body);
}

@media (max-width: 860px) {
  .ship-banner {
    border-top-width: 1px;
  }

  .ship-banner-icon {
    flex-direction: row;
    justify-content: center;
    width: 100%;
    padding: 12px 16px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), 50% 100%, 0 calc(100% - 16px));
  }

  .ship-banner-icon b {
    text-align: left;
  }

  .ship-banner > div {
    padding: 14px 18px 18px;
  }
}

.carousel {
  position: relative;
  width: 100%;
}

.carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.carousel-viewport::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: flex;
  align-items: stretch;
  gap: 16px;
}

.carousel-track > * {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(12, 10, 8, 0.88);
  color: #FFF;
  font-size: 1.5rem;
  line-height: 1;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.carousel-arrow:hover {
  background: var(--orange);
}

.carousel-arrow.prev {
  left: -6px;
}

.carousel-arrow.next {
  right: -6px;
}

.carousel[data-static] .carousel-arrow,
.carousel[data-static] .carousel-dots {
  display: none;
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
}

.carousel-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-dots button.is-active {
  background: var(--orange);
  transform: scale(1.25);
}

.on-light .carousel-dots button {
  background: rgba(23, 19, 15, 0.22);
}

.on-light .carousel-dots button.is-active {
  background: #17130F;
}

.on-light .carousel-arrow {
  background: rgba(255, 255, 255, 0.94);
  color: #17130F;
}

.on-light .carousel-arrow:hover {
  background: var(--orange);
  color: #FFF;
}

@media (max-width: 860px) {
  .carousel-dots {
    gap: 2px;
  }

  .carousel-dots button {
    width: 44px;
    height: 44px;
    background: none;
    border-radius: 0;
    transform: none;
  }

  .carousel-dots button::before {
    content: '';
    display: block;
    width: 11px;
    height: 11px;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
  }

  .carousel-dots button.is-active {
    transform: none;
    background: none;
  }

  .carousel-dots button.is-active::before {
    background: var(--orange);
    transform: scale(1.25);
  }

  .on-light .carousel-dots button::before {
    background: rgba(23, 19, 15, 0.22);
  }

  .on-light .carousel-dots button.is-active::before {
    background: #17130F;
  }
}

.proof-inner {
  flex-direction: column;
  gap: 30px;
}

.press-quotes {
  width: 100%;
}

.press-quotes .carousel-track > .press-card {
  flex: 0 0 calc((100% - 48px) / 4);
}

.press-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 26px 22px 24px;
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow);
  text-align: center;
}

.press-card-logo {
  height: 30px;
  width: auto;
  filter: brightness(0);
  opacity: 0.78;
}

.press-card-logo.tall {
  height: 52px;
}

.press-card-rule {
  width: 76px;
  height: 2px;
  margin: 16px 0 14px;
  background: var(--orange);
}

.press-card p {
  font-size: 0.94rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--body);
}

.press-card p strong {
  color: var(--ink);
}

.press-card .q {
  color: var(--orange);
  font-size: 1.15rem;
  font-weight: 800;
  font-style: normal;
}

@media (max-width: 1024px) {
  .press-quotes .carousel-track > .press-card {
    flex: 0 0 calc((100% - 16px) / 2);
  }
}

@media (max-width: 700px) {
  .press-quotes .carousel-track > .press-card {
    flex: 0 0 100%;
  }

  .press-quotes .carousel-arrow.prev {
    left: 0;
  }

  .press-quotes .carousel-arrow.next {
    right: 0;
  }
}

.tp-label {
  font-family: var(--font-body);
  font-size: clamp(1.4rem, 5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  text-transform: none;
}

.tp-stars {
  gap: 4px;
}

.tp-stars span {
  width: 34px;
  height: 34px;
}

.tp-stars svg {
  width: 26px;
  height: 26px;
}

.tp-meta {
  font-size: 0.86rem;
  font-weight: 500;
}

.tp-meta strong {
  font-weight: 800;
  color: var(--ink);
}

.tp-brand {
  gap: 7px;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.tp-brand svg {
  width: 23px;
  height: 23px;
}

.discover-section {
  padding: 0 0 64px;
}

@media (max-width: 620px) {
  .ugc-fan {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .ugc-fan figure {
    transform: none;
  }

  .ugc-fan figure:first-child,
  .ugc-fan figure:last-child {
    display: flex;
    order: 2;
    flex: 0 0 30%;
    transform: none;
  }

  .ugc-fan figure:nth-child(2),
  .ugc-fan figure:nth-child(5) {
    transform: none;
  }
}

/* ===== JORNADA ===== */
.journey-carousel .carousel-track > .journey-card {
  flex: 0 0 calc((100% - 32px) / 3);
}

@media (max-width: 1024px) {
  .journey-carousel .carousel-track > .journey-card {
    flex: 0 0 calc((100% - 16px) / 2);
  }
}

@media (max-width: 700px) {
  .journey-carousel .carousel-track > .journey-card {
    flex: 0 0 100%;
  }

  .journey-carousel .carousel-arrow.prev {
    left: 0;
  }

  .journey-carousel .carousel-arrow.next {
    right: 0;
  }
}

.journey-section .section-head h2 .text-gold {
  color: #F5D56B;
}

.sticky-cta {
  transform: translateY(115%);
}

.text-amber {
  color: #F1C232;
}

.proof-inner > .press-caption {
  margin-top: -8px;
}

.carousel-track {
  align-items: flex-start;
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}

.carousel-dots {
  margin-top: 0;
}

.carousel-arrow {
  position: static;
  transform: none;
  width: 44px;
  height: 44px;
}

.carousel[data-static] .carousel-nav {
  display: none;
}

@media (min-width: 701px) {
  .carousel-arrow {
    position: absolute;
    top: calc(50% - 24px);
    transform: translateY(-50%);
  }

  .carousel-arrow.prev {
    left: -6px;
  }

  .carousel-arrow.next {
    right: -6px;
  }
}

@media (max-width: 620px) {
  .ugc-fan figure {
    flex: 1 1 23%;
  }

  .ugc-fan figure:first-child,
  .ugc-fan figure:last-child {
    flex: 0 0 32%;
  }
}

@media (max-width: 620px) {
  .offer-timer-status .sep {
    display: none;
  }
}

.carousel-arrow {
  flex: 0 0 44px;
}

.press-caption,
.proof-inner > .press-caption {
  font-size: 0.75rem;
}

.journey-pack {
  font-size: 0.78rem;
}

@media (max-width: 860px) {
  .announcement-bar a {
    min-height: 44px;
  }
}

.carousel-track {
  align-items: stretch;
}

@media (max-width: 700px) {
  .carousel-track {
    align-items: flex-start;
  }
}

.press-card p {
  margin-top: auto;
}

.press-card .q {
  font-size: 1.5rem;
  line-height: 1;
  vertical-align: -0.28em;
}

.press-card p {
  margin-top: 0;
  margin-bottom: auto;
}

@media (max-width: 400px) {
  .carousel-nav {
    gap: 2px;
  }

  .carousel-arrow {
    flex: 0 0 40px;
    width: 40px;
  }

  .carousel-dots button {
    width: 34px;
  }
}

#disclaimer div {
  font-size: 12px !important;
}

/* ===== OFERTAS 2, 3 e 4 — mesmo card da oferta 1 ===== */
.offer-timer.is-compact {
  padding-bottom: 24px;
}

.offer-timer.is-compact .offer-clock-bar {
  width: 100%;
  margin: 16px 0 0;
}

.offer-timer .offer-clock-bar::after {
  display: none;
}

.text-yellow-1 {
  color: #FFDD00;
}

.offer-clock-bar.is-solo {
  margin-bottom: 8px;
}

.offer-clock-bar.is-solo::after {
  display: none;
}

/* ===== TRUSTPILOT — idêntico ao template padrão ===== */
.tp-label {
  font-size: clamp(1.5rem, 5vw, 1.9rem);
  letter-spacing: -0.02em;
}

.tp-stars {
  gap: 5px;
  margin-top: 2px;
}

.tp-stars span {
  width: 36px;
  height: 36px;
}

.tp-stars svg {
  width: 27px;
  height: 27px;
}

.tp-meta {
  margin-top: 4px;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--ink);
}

.tp-meta strong {
  font-weight: 700;
}

.tp-brand {
  gap: 5px;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.tp-brand svg {
  width: 26px;
  height: 26px;
}

.scarcity-band {
  position: relative;
  margin: 30px 0 42px;
  padding: 26px clamp(16px, 5vw, 34px) 30px;
  background: linear-gradient(180deg, #2C2416 0%, #1A140C 100%);
  border-top: 2px solid rgba(255, 210, 0, 0.55);
  border-bottom: 2px solid rgba(255, 210, 0, 0.55);
}

.scarcity-band1 {
  position: relative;
  margin: 30px 0 42px;
  padding: 26px clamp(16px, 5vw, 34px) 30px;

}

.scarcity-inner {
  width: min(100%, 760px);
  margin: 0 auto;
}

.scarcity-arrow {
  position: absolute;
  left: 50%;
  bottom: -17px;
  width: 56px;
  height: 18px;
  margin-left: -28px;
  background: #FFD200;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.scarcity-band.is-compact {
  margin: 26px 0 34px;
  padding-top: 22px;
  padding-bottom: 26px;
}

.scarcity-band .offer-timer-status {
  padding-bottom: 16px;
}

.scarcity-band .offer-clock-bar {
  width: 100%;
  margin: 18px 0 0;
}

.scarcity-band .offer-clock-bar::after {
  display: none;
}

.offer-timer {
  display: none;
}

.pricing-flag {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  background: #000;
  color: #EAF0E3;
}

.pricing-card.featured .pricing-flag {
  padding: 14px 16px;
  font-size: 1.15rem;
  background: #FFF;
  color: #FF6B1A;
}

.pricing-qty {
  font-size: clamp(1.55rem, 5vw, 1.95rem);
}

.pricing-perbottle .big {
  font-size: clamp(3.4rem, 12vw, 4rem);
}

.pricing-checks {
  font-size: 0.8rem;
  font-weight: 800;
}

.pricing-checks li {
  padding: 10px 2px;
  gap: 7px;
}

.pricing-checks li {
  color: var(--ink);
}

.pricing-checks .lead,
.pricing-checks .lead strong {
  color: var(--gold-2);
}

.pricing-checks .lead .check-icon {
  fill: var(--gold-2);
}

.pricing-checks .bonus {
  color: var(--ink);
}

.pricing-checks .bonus .check-icon {
  fill: var(--green);
}

.pricing-card:not(.featured) .pricing-cta-wrap .btn-gold {
  background: #2A1D12;
  border: 2px solid rgba(245, 213, 107, 0.55);
  color: var(--gold-2);
  box-shadow: none;
}

.pricing-card:not(.featured) .pricing-cta-wrap .btn-gold:hover {
  background: #3A2818;
  border-color: var(--gold-2);
}

.payment-icons {
  width: min(100%, 240px);
  border-radius: 0;
}

.pricing-total .strike {
  text-decoration-color: #E23B2E;
  text-decoration-thickness: 2px;
}

/* ===== ITEM 3 · TRUSTPILOT ===== */
.tp-stars span {
  width: 34px;
  height: 34px;
  background: #00B67A;
}

.tp-stars svg {
  width: 30px;
  height: 30px;
  fill: #FFF;
}

.tp-brand svg {
  width: 24px;
  height: 24px;
  fill: #00B67A;
}

@media (max-width: 620px) {
  .ugc-fan figure:first-child,
  .ugc-fan figure:last-child {
    order: 1;
    flex: 1 1 23%;
  }

  .ugc-fan figure:nth-child(3),
  .ugc-fan figure:nth-child(4) {
    order: 2;
    flex: 0 0 32%;
  }
}

.reviews-section {
  padding-bottom: 26px;
}

.pricing-section {
  padding-top: 6px;
}

.offer-head {
  padding-top: 26px;
}

@media (max-width: 860px) {
  .ship-banner {
    flex-direction: row;
    text-align: left;
    border-top-width: 1px;
  }

  .ship-banner-icon {
    flex-direction: column;
    justify-content: center;
    width: auto;
    padding: 14px 22px 14px 14px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 16px) 50%, 100% 100%, 0 100%);
  }

  .ship-banner-icon b {
    text-align: center;
  }

  .ship-banner > div {
    padding: 12px 16px 12px 6px;
  }
}

@media (max-width: 420px) {
  .ship-banner-icon {
    padding: 12px 16px 12px 10px;
  }

  .ship-banner-icon svg {
    width: 24px;
    height: 24px;
  }

  .ship-banner-icon b {
    font-size: 0.68rem;
  }
}

.offer-head h2 {
  letter-spacing: 0.02em;
}

.journey-section {
  padding: 56px 0 0;
}

.journey-band {
  margin-top: 28px;
  padding: 30px 0 26px;
  background: linear-gradient(180deg, #E6CE84 0%, #D8B75E 100%);
}

.journey-band .journey-card {
  border: none;
  border-radius: 16px;
  background: #0E0C0A;
  box-shadow: 0 14px 30px -16px rgba(0, 0, 0, 0.75);
}

.journey-band .carousel-arrow {
  border-color: rgba(0, 0, 0, 0.35);
  background: #17130F;
  color: #FFF;
}

.journey-band .carousel-dots button {
  background: rgba(23, 19, 15, 0.3);
}

.journey-band .carousel-dots button.is-active {
  background: #17130F;
}

@media (max-width: 860px) {
  .journey-band .carousel-dots button,
  .journey-band .carousel-dots button.is-active {
    background: none;
  }

  .journey-band .carousel-dots button::before {
    background: rgba(23, 19, 15, 0.3);
  }

  .journey-band .carousel-dots button.is-active::before {
    background: #17130F;
  }
}

.journey-carousel .carousel-viewport {
  transition: height 0.25s ease;
}

.journey-carousel .carousel-track {
  align-items: flex-start;
}

.pricing-grid {
  align-items: start;
}

@media (max-width: 860px) {
  .pricing-grid {
    align-items: stretch;
  }
}

/* ===== TRUSTPILOT · estrela oficial da marca ===== */
.tp-stars {
  gap: 3px;
}

.tp-stars span {
  width: 36px;
  height: 36px;
  background: #00B67A;
}

.tp-stars svg {
  width: 34px;
  height: 34px;
  fill: #FFF;
}

.tp-brand svg {
  width: 25px;
  height: 25px;
  fill: #00B67A;
}

.pricing-card.on-light {
  background: #FFF;
  border-color: rgba(23, 19, 15, 0.12);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.28), 0 22px 44px -26px rgba(0, 0, 0, 0.6);
}

.pricing-card {
  border-radius: 18px;
}

.pricing-flag {
  margin-inline: 0;
  border-radius: 12px;
  padding: 11px 16px;
  font-size: 1rem;
}

.pricing-card.on-light .pricing-flag {
  margin: 10px 0 16px;
  background: #0B0B0B;
  color: #FFF;
}

.pricing-card.featured .pricing-flag {
  margin: 0 -20px 16px;
  border-radius: 0;
  background: #FFF;
  color: #FF6B1A;
}

.pricing-card.on-light .pricing-qty {
  color: #0B0B0B;
}

.pricing-supply {
  margin-top: 2px;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

.pricing-card.on-light .pricing-supply {
  color: #2A2521;
  font-weight: 700;
}

.pricing-card.on-light .pricing-perbottle {
  color: #0B0B0B;
}

.pricing-card.on-light .pricing-perbottle .per {
  color: #0B0B0B;
}

.pricing-shot {
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pricing-card:hover .pricing-shot {
  transform: translateY(-12px) scale(1.04);
}

.pricing-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.featured:hover {
  transform: translateY(-4px) scale(1.04);
}

@media (max-width: 1024px) {
  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }
}

.pricing-card.on-light .pricing-checks li {
  color: #0B0B0B;
  border-bottom-color: rgba(23, 19, 15, 0.28);
}

.pricing-card.on-light .pricing-checks {
  border-top-color: rgba(23, 19, 15, 0.28);
}

.pricing-card.on-light .pricing-checks .lead,
.pricing-card.on-light .pricing-checks .lead strong {
  color: #E2560A;
}

.pricing-card.on-light .pricing-checks .lead .check-icon {
  fill: #E2560A;
}

.pricing-card.on-light .pricing-cta-wrap .btn-gold {
  background: #3B2A22;
  border: none;
  color: #F6F1EA;
  font-style: italic;
  box-shadow: 0 -4px rgba(0, 0, 0, 0.12) inset;
}

.pricing-card.on-light .pricing-cta-wrap .btn-gold:hover {
  background: #17130F;
}

.pricing-card.featured .pricing-cta-wrap .btn-gold {
  font-style: italic;
}

.pricing-card.on-light .pricing-total {
  border-top-color: rgba(23, 19, 15, 0.28);
}

.pricing-card.on-light .pricing-total .line {
  color: #0B0B0B;
}

.pricing-card.on-light .pricing-total .strike {
  color: #6F6862;
}

.pricing-card.on-light .pricing-total .ship {
  color: #0B0B0B;
  font-weight: 800;
}

.pricing-total .ship.free {
  color: var(--gold-2);
}

.pricing-total .ship.free span {
  color: inherit;
}

.pricing-card.on-light .pricing-total .ship.free span {
  color: #E23B2E;
}

.pricing-card.on-light .payment-icons {
  width: min(100%, 226px);
}

.pricing-checks li .check-icon {
  fill: currentColor;
}

.pricing-checks .lead .check-icon {
  fill: var(--gold-2);
}

.pricing-card.on-light .pricing-checks .lead .check-icon {
  fill: #E2560A;
}

.pricing-checks li.bonus .check-icon {
  fill: currentColor;
}

.pricing-img-wrap {
  flex: 1 1 auto;
}

.tp-brand .tp-fold {
  fill: #005128;
}

.trustpilot {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.tp-label {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.tp-meta {
  letter-spacing: -0.005em;
}

.tp-brand {
  color: #05002F;
  font-weight: 500;
  letter-spacing: -0.012em;
}

/* ===== JORNADA · responsividade no computador ===== */
@media (min-width: 701px) {
  .journey-band .journey-carousel {
    padding-inline: 58px;
  }

  .journey-band .journey-carousel .carousel-arrow.prev {
    left: 2px;
  }

  .journey-band .journey-carousel .carousel-arrow.next {
    right: 2px;
  }
}

@media (min-width: 701px) and (max-width: 900px) {
  .journey-band .journey-carousel {
    padding-inline: 50px;
  }
}

.journey-card {
  justify-content: flex-start;
}

.journey-band {
  padding: 30px 0 24px;
}

.pricing-card.featured .pricing-flag {
  padding: 15px 16px;
  font-size: clamp(1.25rem, 4.4vw, 1.5rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  -webkit-text-stroke: 0.7px currentColor;
}

.offer-head .offer-clock-bar {
  margin: 14px auto 0;
  width: min(100%, 420px);
}

.offer-head .offer-clock-bar::after {
  display: none;
}

.offer-clock-bar.is-plain {
  background: none;
  box-shadow: none;
  margin-top: 6px;
  padding-top: 0;
  padding-bottom: 0;
}

.offer-clock-bar.is-plain::after {
  display: none;
}

.offer-clock-bar.is-plain b,
.offer-clock-bar.is-plain .colon {
  color: #F3C13B;
  -webkit-text-stroke: 0;
}

.freeship {
  display: flex;
  align-items: stretch;
  width: min(100%, 940px);
  margin: 16px auto 24px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, #241608 0%, #140b04 55%, #0a0603 100%);
  border: 1px solid rgba(255, 138, 61, 0.35);
}

@media (max-width: 768px) {
  .freeship {
    width: 100%;
    margin: -20px 0 20px;
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(255, 138, 61, 0.42);
    border-bottom: 1px solid rgba(255, 138, 61, 0.42);
  }
}

.freeship__badge {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 34px 8px 16px;
  background: linear-gradient(135deg, #FF9A3E 0%, #F0740E 55%, #E2560A 100%);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
}

.freeship__truckimg {
  display: block;
  height: 62px;
  width: auto;
  filter: brightness(0) invert(1);
}

.freeship__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 18px 12px;
}

.freeship__head {
  font-weight: 800;
  font-size: clamp(0.62rem, 2.7vw, 1.4rem);
  line-height: 1.15;
  color: #fff;
  white-space: nowrap;
}

.freeship__head span {
  color: #FF8A3D;
}

.freeship__sub {
  margin-top: 3px;
  font-size: clamp(0.7rem, 2.3vw, 0.9rem);
  color: rgba(255, 255, 255, 0.62);
}

#order-2 .freeship {
  position: relative;
  overflow: visible;
  margin-bottom: 46px;
}

#order-2 .freeship::after {
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -9px;
  bottom: -11px;
  width: 18px;
  height: 11px;
  background: #000000;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
}

@media (max-width: 640px) {
  .freeship__badge {
    padding: 6px 22px 6px 10px;
  }

  .freeship__truckimg {
    height: 46px;
  }

  .freeship__text {
    padding: 8px 10px;
  }

  .freeship__sub {
    font-size: 0.66rem;
  }
}

.scarcity-band1.is-status {
  margin: -5px 0 24px;
  padding-top: 12px;
  padding-bottom: 14px;
}

.scarcity-band1 .scarcity-inner {
  width: min(100%, 940px);
}

.scarcity-band.is-status {
  margin: 22px 0 0;
  padding: 13px clamp(16px, 5vw, 34px);
}

.scarcity-band.is-status .offer-timer-status,
.scarcity-band1.is-status .offer-timer-status {
  padding-bottom: 0;
  border-bottom: none;
  font-size: clamp(0.78rem, 3vw, 0.95rem);
}

.scarcity-band1.is-status .offer-timer-status {
  flex-wrap: nowrap;
  white-space: nowrap;
  font-size: clamp(0.6rem, 2.7vw, 0.95rem);
}

.scarcity-band1.is-status .offer-timer-status .sep {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  margin: 0 9px;
  background: #FFFFFF;
}

.scarcity-band1.is-status .offer-timer-status .stock {
  color: #FFFFFF;
}

.scarcity-band1.is-status .offer-timer-status .stock strong {
  color: #FFD200;
}

.scarcity-band1.is-status .offer-timer-status .live {
  color: #FFFFFF;
}

.scarcity-band1.is-status .offer-timer-status .live b {
  color: #FFD200;
}

#order-1 .offer-timer-status .live {
  gap: 5px;
}

#order-1 .offer-timer-status .live::before {
  width: 8px;
  height: 8px;
}

#order-4 .offer-head h2 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.35rem, 6vw, 2.9rem);
}

#order-4 .offer-head .offer-sub {
  white-space: nowrap;
  font-size: clamp(0.92rem, 4vw, 1.3rem);
}

.scarcity-band1.is-status .offer-timer-status .live {
  gap: 5px;
}

.scarcity-band1.is-status .offer-timer-status .live::before {
  width: 8px;
  height: 8px;
}

@media (max-width: 620px) {
  .scarcity-band1.is-status .offer-timer-status {
    justify-content: center;
    gap: 0 8px;
    font-size: 0.62rem;
  }

  .scarcity-band1.is-status .offer-timer-status .sep {
    display: inline-block;
    margin: 0;
  }
}

.scarcity-band.is-status + .container-wide .ship-banner {
  margin-top: 14px;
}

.tp-stars svg {
  width: 30px;
  height: 30px;
}

.offer-head h2 {
  max-width: 24ch;
  font-size: clamp(1.42rem, 5.6vw, 2.9rem);
}

.tp-stars svg {
  width: 30px;
  height: 30px;
}

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

.ship-banner + .scarcity-band.is-status,
.container-wide:has(> .ship-banner) + .scarcity-band.is-status {
  margin-top: 16px;
  margin-bottom: 0;
}

.scarcity-band.is-status + .container-wide > .pricing-grid {
  margin-top: 26px;
}

.scarcity-band.is-status {
  margin: 22px 0 0;
  padding: 14px clamp(16px, 5vw, 34px) 18px;
}

.scarcity-band.is-status .ship-banner {
  width: 100%;
  margin: 12px 0 0;
}

.scarcity-band.is-status + .container-wide > .pricing-grid {
  margin-top: 28px;
}

.tp-stars svg {
  width: 20px;
  height: 20px;
}

.pricing-card.featured {
  background: #F8D368;
  border: 2px solid #FFE24D;
  box-shadow: 0 0 0 2px #FFE24D,
    0 0 10px rgba(255, 226, 77, 0.9),
    0 0 26px rgba(255, 226, 77, 0.65),
    0 0 48px rgba(255, 216, 77, 0.4);
}

.pricing-card.featured .pricing-flag {
  font-style: italic;
  font-weight: 800;
}

.pricing-card.featured .pricing-qty,
.pricing-card.featured .pricing-perbottle,
.pricing-card.featured .pricing-perbottle .per,
.pricing-card.featured .pricing-checks li,
.pricing-card.featured .pricing-checks .bonus,
.pricing-card.featured .pricing-total .line {
  color: #1A1205;
}

.pricing-card.featured .pricing-supply {
  color: #4A3B18;
}

.pricing-card.featured .pricing-img-wrap {
  min-height: 250px;
  margin: 10px 0 6px;
}

.pricing-card.featured .pricing-img-wrap img {
  max-height: 290px;
  transform: scale(1.18);
  filter: drop-shadow(0 14px 18px rgba(60, 40, 0, 0.38));
}

.pricing-card.featured .pricing-checks li {
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.28);
}

.pricing-card.featured .pricing-checks .lead {
  color: #1A1205;
  font-size: 1.08rem;
}

.pricing-card.featured .pricing-checks .lead strong {
  color: #1A1205;
  font-size: 1.12em;
}

.pricing-card.featured .pricing-checks .lead .check-icon {
  fill: #22B24C;
}

.pricing-card.featured .pricing-checks .bonus .check-icon {
  fill: #1A1205;
}

.pricing-card.featured .pricing-checks {
  border-top-color: rgba(26, 18, 5, 0.28);
}

.pricing-card.featured .pricing-checks li {
  border-bottom-color: rgba(26, 18, 5, 0.28);
}

.pricing-card.featured .pricing-total {
  border-top-color: rgba(26, 18, 5, 0.3);
}

.pricing-card.featured .pricing-total .strike {
  color: #C0392B;
}

.pricing-card.featured .pricing-total .ship.free {
  color: #1A1205;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.01em;
  -webkit-text-stroke: 0.4px #1A1205;
}

.pricing-card.on-light .pricing-total .ship.free,
.pricing-card.on-light .pricing-total .ship.free span {
  color: #1A1205;
  font-weight: 900;
}

.pricing-card.featured .pricing-cta-wrap .btn-gold {
  border: 1px solid #E0B02B;
  background: linear-gradient(180deg, #FFD84D 0%, #FFD64A 55%, #EDBE36 80%, #CF9E1B 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -3px 3px -1px rgba(70, 45, 0, 0.4),
    inset 0 -14px 16px -5px rgba(72, 46, 0, 0.62),
    0 5px 8px -3px rgba(0, 0, 0, 0.35);
}

.stock-timer-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.stock-timer-row .stock-line {
  margin: 0;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.2rem;
}

.stock-timer-sep {
  color: #FFFFFF;
  font-size: 1.5rem;
  opacity: 0.6;
}

.stock-timer-row .stock-line strong {
  color: var(--orange);
}

.stock-timer-row .offer-clock-bar.is-plain {
  margin: 0;
  width: auto;
  padding: 0;
}

.stock-timer-row .offer-clock-bar.is-plain b,
.stock-timer-row .offer-clock-bar.is-plain .colon {
  color: #FFFFFF;
  font-size: 1.6rem;
}

body:not(.is-gated) .pre-offer {
  display: none;
}

.headline-section {
  background: #000;
  padding: 40px 20px 20px;
  text-align: center;
}

.main-headline {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 4vw, 44px);
  line-height: 1.35;
  color: #fff;
  max-width: 1100px;
  margin: 0 auto;
  text-transform: uppercase;
  letter-spacing: normal;
}

.main-headline .hl-orange {
  color: #fff;
}

.main-headline .hl-accent {
  color: #f49233;
}

.main-headline .hl-underline {
  text-decoration: underline;
  text-decoration-color: #E11B1B;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.comments-section {
  --surface: #f0f2f5;
  --stroke: rgba(0, 0, 0, 0.06);
  --muted: #8a8d91;
  --radius: 18px;
  --avatar: 35px;
  --gap: 10px;
  --pad: 14px;
  --bubble-pad-y: 10px;
  --bubble-pad-x: 12px;
  --name-size: 14px;
  --text-size: 15px;
  --meta-size: 12px;
  background: #101010;
  padding: 40px 15px 60px;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  color: #1c1e21;
}

.comments {
  max-width: 950px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  overflow: hidden;
  padding: var(--pad);
}

.comment {
  display: flex;
  gap: var(--gap);
  margin-bottom: 16px;
}

.comment-reply {
  margin-left: 45px;
}

.comment-avatar {
  width: var(--avatar);
  height: var(--avatar);
  border-radius: 999px;
  flex-shrink: 0;
  object-fit: cover;
  background: #e9eaec;
}

.comment-content {
  flex: 1;
  min-width: 0;
}

.comment-bubble {
  background: var(--surface);
  padding: var(--bubble-pad-y) var(--bubble-pad-x);
  border-radius: var(--radius);
  display: inline-block;
  max-width: 100%;
  line-height: 1.25;
}

.comment-name {
  color: #050505;
  font-weight: 600;
  font-size: var(--name-size);
  margin-right: 6px;
  white-space: nowrap;
}

.comment-text {
  margin-top: 4px;
  font-size: var(--text-size);
  line-height: 1.3333;
  color: #050505;
  font-weight: 400;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.comment-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  font-size: var(--meta-size);
  color: var(--muted);
  flex-wrap: wrap;
}

.comment-meta .reactions {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 2px 8px 2px 4px;
  flex: 0 0 auto;
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
}

.like-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: block;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #fff;
}

@media (max-width: 768px) {
  .comment-reply {
    margin-left: 25px;
  }
}

@media (max-width: 480px) {
  .headline-section {
    padding: 25px 15px 10px;
  }
}

@media (max-width: 768px) {

  .pricing-section {
    padding-bottom: 28px;
  }

  .reviews-section {
    padding-top: 30px;
  }

  .faq-section {
    padding-bottom: 24px;
  }

  #order-4 .offer-head {
    padding-top: 14px;
  }
}
