body {
    background-color: #3B0A2A !important;
}

/* =========================
   HERO WRAPPER / SLIDES
   (kept — cleaned — not duplicated)
   ========================= */
.tfv-hero{
  position:relative;
  width:100%;
  min-height:min(90vh, 720px);
  background: radial-gradient(circle at top, #111827 0, #020617 55%);
  color:#e5e7eb;
  overflow:hidden;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}
.tfv-hero-slider{
  position:relative;
  width:100%;
  height:100%;
  min-height:inherit;
}
.tfv-hero-slide{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  padding:6rem 6vw 4rem;
  opacity:0;
  pointer-events:none;
  transform:translateX(8%);
  transition: opacity .6s ease, transform .6s ease;
  overflow:hidden;
}
.tfv-hero-slide--active{
  opacity:1;
  pointer-events:auto;
  transform:translateX(0);
}
.tfv-hero-media{
  position:absolute;
  inset:0;
  z-index:0;
  overflow:hidden;
}
.tfv-hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(1.1) contrast(1.05);
  opacity:.88;
}
.tfv-hero-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    radial-gradient(circle at top left, rgba(56,189,248,.18), transparent 55%),
    radial-gradient(circle at bottom right, rgba(244,63,94,.24), transparent 55%),
    linear-gradient(to right, rgba(15,23,42,.96), rgba(15,23,42,.88), rgba(15,23,42,.4));
}
.tfv-hero-inner{
  position:relative;
  z-index:5;
  max-width:640px;
  background: linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,0));
  padding:1rem;
  border-radius:.5rem;
}
.tfv-hero-kicker{
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:1rem;
  margin-bottom:.75rem;
  color:#fbbf24;
}
.tfv-hero-title{
  font-size:clamp(2.25rem, 3vw, 3rem);
  line-height:1.1;
  margin:0 0 .5rem;
  color:#f9fafb;
}
.tfv-hero-subtitle{
  font-size:1.25rem;
  line-height:1.5;
  margin:0 0 1rem;
  color:#e5e7eb;
}
.tfv-hero-bullets{
  list-style:none;
  padding:0;
  margin:0 0 1.75rem;
  font-size:1.10rem;
  color:#cbd5f5;
}
.tfv-hero-bullets li{
  position:relative;
  padding-left:1.2rem;
  margin-bottom:.35rem;
}
.tfv-hero-bullets li::before{
  content:"✶";
  position:absolute;
  left:0;
  top:0;
  font-size:1.10rem;
  color:#38bdf8;
}
.tfv-hero-title,
.tfv-hero-subtitle,
.tfv-hero-kicker,
.tfv-hero-bullets li,
.tfv-btn span{
  text-shadow:0 2px 6px rgba(0,0,0,.55), 0 4px 12px rgba(0,0,0,.35);
}

/* HERO Buttons (your later definitions) */
.tfv-hero-ctas{ display:flex; flex-wrap:wrap; gap:.75rem; }
.tfv-btn{ gap:.45rem; font-weight:600; font-size:1.05rem; padding:.85rem 1.6rem; border:none; white-space:nowrap; }
.tfv-btn-primary{ background:#f9fafb; color:#020617; box-shadow:0 10px 25px rgba(15,23,42,.55); }
.tfv-btn-primary:hover{ background:#e5e7eb; }
.tfv-btn-secondary{
  position:relative;
  padding:.83rem 1.7rem;
  background: linear-gradient(90deg, #38bdf8, #fb7185);
  color:#f9fafb;
}
.tfv-btn-secondary::before{
  content:"";
  position:absolute;
  inset:2px;
  border-radius:inherit;
  background: rgba(15,23,42,.98);
  z-index:0;
}
.tfv-btn-secondary span{ position:relative; z-index:1; }
.tfv-price-old{ text-decoration:line-through; opacity:.7; margin-right:.35rem; font-size:.85rem; }
.tfv-price-new{ font-weight:700; }
.tfv-price-label{ font-size:.8rem; opacity:.85; margin-left:.35rem; }
.tfv-btn-icon{ font-size:.8rem; display:inline-flex; align-items:center; }

/* Dots */
.tfv-hero-dots{
  position:absolute;
  left:50%;
  bottom:1.5rem;
  transform:translateX(-50%);
  display:flex;
  gap:.5rem;
  z-index:5;
}
.tfv-hero-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  border:none;
  background: rgba(148,163,184,.5);
  cursor:pointer;
  padding:0;
  transition: background .2s ease, width .2s ease;
}
.tfv-hero-dot--active{
  width:22px;
  background: linear-gradient(90deg,#38bdf8,#fb7185);
}

/* Responsive */
@media (max-width:900px){
  .tfv-hero-slide{ padding:5.5rem 1.25rem 3.75rem; align-items:flex-end; }
  .tfv-hero-inner{ max-width:100%; }
  .tfv-hero-title{ font-size:1.9rem; }
  .tfv-hero-subtitle{ font-size:.98rem; }
  .tfv-hero-ctas{ flex-direction:column; align-items:stretch; }
  .tfv-btn{ width:100%; justify-content:center; }
}
@media (max-width:640px){
  .tfv-hero{ min-height:100vh; }
  .tfv-hero-slide{ padding:5.25rem 1rem 4.25rem; }
  .tfv-hero-bullets{ font-size:.9rem; }
}
@media (min-width:1024px){
  .tfv-hero{ min-height:100vh; }
  .tfv-hero-media img{ object-fit:contain; object-position:center center; background-color:#020617; }
  .tfv-hero-slide{ align-items:center; }
}
@media (max-width:768px){
  .tfv-hero{ min-height:80vh; }
  .tfv-hero-media img{ object-fit:cover; object-position:center top; transform:scale(.85); }
}
.desktop-only{ display:block; }
.mobile-only{ display:none; }
@media (max-width:767px){
  .desktop-only{ display:none !important; }
  .mobile-only{ display:block !important; }
}
.hero-image{ width:100%; height:auto; object-fit:cover; }
@media screen and (min-width:769px){
  .tfv-hero-inner{ padding-top:22vh; max-width:45%; }
}
@media screen and (max-width:768px){
  .tfv-hero-inner{ padding-top:35vh; max-width:85%; }
}

/* Slide-specific alignment */
.tfv-hero-slide[data-slide="2"] .tfv-hero-media img{ object-position:center top !important; }
.tfv-hero-slide[data-slide="2"] .tfv-hero-inner{ padding-top:42vh !important; }
@media (max-width:767px){
  .tfv-hero-slide[data-slide="2"] .tfv-hero-media img{
    transform:scale(.83) !important;
    object-position:center top !important;
  }
  .tfv-hero-slide[data-slide="2"] .tfv-hero-inner{ padding-top:48vh !important; }
}
@media (min-width:768px){
  .tfv-hero-slide[data-slide="3"] .tfv-hero-inner{ padding-top:32vh !important; }
}
@media (max-width:767px){
  .tfv-hero-slide[data-slide="3"] .tfv-hero-media img{
    object-position:center top !important;
    transform:scale(.9);
  }
  .tfv-hero-slide[data-slide="3"] .tfv-hero-inner{ padding-top:50vh !important; }
}

/* Circles row */
.tfv-circles{
  max-width:1200px;
  margin:22px auto;
  padding:0 16px;
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:14px;
}
.tfv-circle{
  place-self:center;
  width:110px;
  aspect-ratio:1/1;
  border-radius:50%;
  position:relative;
  overflow:hidden;
  border:1px solid var(--tfv-line);
  background:#121420;
  display:block;
  box-shadow:var(--tfv-shadow);
  transition:transform .18s ease, box-shadow .18s ease, border .18s ease;
}
@media (max-width:640px){ .tfv-circle{ width:96px; } }
@media (max-width:420px){ .tfv-circle{ width:88px; } }

button.tfv-circle{
  border:1px solid var(--tfv-line);
  background:
    radial-gradient(120px 120px at 70% 30%, rgba(255,255,255,.12), transparent 60%),
    #121420;
  color:var(--tfv-ink);
  cursor:pointer;
}
.tfv-circle.tfv-accent{
  background:
    radial-gradient(120px 120px at 30% 70%, rgba(255,210,90,.22), transparent 60%),
    radial-gradient(120px 120px at 70% 30%, rgba(97,213,255,.22), transparent 60%),
    #121420;
}

.tfv-no-scroll {
  overflow: hidden !important;
  height: 100vh;
}

#tfv-reels {
  scroll-margin-top: 120px;
}

/* Ensure the label can anchor our absolute pulsating dot */
.tfv-circle-label {
  position: relative;
}

/* Base style for the hidden indicator dot */
.live-indicator-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-left: 4px;
  vertical-align: middle;
  transition: all 0.3s ease;
  background-color: transparent; /* Hidden by default when away */
}

/* --- WHEN LIVE: Make the dot green and activate the radar ring --- */
#liveNavButton.live .live-indicator-dot {
  background-color: #00e676;
  box-shadow: 0 0 8px #00e676;
}

/* The Pulsating Radar Ring Layer */
#liveNavButton.live .live-indicator-dot::after {
  content: '';
  position: absolute;
  /* Centered perfectly over the small green dot */
  top: 50%;
  left: calc(100% - 6px); 
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-shadow: 0 0 0 0px rgba(0, 230, 118, 0.8);
  animation: navRadarPulse 1.8s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}

