/* liitt — Fairy Flame landing page theme (starter Tailwind sections + brand kit) */

body.ff-landing-page {
  background: var(--ff-bg-base);
  color: var(--ff-text-body);
  font-family: var(--ff-font-body);
  padding-bottom: var(--ff-sticky-bar-h);
  -webkit-font-smoothing: antialiased;
}

body.ff-landing-page h1,
body.ff-landing-page h2,
body.ff-landing-page h3,
body.ff-landing-page h4 {
  font-family: var(--ff-font-display);
  color: var(--ff-text-primary);
}

/* Announcement */
.ff-landing-announcement {
  background: #8E2CE7;
  color: #F5EFE4;
  padding: 18px 20px;
  text-align: center;
}

.ff-landing-announcement p {
  margin: 0;
  font-family: var(--ff-font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .ff-landing-announcement {
    padding: 22px 20px;
  }
  .ff-landing-announcement p {
    font-size: 24px;
    letter-spacing: 1.5px;
  }
}

/* Section backgrounds */
body.ff-landing-page .ff-landing-section-alt {
  background-color: var(--ff-bg-section-alt) !important;
}

body.ff-landing-page .bg-white {
  background-color: var(--ff-bg-base) !important;
}

body.ff-landing-page .bg-\[var\(--brand-secondary\)\],
body.ff-landing-page .bg-\[var\(--brand-secondary,#edf2ff\)\] {
  background-color: var(--ff-bg-section-alt) !important;
}

/* Elevated cards / panels */
body.ff-landing-page .rounded-\[16px\].bg-white,
body.ff-landing-page .rounded-\[12px\].bg-white,
body.ff-landing-page .rounded-\[10px\].bg-white,
body.ff-landing-page .border-2.border-\[var\(--brand-primary\)\].bg-white,
body.ff-landing-page .bg-white.border {
  background-color: var(--ff-surface) !important;
  border-color: var(--ff-border-subtle) !important;
}

body.ff-landing-page .border-2.border-\[var\(--brand-primary\)\] {
  border-color: rgba(201, 145, 46, 0.45) !important;
}

/* Primary CTAs — gold + dark text (never white on gold) */
body.ff-landing-page a.bg-\[var\(--brand-primary\)\] {
  background: var(--ff-accent-gold) !important;
  color: var(--ff-text-on-accent) !important;
  border-radius: var(--ff-radius-md) !important;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

body.ff-landing-page a.bg-\[var\(--brand-primary\)\]:hover {
  background: var(--ff-accent-gold-bright) !important;
  box-shadow: var(--ff-glow-gold);
}

body.ff-landing-page a.bg-\[var\(--brand-primary\)\] span,
body.ff-landing-page a.bg-\[var\(--brand-primary\)\] .text-white {
  color: var(--ff-text-on-accent) !important;
}

/* Sticky mobile CTA */
body.ff-landing-page .cta-1-sticky {
  background: var(--ff-surface) !important;
  border-top: 1px solid rgba(201, 145, 46, 0.3);
  box-shadow: 0 -10px 40px rgba(5, 3, 18, 0.5) !important;
}

/* Nav */
body.ff-landing-page .nav1-link:hover {
  color: var(--ff-accent-gold);
}

body.ff-landing-page .nav1-link-indicator {
  background: var(--ff-accent-gold) !important;
}

/* Verified badge pill */
body.ff-landing-page .bg-\[var\(--brand-secondary\)\].border-\[var\(--brand-primary\)\] {
  background: rgba(201, 145, 46, 0.12) !important;
  border-color: rgba(201, 145, 46, 0.45) !important;
}

body.ff-landing-page .text-\[var\(--brand-primary\)\] {
  color: var(--ff-accent-gold) !important;
}

/* Timeline dots (results-4 legacy — kept for any remaining refs) */
body.ff-landing-page .border-4.border-\[var\(--brand-primary\)\] {
  border-color: var(--ff-accent-gold) !important;
  background: var(--ff-surface) !important;
  box-shadow: 0 0 0 5px rgba(201, 145, 46, 0.15) !important;
}

/* ── Scroll-driven expect timeline (results-4) ─────────────────────────── */

body.ff-landing-page .ff-expect {
  --ff-expect-bg: #2A211D;
  --ff-expect-gold: var(--ff-accent-gold, #c9912e);
  --ff-expect-purple: #C9912E;
  --ff-expect-text: #F5EFE4;
  --ff-expect-muted: #B0A08A;
  --ff-expect-card: rgba(255, 255, 255, 0.03);
  --ff-expect-card-active: rgba(201, 145, 46, 0.14);

  background: var(--ff-expect-bg);
  color: var(--ff-expect-text);
  padding: 40px 15px 48px;
}

@media (min-width: 768px) {
  body.ff-landing-page .ff-expect {
    padding: 48px 26px 60px;
  }
}

@media (min-width: 1024px) {
  body.ff-landing-page .ff-expect {
    padding: 60px 80px 72px;
  }
}

body.ff-landing-page .ff-expect__inner {
  max-width: 1180px;
  margin: 0 auto;
}

body.ff-landing-page .ff-expect__title {
  font-family: var(--ff-font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 3rem);
  text-align: center;
  margin: 0 0 2.5rem;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

body.ff-landing-page .ff-expect__mobile-intro {
  display: none;
}

body.ff-landing-page .ff-expect__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

body.ff-landing-page .ff-expect__visual {
  position: sticky;
  top: 12vh;
}

body.ff-landing-page .ff-expect__visual-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(201, 145, 46, 0.25);
}

body.ff-landing-page .ff-expect__stage-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 700ms ease;
  will-change: opacity;
}

body.ff-landing-page .ff-expect__stage-img.is-active {
  opacity: 1;
}

body.ff-landing-page .ff-expect__timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

body.ff-landing-page .ff-expect__stage {
  position: relative;
  padding-bottom: 2.5rem;
  transition: opacity 400ms ease;
}

body.ff-landing-page .ff-expect__stage-visual {
  display: none;
}

body.ff-landing-page .ff-expect__stage-content {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1rem;
  position: relative;
}

body.ff-landing-page .ff-expect__stage-content::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 34px;
  bottom: -6px;
  width: 2px;
  background-image: linear-gradient(var(--ff-expect-gold) 40%, transparent 0);
  background-size: 2px 10px;
  background-repeat: repeat-y;
  opacity: 0.5;
}

body.ff-landing-page .ff-expect__stage:last-child .ff-expect__stage-content::before {
  display: none;
}

body.ff-landing-page .ff-expect__node {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--ff-expect-muted);
  transition: color 400ms ease, transform 400ms ease;
}

body.ff-landing-page .ff-expect__moon {
  width: 26px;
  height: 26px;
}

body.ff-landing-page .ff-expect__card {
  background: var(--ff-expect-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  transition: background 400ms ease, border-color 400ms ease, transform 400ms ease;
}

body.ff-landing-page .ff-expect__days {
  font-size: 0.95rem;
  color: var(--ff-expect-muted);
  margin: 0 0 0.15rem;
}

body.ff-landing-page .ff-expect__stage-title {
  font-family: var(--ff-font-display);
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0 0 0.6rem;
  color: #fff;
}

body.ff-landing-page .ff-expect__copy {
  margin: 0;
  line-height: 1.6;
  color: var(--ff-expect-text);
  font-size: 1rem;
}

body.ff-landing-page .ff-expect__stage.is-active .ff-expect__node {
  color: var(--ff-expect-gold);
  transform: scale(1.12);
}

body.ff-landing-page .ff-expect__stage.is-active .ff-expect__card {
  background: var(--ff-expect-card-active);
  border-color: rgba(201, 145, 46, 0.35);
}

body.ff-landing-page .ff-expect__stage:not(.is-active) .ff-expect__card {
  opacity: 0.6;
}

body.ff-landing-page .ff-expect__pricing {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

body.ff-landing-page .ff-expect__guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
}

body.ff-landing-page .ff-expect__guarantee-icon {
  width: 20px;
  height: 19px;
  object-fit: contain;
}

body.ff-landing-page .ff-expect__guarantee p {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  color: var(--ff-expect-text);
  white-space: nowrap;
}

@media (max-width: 760px) {
  body.ff-landing-page .ff-expect {
    padding: 36px 15px 40px;
  }

  body.ff-landing-page .ff-expect__title {
    margin-bottom: 0.75rem;
    font-size: clamp(1.65rem, 7vw, 2rem);
  }

  body.ff-landing-page .ff-expect__mobile-intro {
    display: block;
    text-align: center;
    color: var(--ff-expect-muted);
    font-size: 0.95rem;
    line-height: 1.55;
    max-width: 34ch;
    margin: 0 auto 1.75rem;
  }

  body.ff-landing-page .ff-expect__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  body.ff-landing-page .ff-expect__visual {
    display: none;
  }

  body.ff-landing-page .ff-expect__timeline {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  body.ff-landing-page .ff-expect__stage {
    padding-bottom: 0;
  }

  body.ff-landing-page .ff-expect__stage-visual {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 0.85rem;
    box-shadow: 0 0 16px rgba(201, 145, 46, 0.08);
    aspect-ratio: 16 / 10;
    background: #2A211D;
    opacity: 0.65;
    transition: box-shadow 400ms ease, opacity 400ms ease;
  }

  body.ff-landing-page .ff-expect__stage-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  body.ff-landing-page .ff-expect__stage-content {
    display: block;
  }

  body.ff-landing-page .ff-expect__stage-content::before,
  body.ff-landing-page .ff-expect__node {
    display: none;
  }

  body.ff-landing-page .ff-expect__card {
    padding: 1.1rem 1.15rem;
    transform: none;
  }

  /* Active stage "lights up" on mobile too — same gold highlight as desktop,
     plus the stage's own image glows brighter instead of crossfading a shared one. */
  body.ff-landing-page .ff-expect__stage.is-active .ff-expect__stage-visual {
    box-shadow: 0 0 40px rgba(201, 145, 46, 0.32);
    opacity: 1;
  }

  body.ff-landing-page .ff-expect__days {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ff-expect-gold);
    background: rgba(201, 145, 46, 0.12);
    border: 1px solid rgba(201, 145, 46, 0.28);
    border-radius: 999px;
    padding: 0.3rem 0.65rem;
    margin-bottom: 0.55rem;
  }

  body.ff-landing-page .ff-expect__stage-title {
    font-size: 1.15rem;
    margin-bottom: 0.45rem;
  }

  body.ff-landing-page .ff-expect__copy {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--ff-expect-muted);
  }

  body.ff-landing-page .ff-expect__pricing {
    margin-top: 2rem;
  }

  body.ff-landing-page .ff-expect__guarantee p {
    white-space: normal;
    text-align: center;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.ff-landing-page .ff-expect__stage-img,
  body.ff-landing-page .ff-expect__node,
  body.ff-landing-page .ff-expect__card {
    transition: none;
  }
}

/* Alt section tint (benefits-2 hardcoded light blue) */
body.ff-landing-page .bg-\[\#edf2ff\] {
  background-color: var(--ff-bg-section-alt) !important;
}

body.ff-landing-page .bg-\[\#f4f5f4\] {
  background-color: var(--ff-bg-section-alt) !important;
}

body.ff-landing-page .bg-\[var\(--brand-tint\)\] {
  background-color: var(--ff-bg-section-alt) !important;
}

/* Star rating greens → gold */
body.ff-landing-page .bg-\[\#1bba85\],
body.ff-landing-page .bg-\[\#1FB67C\] {
  background: var(--ff-accent-gold) !important;
}

body.ff-landing-page .text-\[\#1bba85\] {
  color: var(--ff-accent-gold) !important;
}

/* Secondary body text on dark */
body.ff-landing-page .text-\[var\(--text-secondary\)\] {
  color: var(--ff-text-body) !important;
}

/* Footer logo */
body.ff-landing-page footer img {
  object-fit: contain !important;
}

body.ff-landing-page footer a:hover {
  color: var(--ff-accent-gold);
}

/* FAQ / accordion chevrons stay visible on dark */
body.ff-landing-page img[src*="faq-chevron"] {
  filter: brightness(1.2);
}

/* ── Hero PDP: gallery thumbs + bundle option cards ── */

body.ff-landing-page .ff-hero-gallery-main {
  background: var(--ff-surface);
  border: 1px solid var(--ff-border-subtle);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--ff-shadow-deep);
  aspect-ratio: 1;
}

body.ff-landing-page .ff-hero-gallery-main picture,
body.ff-landing-page .ff-hero-gallery-main img {
  display: block;
  width: 100%;
  height: 100%;
}

body.ff-landing-page .ff-hero-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

body.ff-landing-page .ff-hero-thumb {
  background: var(--ff-surface);
  border: 1px solid var(--ff-border-subtle);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  aspect-ratio: 1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.ff-landing-page .ff-hero-thumb:hover,
body.ff-landing-page .ff-hero-thumb--active {
  border-color: var(--ff-accent-gold);
  background: rgba(201, 145, 46, 0.06);
}

body.ff-landing-page .ff-hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.ff-landing-page .ff-hero-autoship {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
  font-family: var(--ff-font-ui);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: var(--ff-accent-gold);
}

body.ff-landing-page .ff-hero-autoship svg {
  flex-shrink: 0;
}

body.ff-landing-page .ff-hero-details {
  margin-top: 12px;
  margin-bottom: 32px;
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--ff-border-subtle);
  background: #FBF8F2;
  box-shadow: none;
  overflow: hidden;
}

@media (min-width: 768px) {
  body.ff-landing-page .ff-hero-details {
    margin-bottom: 40px;
  }
}

body.ff-landing-page .ff-hero-details__item + .ff-hero-details__item {
  border-top: 1px solid var(--ff-border-subtle);
}

body.ff-landing-page .ff-hero-details__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 16px 18px;
  border: 0;
  background: transparent;
  color: var(--ff-text-primary);
  font-family: var(--ff-font-ui);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
}

body.ff-landing-page .ff-hero-details__toggle:hover {
  color: var(--ff-accent-gold-bright);
}

body.ff-landing-page .ff-hero-details__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--ff-accent-gold);
  transition: transform 0.3s ease;
}

