/** Shopify CDN: Minification failed

Line 29:0 All "@import" rules must come first

**/
/* ============================================================
   founders-club.css
   Total Body Experts × Founders Club Member Page Styles
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --fc-black:       #0a0a0a;
  --fc-dark:        #111111;
  --fc-dark-green:  #1a2a1e;
  --fc-green:       #2c4a30;
  --fc-green-mid:   #3a5c3e;
  --fc-gold:        #d3a573;
  --fc-gold-light:  #dfc27a;
  --fc-cream:       #f5f0e8;
  --fc-white:       #ffffff;
  --fc-gray:        #888888;
  --fc-border:      rgba(201,168,76,0.25);
  --fc-font-serif:  'Cormorant Garamond', Georgia, serif;
  --fc-font-sans:   'Montserrat', 'Helvetica Neue', sans-serif;
}

/* ── GOOGLE FONTS ───────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* ── BASE ───────────────────────────────────────────────── */
.fc-hero,
.fc-access-banner,
.fc-savings-strip,
.fc-featured-section,
.fc-products-section,
.fc-benefits-strip,
.fc-cta-section {
  font-family: var(--fc-font-sans);
  color: var(--fc-cream);
  box-sizing: border-box;
}

*, *::before, *::after { box-sizing: inherit; }

/* ── THEME OVERRIDE — force visibility on all FC decorative elements ── */
.fc-hero__bg,
.fc-hero__texture,
.fc-scroll-line,
.fc-section-label-line,
.fc-eyebrow-line,
.fc-featured-tag-line,
.fc-ticker-dot
{
  display: block !important;
}
.fc-access-dot {
  display: block;
}
.wrapper-body {
    padding-bottom: 0px !important;
}


/* ── BUTTONS ────────────────────────────────────────────── */
.fc-btn {
  display: inline-block;
  font-family: var(--fc-font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  line-height: 1;
}

.fc-btn--primary {
  color: var(--fc-black);
  background: var(--fc-gold);
}
.fc-btn--primary:hover {
  background: var(--fc-gold-light);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(201,168,76,0.3);
  color: var(--fc-black);
  text-decoration: none;
}

.fc-btn--outline {
  color: var(--fc-gold);
  background: transparent;
  border: 1px solid var(--fc-gold);
}
.fc-btn--outline:hover {
  background: rgba(201,168,76,0.08);
  transform: translateY(-1px);
  color: var(--fc-gold);
  text-decoration: none;
}

/* ── SHARED LABEL ───────────────────────────────────────── */
.fc-section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.fc-section-label-line {
  width: 30px;
  height: 1px;
  background: var(--fc-gold);
  flex-shrink: 0;
}
.fc-section-label-text {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--fc-gold);
}
.fc-section-title {
  font-family: var(--fc-font-serif);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--fc-cream);
  margin: 0 0 20px;
}
.fc-section-title em {
  font-style: italic;
  color: var(--fc-gold);
}

/* ── HERO ───────────────────────────────────────────────── */
.fc-hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: var(--fc-dark);
}

.fc-hero__bg {
  display: block !important;   /* ← add this */
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(44,74,48,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201,168,76,0.08) 0%, transparent 60%),
    linear-gradient(160deg, #0a0a0a 0%, #111811 50%, #0a0a0a 100%);
}

.fc-hero__texture {
  display: block !important;   /* ← add this line */
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(201,168,76,0.07) 59px, rgba(201,168,76,0.07) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(201,168,76,0.07) 59px, rgba(201,168,76,0.07) 60px);
  background-size: 60px 60px;
}

.fc-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 100px 40px 80px;
}

.fc-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  animation: fc-fadeUp 0.8s ease both;
}
.fc-eyebrow-line { width: 40px; height: 1px; background: var(--fc-gold); }
.fc-eyebrow-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--fc-gold);
}

.fc-hero__badge-ring {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  position: relative;
  animation: fc-fadeUp 0.8s 0.1s ease both;
}
.fc-hero__badge-ring::before {
  display: none !important;
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.4);
}
.fc-hero__badge-inner {
  font-family: var(--fc-font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--fc-gold);
}

.fc-hero__heading {
  font-family: var(--fc-font-serif);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -1px;
  color: var(--fc-cream);
  margin: 0 0 12px;
  animation: fc-fadeUp 0.8s 0.15s ease both;
}
.fc-hero__heading em { font-style: italic; color: var(--fc-gold); }

.fc-hero__subtitle {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--fc-gray);
  margin: 0 0 28px;
  animation: fc-fadeUp 0.8s 0.2s ease both;
}

.fc-hero__desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245,240,232,0.7);
  max-width: 600px;
  margin: 0 auto 52px;
  animation: fc-fadeUp 0.8s 0.25s ease both;
}

.fc-hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fc-fadeUp 0.8s 0.3s ease both;
}