/* Radar Ring Keyframes */
@keyframes navRadarPulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 230, 118, 0.8);
  }
  100% {
    /* Rings expands out beautifully around the "Live" text label and fades */
    box-shadow: 0 0 0 14px rgba(0, 230, 118, 0);
  }
}

/* The engine that powers your pulsating live radar ring */
@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.tfv-btn-primary {
    display: inline-block; /* Makes it only as wide as the text */
    padding: 12px 30px; /* Adjust padding to control size */
    width: auto; /* Removes the 100% width stretch */
    max-width: 300px; /* Ensures it doesn't get too huge on desktop */
    margin: 0 auto; /* Centers it */
    text-align: center;
}

#tfv-share-modal {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Dark semi-transparent background */
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

#tfv-share-modal .modal-content {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 400px;
  text-align: center;
  color: #000;
}

/* Rows shell */
.tfv-rows{ max-width:1200px; margin:10px auto 40px; padding:0 16px; }
.tfv-row{ position:relative; margin:20px 0 28px; }
.tfv-row-head{
  display:flex; align-items:center; gap:12px; justify-content:space-between; margin:0 2px 10px;
}
.tfv-row-head h3{
  margin:0; font-size:clamp(18px,2.8vw,22px); font-weight:800; color:var(--tfv-ink);
}
.tfv-row-search{
  min-width:230px; max-width:50%;
  background:#0f111a; border:1px solid var(--tfv-line); color:var(--tfv-ink);
  padding:10px 12px; border-radius:10px; font-size:14px;
}
@media (max-width:640px){ .tfv-row-search{ display:none; } }

/* Scroller */
.tfv-row-scroller{
  display:grid; grid-auto-flow:column; grid-auto-columns: clamp(160px, 28vw, 240px);
  gap:12px; overflow-x:auto; overscroll-behavior-x:contain; scroll-snap-type:x mandatory; padding:6px 2px 10px;
  scrollbar-width:none; -ms-overflow-style:none;
}
.tfv-row-scroller::-webkit-scrollbar{ display:none; }

/* Reel card */
.tfv-reel{ scroll-snap-align:start; background:var(--tfv-card); border:1px solid var(--tfv-line); border-radius:14px; overflow:hidden; box-shadow:var(--tfv-shadow); }
.tfv-reel h4{ margin:8px 10px 6px; font-size:13px; color:var(--tfv-ink-dim); min-height:34px; }
.tfv-reel-thumb{
  position:relative; width:100%; aspect-ratio:9/16; display:block; border:0; padding:0; background:#000; cursor:pointer;
}
.tfv-reel-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.tfv-play{ position:absolute; inset:auto 8px 8px auto; background:rgba(0,0,0,.55); color:#fff; padding:6px 10px; border-radius:999px; font-weight:700; }

/* Reel actions - Container */
.tfv-reel-actions {
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 8px;
  padding: 8px 8px 10px; 
  flex-wrap: wrap;
}

/* Updated Buttons - Now using flex to align the icon/text with the count */
.tfv-reel-actions .like,
.tfv-reel-actions .share,
.tfv-reel-actions .comment {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: transparent; 
  border: 1px solid var(--tfv-line); 
  color: var(--tfv-ink); 
  border-radius: 999px; 
  padding: 6px 12px; 
  font-size: 12px; 
  cursor: pointer;
}

/* Force the count spans to be visible */
.tfv-reel-actions .likecount,
.tfv-reel-actions .share-count,
.tfv-reel-actions .comment-count {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  font-weight: bold;
}

/* Join Button */
.tfv-reel-actions .join {
  background: linear-gradient(92deg, var(--tfv-gold), var(--tfv-ice)); 
  color: #11131c; 
  text-decoration: none; 
  padding: 6px 10px; 
  border-radius: 999px; 
  font-weight: 700; 
  font-size: 12px; 
  white-space: nowrap;
}

/* Row arrows (desktop only) */
.tfv-row-arrow{
  display:none;
  position:absolute; top:58%; transform:translateY(-50%);
  width:36px; height:36px; border-radius:50%; border:0; cursor:pointer; color:#111;
  background:#fff; box-shadow:0 6px 16px rgba(0,0,0,.25); z-index:2;
}
.tfv-row-arrow.prev{ left:-8px; } .tfv-row-arrow.next{ right:-8px; }
@media (min-width:920px){ .tfv-row-arrow{ display:inline-grid; place-items:center; } }

/* ===== Comparison Modal styling (kept dark/ombre aesthetic) ===== */
#tfv-compare-modal .tfv-compare-wrap {
    width: 900px !important; /* Force it to 900px regardless of theme */
    max-width: 94vw !important; /* Still allow it to shrink on small phones */
    max-height: 90vh !important; 
    overflow-y: auto !important;
    background: var(--tfv-card) !important;
    border: 1px solid var(--tfv-border) !important;
    border-radius: 20px !important;
    padding: 30px !important;
    position: relative !important;
}