body.ff-landing-page .ff-hero-details__panel {
  padding: 0 18px 16px;
}

body.ff-landing-page .ff-hero-details__list {
  margin: 0;
  padding-left: 1.15em;
  color: var(--ff-text-body);
  font-size: 14px;
  line-height: 1.55;
}

body.ff-landing-page .ff-hero-details__list li + li {
  margin-top: 6px;
}

body.ff-landing-page .ff-hero-price-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

body.ff-landing-page .ff-hero-price-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

body.ff-landing-page .ff-hero-price-display {
  font-family: var(--ff-font-display);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--ff-accent-gold);
  line-height: 1;
}

body.ff-landing-page .ff-hero-price-display--was {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--ff-strike, rgba(255, 255, 255, 0.45));
  text-decoration: line-through;
}

body.ff-landing-page .ff-hero-rating-inline {
  display: flex;
  align-items: center;
  gap: 8px;
}

body.ff-landing-page .ff-hero-stars {
  display: none;
}

body.ff-landing-page .ff-gold-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

body.ff-landing-page .ff-gold-star {
  display: block;
  flex-shrink: 0;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 1px 6px rgba(201, 145, 46, 0.55));
}

body.ff-landing-page .ff-gold-stars--xxs .ff-gold-star {
  width: 16px !important;
  height: 16px !important;
}

body.ff-landing-page .ff-gold-stars--xs .ff-gold-star {
  width: 14px !important;
  height: 14px !important;
}

body.ff-landing-page .ff-gold-stars--sm .ff-gold-star {
  width: 18px !important;
  height: 18px !important;
}

body.ff-landing-page .ff-gold-stars--md .ff-gold-star {
  width: 20px !important;
  height: 20px !important;
}

body.ff-landing-page .ff-gold-stars--lg .ff-gold-star {
  width: 28px !important;
  height: 28px !important;
}

body.ff-landing-page .ff-gold-stars--xl .ff-gold-star {
  width: 36px !important;
  height: 36px !important;
}

body.ff-landing-page .ff-gold-stars--hero .ff-gold-star {
  width: 22px !important;
  height: 22px !important;
}

@media (min-width: 768px) {
  body.ff-landing-page .ff-gold-stars--md .ff-gold-star {
    width: 26px !important;
    height: 26px !important;
  }

  body.ff-landing-page .ff-gold-stars--hero {
    gap: 2.2px;
  }

  body.ff-landing-page .ff-gold-stars--hero .ff-gold-star {
    width: 24px !important;
    height: 24px !important;
  }
}