.fc-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fc-fadeIn 1.2s 0.8s ease both;
}
.fc-scroll-text { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--fc-gray); }
.fc-scroll-line {
  display: block !important;   /* ← add this */
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--fc-gold), transparent);
  animation: fc-scrollPulse 2s infinite;
}

/* ── ACCESS BANNER ──────────────────────────────────────── */
.fc-access-banner {
  background: var(--fc-dark-green);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.fc-access-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--fc-gold); }
.fc-access-text { font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--fc-gold); }

/* ── TICKER ─────────────────────────────────────────────── */
.fc-savings-strip {
  background: var(--fc-green);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  overflow: hidden;
}
.fc-ticker-track {
  display: flex;
  animation: fc-ticker 30s linear infinite;
  white-space: nowrap;
}
.fc-ticker-item {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 14px 40px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fc-gold);
  border-right: 1px solid rgba(201,168,76,0.2);
}
.fc-ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--fc-gold); flex-shrink: 0; }

/* ── FEATURED ───────────────────────────────────────────── */
.fc-featured-section { background: var(--fc-black); padding: 100px 60px 120px; }
.fc-featured-inner { max-width: 1400px; margin: 0 auto; }
.fc-featured-card {
  background: var(--fc-dark-green);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--fc-border);
  overflow: hidden;
}
.fc-featured-visual {
  background: linear-gradient(135deg, #1a2a1e 0%, #2c4a30 50%, #1a3020 100%);
  display: flex; align-items: center; justify-content: center;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}
.fc-featured-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(201,168,76,0.15), transparent 60%);
}
.fc-featured-placeholder-icon { font-size: 160px; position: relative; z-index: 1; }
.fc-featured-img { width: 100%; height: 100%; object-fit: cover; }

.fc-featured-content { padding: 60px 64px; display: flex; flex-direction: column; justify-content: center; }

.fc-featured-tag { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 28px; }
.fc-featured-tag-line { width: 24px; height: 1px; background: var(--fc-gold); }
.fc-featured-tag-text { font-size: 9px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--fc-gold); }

.fc-featured-title {
  font-family: var(--fc-font-serif);
  font-size: 52px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--fc-cream);
  margin: 0 0 20px;
}
.fc-featured-title em { font-style: italic; color: var(--fc-gold); }