/* Force the Fire and Ice ombre on the modal trial buttons */
#tfv-compare-modal .tfv-compare-card button,
#tfv-compare-modal .tfv-compare-card .js-open-compare {
    /* The specific gradient from your other site buttons */
    background: linear-gradient(92deg, var(--tfv-gold), var(--tfv-ice)) !important;
    color: #11131c !important; /* Ensures the text is dark against the bright gradient */
    border: none !important;
    border-radius: 999px !important;
    padding: 12px 24px !important;
    font-weight: 700 !important;
    width: 100% !important; /* Makes sure it fills the card width */
    cursor: pointer !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2) !important;
    transition: transform 0.2s ease !important;
}

/* Add the hover effect to match your other buttons */
#tfv-compare-modal .tfv-compare-card button:hover,
#tfv-compare-modal .tfv-compare-card .js-open-compare:hover {
    filter: brightness(1.08) !important;
    transform: translateY(-2px) !important;
}

.tfv-compare-grid {
    display: grid; 
    gap: 24px; /* Increased gap */
    margin-top: 20px;
    grid-template-columns: 1fr 1fr;
}
#tfv-compare-modal .tfv-compare-close{
  position:absolute; top:10px; right:10px;
  width:36px; height:36px; border-radius:50%;
  border:0; background:#fff; color:#000; font-weight:800; cursor:pointer;
}
.tfv-compare-head{ text-align:center; padding:8px 6px 14px; }
.tfv-compare-head h3{ margin:0; font-size:24px; background:linear-gradient(92deg,var(--tfv-gold),var(--tfv-ice)); -webkit-background-clip:text; background-clip:text; color:transparent; }
.tfv-compare-head p{ margin:6px 0 0; color:var(--tfv-dim); }

.tfv-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Fix mobile responsiveness */
@media (max-width: 768px) {
    .tfv-compare-grid { grid-template-columns: 1fr; }
}

.tfv-compare-card{
  background:rgba(255,255,255,.02);
  border:1px solid var(--tfv-border);
  border-radius:16px; padding:18px;
}
.tfv-compare-card h4{ margin:0 0 6px; font-size:18px; }
.tfv-price{ font-size:28px; margin:0 0 12px; }
.tfv-price span{ font-size:14px; color:var(--tfv-dim); margin-left:6px; }
.tfv-features{ list-style:none; padding:0; margin:0 0 16px; }
.tfv-features li{ padding:6px 0; border-bottom:1px dashed rgba(255,255,255,.06); }
.tfv-features li:last-child{ border-bottom:0; }
.tfv-pro{ outline:2px solid rgba(97,213,255,.18); box-shadow:0 0 0 4px rgba(97,213,255,.08) inset; }

.tfv-btn-stack .memberships_button *{
  font-family: Poppins,system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial,sans-serif !important;
}
.tfv-btn-stack {
    padding: 20px 0;
    text-align: center;
    width: 100%;
}
#checkout_95762 button, #checkout_95762 .btn, #checkout_95762 input[type="button"], #checkout_95762 a,
#checkout_95763 button, #checkout_95763 .btn, #checkout_95763 input[type="button"], #checkout_95763 a{
  background:linear-gradient(92deg, var(--tfv-gold), var(--tfv-ice)) !important;
  color:#11131c !important; border:none !important; border-radius:999px !important;
  padding:12px 18px !important; font-weight:700 !important; box-shadow:var(--tfv-shadow) !important;
}
#checkout_95762 button:hover, #checkout_95763 button:hover,
#checkout_95762 .btn:hover, #checkout_95763 .btn:hover{ filter:brightness(1.08) !important; transform:translateY(-1px) !important; }