@media (min-width: 1024px) {
  body.ff-landing-page .ff-gold-stars--hero .ff-gold-star {
    width: 28px !important;
    height: 28px !important;
  }
}

body.ff-landing-page .ff-hero-rating-count {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

@keyframes ff-promo-shimmer {
  0% { transform: translateX(-160%) skewX(-18deg); }
  60%, 100% { transform: translateX(320%) skewX(-18deg); }
}

@keyframes ff-promo-glow-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 145, 46, 0.35); }
  50% { box-shadow: 0 0 18px 2px rgba(201, 145, 46, 0.18); }
}

@keyframes ff-promo-check-pop {
  0% { transform: scale(0.6); opacity: 0; }
  70% { transform: scale(1.12); }
  100% { transform: scale(1); opacity: 1; }
}

body.ff-landing-page .ff-hero-promo {
  width: 100%;
  max-width: 520px;
  min-width: 0;
}

body.ff-landing-page .ff-hero-promo[hidden] {
  display: none !important;
}

body.ff-landing-page .ff-hero-promo__idle-state {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
}

body.ff-landing-page .ff-hero-promo__applied-state {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(201, 145, 46, 0.45);
  border-left: 3px solid var(--ff-accent-gold);
  background: linear-gradient(90deg, rgba(201, 145, 46, 0.14), rgba(255, 255, 255, 0.02) 55%);
  animation: ff-promo-glow-pulse 3s ease-in-out infinite;
  font-family: var(--ff-font-ui);
}

body.ff-landing-page .ff-hero-promo__shimmer {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 44px;
  background: linear-gradient(90deg, transparent, rgba(231, 184, 90, 0.18), transparent);
  animation: ff-promo-shimmer 3.6s ease-in-out infinite;
  pointer-events: none;
}

body.ff-landing-page .ff-hero-promo__applied-left {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

body.ff-landing-page .ff-hero-promo__check {
  flex: none;
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: linear-gradient(180deg, #E7B85A, #C9912E);
  animation: ff-promo-check-pop 0.5s ease both;
}

body.ff-landing-page .ff-hero-promo__applied-text {
  font-size: 12.5px;
  font-weight: 800;
  color: #FFFFFF;
  white-space: nowrap;
}

body.ff-landing-page .ff-hero-promo__code-applied {
  font-family: 'Bricolage Grotesque', var(--ff-font-display, sans-serif);
  letter-spacing: 0.08em;
  color: var(--ff-accent-gold-bright);
}

body.ff-landing-page .ff-hero-promo__savings {
  position: relative;
  z-index: 1;
  flex: none;
  font-family: var(--ff-font-display);
  font-size: 14px;
  font-weight: 800;
  color: #8EE0A0;
}

body.ff-landing-page .ff-hero-promo__savings[hidden] {
  display: none !important;
}

@media screen and (max-width: 380px) {
  body.ff-landing-page .ff-hero-promo__applied-state {
    flex-wrap: wrap;
  }
}

body.ff-landing-page .ff-hero-promo__idle,
body.ff-landing-page .ff-hero-promo__applied {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

body.ff-landing-page .ff-hero-promo__idle {
  color: rgba(255, 255, 255, 0.55);
}

body.ff-landing-page .ff-hero-promo__code-applied {
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: 'Bricolage Grotesque', var(--ff-font-display, sans-serif);
  font-size: inherit;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #E7B85A;
}

body.ff-landing-page .ff-hero-promo__applied-meta {
  font-weight: 700;
}

body.ff-landing-page .ff-hero-promo__code-btn {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

body.ff-landing-page .ff-hero-promo__code {
  display: inline-block;
  margin: 0;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px dashed rgba(201, 145, 46, 0.45);
  background: rgba(201, 145, 46, 0.08);
  font-family: var(--ff-font-ui);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--ff-accent-gold-bright);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

body.ff-landing-page .ff-hero-promo__code-btn:hover .ff-hero-promo__code {
  border-color: var(--ff-accent-gold);
  box-shadow: 0 0 16px rgba(201, 145, 46, 0.16);
}

body.ff-landing-page .ff-hero-promo.is-applied .ff-hero-promo__idle-state {
  display: none;
}

/* ── Hero bundle selector (ff-buy) ───────────────────────────────────── */

body.ff-landing-page .ff-buy *,
body.ff-landing-page .ff-buy *::before,
body.ff-landing-page .ff-buy *::after {
  box-sizing: border-box;
}

body.ff-landing-page .ff-buy {
  --ff-card: #FBF8F2;
  --ff-border-subtle: #D9CCB8;
  --ff-accent-gold-bright: #E7B85A;
  --ff-text-primary: #1C1B32;
  --ff-text-body: #5E5A55;
  --ff-text-muted: #8A8378;
  --ff-strike: #8A8378;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  font-family: var(--ff-font-ui);
  color: var(--ff-text-body);
}

body.ff-landing-page .ff-buy p,
body.ff-landing-page .ff-buy span {
  margin: 0;
}

body.ff-landing-page .ff-buy__opts {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

body.ff-landing-page .ff-opt {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
  width: 100%;
  min-height: 84px;
  text-align: left;
  cursor: pointer;
  background: var(--ff-card);
  border: 1.5px solid var(--ff-border-subtle);
  border-radius: 16px;
  padding: 14px 16px;
  font-family: var(--ff-font-ui);
  color: inherit;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

body.ff-landing-page .ff-opt:hover {
  border-color: rgba(201, 145, 46, 0.4);
}

body.ff-landing-page .ff-opt.is-selected {
  border-color: var(--ff-accent-gold);
  background: linear-gradient(180deg, rgba(201, 145, 46, 0.10), rgba(201, 145, 46, 0.02));
  box-shadow: 0 0 0 1px rgba(201, 145, 46, 0.25), 0 12px 34px rgba(0, 0, 0, 0.4);
}

body.ff-landing-page .ff-opt__radio {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--ff-border-subtle);
  display: grid;
  place-items: center;
  transition: border-color 0.25s ease;
}

body.ff-landing-page .ff-opt.is-selected .ff-opt__radio {
  border-color: var(--ff-accent-gold);
}

body.ff-landing-page .ff-opt__radio::after {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--ff-accent-gold);
  transform: scale(0);
  transition: transform 0.2s ease;
}

body.ff-landing-page .ff-opt.is-selected .ff-opt__radio::after {
  transform: scale(1);
}

body.ff-landing-page .ff-opt__img {
  flex: none;
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 10px;
}

body.ff-landing-page .ff-opt__main {
  flex: 1;
  min-width: 0;
}

body.ff-landing-page .ff-opt__title-row {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

body.ff-landing-page .ff-opt__name {
  font-family: var(--ff-font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ff-text-primary);
}

body.ff-landing-page .ff-opt__name b {
  color: var(--ff-accent-gold-bright);
}

body.ff-landing-page .ff-opt__pack {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ff-text-muted);
  white-space: nowrap;
  margin-top: 3px;
}

body.ff-landing-page .ff-opt__gift {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex: none;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--ff-accent-gold-bright);
  background: rgba(201, 145, 46, 0.14);
  border: 1px solid rgba(201, 145, 46, 0.4);
  border-radius: 999px;
  padding: 2px 7px;
  white-space: nowrap;
}

body.ff-landing-page .ff-gift-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 11px;
  height: 11px;
  font-size: 11px;
  line-height: 1;
}

body.ff-landing-page .ff-opt__price {
  flex: none;
  text-align: right;
}

body.ff-landing-page .ff-opt__now {
  font-family: var(--ff-font-display);
  font-weight: 800;
  font-size: 21px;
  color: var(--ff-text-primary);
  line-height: 1.1;
}

body.ff-landing-page .ff-opt__price-meta {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

body.ff-landing-page .ff-opt__was {
  color: var(--ff-strike);
  text-decoration: line-through;
}

body.ff-landing-page .ff-opt__was[hidden] {
  display: none !important;
}

body.ff-landing-page .ff-opt__price > .ff-opt__was:not([hidden]) {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 600;
}

body.ff-landing-page .ff-opt__save {
  margin-left: 6px;
  color: #8EE0A0;
  font-weight: 800;
  text-decoration: none;
}

/* Big, bold, centered discount callout — its own full-width row under the
   icon/name/price row, not tucked in as small price-adjacent text. */
body.ff-landing-page .ff-opt__discount-badge {
  flex: 0 0 100%;
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  text-align: center;
  font-family: var(--ff-font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.01em;
  color: #DC2626;
}

@media (min-width: 768px) {
  body.ff-landing-page .ff-opt__discount-badge {
    font-size: 24px;
  }
}

body.ff-landing-page .ff-opt__flag {
  position: absolute;
  top: -10px;
  right: 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 3px 10px;
}

body.ff-landing-page .ff-opt__flag--solid {
  color: #1A1430;
  background: var(--ff-accent-gold);
}

body.ff-landing-page .ff-opt__flag--outline {
  color: var(--ff-accent-gold-bright);
  background: rgba(201, 145, 46, 0.14);
  border: 1px solid rgba(201, 145, 46, 0.4);
}

body.ff-landing-page .ff-buy__gifts {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ff-text-body);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

body.ff-landing-page .ff-buy__timer {
  color: var(--ff-accent-gold-bright);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

body.ff-landing-page .ff-buy__bar {
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  overflow: hidden;
  margin-top: 8px;
}

body.ff-landing-page .ff-buy__bar-fill {
  height: 100%;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #6B4E9E, var(--ff-accent-gold));
  box-shadow: 0 0 14px rgba(201, 145, 46, 0.6);
  transition: width 1s linear;
}

body.ff-landing-page .ff-buy__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 18px;
  border: none;
  cursor: pointer;
  background: var(--ff-accent-gold);
  color: #1A1430;
  border-radius: 999px;
  padding: 18px;
  font-family: var(--ff-font-ui);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 0 32px rgba(201, 145, 46, 0.35);
  transition: filter 0.25s ease;
}

body.ff-landing-page .ff-buy__cta:hover {
  filter: brightness(1.06);
}

body.ff-landing-page .ff-buy__cta svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}

body.ff-landing-page .ff-buy__reassure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--ff-text-muted);
}

body.ff-landing-page .ff-buy__reassure span {
  display: flex;
  align-items: center;
  gap: 6px;
}

body.ff-landing-page .ff-buy__reassure svg {
  width: 13px;
  height: 13px;
  color: var(--ff-accent-gold);
  flex-shrink: 0;
}

body.ff-landing-page .ff-buy__stock {
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--ff-text-muted);
  text-align: center;
}