.fc-featured-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(245,240,232,0.65);
  margin: 0 0 36px;
}
.fc-featured-price-block { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.fc-featured-price-now { font-size: 44px; font-weight: 700; color: var(--fc-gold); letter-spacing: -1px; }
.fc-featured-price-was { font-size: 18px; font-weight: 300; color: var(--fc-gray); text-decoration: line-through; }
.fc-featured-save { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #8adb8a; background: rgba(138,219,138,0.1); padding: 6px 14px; }
.fc-featured-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── PRODUCT GRID ───────────────────────────────────────── */
.fc-products-section { padding: 120px 60px; background: var(--fc-dark); }
.fc-products-inner { max-width: 1400px; margin: 0 auto; }
.fc-products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  gap: 40px;
  flex-wrap: wrap;
}

.fc-filter-tabs { display: flex; border: 1px solid var(--fc-border); overflow: hidden; }
.fc-filter-tab {
  padding: 10px 24px;
  font-family: var(--fc-font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--fc-gray);
  cursor: pointer;
  border: none;
  border-right: 1px solid var(--fc-border);
  background: transparent;
  transition: all 0.2s;
}
.fc-filter-tab:last-child { border-right: none; }
.fc-filter-tab.active { background: var(--fc-gold); color: var(--fc-black); }
.fc-filter-tab:hover:not(.active) { background: rgba(201,168,76,0.08); color: var(--fc-cream); }

.fc-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.fc-product-card {
  background: #141414;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease;
  border: 1px solid transparent;
}
.fc-product-card:hover { border-color: var(--fc-border); transform: translateY(-4px); z-index: 2; }
.fc-product-card:hover .fc-product-overlay { opacity: 1; }
.fc-product-card:hover .fc-product-img-inner { transform: scale(1.04); }

.fc-product-img { height: 380px; overflow: hidden; position: relative; background: #141414; }
.fc-product-img-inner {
  width: 100%; height: 100%;
  transition: transform 0.5s ease;
  object-fit: contain;
  display: block;
  max-width: unset !important;
  background: #ffffff;    
}
.fc-product-img--placeholder {
  background: linear-gradient(135deg, #1a2a1e, #2c4a30);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fc-font-serif);
  font-size: 80px;
  color: rgba(201,168,76,0.4);
}
.fc-product-badge {
  position: absolute; top: 16px; left: 16px;
  font-size: 8px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--fc-black); background: var(--fc-gold);
  padding: 6px 12px;
}
.fc-product-overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
  flex-direction: column;
  gap: 10px;
}
.fc-overlay-btn,
.fc-overlay-btn--outline {
  width: 170px;
  text-align: center;
  box-sizing: border-box;
  line-height: 1;
  display: block;
}
.fc-overlay-btn--outline {
  background: transparent;
  color: var(--fc-gold);
  border: 1px solid var(--fc-gold);
  text-align: center;
  text-decoration: none;
  padding: 14px 28px;
  font-family: var(--fc-font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: background 0.2s;
}
.fc-overlay-btn--outline:hover {
  background: rgba(201, 168, 76, 0.15);
  color: var(--fc-gold);
}
.fc-overlay-btn {
  font-family: var(--fc-font-sans);
  font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--fc-black); background: var(--fc-gold);
  padding: 14px 28px; border: none; cursor: pointer;
  transition: background 0.2s;
}
.fc-overlay-btn:hover { background: var(--fc-gold-light); }

.fc-product-body {
  padding: 24px 28px 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.fc-product-category { font-size: 9px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--fc-gray); margin-bottom: 8px; }
.fc-product-name-link { text-decoration: none; }
.fc-product-name { font-family: var(--fc-font-serif); font-size: 22px; font-weight: 400; color: var(--fc-cream); margin-bottom: 6px; line-height: 1.3; }
.fc-product-tagline { font-size: 12px; font-weight: 300; color: rgba(245,240,232,0.5); margin-bottom: 20px; line-height: 1.6; }

.fc-product-pricing { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.fc-price-now { font-size: 22px; font-weight: 700; color: var(--fc-gold); letter-spacing: -0.5px; }
.fc-price-was { font-size: 14px; font-weight: 300; color: var(--fc-gray); text-decoration: line-through; }
.fc-price-save { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #8adb8a; background: rgba(138,219,138,0.1); padding: 4px 10px; }

.fc-no-collection { color: var(--fc-gray); font-size: 14px; padding: 40px; grid-column: 1/-1; text-align: center; }
.fc-no-collection strong { color: var(--fc-gold); }

/* ── BENEFITS ───────────────────────────────────────────── */
.fc-benefits-strip { background: #0e0e0e; border-top: 1px solid var(--fc-border); border-bottom: 1px solid var(--fc-border); padding: 60px; }
.fc-benefits-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.fc-benefit-item { padding-right: 20px; border-right: 1px solid rgba(255,255,255,0.05); }
.fc-benefit-item:last-child { border-right: none; }
.fc-benefit-icon { font-size: 28px; margin-bottom: 16px; }
.fc-benefit-title { font-size: 13px; font-weight: 600; letter-spacing: 0.5px; color: var(--fc-cream); margin-bottom: 10px; }
.fc-benefit-desc { font-size: 12px; font-weight: 300; line-height: 1.7; color: rgba(245,240,232,0.5); }

/* ── CTA ────────────────────────────────────────────────── */
.fc-cta-section { text-align: center; padding: 120px 60px; position: relative; overflow: hidden; background: var(--fc-dark-green); }
.fc-cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 70%); }
.fc-cta-content { position: relative; z-index: 2; }
.fc-cta-title { font-family: var(--fc-font-serif); font-size: clamp(42px, 6vw, 80px); font-weight: 300; color: var(--fc-cream); margin: 0 0 16px; line-height: 1.1; }
.fc-cta-title em { font-style: italic; color: var(--fc-gold); }
.fc-cta-desc { font-size: 14px; font-weight: 300; color: rgba(245,240,232,0.6); margin-bottom: 48px; }

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fc-fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fc-fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fc-scrollPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
@keyframes fc-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SCROLL REVEAL ──────────────────────────────────────── */
.fc-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fc-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .fc-product-grid { grid-template-columns: repeat(2, 1fr); }
  .fc-benefits-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .fc-featured-section { padding: 60px 24px 0; }
  .fc-featured-card { grid-template-columns: 1fr; }
  .fc-featured-visual { min-height: 300px; }
  .fc-featured-placeholder-icon { font-size: 100px; }
  .fc-featured-content { padding: 40px 32px; }
  .fc-featured-title { font-size: 36px; }
  .fc-products-section { padding: 60px 24px; }
  .fc-access-banner { padding: 16px 24px; }
  .fc-benefits-strip { padding: 40px 24px; }
  .fc-cta-section { padding: 80px 24px; }
}

@media (max-width: 600px) {
  .fc-hero__scroll { display: none !important; }  
  .fc-product-grid { grid-template-columns: 1fr; }
  .fc-benefits-inner { grid-template-columns: 1fr; }
  .fc-benefit-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); padding: 0 0 24px; }
  .fc-filter-tabs { flex-wrap: wrap; }
  .fc-hero__content { padding: 50px 24px 80px; }
  .fc-access-banner { flex-wrap: wrap; text-align: center; justify-content: center; padding: 16px; }  
  .fc-access-text { font-size: 9px; letter-spacing: 1.5px; text-align: center; width: 100%; }
  .fc-access-dot {display: none !important;}
}