/* Celebrity row lock: show cards under a soft dim/blur overlay */
.tfv-row[data-locked="true"]{ position:relative; }
.tfv-row[data-locked="true"] .tfv-row-scroller{
  filter: blur(1.5px) brightness(.85); /* 👈 still visible */
  pointer-events: none; /* no clicks through */
}
.tfv-row[data-locked="true"] .tfv-lock{
  position:absolute; inset:0; z-index:5;
  display:flex; align-items:center; justify-content:center;
  background:rgba(10,12,20,.45); /* lighter than before so reels show */
  backdrop-filter: blur(1px);
  border-radius:16px;
}
.tfv-row[data-locked="true"] .tfv-lock-card{
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px; padding:18px 20px; text-align:center;
  max-width:min(640px,92vw); color:var(--tfv-ink,#e9ecff);
  box-shadow:0 10px 40px rgba(0,0,0,.45);
}
.tfv-row[data-locked="true"] .tfv-lock-title{ font-weight:800; font-size:20px; margin:0 0 6px; }
.tfv-row[data-locked="true"] .tfv-lock-sub{ margin:0 0 12px; opacity:.9; }

/* =========================
   TFV — Container CSS (scoped)
   CLEAN + DE-DUPED from your paste
   ========================= */

/* Base theme variables */
:root{
  --tfv-bg:#0a0b12;
  --tfv-ink:#e9ecff;
  --tfv-ink-dim:#b8c0ff;
  --tfv-gold:#ffd25a;
  --tfv-ice:#61d5ff;
  --tfv-card:#11131c;
  --tfv-line:#1b1e2a;
  --tfv-radius:22px;
  --tfv-shadow:0 10px 30px rgba(0,0,0,.45);
  --tfv-border:#1c2030;
  --tfv-text:#e9f0ff;
  --tfv-dim:#9fb3c8;
}

html.tfv-no-scroll{ overflow:hidden; }

.tfv{
  color:var(--tfv-ink);
  background:
    radial-gradient(1200px 600px at 10% 0%, rgba(97,213,255,.12), transparent 60%),
    radial-gradient(1200px 600px at 90% 0%, rgba(255,210,90,.10), transparent 60%),
    var(--tfv-bg);
  font-family:Poppins,system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial,sans-serif;
}

/* HERO copy/buttons */
.tfv-hero-copy{ text-align:center; }
.tfv-hero-copy h1{
  font-family:"Playfair Display", serif;
  font-size:clamp(28px, 4vw, 48px);
  line-height:1.1;
  margin:8px 0 6px;
  background:linear-gradient(92deg,var(--tfv-gold),var(--tfv-ice));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.tfv-sub{ color:var(--tfv-ink-dim); margin:0 0 12px; }
.tfv-cta-row{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* Buttons */
.tfv-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  border:1px solid transparent;
  transition:all .2s ease;
  cursor:pointer;
}

.tfv-btn-primary:hover{ filter:brightness(1.08); transform:translateY(-1px); }
.tfv-btn-ghost{
  background:transparent;
  color:var(--tfv-ink);
  border-color:rgba(255,255,255,.2);
}
.tfv-btn-ghost:hover{ border-color:rgba(255,255,255,.4); transform:translateY(-1px); }

/* ACTION CARDS (Hotline / Chat / etc.) */
.tfv-actions{
  max-width:1200px;
  margin:18px auto 8px;
  padding:0 16px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:18px;
}
@media (max-width:720px){ .tfv-actions{ grid-template-columns:1fr; } }

.tfv-card{
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)), var(--tfv-card);
  border:1px solid var(--tfv-line);
  border-radius:var(--tfv-radius);
  overflow:hidden;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  min-height:220px;
  box-shadow:var(--tfv-shadow);
}
.tfv-card img{ width:100%; height:100%; object-fit:cover; display:block; }
.tfv-card-body{
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:8px;
  justify-content:center;
}
.tfv-card h3{ margin:0; font-size:clamp(18px, 2.4vw, 26px); }
.tfv-card p{ margin:0 0 4px; color:var(--tfv-ink-dim); }
@media (max-width:900px){ .tfv-card{ grid-template-columns:1fr; } }

/* Universal media hook for Hotline/Chat artwork */
.tfv-card-media{ display:block; width:100%; height:auto; }

/* Circles row */
.tfv-circles{
  max-width:1200px;
  margin:22px auto;
  padding:0 16px;
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:14px;
}
.tfv-circle{
  place-self:center;
  width:110px;
  aspect-ratio:1/1;
  border-radius:50%;
  position:relative;
  overflow:hidden;
  border:1px solid var(--tfv-line);
  background:#121420;
  display:block;
  box-shadow:var(--tfv-shadow);
  transition:transform .18s ease, box-shadow .18s ease, border .18s ease;
}
@media (max-width:640px){ .tfv-circle{ width:96px; } }
@media (max-width:420px){ .tfv-circle{ width:88px; } }

button.tfv-circle{
  border:1px solid var(--tfv-line);
  background:
    radial-gradient(120px 120px at 70% 30%, rgba(255,255,255,.12), transparent 60%),
    #121420;
  color:var(--tfv-ink);
  cursor:pointer;
}
.tfv-circle.tfv-accent{
  background:
    radial-gradient(120px 120px at 30% 70%, rgba(255,210,90,.22), transparent 60%),
    radial-gradient(120px 120px at 70% 30%, rgba(97,213,255,.22), transparent 60%),
    #121420;
}
.tfv-circle.has-image img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;
}
.tfv-circle-label{
  position:absolute;
  left:50%;
  bottom:6px;
  transform:translateX(-50%);
  font-weight:700;
  font-size:12px;
  letter-spacing:.2px;
  text-transform:uppercase;
  color:#fff;
  text-shadow:0 1px 2px rgba(0,0,0,.7), 0 0 8px rgba(0,0,0,.6);
  pointer-events:none;
}
@media (max-width:420px){ .tfv-circle-label{ font-size:11px; } }
.tfv-circle:hover{ transform:translateY(-3px); border-color:rgba(255,255,255,.35); }

/* Members bar */
.tfv-members{
  margin:6px 0 10px;
  padding:8px 0;
  background:linear-gradient(92deg, rgba(255,210,90,.08), rgba(97,213,255,.08));
  border-top:1px solid var(--tfv-line);
  border-bottom:1px solid var(--tfv-line);
}

/* Apply Fire and Ice Ombre to the specific buttons in your HTML */
.tfv-members .tfv-btn {
    background: linear-gradient(92deg, var(--tfv-gold), var(--tfv-ice)) !important;
    color: #11131c !important;
    border: none !important;
    border-radius: 999px !important;
    padding: 8px 20px !important; /* Matches your HTML padding */
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: filter 0.3s ease !important;
}

/* Hover effect */
.tfv-members .tfv-btn:hover {
    filter: brightness(1.08) !important;
    transform: translateY(-2px) !important;
}
.tfv-members-inner{
  max-width:1200px;
  margin:0 auto;
  padding:14px 16px;
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}
#member-count{
  font-weight:700;
  background:linear-gradient(92deg,var(--tfv-gold),var(--tfv-ice));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.tfv-member-tiers{
  text-align:center;
  margin-top:6px;
  color:var(--tfv-ink-dim);
  font-size:14px;
}

/* Rows shell */
.tfv-rows{ max-width:1200px; margin:10px auto 40px; padding:0 16px; }
.tfv-row{ position:relative; margin:20px 0 28px; }
.tfv-row-head{
  display:flex;
  align-items:center;
  gap:12px;
  justify-content:space-between;
  margin:0 2px 10px;
}
.tfv-row-head h3{
  margin:0;
  font-size:clamp(18px,2.8vw,22px);
  font-weight:800;
  color:var(--tfv-ink);
}
.tfv-row-search{
  min-width:230px;
  max-width:50%;
  background:#0f111a;
  border:1px solid var(--tfv-line);
  color:var(--tfv-ink);
  padding:10px 12px;
  border-radius:10px;
  font-size:14px;
}
@media (max-width:640px){ .tfv-row-search{ display:none; } }

/* Scroller */
.tfv-row-scroller{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns: clamp(160px, 28vw, 240px);
  gap:12px;
  overflow-x:auto;
  overscroll-behavior-x:contain;
  scroll-snap-type:x mandatory;
  padding:6px 2px 10px;
  scrollbar-width:none;
  -ms-overflow-style:none;
}
.tfv-row-scroller::-webkit-scrollbar{ display:none; }