body.ff-landing-page .ff-buy__stock b {
  color: #E68A8A;
}

body.ff-landing-page .ff-hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

body.ff-landing-page .ff-hero-cta-btn {
  flex: 1;
  min-width: 0;
  border-radius: var(--ff-radius-md);
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-align: center;
  text-transform: uppercase;
  color: #000 !important;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

body.ff-landing-page .ff-guarantee-inline {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

body.ff-landing-page .ff-guarantee-badge-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--ff-accent-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(201, 145, 46, 0.08);
  flex-shrink: 0;
}

body.ff-landing-page .ff-guarantee-badge-num {
  font-family: var(--ff-font-serif);
  font-size: 18px;
  font-weight: 800;
  color: var(--ff-accent-gold);
  line-height: 1;
}

body.ff-landing-page .ff-guarantee-badge-day {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--ff-accent-gold);
}

body.ff-landing-page .ff-guarantee-inline-text {
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

@media (max-width: 767px) {
  body.ff-landing-page .ff-hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  body.ff-landing-page .ff-guarantee-inline {
    justify-content: center;
  }

  body.ff-landing-page .ff-hero-price-display {
    font-size: 36px;
  }
}

/* ── Goldy's-style video testimonials ─────────────────────────────────── */

body.ff-landing-page .ff-video-testimonials {
  background: #fdf7e2;
}

body.ff-landing-page .ff-video-testimonials__heading {
  font-family: var(--ff-font-display);
  color: #1a1a1a !important;
}

body.ff-landing-page .ff-video-card {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

body.ff-landing-page .ff-video-card__thumb {
  position: relative;
  height: 420px;
  overflow: hidden;
  border-radius: 10px;
  background: #000;
}

@media (min-width: 768px) {
  body.ff-landing-page .ff-video-card__thumb {
    height: 500px;
  }
}

body.ff-landing-page .ff-video-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.ff-landing-page .ff-video-card__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ffc300;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

body.ff-landing-page .ff-video-swiper__pagination {
  position: static !important;
  margin-top: 20px;
}

body.ff-landing-page .ff-video-swiper__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #d1d5db;
  opacity: 1;
}

body.ff-landing-page .ff-video-swiper__pagination .swiper-pagination-bullet-active {
  background: #2563eb;
}

body.ff-landing-page .ff-video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.95);
  padding: 16px;
}

body.ff-landing-page .ff-video-modal[hidden] {
  display: none !important;
}

body.ff-landing-page .ff-video-modal__content {
  position: relative;
  width: min(1100px, 100%);
}

body.ff-landing-page .ff-video-modal__close {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  border: none;
  border-radius: 25px;
  background: #ffc300;
  color: #000;
  padding: 6px 12px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

body.ff-landing-page .ff-video-modal__player {
  position: relative;
  background: #000;
}

body.ff-landing-page .ff-video-modal__video {
  width: 100%;
  max-height: min(80vh, 720px);
  display: block;
  background: #000;
}

body.ff-landing-page .ff-video-modal__center-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

body.ff-landing-page .ff-video-modal__center-play.is-hidden {
  display: none;
}

body.ff-landing-page .ff-video-modal__thumbs {
  margin-top: 16px;
}

body.ff-landing-page .ff-video-thumb-swiper .swiper-slide {
  width: 60px !important;
  height: 60px !important;
  border-radius: 6px;
  overflow: hidden;
  opacity: 0.6;
  cursor: pointer;
  border: 2px solid transparent;
}

body.ff-landing-page .ff-video-thumb-swiper .swiper-slide.is-active {
  opacity: 1;
  border-color: #fff;
}

body.ff-landing-page .ff-video-thumb-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Science section cards — full illustration framing (match card 1) */
body.ff-landing-page .ff-science-card__media {
  aspect-ratio: 800 / 446;
  background: #0a0818;
}

body.ff-landing-page .ff-science-card__media picture,
body.ff-landing-page .ff-science-card__image {
  display: block;
  width: 100%;
  height: 100%;
}

body.ff-landing-page .ff-science-card__image {
  object-fit: contain;
  object-position: center;
}

body.ff-landing-page .ff-science-card__media--zoom-out .ff-science-card__image {
  transform: scale(0.9);
  transform-origin: center center;
}

/* ── Choose Your Option bundle cards (inline — not hero) ── */

body.ff-landing-page .ff-pricing,
body.ff-landing-page .ff-pricing * {
  box-sizing: border-box;
}

body.ff-landing-page .ff-pricing {
  --ff-card: #FBF8F2;
  --ff-card-feature-a: #FDF6E8;
  --ff-card-feature-b: #F5EFE4;
  --ff-border-subtle: #D9CCB8;
  --ff-border-gold: rgba(201, 145, 46, 0.55);
  --ff-accent-gold-bright: #E7B85A;
  --ff-text-primary: #1C1B32;
  --ff-text-body: #5E5A55;
  --ff-text-muted: #8A8378;
  --ff-strike: #8A8378;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  font-family: var(--ff-font-ui);
  color: var(--ff-text-body);
  background: #F5EFE4;
}

body.ff-landing-page .ff-pricing--full {
  padding: 70px 24px;
}

body.ff-landing-page .ff-pricing--embed {
  padding: 48px 24px;
  border-radius: 24px;
}

body.ff-landing-page .ff-pricing__head {
  text-align: center;
  margin-bottom: 8px;
}

body.ff-landing-page .ff-pricing__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ff-accent-gold);
  margin: 0 0 10px;
}

body.ff-landing-page .ff-pricing__title {
  font-family: var(--ff-font-display);
  font-weight: 700;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ff-text-primary);
  margin: 0;
}

body.ff-landing-page .ff-pricing__subhead {
  text-align: center;
  color: var(--ff-text-muted);
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 32px;
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
}

body.ff-landing-page .ff-pricing__scroll-hint {
  display: none;
}

body.ff-landing-page .ff-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

body.ff-landing-page .ff-pricing--stack .ff-pricing__grid {
  grid-template-columns: 1fr;
}

body.ff-landing-page .ff-pricing__card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--ff-card);
  border: 1px solid var(--ff-border-subtle);
  border-radius: 22px;
  padding: 0 0 30px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

body.ff-landing-page .ff-pricing__card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 145, 46, 0.35);
}

@media (hover: none) {
  body.ff-landing-page .ff-pricing__card:hover {
    transform: none;
  }
}

body.ff-landing-page .ff-pricing__card--feature {
  background: linear-gradient(180deg, var(--ff-card-feature-a), var(--ff-card-feature-b));
  border: 1.5px solid var(--ff-border-gold);
  box-shadow:
    0 0 0 1px rgba(201, 145, 46, 0.12),
    0 18px 50px rgba(0, 0, 0, 0.45),
    0 0 60px rgba(201, 145, 46, 0.1);
}

body.ff-landing-page .ff-pricing__media {
  position: relative;
  height: 168px;
  overflow: hidden;
  background: radial-gradient(120% 120% at 50% 20%, #3a2e22, #201911 75%);
  border-bottom: 1px solid var(--ff-border-subtle);
}

body.ff-landing-page .ff-pricing__media picture,
body.ff-landing-page .ff-pricing__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 42%;
}

body.ff-landing-page .ff-pricing__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 10, 28, 0) 55%, rgba(24, 21, 54, 0.9));
  pointer-events: none;
}

body.ff-landing-page .ff-pricing__qty {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--ff-font-ui);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--ff-text-primary);
  background: rgba(11, 10, 28, 0.7);
  border: 1px solid var(--ff-border-subtle);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  padding: 6px 12px;
}

body.ff-landing-page .ff-pricing__qty svg {
  width: 14px;
  height: 14px;
  color: var(--ff-accent-gold);
  flex-shrink: 0;
}

body.ff-landing-page .ff-pricing__giftflag {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #1a1430;
  background: var(--ff-accent-gold);
  border-radius: 999px;
  padding: 5px 11px;
  box-shadow: 0 6px 16px rgba(201, 145, 46, 0.3);
}

body.ff-landing-page .ff-pricing__body {
  padding: 26px 26px 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

body.ff-landing-page .ff-pricing__badge {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--ff-font-ui);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #1a1430;
  background: var(--ff-accent-gold);
  border-radius: 999px;
  padding: 6px 14px;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

body.ff-landing-page .ff-pricing__name {
  font-family: var(--ff-font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ff-text-primary);
  margin: 0 0 8px;
}

body.ff-landing-page .ff-pricing__pricerow {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

body.ff-landing-page .ff-pricing__price {
  font-family: var(--ff-font-display);
  font-weight: 800;
  font-size: 44px;
  line-height: 1;
  color: var(--ff-accent-gold);
}

body.ff-landing-page .ff-pricing__price small {
  font-size: 18px;
  font-weight: 700;
  color: var(--ff-text-muted);
}

body.ff-landing-page .ff-pricing__was {
  font-size: 16px;
  color: var(--ff-strike);
  text-decoration: line-through;
  font-weight: 600;
}

body.ff-landing-page .ff-pricing__unit {
  font-size: 12.5px;
  color: var(--ff-text-muted);
  margin: 6px 0 22px;
  min-height: 16px;
}

body.ff-landing-page .ff-pricing__card--feature .ff-pricing__unit {
  color: var(--ff-accent-gold-bright);
  font-weight: 600;
}

body.ff-landing-page .ff-pricing__feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 0 0 26px;
  padding: 0;
  flex: 1;
}

body.ff-landing-page .ff-pricing__feats li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--ff-text-body);
}

body.ff-landing-page .ff-pricing__card--feature .ff-pricing__feats li {
  color: var(--ff-text-primary);
}

body.ff-landing-page .ff-pricing__feats li.is-gift {
  color: var(--ff-accent-gold-bright);
  font-weight: 700;
}

body.ff-landing-page .ff-pricing__check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(201, 145, 46, 0.14);
  color: var(--ff-accent-gold);
  font-size: 11px;
  font-weight: 800;
}

body.ff-landing-page .ff-pricing__feats li.is-gift .ff-pricing__check {
  background: rgba(201, 145, 46, 0.28);
}

body.ff-landing-page .ff-pricing__btn {
  display: block;
  text-align: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 15px;
  font-family: var(--ff-font-ui);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: filter 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

body.ff-landing-page .ff-pricing__btn--outline {
  background: transparent;
  border: 1.5px solid rgba(201, 145, 46, 0.45);
  color: var(--ff-text-primary);
}

body.ff-landing-page .ff-pricing__btn--outline:hover {
  border-color: var(--ff-accent-gold);
  background: rgba(201, 145, 46, 0.08);
}

body.ff-landing-page .ff-pricing__btn--gold {
  background: var(--ff-accent-gold);
  border: 1.5px solid var(--ff-accent-gold);
  color: #1a1430;
  box-shadow: 0 0 28px rgba(201, 145, 46, 0.3);
}

body.ff-landing-page .ff-pricing__btn--gold:hover {
  filter: brightness(1.06);
}

@media (max-width: 768px) {
  body.ff-landing-page .ff-pricing--embed {
    width: calc(100% + 30px);
    max-width: none;
    margin-left: -15px;
    margin-right: -15px;
    padding: 28px 0 32px;
    border-radius: 20px;
  }

  body.ff-landing-page .ff-expect .ff-pricing--embed {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-radius: 20px;
  }

  body.ff-landing-page .ff-pricing__head {
    padding: 0 20px;
  }

  body.ff-landing-page .ff-pricing__subhead {
    font-size: 14px;
    margin-bottom: 10px;
    padding: 0 20px;
    max-width: none;
  }

  body.ff-landing-page .ff-pricing__scroll-hint {
    display: block;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ff-text-muted);
    margin: 0 0 18px;
    padding: 0 20px;
  }

  body.ff-landing-page .ff-pricing--grid .ff-pricing__grid,
  body.ff-landing-page .ff-pricing--stack .ff-pricing__grid {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 20px 12px;
    margin: 0;
    mask-image: linear-gradient(
      to right,
      transparent,
      #000 20px,
      #000 calc(100% - 20px),
      transparent
    );
  }

  body.ff-landing-page .ff-pricing--grid .ff-pricing__grid::-webkit-scrollbar,
  body.ff-landing-page .ff-pricing--stack .ff-pricing__grid::-webkit-scrollbar {
    display: none;
  }

  body.ff-landing-page .ff-pricing__card {
    flex: 0 0 min(84vw, 320px);
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  body.ff-landing-page .ff-pricing__card--feature {
    order: -1;
    flex-basis: min(86vw, 328px);
  }

  body.ff-landing-page .ff-pricing__media {
    height: 196px;
  }

  body.ff-landing-page .ff-pricing__body {
    padding: 20px 20px 0;
  }

  body.ff-landing-page .ff-pricing__name {
    font-size: 18px;
  }

  body.ff-landing-page .ff-pricing__price {
    font-size: 38px;
  }

  body.ff-landing-page .ff-pricing__was {
    font-size: 14px;
  }

  body.ff-landing-page .ff-pricing__unit {
    font-size: 12px;
    margin-bottom: 18px;
    line-height: 1.45;
  }

  body.ff-landing-page .ff-pricing__feats {
    gap: 9px;
    margin-bottom: 20px;
  }

  body.ff-landing-page .ff-pricing__feats li {
    font-size: 13px;
  }

  body.ff-landing-page .ff-pricing__btn {
    padding: 14px 16px;
    font-size: 14px;
  }

  body.ff-landing-page .ff-pricing__qty {
    left: 10px;
    bottom: 10px;
    font-size: 11px;
    padding: 5px 10px;
    gap: 5px;
  }

  body.ff-landing-page .ff-pricing__giftflag {
    right: 10px;
    bottom: 10px;
    font-size: 10px;
    padding: 4px 9px;
    max-width: calc(100% - 120px);
    text-align: center;
    line-height: 1.2;
  }

  body.ff-landing-page .ff-pricing__badge {
    top: 12px;
    font-size: 10px;
    padding: 5px 12px;
  }

  body.ff-landing-page .ff-pricing__eyebrow {
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  body.ff-landing-page .ff-pricing__title {
    font-size: clamp(24px, 7vw, 32px);
  }
}

/* Trust + press dual marquee (icons-5) */
body.ff-landing-page .ff-trust-press {
  --ff-mq-gap: 36px;
  --ff-mq-speed-badges: 44s;
  --ff-mq-speed-press: 58s;
  --ff-mq-text-press: rgba(28, 27, 50, 0.62);
  display: flex;
  flex-direction: column;
  width: 100%;
}

body.ff-landing-page .ff-band {
  width: 100%;
}

body.ff-landing-page .ff-band--press {
  order: 1;
}

body.ff-landing-page .ff-band--trust {
  order: 2;
  margin-top: 20px;
}

body.ff-landing-page .ff-band__eyebrow {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ff-accent-gold);
  margin-bottom: 12px;
}

body.ff-landing-page .ff-mq {
  width: 100%;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(80% 140% at 50% 50%, rgba(201, 145, 46, 0.05), rgba(201, 145, 46, 0) 70%),
    var(--ff-bg-section-alt);
  border-block: 1px solid var(--ff-border-subtle);
  padding: 20px 0;
}

body.ff-landing-page .ff-mq--press {
  background: var(--ff-bg-base);
  border-block: none;
  padding: 14px 0;
}

body.ff-landing-page .ff-mq::before,
body.ff-landing-page .ff-mq::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

body.ff-landing-page .ff-mq::before {
  left: 0;
  background: linear-gradient(90deg, var(--ff-bg-section-alt), transparent);
}

body.ff-landing-page .ff-mq::after {
  right: 0;
  background: linear-gradient(270deg, var(--ff-bg-section-alt), transparent);
}

body.ff-landing-page .ff-mq--press::before {
  background: linear-gradient(90deg, var(--ff-bg-base), transparent);
}

body.ff-landing-page .ff-mq--press::after {
  background: linear-gradient(270deg, var(--ff-bg-base), transparent);
}

body.ff-landing-page .ff-mq__track {
  display: flex;
  align-items: center;
  gap: var(--ff-mq-gap);
  width: max-content;
  animation: ff-mq-scroll var(--ff-mq-speed-badges) linear infinite;
  will-change: transform;
}

body.ff-landing-page .ff-mq--press .ff-mq__track {
  animation-duration: var(--ff-mq-speed-press);
  animation-direction: reverse;
}

body.ff-landing-page .ff-mq__half {
  display: flex;
  align-items: center;
  gap: var(--ff-mq-gap);
  flex-shrink: 0;
}

body.ff-landing-page .ff-mq:hover .ff-mq__track {
  animation-play-state: paused;
}

@keyframes ff-mq-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

body.ff-landing-page .ff-mq__item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  white-space: nowrap;
}