/* Reel card */
.tfv-reel{
  scroll-snap-align:start;
  background:var(--tfv-card);
  border:1px solid var(--tfv-line);
  border-radius:14px;
  overflow:hidden;
  box-shadow:var(--tfv-shadow);
}
.tfv-reel h4{
  margin:8px 10px 6px;
  font-size:13px;
  color:var(--tfv-ink-dim);
  min-height:34px;
}
.tfv-reel-thumb{
  position:relative;
  width:100%;
  aspect-ratio:9/16;
  display:block;
  border:0;
  padding:0;
  background:#000;
  cursor:pointer;
}
.tfv-reel-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.tfv-play{
  position:absolute;
  inset:auto 8px 8px auto;
  background:rgba(0,0,0,.55);
  color:#fff;
  padding:6px 10px;
  border-radius:999px;
  font-weight:700;
}

/* Reel actions */
.tfv-reel-actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  padding:8px 8px 10px;
  flex-wrap:wrap;
}
.tfv-reel-actions .like,
.tfv-reel-actions .share,
.tfv-reel-actions .comment{
  background:transparent;
  border:1px solid var(--tfv-line);
  color:var(--tfv-ink);
  border-radius:999px;
  padding:6px 10px;
  font-size:12px;
  cursor:pointer;
}
.tfv-reel-actions .join{
  background:linear-gradient(92deg,var(--tfv-gold),var(--tfv-ice));
  color:#11131c;
  text-decoration:none;
  padding:6px 10px;
  border-radius:999px;
  font-weight:700;
  font-size:12px;
  white-space:nowrap;
}

/* Row arrows (desktop only) */
.tfv-row-arrow{
  display:none;
  position:absolute;
  top:58%;
  transform:translateY(-50%);
  width:36px;
  height:36px;
  border-radius:50%;
  border:0;
  cursor:pointer;
  color:#111;
  background:#fff;
  box-shadow:0 6px 16px rgba(0,0,0,.25);
  z-index:2;
}
.tfv-row-arrow.prev{ left:-8px; }
.tfv-row-arrow.next{ right:-8px; }
@media (min-width:920px){ .tfv-row-arrow{ display:inline-grid; place-items:center; } }

/* =========================
   TFV Custom Modal (scoped so it doesn't hijack Bold)
   ========================= */

/* If your TFV modals live inside the .tfv container, keep them scoped */
.tfv .modal{
  display:none;
  position:fixed;
  z-index:999;
  padding-top:80px;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background-color: rgba(0,0,0,0.7);
  overflow:auto;
}

/* Shared Signature Aesthetic for both modals */
.tfv-modal-base {
    background: linear-gradient(135deg, #ff4500, #00ced1) !important;
    padding: 2px; /* This creates the thin border-gradient effect */
    border-radius: 22px;
    position: relative;
}

.tfv-modal-content {
    background: var(--tfv-card); /* Keeps the dark interior */
    border-radius: 20px;
    padding: 30px;
    color: var(--tfv-text);
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.tfv .modal-content{
  background: linear-gradient(145deg, #0c0b15, #15122a);
  color:#fff;
  border-radius:20px;
  width:90%;
  max-width:450px;
  margin:auto;
  padding:30px;
  text-align:center;
  box-shadow: 0 0 25px rgba(255, 0, 80, 0.3);
}
.tfv .modal-header{ margin-bottom:20px; }
.tfv .circle-image{
  width:120px;
  height:120px;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:10px;
  border:3px solid #ff3b6e;
  box-shadow:0 0 15px rgba(255, 59, 110, 0.5);
}
.tfv .modal-note{ font-size:.9rem; color:#ccc; }

/* IMPORTANT: stop global label/input rules from affecting Bold checkout */
.tfv .modal-content label{
  text-align:left;
  display:block;
  margin-top:10px;
  font-weight:600;
  font-size:.9rem;
}
.tfv .modal-content input,
.tfv .modal-content textarea,
.tfv .modal-content select{
  width:100%;
  padding:10px;
  margin-top:5px;
  border-radius:8px;
  border:none;
  outline:none;
  background: rgba(255,255,255,.1);
  color:#fff;
}
.tfv .modal-content .submit-btn{
  background: linear-gradient(90deg, #ff3b6e, #ff8ba7);
  color:#fff;
  border:none;
  padding:12px 20px;
  border-radius:30px;
  font-weight:700;
  margin-top:20px;
  cursor:pointer;
  transition:.3s ease;
}
.tfv .modal-content .submit-btn:hover{
  background: linear-gradient(90deg, #ff8ba7, #ff3b6e);
  transform: scale(1.03);
}

/* =========================
   TFV Arrange-a-Call Modal Styling
   (kept as you had it, but CLEAN + not duplicated)
   ========================= */
#tfv-call-away.tfv-modal,
#tfv-call-away{
  background: rgba(10, 8, 20, .95) !important;
  color:#fff !important;
  backdrop-filter: blur(6px);
}

#tfv-call-away .tfv-modal-body{
  background: linear-gradient(145deg,#0b0818,#15122a) !important;
  border-radius:20px;
  padding:24px !important;
  color:#fff !important;
  box-shadow:0 0 25px rgba(255,0,100,.2);
}

/* Headshot / featured image */
#tfv-call-away img{
  width:120px;
  height:120px;
  border-radius:50%;
  object-fit:cover;
  border:3px solid #ff3b6e;
  box-shadow:0 0 15px rgba(255,59,110,.5);
  display:block;
  margin:0 auto 15px;
}

/* Text and labels */
#tfv-call-away h3,
#tfv-call-away p,
#tfv-call-away label{
  color:#fff !important;
}

/* Inputs */
#tfv-call-away input,
#tfv-call-away textarea,
#tfv-call-away select{
  background: rgba(255,255,255,.08) !important;
  color:#fff !important;
  border:1px solid rgba(255,255,255,.15) !important;
  border-radius:12px;
}

/* Button: Gold → Ice */
#tfv-call-away button[type="submit"],
#tfv-call-away .tfv-btn-primary{
  background: linear-gradient(90deg,#f3cd46,#79d4f6) !important;
  color:#111 !important;
  border:none !important;
  border-radius:999px;
  font-weight:800;
  padding:12px 18px;
  box-shadow:0 10px 28px rgba(0,0,0,.35);
  width:100%;
}
#tfv-call-away button[type="submit"]:hover,
#tfv-call-away .tfv-btn-primary:hover{
  transform:translateY(-1px);
}

/* Circle avatar fallback */
#tfv-call-away .tfv-call-avatar{
  display:block;
  width:120px;
  height:120px;
  border-radius:50%;
  object-fit:cover;
  background:#0b0818 url("https://cdn.shopify.com/s/files/1/0728/7173/9650/files/Twin_Flame_Visions_CEO_Anitra_Bunn.jpg?v=1762786322") center/cover no-repeat;
  border:3px solid #ffd776;
  box-shadow:0 0 18px rgba(255,215,118,.35);
  margin:0 auto 14px;
}