body.ff-landing-page .ff-mq__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ff-accent-gold-bright);
  background: radial-gradient(circle at 50% 34%, rgba(231, 184, 90, 0.18), rgba(201, 145, 46, 0.03) 70%);
  border: 1px solid rgba(201, 145, 46, 0.32);
  box-shadow: inset 0 0 0 3px rgba(201, 145, 46, 0.05);
  flex-shrink: 0;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

body.ff-landing-page .ff-mq__icon svg {
  width: 25px;
  height: 25px;
  display: block;
}

body.ff-landing-page .ff-mq__item:hover .ff-mq__icon {
  transform: translateY(-2px);
  border-color: var(--ff-accent-gold-bright);
  box-shadow:
    inset 0 0 0 3px rgba(201, 145, 46, 0.10),
    0 0 22px rgba(201, 145, 46, 0.30);
}

body.ff-landing-page .ff-mq__label {
  font-family: var(--ff-font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--ff-text-primary);
}

body.ff-landing-page .ff-mq__sep {
  color: var(--ff-accent-gold);
  opacity: 0.45;
  font-size: 13px;
  flex-shrink: 0;
}

body.ff-landing-page .ff-mq__logo {
  font-size: 23px;
  color: var(--ff-mq-text-press);
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
  transition: color 0.3s ease;
}

body.ff-landing-page .ff-mq:hover .ff-mq__logo:hover {
  color: var(--ff-text-primary);
}

body.ff-landing-page .ff-mq__logo--img {
  height: 26px;
  width: auto;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.62;
  transition: opacity 0.3s ease;
}

body.ff-landing-page .ff-mq:hover .ff-mq__logo--img:hover {
  opacity: 1;
}

body.ff-landing-page .ff-mq__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ff-mq-text-press);
  opacity: 0.4;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  body.ff-landing-page .ff-mq {
    padding: 24px 0;
  }

  body.ff-landing-page .ff-mq__label {
    font-size: 18px;
  }

  body.ff-landing-page .ff-mq__icon {
    width: 50px;
    height: 50px;
  }

  body.ff-landing-page .ff-mq__icon svg {
    width: 27px;
    height: 27px;
  }

  body.ff-landing-page .ff-mq__logo {
    font-size: 27px;
  }

  body.ff-landing-page .ff-mq__logo--img {
    height: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.ff-landing-page .ff-mq__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    gap: 16px 26px;
    padding: 0 20px;
  }

  body.ff-landing-page .ff-mq::before,
  body.ff-landing-page .ff-mq::after {
    display: none;
  }

  body.ff-landing-page .ff-mq__half--dup {
    display: none;
  }

  body.ff-landing-page .ff-mq__half {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 26px;
  }

  body.ff-landing-page .ff-mq__sep,
  body.ff-landing-page .ff-mq__dot {
    display: none;
  }
}

/* Ingredients cards — hero images (square art, stacked above copy) */
body.ff-landing-page .ingredients3-card__media {
  width: min(100%, 220px);
  height: 220px;
  margin: 0 auto 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.ff-landing-page .ingredients3-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (min-width: 768px) {
  body.ff-landing-page .ingredients3-card__media {
    width: min(100%, 280px);
    height: 280px;
    margin-bottom: 20px;
  }
}



/* ── Mushroom Power + Real Results (design handoff, editorial-light theme) ──
   Both sections are intentionally always-dark navy, independent of the
   light/dark page theme split — same treatment as .ff-expect / .ff-reviews-section. */

.ff-mp-section {
  background: #5344B6;
  padding: 56px 20px;
}

.ff-cortisol {
  background: #F5EFE4;
  padding: 48px 20px;
}

.ff-cortisol__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.ff-cortisol__title {
  font-family: var(--ff-font-display);
  font-weight: 800;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #5344B6;
  margin: 0 0 20px;
}

.ff-cortisol__body {
  font-family: var(--ff-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: #17161C;
  margin: 0 0 16px;
}

.ff-cortisol__body--close {
  font-weight: 700;
  color: #5344B6;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .ff-cortisol {
    padding: 64px 26px;
  }
  .ff-cortisol__title {
    font-size: 32px;
  }
  .ff-cortisol__body {
    font-size: 17px;
  }
}

.ff-mp-section--results {
  padding: 0 20px 56px;
}

.ff-mp-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ff-mp-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.ff-mp-eyebrow {
  font-family: var(--ff-font-ui);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #E7B85A;
}

.ff-mp-title {
  margin: 0;
  font-family: var(--ff-font-display);
  font-weight: 800;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -1px;
  color: #F5EFE4 !important;
}

.ff-mp-title--results {
  margin-top: 12px;
}

.ff-mp-title-accent {
  color: #E7B85A;
}

.ff-mp-body {
  margin: 14px 0 0;
  font-family: var(--ff-font-body);
  font-size: 15px;
  line-height: 1.6;
  color: #C9C3B0;
}

.ff-mp-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 15px 30px;
  border-radius: 999px;
  background: #C9912E;
  color: #17161C;
  font-family: var(--ff-font-ui);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .3px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.ff-mp-cta:hover {
  background: #E7B85A;
}

/* Ingredient cards */
.ff-mp-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.ff-mp-card {
  background: #30274D;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ff-mp-card__media {
  aspect-ratio: 1;
  overflow: hidden;
}

.ff-mp-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ff-mp-card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.ff-mp-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ff-mp-card__tag {
  font-family: var(--ff-font-ui);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .6px;
  color: #E7B85A;
}

.ff-mp-card__name {
  margin: 0;
  font-family: var(--ff-font-display);
  font-weight: 700;
  font-size: 20px;
  color: #F5EFE4 !important;
}

.ff-mp-card__copy {
  margin: 0;
  font-family: var(--ff-font-body);
  font-size: 14px;
  line-height: 1.55;
  color: #C9C3B0;
}

/* Stats row (section 1) */
.ff-mp-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(245, 239, 228, .14);
}

.ff-mp-stat {
  text-align: center;
}

.ff-mp-stat__value {
  font-family: var(--ff-font-display);
  font-weight: 300;
  font-size: 40px;
  letter-spacing: -1px;
  color: #F5EFE4;
}

.ff-mp-stat__label {
  margin-top: 8px;
  font-family: var(--ff-font-ui);
  font-size: 13px;
  color: #C9C3B0;
}

/* Results layout (section 2) */
.ff-mp-results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}

.ff-mp-featured {
  background: #30274D;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.ff-mp-featured__value {
  font-family: var(--ff-font-display);
  font-weight: 800;
  font-size: 52px;
  letter-spacing: -1px;
  color: #F5EFE4;
}

.ff-mp-featured__label {
  font-family: var(--ff-font-ui);
  font-size: 14px;
  color: #C9C3B0;
}

.ff-mp-minigrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ff-mp-minicard {
  background: rgba(24, 18, 63, .35);
  border: 1px solid rgba(245, 239, 228, .18);
  border-radius: 16px;
  padding: 18px;
}

.ff-mp-minicard__value {
  font-family: var(--ff-font-display);
  font-weight: 800;
  font-size: 28px;
  color: #F5EFE4;
}

.ff-mp-minicard__label {
  margin-top: 6px;
  font-family: var(--ff-font-ui);
  font-size: 12.5px;
  line-height: 1.4;
  color: #C9C3B0;
}

.ff-mp-footnote {
  margin: 20px 0 0;
  font-family: var(--ff-font-body);
  font-size: 12.5px;
  line-height: 1.5;
  color: #C9C3B0;
  opacity: .75;
}

@media (min-width: 768px) {
  .ff-mp-section {
    padding: 72px 40px;
  }
  .ff-mp-section--results {
    padding: 0 40px 72px;
  }
  .ff-mp-title {
    font-size: 40px;
  }
  .ff-mp-title--results {
    font-size: 38px;
  }
  .ff-mp-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 48px;
  }
  .ff-mp-card__name {
    font-size: 22px;
  }
  .ff-mp-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
    padding-top: 40px;
  }
  .ff-mp-stat__value {
    font-size: 52px;
  }
  .ff-mp-stat__label {
    font-size: 14px;
  }
  .ff-mp-results-grid {
    grid-template-columns: 1fr 1.4fr;
    gap: 20px;
    margin-top: 40px;
  }
  .ff-mp-featured {
    padding: 32px;
  }
  .ff-mp-featured__value {
    font-size: 64px;
  }
  .ff-mp-featured__label {
    font-size: 15px;
  }
  .ff-mp-minigrid {
    gap: 20px;
  }
  .ff-mp-minicard {
    padding: 22px;
  }
  .ff-mp-minicard__value {
    font-size: 32px;
  }
  .ff-mp-minicard__label {
    font-size: 13px;
  }
}

@media (min-width: 992px) {
  .ff-mp-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ── Promo Banner (Fall Sale — design handoff, editorial-light theme) ──
   Replaces the old logo/menu nav header. Sits directly under the
   announcement bar. Always cream, matching the current landing theme. */

.ff-promob-section {
  background: #EDE2D0;
  padding: 32px 20px;
}

.ff-promob-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.ff-promob-inner > div {
  min-width: 0;
}

.ff-promob-badge-wrap {
  margin-bottom: 24px;
}

.ff-promob-badge {
  width: 100%;
  max-width: 620px;
  aspect-ratio: 1110 / 120;
  background: #C9912E;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: left center;
  mask-position: left center;
}

.ff-promob-badge-line {
  margin-top: 16px;
  width: 130px;
  height: 2px;
  background: #C9912E;
}

.ff-promob-headline {
  margin: 0;
  font-family: var(--ff-font-display);
  font-weight: 800;
  font-size: 34px;
  line-height: .98;
  letter-spacing: -1px;
}

.ff-promob-headline-gold {
  display: block;
  color: #C9912E;
}

.ff-promob-headline-navy {
  display: block;
  color: #1C1B32;
}

.ff-promob-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.ff-promob-rating img {
  width: 16px;
  height: 16px;
}

.ff-promob-rating span {
  font-family: var(--ff-font-ui);
  font-size: 14px;
  color: #5E5A55;
}

.ff-promob-rating strong {
  color: #1C1B32;
}

.ff-promob-body {
  margin: 14px 0 0;
  font-family: var(--ff-font-body);
  font-size: 15.5px;
  line-height: 1.6;
  color: #5E5A55;
  max-width: 46ch;
}

.ff-promob-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 15px 30px;
  border-radius: 999px;
  background: #C9912E;
  color: #17161C;
  font-family: var(--ff-font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -.3px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.ff-promob-cta:hover {
  background: #E7B85A;
}

.ff-promob-guarantee {
  margin: 12px 0 0;
  font-family: var(--ff-font-ui);
  font-size: 13px;
  color: #5E5A55;
}

.ff-promob-media {
  order: -1;
}

.ff-promob-media img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .ff-promob-section {
    padding: 48px 40px;
  }
  .ff-promob-inner {
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
  }
  .ff-promob-media {
    order: 0;
  }
  .ff-promob-headline {
    font-size: 52px;
    letter-spacing: -2px;
  }
  .ff-promob-rating span {
    font-size: 15px;
  }
  .ff-promob-body {
    font-size: 17px;
    margin-top: 16px;
  }
  .ff-promob-cta {
    padding: 17px 34px;
    font-size: 18px;
    margin-top: 26px;
  }
  .ff-promob-guarantee {
    margin-top: 14px;
  }
}

.ff-hero-headline-block {
  padding-top: 48px;
}

@media (min-width: 768px) {
  .ff-hero-headline-block {
    padding-top: 64px;
  }
}

.ff-buy__subscription-note {
  margin: 8px 0 0;
  font-family: var(--ff-font-ui);
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
}

/* ── Video Testimonials + Us vs. Them (design handoff, editorial-light theme) ──
   Section bg matches the Mushroom Power / Real Results / Reviews sections
   (#5344B6) per explicit request, rather than the handoff's default navy. */

.ff-vt-section {
  background: #5344B6;
  padding: 56px 20px;
}

.ff-vt-inner {
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}

.ff-vt-title {
  margin: 0;
  font-family: var(--ff-font-display);
  font-weight: 800;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #F5EFE4 !important;
}

.ff-vt-title-rotate {
  color: #E7B85A !important;
  display: inline-block;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.ff-vt-title-rotate.is-fading {
  opacity: 0;
  transform: translateY(4px);
}

/* Mobile/tablet: horizontal scroll-snap row — native swipe, no JS needed. */
.ff-vt-track {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 20px 4px;
  margin-left: -20px;
  margin-right: -20px;
}

.ff-vt-track::-webkit-scrollbar {
  display: none;
}

.ff-vt-card {
  flex: 0 0 82%;
  max-width: 300px;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.ff-vt-quote-card {
  background: #30274D;
  border-radius: 20px 20px 0 0;
  padding: 28px 22px;
  text-align: center;
}

.ff-vt-stars {
  display: flex;
  justify-content: center;
  gap: 3px;
}

.ff-vt-stars img {
  width: 15px;
  height: 15px;
}

.ff-vt-quote {
  margin: 14px auto 0;
  font-family: var(--ff-font-body);
  font-size: 15.5px;
  line-height: 1.5;
  color: #F5EFE4;
}

.ff-vt-quote-name {
  margin-top: 12px;
  font-family: var(--ff-font-display);
  font-weight: 700;
  font-size: 15px;
  color: #E7B85A;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ff-vt-quote-tag {
  font-family: var(--ff-font-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #17161C;
  background: #C9912E;
  border-radius: 999px;
  padding: 3px 9px;
}

.ff-vt-video-frame {
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  box-shadow: 0 20px 52px rgba(0, 0, 0, .4);
}

.ff-vt-video-wrap {
  position: relative;
  aspect-ratio: 9 / 16;
  background: #000;
  cursor: pointer;
}

.ff-vt-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ff-vt-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(23, 22, 28, .22);
}

.ff-vt-play-overlay.is-hidden {
  display: none;
}

.ff-vt-play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #C9912E;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ff-vt-play-btn-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 14px;
  border-color: transparent transparent transparent #17161C;
  margin-left: 2px;
}

.ff-vt-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.ff-vt-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: rgba(245, 239, 228, .3);
  transition: background 0.15s ease;
}

.ff-vt-dot.is-active {
  background: #C9912E;
}

.ff-vt-divider {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(245, 239, 228, .18);
}

.ff-vt-compare-title {
  margin: 0;
  font-family: var(--ff-font-display);
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -1px;
  color: #F5EFE4 !important;
}

.ff-vt-compare-body {
  margin: 12px auto 0;
  font-family: var(--ff-font-body);
  font-size: 15.5px;
  line-height: 1.6;
  color: #E4E0F5;
  max-width: 56ch;
}

.ff-vt-compare-image {
  display: block;
  max-width: 640px;
  width: 100%;
  margin: 28px auto 0;
  border-radius: 12px;
}

@media (min-width: 768px) {
  .ff-vt-section {
    padding: 72px 40px;
  }
  .ff-vt-title {
    font-size: 38px;
  }
  .ff-vt-quote-card {
    padding: 32px 26px;
  }
  .ff-vt-divider {
    margin-top: 56px;
  }
  .ff-vt-compare-title {
    font-size: 36px;
  }
}

/* Desktop: all 4 cards visible side-by-side, no scroll/swipe, dots hidden. */
@media (min-width: 1024px) {
  .ff-vt-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow-x: visible;
    padding: 4px 0;
    margin-left: 0;
    margin-right: 0;
  }
  .ff-vt-card {
    flex: initial;
    max-width: none;
  }
  .ff-vt-dots {
    display: none;
  }
  .ff-vt-divider {
    margin-top: 64px;
  }
}