/* Video-only landing (when ?reel=... present) */
html.tfv-watch-only, body.tfv-watch-only{
  height:100%;
  overflow:hidden;
  background:#000;
}
.tfv-watch-only #site,
.tfv-watch-only .tfv-page,
.tfv-watch-only header,
.tfv-watch-only footer,
.tfv-watch-only main,
.tfv-watch-only .tfv-hero,
.tfv-watch-only .tfv-home,
.tfv-watch-only .asb-page{
  display:none !important;
}

/* =========================
   HERO WRAPPER / SLIDES
   (kept — cleaned — not duplicated)
   ========================= */
.tfv-hero{
  position:relative;
  width:100%;
  min-height:min(90vh, 720px);
  background: radial-gradient(circle at top, #111827 0, #020617 55%);
  color:#e5e7eb;
  overflow:hidden;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}
.tfv-hero-slider{
  position:relative;
  width:100%;
  height:100%;
  min-height:inherit;
}
.tfv-hero-slide{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  padding:6rem 6vw 4rem;
  opacity:0;
  pointer-events:none;
  transform:translateX(8%);
  transition: opacity .6s ease, transform .6s ease;
  overflow:hidden;
}
.tfv-hero-slide--active{
  opacity:1;
  pointer-events:auto;
  transform:translateX(0);
}
.tfv-hero-media{
  position:absolute;
  inset:0;
  z-index:0;
  overflow:hidden;
}
.tfv-hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(1.1) contrast(1.05);
  opacity:.88;
}
.tfv-hero-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    radial-gradient(circle at top left, rgba(56,189,248,.18), transparent 55%),
    radial-gradient(circle at bottom right, rgba(244,63,94,.24), transparent 55%),
    linear-gradient(to right, rgba(15,23,42,.96), rgba(15,23,42,.88), rgba(15,23,42,.4));
}
.tfv-hero-inner{
  position:relative;
  z-index:5;
  max-width:640px;
  background: linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,0));
  padding:1rem;
  border-radius:.5rem;
}
.tfv-hero-kicker{
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:1rem;
  margin-bottom:.75rem;
  color:#fbbf24;
}
.tfv-hero-title{
  font-size:clamp(2.25rem, 3vw, 3rem);
  line-height:1.1;
  margin:0 0 .5rem;
  color:#f9fafb;
}
.tfv-hero-subtitle{
  font-size:1.25rem;
  line-height:1.5;
  margin:0 0 1rem;
  color:#e5e7eb;
}
.tfv-hero-bullets{
  list-style:none;
  padding:0;
  margin:0 0 1.75rem;
  font-size:1.10rem;
  color:#cbd5f5;
}
.tfv-hero-bullets li{
  position:relative;
  padding-left:1.2rem;
  margin-bottom:.35rem;
}
.tfv-hero-bullets li::before{
  content:"✶";
  position:absolute;
  left:0;
  top:0;
  font-size:1.10rem;
  color:#38bdf8;
}
.tfv-hero-title,
.tfv-hero-subtitle,
.tfv-hero-kicker,
.tfv-hero-bullets li,
.tfv-btn span{
  text-shadow:0 2px 6px rgba(0,0,0,.55), 0 4px 12px rgba(0,0,0,.35);
}