/* ============================================================
   60-Day Guarantee band (design handoff, editorial-light theme)
   ============================================================ */
.ff-guarantee2-section {
  background:
    radial-gradient(110% 80% at 50% 0%, rgba(201, 145, 46, 0.10), rgba(201, 145, 46, 0) 48%),
    #5344B6;
  padding: 48px 20px;
}

.ff-guarantee2-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.ff-guarantee2-lead {
  display: flex;
  align-items: center;
  gap: 18px;
}

.ff-guarantee2-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid #C9912E;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ff-guarantee2-badge-num {
  font-family: var(--ff-font-display);
  font-size: 20px;
  font-weight: 800;
  color: #C9912E;
  line-height: 1;
}

.ff-guarantee2-badge-label {
  font-family: var(--ff-font-ui);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #C9912E;
}

.ff-guarantee2-heading {
  margin: 0;
  font-family: var(--ff-font-display);
  font-weight: 700;
  font-size: 21px;
  color: #F5EFE4;
}

.ff-guarantee2-body {
  margin: 6px 0 0;
  font-family: var(--ff-font-body);
  font-size: 14px;
  line-height: 1.55;
  color: #C9C3B0;
  max-width: 44ch;
}

.ff-guarantee2-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 999px;
  background: #C9912E;
  color: #17161C;
  font-family: var(--ff-font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .2px;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.ff-guarantee2-cta:hover {
  background: #E7B85A;
}

@media (min-width: 768px) {
  .ff-guarantee2-section {
    padding: 64px 40px;
  }
  .ff-guarantee2-badge {
    width: 72px;
    height: 72px;
  }
  .ff-guarantee2-badge-num {
    font-size: 22px;
  }
  .ff-guarantee2-badge-label {
    font-size: 9px;
  }
  .ff-guarantee2-heading {
    font-size: 24px;
  }
  .ff-guarantee2-body {
    font-size: 15px;
    max-width: 48ch;
  }
  .ff-guarantee2-cta {
    padding: 19px 40px;
    font-size: 16px;
  }
}

/* ============================================================
   Verified Proof Wall (design handoff, editorial-light theme)
   Real customer reviews, filterable by star rating, paginated
   with an explicit "Load More" click (no infinite scroll).
   ============================================================ */
.ff-proof-section {
  background: #F5EFE4;
  padding: 56px 20px;
}

.ff-proof-inner {
  max-width: 800px;
  margin: 0 auto;
}

.ff-proof-eyebrow {
  display: block;
  text-align: center;
  font-family: var(--ff-font-ui);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #C9912E;
}

.ff-proof-headline {
  margin: 10px 0 0;
  text-align: center;
  font-family: var(--ff-font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -1px;
  color: #1C1B32;
}

.ff-proof-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.ff-proof-average-wrap {
  text-align: center;
}

.ff-proof-average {
  font-family: var(--ff-font-display);
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -1px;
  color: #1C1B32;
  line-height: 1;
}

.ff-proof-average-stars {
  display: flex;
  gap: 2px;
  justify-content: center;
  margin-top: 6px;
}

.ff-proof-average-stars img {
  width: 14px;
  height: 14px;
}

.ff-proof-verified-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid #E8DFD2;
  border-radius: 12px;
  padding: 11px 16px;
  box-shadow: 0 10px 28px rgba(42, 33, 29, .09);
}

.ff-proof-verified-chip img {
  width: 18px;
  height: 18px;
}

.ff-proof-verified-chip span {
  font-family: var(--ff-font-ui);
  font-weight: 800;
  font-size: 12px;
  color: #1C1B32;
}

.ff-proof-chip-row {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 22px;
}

.ff-proof-chip {
  cursor: pointer;
  padding: 8px 15px;
  border-radius: 999px;
  border: 1.5px solid #E8DFD2;
  background: #FFFFFF;
  color: #20212A;
  font-family: var(--ff-font-ui);
  font-weight: 700;
  font-size: 12.5px;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.ff-proof-chip.is-active {
  border-color: #C9912E;
  background: #C9912E;
  color: #17161C;
}

.ff-proof-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 26px;
}

.ff-proof-card {
  background: #FFFFFF;
  border: 1px solid #E8DFD2;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(42, 33, 29, .09);
  padding: 18px 20px;
}

.ff-proof-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ff-proof-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #30274D;
  color: #fff;
  font-family: var(--ff-font-display);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Real customer photo standing in for the initials circle — same footprint,
   so review cards never resize depending on whether a review has a photo. */
.ff-proof-avatar--photo {
  object-fit: cover;
  border: 1px solid rgba(201, 145, 46, 0.28);
  box-shadow: 0 0 0 3px rgba(201, 145, 46, 0.06);
}

.ff-proof-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.ff-proof-name {
  font-family: var(--ff-font-ui);
  font-weight: 800;
  font-size: 14px;
  color: #1C1B32;
}

.ff-proof-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(201, 145, 46, .12);
  color: #C9912E;
  font-family: var(--ff-font-ui);
  font-weight: 800;
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 999px;
}

.ff-proof-verified-badge img {
  width: 9px;
  height: 9px;
}

.ff-proof-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 3px;
}

.ff-proof-meta img {
  width: 11px;
  height: 11px;
}

.ff-proof-meta span {
  font-family: var(--ff-font-ui);
  font-size: 11.5px;
  color: #5E5A55;
}

.ff-proof-card-title {
  margin-top: 12px;
  font-family: var(--ff-font-display);
  font-weight: 700;
  font-size: 15px;
  color: #1C1B32;
}

.ff-proof-card-body {
  margin: 6px 0 0;
  font-family: var(--ff-font-body);
  font-size: 14px;
  line-height: 1.6;
  color: #20212A;
}

.ff-proof-loadmore-wrap {
  text-align: center;
  margin-top: 22px;
}

.ff-proof-loadmore {
  cursor: pointer;
  padding: 13px 30px;
  border-radius: 999px;
  border: 1.5px solid #C9912E;
  background: transparent;
  color: #C9912E;
  font-family: var(--ff-font-ui);
  font-weight: 800;
  font-size: 14px;
  transition: background 0.15s ease;
}

.ff-proof-loadmore:hover {
  background: rgba(201, 145, 46, .08);
}

.ff-proof-browse-wrap {
  text-align: center;
  margin-top: 20px;
}

.ff-proof-browse-link {
  font-family: var(--ff-font-ui);
  font-weight: 800;
  font-size: 14px;
  color: #1C1B32;
  text-decoration: none;
}

.ff-proof-browse-link:hover {
  color: #C9912E;
}

@media (min-width: 768px) {
  .ff-proof-section {
    padding: 72px 40px;
  }
  .ff-proof-headline {
    font-size: 34px;
  }
  .ff-proof-average {
    font-size: 44px;
  }
  .ff-proof-card {
    padding: 20px 22px;
  }
}