/* HERO Buttons (your later definitions) */
.tfv-hero-ctas{ display:flex; flex-wrap:wrap; gap:.75rem; }
.tfv-btn{ gap:.45rem; font-weight:600; font-size:1.05rem; padding:.85rem 1.6rem; border:none; white-space:nowrap; }
.tfv-btn-primary{ background:#f9fafb; color:#020617; box-shadow:0 10px 25px rgba(15,23,42,.55); }
.tfv-btn-primary:hover{ background:#e5e7eb; }
.tfv-btn-secondary{
  position:relative;
  padding:.83rem 1.7rem;
  background: linear-gradient(90deg, #38bdf8, #fb7185);
  color:#f9fafb;
}
.tfv-btn-secondary::before{
  content:"";
  position:absolute;
  inset:2px;
  border-radius:inherit;
  background: rgba(15,23,42,.98);
  z-index:0;
}
.tfv-btn-secondary span{ position:relative; z-index:1; }
.tfv-price-old{ text-decoration:line-through; opacity:.7; margin-right:.35rem; font-size:.85rem; }
.tfv-price-new{ font-weight:700; }
.tfv-price-label{ font-size:.8rem; opacity:.85; margin-left:.35rem; }
.tfv-btn-icon{ font-size:.8rem; display:inline-flex; align-items:center; }

/* Dots */
.tfv-hero-dots{
  position:absolute;
  left:50%;
  bottom:1.5rem;
  transform:translateX(-50%);
  display:flex;
  gap:.5rem;
  z-index:5;
}
.tfv-hero-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  border:none;
  background: rgba(148,163,184,.5);
  cursor:pointer;
  padding:0;
  transition: background .2s ease, width .2s ease;
}
.tfv-hero-dot--active{
  width:22px;
  background: linear-gradient(90deg,#38bdf8,#fb7185);
}

/* Responsive */
@media (max-width:900px){
  .tfv-hero-slide{ padding:5.5rem 1.25rem 3.75rem; align-items:flex-end; }
  .tfv-hero-inner{ max-width:100%; }
  .tfv-hero-title{ font-size:1.9rem; }
  .tfv-hero-subtitle{ font-size:.98rem; }
  .tfv-hero-ctas{ flex-direction:column; align-items:stretch; }
  .tfv-btn{ width:100%; justify-content:center; }
}
@media (max-width:640px){
  .tfv-hero{ min-height:100vh; }
  .tfv-hero-slide{ padding:5.25rem 1rem 4.25rem; }
  .tfv-hero-bullets{ font-size:.9rem; }
}
@media (min-width:1024px){
  .tfv-hero{ min-height:100vh; }
  .tfv-hero-media img{ object-fit:contain; object-position:center center; background-color:#020617; }
  .tfv-hero-slide{ align-items:center; }
}
@media (max-width:768px){
  .tfv-hero{ min-height:80vh; }
  .tfv-hero-media img{ object-fit:cover; object-position:center top; transform:scale(.85); }
}
.desktop-only{ display:block; }
.mobile-only{ display:none; }
@media (max-width:767px){
  .desktop-only{ display:none !important; }
  .mobile-only{ display:block !important; }
}
.hero-image{ width:100%; height:auto; object-fit:cover; }
@media screen and (min-width:769px){
  .tfv-hero-inner{ padding-top:22vh; max-width:45%; }
}
@media screen and (max-width:768px){
  .tfv-hero-inner{ padding-top:35vh; max-width:85%; }
}

/* Slide-specific alignment */
.tfv-hero-slide[data-slide="2"] .tfv-hero-media img{ object-position:center top !important; }
.tfv-hero-slide[data-slide="2"] .tfv-hero-inner{ padding-top:42vh !important; }
@media (max-width:767px){
  .tfv-hero-slide[data-slide="2"] .tfv-hero-media img{
    transform:scale(.83) !important;
    object-position:center top !important;
  }
  .tfv-hero-slide[data-slide="2"] .tfv-hero-inner{ padding-top:48vh !important; }
}
@media (min-width:768px){
  .tfv-hero-slide[data-slide="3"] .tfv-hero-inner{ padding-top:32vh !important; }
}
@media (max-width:767px){
  .tfv-hero-slide[data-slide="3"] .tfv-hero-media img{
    object-position:center top !important;
    transform:scale(.9);
  }
  .tfv-hero-slide[data-slide="3"] .tfv-hero-inner{ padding-top:50vh !important; }
}

/* =========================================================
   TFV x BOLD — Fix layering + button sizing + readable form
   (This is the section you wrote — cleaned and improved)
   Paste is already here at bottom
   ========================================================= */

/* 1) Keep TFV compare modal high, but BELOW Bold checkout */
#tfv-compare-modal{ z-index:2147483000 !important; }

/* 3) If TFV overlay is still dimming the world too much */
#tfv-compare-modal{ background:rgba(0,0,0,.55) !important; }

/* ---------------------------------------------------------
   A) FIX MEMBERSHIP BUTTONS
   --------------------------------------------------------- */

/* ===============================
   SAFE BOLD BUTTON OMBRÉ ONLY
   (does NOT touch form layout)
   =============================== */

/* Target only the injected button/link */
.memberships_button button,
.memberships_button a,
.memberships_button input[type="submit"],
.memberships_button input[type="button"]{
  background: linear-gradient(90deg, #f5d06a, #67d0ff) !important;
  color: #111 !important;
  border: none !important;
  border-radius: 999px !important;

  padding: 12px 18px !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  line-height: normal !important;

  box-shadow: 0 8px 20px rgba(0,0,0,.35) !important;
  cursor: pointer !important;
}

/* Hover (desktop only, harmless on mobile) */
.memberships_button button:hover,
.memberships_button a:hover{
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.tfv-price-old {
  font-weight: 600;
  color: #fbbf24; /* matches your gold theme */
}
.tfv-hero-title, .tfv-hero-subtitle, .tfv-hero-bullets li {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.9);
}

.membership-gateway { background: #070915; color: #fff; padding: 70px 20px; font-family: 'Poppins', sans-serif; }
.gateway-container { max-width: 1100px; margin: 0 auto; }
.gateway-title { font-family: 'Playfair Display', serif; font-size: 2.4rem; text-align: center; margin-bottom: 10px; color: #ffd700; }
.gateway-subtitle { text-align: center; opacity: 0.85; margin-bottom: 42px; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; align-items: start; }
.card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 18px; padding: 26px; height: 100%; display: flex; flex-direction: column; }
.card.featured { background: rgba(255,255,255,.09); border: 1px solid rgba(255,215,0,0.3); }

.price { font-size: 1.4rem; font-weight: bold; margin-bottom: 20px; }
.features { list-style: none; padding: 0; margin: 0 0 30px; line-height: 2; flex-grow: 1; }

/* The Ombré Button */
.join-btn-paid {
  background-image: linear-gradient(135deg, #fff1dc 0%, #f2d9bf 48%, #e6c09a 100%) !important;
  color: #1b1b1b !important;
  border-radius: 999px !important;
  padding: 0.85rem 1.4rem !important;
  font-weight: 800 !important;
  border: none !important;
  width: 100%;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(0,0,0,.28) !important;
  transition: 0.2s;
}
.join-btn-paid:hover { transform: translateY(-2px); }

.join-btn-free { background: transparent; border: 1px solid #ffd700; color: #ffd700; padding: 12px; border-radius: 999px; width: 100%; cursor: pointer; }
.button-container { margin-top: auto; }

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 75%;
  height: 75%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: #1a0033;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #ffd700;
  width: 90%;
  max-width: 250px;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  color: #ffd700;
  cursor: pointer;
}

.gateway-form { display: flex; flex-direction: column; gap: 15px; }
.gateway-form input, .gateway-form select {
  background: #0d021c;
  border: 1px solid #ffd700;
  color: white;
  padding: 12px;
  border-radius: 8px;
}

.card h3 {
  color: #ffffff !important;
  font-family: 'Playfair Display', serif; /* Matching your gateway-title font */
  font-size: 1.8rem;
  margin-bottom: 15px;
  text-align: center;
}

/* Style for tier headings (Watchers / Inner Circle) */
.card h3 {
  color: #ffd700 !important; /* Matches your gold header */
  font-family: 'Playfair Display', serif !important; /* Matches your header font */
  font-size: 2.0rem !important; /* Slightly larger */
  text-align: left !important; /* Aligned left */
  margin-bottom: 15px;
  display: block;
}

/* Comparison Modal */
#tfv-compare-modal {
    z-index: 1000;
}

/* Replacement for your current #signup-modal and #tfv-compare-modal CSS */
#tfv-compare-modal, #signup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none; 
    z-index: 9999 !important; 
    background: rgba(0,0,0,.85);
    /* This centers your modal boxes */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto; 
    padding: 20px;
}

#tfv-signup-modal .tfv-signup-wrap {
    width: min(450px, 90vw);
    aspect-ratio: 9/16;
    max-height: 85vh;
    background: var(--tfv-card);
    border-radius: 20px;
    padding: 30px;
    position: relative;
}

/* Ensure the container has the right brand look and spacing */
.modal-content, .tfv-compare-wrap {
    background: #3B0A2A; 
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

.tfv-bottom-trio{
  padding: 26px 16px 46px;
  background: #000;
}

.tfv-trio{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tfv-box{
  text-decoration: none;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 18px 16px;
  color: #fff;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  min-height: 150px;
  display:flex;
  flex-direction: column;
  justify-content: space-between;
}

.tfv-box h3{
  margin: 0 0 6px;
  font-family: "Cinzel", serif;
  letter-spacing: .5px;
}

.tfv-box p{
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.4;
  font-size: 14px;
}

.tfv-box-cta{
  margin-top: 14px;
  color: #f0b76e;
  font-weight: 600;
}

.tfv-box:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(0,0,0,.45);
  border-color: rgba(240,183,110,.35);
}

@media (max-width: 900px){
  .tfv-trio{ grid-template-columns: 1fr; }
  .tfv-box{ min-height: auto; }
}
.tfv-podcast-video{
  width:100%;
  height:42px; /* makes it compact */
  border-radius:12px;
  background:#000;
  border:1px solid rgba(255,255,255,.12);
}

/* Global text color (white by default) */
body, p, li, span, h1, h2, h3, h4, h5, h6, a, strong, em {
  color: #fff;
}

/* Headlines (H1–H3) */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
}

/* Subheadlines & body emphasis */
h4, h5, h6, strong, em {
  font-family: 'Source Serif 4', serif;
  font-weight: 600;
}

/* Body text & paragraphs */
body, p, li, span {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 1.7;
}

/* Buttons & CTAs */
.btn, button, a.button, .gem-button {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: none; /* keep natural casing */
  color: #fff; /* make button text white */
}

/* Links */
a {
  color: #fff;
  text-decoration: none;
}

/* Optional: Hero section title override */
.hero-section h1 {
  color: #e63946; /* or any accent color you want for hero headline */
}

/* === Force full-width header background === */
.shopify-section-header,
header.header,
.header-wrapper,
.header--sticky {
  background-color: #3B0A2A !important;
  width: 100% !important; /* full relative width */
  max-width: 100% !important; /* kill max-width constraint */
  margin: 0 !important;
  padding: 0 !important;
  left: 0 !important;
  right: 0 !important;
  box-sizing: border-box;
}

/* Nuke common Shopify padding wrappers */
.shopify-section-header .page-width,
.header__wrapper,
.header__container {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 !important;
}

/* Prevent scrollbars from forcing gaps */
html, body {
  overflow-x: hidden;
}

/* === Restore brand pink/red on menu + icons === */

/* Top-level menu links */
header a,
.header a,
.header__menu-item,
.list-menu a,
.list-menu__item,
.header__inline-menu a {
  color: #E63946 !important;
}

/* Active/hover state for contrast */
header a:hover,
.header__menu-item:hover,
.list-menu a:hover,
.list-menu__item:hover {
  color: #ffffff !important;
}

/* Icons (cart, account, search, currency caret) */
.header__icon svg,
.header__icon svg path,
.icon svg,
.icon path,
.header .icon-caret,
.header .icon-caret path {
  fill: #E63946 !important;
  stroke: #E63946 !important;
}

/* Cart bubble */
.cart-count-bubble,
.header__icon .cart-count-bubble {
  background: #E63946 !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.25);
}

/* Mobile drawer menu */
.menu-drawer, .drawer__inner { background: #3B0A2A !important; }
.menu-drawer a,
.menu-drawer__menu-item { color: #E63946 !important; }
.menu-drawer a:hover { color: #ffffff !important; }

.tfv-btn.tfv-btn-primary {
  background-image: linear-gradient(90deg, #f5d06a, #67d0ff) !important;
}
#auth-btn { padding: 6px 16px !important; font-size: 0.9rem !important; }

/* Ensure the hero content has room to breathe */
.tfv-hero-inner {
    padding-bottom: 40px !important; /* Adds space so buttons aren't pushed to the edge */
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    height: auto !important;
    min-height: 300px;
}

/* Force the hero slide to allow overflow */
.tfv-hero-slide {
    overflow: visible !important;
}

/* ===== COMMENT MODAL CORE ===== */
#tfv-comments-modal .tfv-cm-box {
  width: 900px;
  max-width: 94vw;
  max-height: 85vh;
  overflow-y: auto;

  background: var(--tfv-card);
  border: 1px solid var(--tfv-border);
  border-radius: 20px;
  padding: 24px;

  position: relative;
  color: #e8ecff;
  box-shadow: 0 20px 80px rgba(0,0,0,0.7);
}

/* ===== COMMENT LIST CONTAINER ===== */
#tfv-comment-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ===== INDIVIDUAL COMMENT CARD ===== */
#tfv-comment-list .comment-item {
  background: rgba(255,255,255,.02);
  border: 1px solid var(--tfv-border);
  border-radius: 14px;
  padding: 12px 14px;
}

/* Username / author */
#tfv-comment-list .comment-item strong {
  display: block;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 4px;
}

/* Comment text */
#tfv-comment-list .comment-item p {
  margin: 0;
  color: var(--tfv-dim);
  line-height: 1.4;
}

/* ===== FORM AREA ===== */
#tfv-comment-form {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Input field */
#tfv-comment-form input,
#tfv-comment-form textarea {
  flex: 1;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--tfv-border);
  border-radius: 12px;
  padding: 10px 12px;
  color: #e8ecff;
  outline: none;
}

/* ===== POST BUTTON (Fire + Ice gradient) ===== */
#tfv-comment-form button {
  background: linear-gradient(92deg, var(--tfv-gold), var(--tfv-ice));
  color: #11131c;
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

#tfv-comment-form button:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

/* ===== CLOSE BUTTON ===== */
#tfv-cm-close {
  position: absolute;
  top: 10px;
  right: 10px;

  width: 36px;
  height: 36px;
  border-radius: 50%;

  background: rgba(255,255,255,.08);
  border: 1px solid var(--tfv-border);
  color: #e8ecff;

  font-weight: 800;
  cursor: pointer;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  #tfv-comments-modal .tfv-cm-box {
    width: 95vw;
    padding: 18px;
  }

  #tfv-comment-form {
    flex-direction: column;
    align-items: stretch;
  }

  #tfv-comment-form button {
    width: 100%;
  }
}


/* Apply Fire and Ice Ombre to the bottom trio buttons */
.tfv-bottom-trio .tfv-btn {
    background: linear-gradient(92deg, var(--tfv-gold), var(--tfv-ice)) !important;
    color: #11131c !important;
    border: none !important;
    border-radius: 999px !important;
    padding: 12px 24px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: filter 0.3s ease !important;
    /* Adding a bit of breathing room for the text */
    text-transform: none !important;
}

/* Add the hover effect to match your other site buttons */
.tfv-bottom-trio .tfv-btn:hover {
    filter: brightness(1.08) !important;
    transform: translateY(-2px) !important;
}