/* ═══════════════════════════════════════════════════════════════════════════
   BEAST BITES LANDING PAGE — Dark Fitness Aesthetic
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --bb-black:    #0A0A0A;
  --bb-dark:     #111111;
  --bb-dark2:    #181818;
  --bb-card:     #1E1E1E;
  --bb-border:   rgba(255,255,255,0.08);
  --bb-orange:   #FF6500;
  --bb-orange-d: #CC5200;
  --bb-orange-g: rgba(255,101,0,0.18);
  --bb-yellow:   #FFB800;
  --bb-green:    #00C96B;
  --bb-white:    #FFFFFF;
  --bb-gray:     #9CA3AF;
  --bb-gray-d:   #4B5563;
  --bb-red:      #EF4444;
  --bb-transfer: #1A4B2E; /* dark green for transfer card */
  --bb-transfer-g: #00C96B;
  --bb-font:     'Poppins', 'Inter', sans-serif;
  --bb-r:        12px;
  --bb-r-lg:     20px;
  --bb-shadow:   0 4px 24px rgba(0,0,0,0.5);
  --bb-shadow-o: 0 0 40px rgba(255,101,0,0.25);
  --bb-t:        0.3s ease;
}

/* ── Reset ── */
.bb-landing * { box-sizing: border-box; margin: 0; padding: 0; }
.bb-landing { background: var(--bb-black); color: var(--bb-white); font-family: var(--bb-font); line-height: 1.6; }
.bb-landing a { text-decoration: none; }
.bb-landing img { display: block; max-width: 100%; }
.bb-landing em { font-style: normal; }
.bb-landing strong { font-weight: 700; }

/* ── Container ── */
.bb-container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ── Common Section ── */
.bb-section { padding: 80px 0; }

/* ── Section label ── */
.bb-section-label {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  color: var(--bb-orange); text-transform: uppercase;
  border: 1px solid var(--bb-orange-g);
  background: var(--bb-orange-g);
  padding: 4px 12px; border-radius: 100px;
  margin-bottom: 14px;
}

/* ── H2 ── */
.bb-h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800; line-height: 1.2;
  color: var(--bb-white); margin-bottom: 40px;
}
.bb-h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900; line-height: 1.1; margin-bottom: 20px;
}
.bb-accent { color: var(--bb-orange); }
.bb-gray-txt { color: var(--bb-gray); }

/* ── Buttons ── */
.bb-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 28px; border-radius: var(--bb-r);
  font-family: var(--bb-font); font-size: 15px; font-weight: 700;
  cursor: pointer; border: none; transition: var(--bb-t); white-space: nowrap;
  flex-direction: column; gap: 2px;
  text-decoration: none;
}
.bb-btn small { font-size: 11px; font-weight: 400; opacity: 0.85; }
.bb-btn-lg { padding: 16px 32px; font-size: 16px; }
.bb-btn-xl { padding: 20px 40px; font-size: 18px; min-width: 260px; }
.bb-btn-primary {
  background: var(--bb-orange);
  color: var(--bb-white);
  box-shadow: 0 4px 20px rgba(255,101,0,0.4);
}
.bb-btn-primary:hover { background: var(--bb-orange-d); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,101,0,0.5); color:#fff; }
.bb-btn-transfer {
  background: var(--bb-transfer);
  color: var(--bb-transfer-g);
  border: 1.5px solid var(--bb-transfer-g);
}
.bb-btn-transfer:hover { background: #234f35; color: var(--bb-transfer-g); transform: translateY(-2px); }
.bb-btn-outline {
  background: transparent;
  color: var(--bb-white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.bb-btn-outline:hover { border-color: var(--bb-white); background: rgba(255,255,255,0.05); color: #fff; }

/* ── Badge ── */
.bb-badge { display: inline-block; border-radius: 100px; font-size: 12px; font-weight: 700; letter-spacing: 0.05em; padding: 6px 14px; }
.bb-badge-hot { background: linear-gradient(90deg, #FF6500, #FF9A00); color: #fff; margin-bottom: 16px; }

/* ═══════════════════════════════════════════
   TOPBAR
═══════════════════════════════════════════ */
.bb-topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,10,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bb-border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px; height: 56px;
}
.bb-topbar-logo { display: flex; align-items: center; gap: 8px; }
.bb-topbar-brand { font-size: 16px; font-weight: 800; color: var(--bb-orange); letter-spacing: 0.08em; }
.bb-topbar-center { font-size: 13px; color: var(--bb-gray); }
.bb-topbar-cta {
  font-size: 13px; font-weight: 700; color: var(--bb-orange);
  border: 1px solid var(--bb-orange); padding: 6px 16px; border-radius: 8px;
  transition: var(--bb-t);
}
.bb-topbar-cta:hover { background: var(--bb-orange); color: #fff; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.bb-hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 56px; overflow: hidden;
}
.bb-hero-bg { position: absolute; inset: 0; z-index: 0; }
.bb-hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0.45; }
.bb-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,10,10,0.98) 0%, rgba(10,10,10,0.75) 45%, rgba(10,10,10,0.4) 100%);
}
.bb-hero-content {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  padding-top: 40px; padding-bottom: 40px;
}
.bb-hero-text { display: flex; flex-direction: column; align-items: flex-start; }
.bb-hero-sub { font-size: 18px; color: var(--bb-gray); max-width: 440px; margin-bottom: 28px; }

/* Hero pricing */
.bb-hero-pricing { display: flex; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.bb-hero-price-card {
  background: rgba(255,255,255,0.05); border: 1px solid var(--bb-border);
  border-radius: var(--bb-r); padding: 12px 20px;
  display: flex; flex-direction: column;
}
.bb-hp-label { font-size: 11px; color: var(--bb-gray); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.bb-hp-normal { font-size: 22px; font-weight: 800; color: var(--bb-white); }
.bb-hp-transfer { border-color: var(--bb-transfer-g); background: rgba(0,201,107,0.08); }
.bb-hp-big { font-size: 30px; font-weight: 900; color: var(--bb-transfer-g); }
.bb-hp-save { font-size: 12px; color: var(--bb-transfer-g); font-weight: 700; }

.bb-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.bb-hero-trust-row { display: flex; gap: 20px; font-size: 13px; color: var(--bb-gray); flex-wrap: wrap; }
.bb-hero-trust-row span { display: flex; align-items: center; gap: 4px; }

/* Product visual */
.bb-hero-product { position: relative; display: flex; align-items: center; justify-content: center; }
.bb-product-glow {
  position: absolute; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,101,0,0.35) 0%, transparent 70%);
  border-radius: 50%; z-index: 0; animation: bb-pulse 3s ease-in-out infinite;
}
@keyframes bb-pulse { 0%,100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.1); opacity: 1; } }
.bb-product-img {
  position: relative; z-index: 1;
  width: 100%; max-width: 420px; height: auto;
  filter: drop-shadow(0 20px 60px rgba(255,101,0,0.3));
  animation: bb-float 4s ease-in-out infinite;
}
@keyframes bb-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.bb-product-float-badge {
  position: absolute; z-index: 2;
  background: var(--bb-orange); color: #fff;
  border-radius: var(--bb-r); padding: 8px 14px;
  display: flex; flex-direction: column; align-items: center;
  top: 15%; left: -10%;
  box-shadow: 0 4px 20px rgba(255,101,0,0.5);
}
.bb-pfb-right { top: 35%; left: auto; right: -10%; background: var(--bb-dark2); border: 1px solid var(--bb-transfer-g); color: var(--bb-transfer-g); }
.bb-pfb-big { font-size: 22px; font-weight: 900; line-height: 1; }
.bb-pfb-small { font-size: 11px; font-weight: 600; opacity: 0.85; }

/* Hero countdown */
.bb-hero-countdown {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  background: rgba(255,101,0,0.1); border-top: 1px solid rgba(255,101,0,0.2);
  padding: 14px 24px; flex-wrap: wrap;
}
.bb-cd-label { font-size: 13px; color: var(--bb-gray); }
.bb-cd-timer { font-size: 22px; font-weight: 800; color: var(--bb-orange); letter-spacing: 0.05em; }
.bb-cd-timer span { display: inline-flex; align-items: baseline; gap: 2px; }
.bb-cd-timer small { font-size: 11px; font-weight: 400; color: var(--bb-gray); }

/* ═══════════════════════════════════════════
   SOCIAL PROOF BAR
═══════════════════════════════════════════ */
.bb-spbar { background: var(--bb-dark); border-bottom: 1px solid var(--bb-border); padding: 24px 0; }
.bb-spbar-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 20px;
}
.bb-sp-item { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.bb-sp-num { font-size: 22px; font-weight: 900; color: var(--bb-white); }
.bb-sp-lbl { font-size: 12px; color: var(--bb-gray); }
.bb-sp-sep { width: 1px; height: 40px; background: var(--bb-border); }

/* ═══════════════════════════════════════════
   PROBLEMA
═══════════════════════════════════════════ */
.bb-problem { background: var(--bb-dark); padding: 80px 0; text-align: center; }
.bb-problem .bb-h2 { text-align: center; }
.bb-problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.bb-problem-card {
  background: var(--bb-card); border: 1px solid var(--bb-border);
  border-radius: var(--bb-r-lg); padding: 32px 24px;
  transition: var(--bb-t);
}
.bb-problem-card:hover { border-color: var(--bb-red); transform: translateY(-4px); }
.bb-problem-emoji { font-size: 48px; margin-bottom: 16px; }
.bb-problem-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.bb-problem-card p { color: var(--bb-gray); font-size: 14px; }
.bb-problem-solve-arrow { font-size: 40px; color: var(--bb-orange); margin-bottom: 12px; }
.bb-problem-solve-text { font-size: 20px; font-weight: 700; color: var(--bb-white); }

/* ═══════════════════════════════════════════
   BENEFICIOS
═══════════════════════════════════════════ */
.bb-benefits { background: var(--bb-black); }
.bb-benefits-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.bb-benefit-list { display: flex; flex-direction: column; gap: 24px; }
.bb-benefit { display: flex; gap: 16px; align-items: flex-start; }
.bb-benefit-icon { font-size: 28px; flex-shrink: 0; width: 52px; height: 52px; background: var(--bb-orange-g); border: 1px solid rgba(255,101,0,0.3); border-radius: var(--bb-r); display: flex; align-items: center; justify-content: center; }
.bb-benefit-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.bb-benefit-body p { font-size: 14px; color: var(--bb-gray); }
.bb-benefits-img-wrap { position: relative; }
.bb-benefits-img { width: 100%; border-radius: var(--bb-r-lg); aspect-ratio: 3/4; object-fit: cover; }
.bb-benefits-img-badge {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  background: var(--bb-orange); color: #fff; border-radius: var(--bb-r);
  padding: 10px 20px; text-align: center; font-size: 13px; font-weight: 700;
  white-space: nowrap; box-shadow: 0 4px 20px rgba(255,101,0,0.5);
}

/* ═══════════════════════════════════════════
   CÓMO FUNCIONA
═══════════════════════════════════════════ */
.bb-how { background: var(--bb-dark2); text-align: center; }
.bb-how .bb-h2 { text-align: center; }
.bb-steps {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 8px; flex-wrap: wrap;
}
.bb-step { flex: 1; min-width: 180px; max-width: 220px; text-align: center; padding: 28px 16px; position: relative; }
.bb-step-num { font-size: 11px; font-weight: 800; color: var(--bb-orange); letter-spacing: 0.12em; margin-bottom: 8px; }
.bb-step-emoji { font-size: 42px; margin-bottom: 14px; }
.bb-step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.bb-step p { font-size: 13px; color: var(--bb-gray); }
.bb-step-arrow { font-size: 24px; color: var(--bb-orange-g); margin-top: 60px; flex-shrink: 0; }

/* ═══════════════════════════════════════════
   INGREDIENTES
═══════════════════════════════════════════ */
.bb-ingredients { background: var(--bb-black); }
.bb-ingredients-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.bb-ing-img { width: 100%; border-radius: var(--bb-r-lg); aspect-ratio: 16/9; object-fit: cover; }
.bb-ing-list { display: flex; flex-direction: column; gap: 14px; }
.bb-ing-row { display: flex; gap: 14px; align-items: flex-start; padding: 14px; background: var(--bb-card); border-radius: var(--bb-r); border: 1px solid var(--bb-border); transition: var(--bb-t); }
.bb-ing-row:hover { border-color: var(--bb-orange-g); }
.bb-ing-hero-row { border-color: rgba(255,101,0,0.3); background: var(--bb-orange-g); }
.bb-ing-amount { font-size: 20px; font-weight: 900; color: var(--bb-orange); min-width: 42px; text-align: center; flex-shrink: 0; }
.bb-ing-chk { font-size: 16px; color: var(--bb-transfer-g); min-width: 42px; text-align: center; flex-shrink: 0; font-weight: 700; }
.bb-ing-info { display: flex; flex-direction: column; gap: 2px; }
.bb-ing-info strong { font-size: 14px; font-weight: 700; color: var(--bb-white); }
.bb-ing-info span { font-size: 12px; color: var(--bb-gray); }

/* ═══════════════════════════════════════════
   TESTIMONIOS
═══════════════════════════════════════════ */
.bb-testimonials { background: var(--bb-dark); text-align: center; }
.bb-testimonials .bb-h2 { text-align: center; }
.bb-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: left; }
.bb-testi-card {
  background: var(--bb-card); border: 1px solid var(--bb-border);
  border-radius: var(--bb-r-lg); padding: 28px; position: relative;
  transition: var(--bb-t); display: flex; flex-direction: column; gap: 14px;
}
.bb-testi-card:hover { border-color: var(--bb-orange-g); transform: translateY(-4px); }
.bb-testi-featured { border-color: var(--bb-orange); box-shadow: 0 0 32px rgba(255,101,0,0.2); }
.bb-testi-badge { font-size: 10px; font-weight: 700; color: var(--bb-transfer-g); letter-spacing: 0.08em; }
.bb-testi-stars { color: var(--bb-yellow); font-size: 16px; letter-spacing: 2px; }
.bb-testi-card p { font-size: 14px; color: var(--bb-gray); line-height: 1.7; font-style: italic; flex: 1; }
.bb-testi-author { display: flex; align-items: center; gap: 12px; }
.bb-testi-av { width: 40px; height: 40px; border-radius: 50%; background: var(--bb-orange); color: #fff; font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bb-testi-author strong { display: block; font-size: 14px; }
.bb-testi-author span { font-size: 11px; color: var(--bb-gray); }

/* ═══════════════════════════════════════════
   COMPARACIÓN
═══════════════════════════════════════════ */
.bb-compare { background: var(--bb-black); }
.bb-compare .bb-h2 { text-align: center; }
.bb-cmp-wrap { overflow-x: auto; border-radius: var(--bb-r-lg); border: 1px solid var(--bb-border); }
.bb-cmp-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.bb-cmp-table th {
  background: var(--bb-dark2); padding: 16px 20px;
  font-size: 13px; font-weight: 700; text-align: left; color: var(--bb-gray);
  border-bottom: 2px solid var(--bb-border);
}
.bb-cmp-table th.bb-cmp-beast { color: var(--bb-orange); background: var(--bb-orange-g); }
.bb-cmp-table td { padding: 14px 20px; border-bottom: 1px solid var(--bb-border); vertical-align: middle; }
.bb-cmp-table tr:last-child td { border-bottom: none; }
.bb-cmp-table tr:hover td { background: rgba(255,255,255,0.02); }
.bb-cmp-beast { background: rgba(255,101,0,0.05); }
.bb-cmp-yes { color: var(--bb-transfer-g); font-weight: 600; }
.bb-cmp-no { color: var(--bb-gray); }

/* ═══════════════════════════════════════════
   OFERTA + TRANSFERENCIA
═══════════════════════════════════════════ */
.bb-offer { background: var(--bb-dark2); }
.bb-offer .bb-h2 { text-align: center; }
.bb-offer-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 24px; margin-bottom: 40px; }

.bb-offer-card {
  background: var(--bb-card); border: 1px solid var(--bb-border);
  border-radius: var(--bb-r-lg); padding: 32px 28px;
  display: flex; flex-direction: column; gap: 16px; position: relative;
}
.bb-oc-transfer {
  border: 2px solid var(--bb-transfer-g);
  background: linear-gradient(145deg, #0d1f17, #1a2e20);
  box-shadow: 0 0 48px rgba(0,201,107,0.15);
}
.bb-oc-best {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--bb-transfer-g); color: #0a1a10;
  font-size: 11px; font-weight: 800; letter-spacing: 0.08em;
  padding: 4px 18px; border-radius: 100px; white-space: nowrap;
}
.bb-oc-header { font-size: 16px; font-weight: 700; margin-top: 8px; }
.bb-oc-price { font-size: 36px; font-weight: 900; color: var(--bb-white); }
.bb-oc-was { font-size: 14px; color: var(--bb-gray); }
.bb-oc-transfer-price { font-size: 52px; font-weight: 900; color: var(--bb-transfer-g); line-height: 1; }
.bb-oc-savings {
  background: rgba(0,201,107,0.1); border: 1px solid rgba(0,201,107,0.3);
  border-radius: var(--bb-r); padding: 10px 16px;
  font-size: 14px; font-weight: 700; color: var(--bb-transfer-g);
}
.bb-oc-feats { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.bb-oc-feats li { font-size: 14px; color: var(--bb-gray); }
.bb-oc-feat-highlight { color: var(--bb-transfer-g) !important; font-weight: 700; }
.bb-oc-btn { width: 100%; justify-content: center; border-radius: var(--bb-r); font-size: 15px; padding: 16px 24px; }
.bb-oc-btn small { font-size: 11px; opacity: 0.8; }

/* Transfer steps */
.bb-transfer-steps {
  background: rgba(0,0,0,0.25); border-radius: var(--bb-r);
  padding: 16px; font-size: 13px;
}
.bb-transfer-steps strong { color: var(--bb-transfer-g); display: block; margin-bottom: 10px; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.bb-transfer-steps ol { padding-left: 18px; display: flex; flex-direction: column; gap: 6px; }
.bb-transfer-steps li { color: var(--bb-gray); }

/* Urgency */
.bb-urgency {
  background: var(--bb-card); border: 1px solid rgba(239,68,68,0.3);
  border-radius: var(--bb-r-lg); padding: 20px 24px; margin-bottom: 24px;
}
.bb-urgency-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.bb-urg-left { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 200px; }
.bb-urg-fire { font-size: 28px; }
.bb-urg-left p { font-size: 13px; color: var(--bb-gray); margin-top: 2px; }
.bb-urg-cnt { color: var(--bb-red); font-weight: 900; font-size: 18px; }
.bb-urg-bar-wrap { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 200px; }
.bb-urg-bar { height: 8px; background: rgba(255,255,255,0.08); border-radius: 100px; overflow: hidden; }
.bb-urg-fill { height: 100%; width: 23%; background: linear-gradient(90deg, var(--bb-red), #FF8C00); border-radius: 100px; }
.bb-urg-pct { font-size: 11px; color: var(--bb-gray); }

/* Garantía */
.bb-guarantee {
  display: flex; align-items: center; gap: 20px;
  background: rgba(0,201,107,0.06); border: 1px solid rgba(0,201,107,0.2);
  border-radius: var(--bb-r-lg); padding: 24px 28px;
}
.bb-guar-icon { font-size: 40px; flex-shrink: 0; }
.bb-guar-text strong { display: block; font-size: 16px; margin-bottom: 4px; }
.bb-guar-text p { font-size: 14px; color: var(--bb-gray); }

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.bb-faq { background: var(--bb-dark); }
.bb-faq .bb-h2 { text-align: center; }
.bb-faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 720px; margin: 0 auto; }
.bb-faq-item {
  background: var(--bb-card); border: 1px solid var(--bb-border);
  border-radius: var(--bb-r); overflow: hidden; transition: border-color var(--bb-t);
}
.bb-faq-item[open] { border-color: var(--bb-orange-g); }
.bb-faq-item summary {
  padding: 18px 22px; cursor: pointer; font-size: 15px; font-weight: 600;
  color: var(--bb-white); list-style: none; display: flex; justify-content: space-between; align-items: center;
  transition: color var(--bb-t);
}
.bb-faq-item summary::after { content: '+'; font-size: 20px; font-weight: 300; color: var(--bb-orange); flex-shrink: 0; transition: transform var(--bb-t); }
.bb-faq-item[open] summary::after { transform: rotate(45deg); }
.bb-faq-item summary:hover { color: var(--bb-orange); }
.bb-faq-item summary::-webkit-details-marker { display: none; }
.bb-faq-body { padding: 0 22px 18px; font-size: 14px; color: var(--bb-gray); line-height: 1.7; }

/* ═══════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════ */
.bb-final {
  background: radial-gradient(ellipse at center, #1a0d00 0%, var(--bb-black) 70%);
  text-align: center;
}
.bb-final-inner { max-width: 680px; margin: 0 auto; }
.bb-final-h { font-size: clamp(32px, 5vw, 52px); font-weight: 900; line-height: 1.15; margin-bottom: 16px; }
.bb-final-sub { font-size: 17px; color: var(--bb-gray); margin-bottom: 36px; }
.bb-final-btns { display: flex; flex-direction: column; gap: 14px; align-items: center; margin-bottom: 28px; }
.bb-final-trust { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; font-size: 13px; color: var(--bb-gray); }

/* ═══════════════════════════════════════════
   STICKY BAR
═══════════════════════════════════════════ */
.bb-sticky {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--bb-dark); border-top: 1px solid var(--bb-border);
  transform: translateY(100%); transition: transform 0.4s ease;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.6);
}
.bb-sticky-show { transform: translateY(0); }
.bb-sticky-inner {
  max-width: 1120px; margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.bb-sticky-product { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
.bb-sticky-product img { border-radius: 8px; object-fit: cover; width: 44px; height: 44px; flex-shrink: 0; }
.bb-sticky-info { display: flex; flex-direction: column; min-width: 0; }
.bb-sticky-info strong { font-size: 13px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bb-sticky-info span { font-size: 12px; color: var(--bb-gray); }
.bb-sticky-info em { color: var(--bb-transfer-g); font-style: normal; font-weight: 700; }
.bb-sticky-btns { display: flex; gap: 10px; flex-shrink: 0; }
.bb-sticky-btn { padding: 10px 18px !important; font-size: 13px !important; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .bb-hero-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .bb-hero-text { align-items: center; }
  .bb-hero-hero { order: -1; }
  .bb-hero-pricing { justify-content: center; }
  .bb-hero-btns { justify-content: center; }
  .bb-hero-trust-row { justify-content: center; }
  .bb-product-float-badge { display: none; }
  .bb-product-img { max-width: 280px; }
  .bb-benefits-inner { grid-template-columns: 1fr; }
  .bb-ingredients-inner { grid-template-columns: 1fr; }
  .bb-offer-grid { grid-template-columns: 1fr; }
  .bb-testi-grid { grid-template-columns: 1fr; }
  .bb-problem-grid { grid-template-columns: 1fr; }
  .bb-steps { flex-direction: column; align-items: center; }
  .bb-step-arrow { transform: rotate(90deg); margin-top: 0; }
}

@media (max-width: 640px) {
  .bb-section { padding: 56px 0; }
  .bb-topbar-center { display: none; }
  .bb-spbar-inner { gap: 12px; }
  .bb-sp-sep { display: none; }
  .bb-sticky-inner { flex-direction: column; gap: 10px; }
  .bb-sticky-product { display: none; }
  .bb-sticky-btns { width: 100%; }
  .bb-sticky-btn { flex: 1; justify-content: center; }
  .bb-final-btns { flex-direction: column; width: 100%; }
  .bb-btn-xl { width: 100%; }
  .bb-guarantee { flex-direction: column; text-align: center; }
  .bb-urgency-inner { flex-direction: column; }
  .bb-hero { min-height: auto; padding-bottom: 0; }
  .bb-hero-content { padding-top: 20px; padding-bottom: 20px; }
}

/* ── Ensure WC scripts don't break layout ── */
.bb-landing .woocommerce-notices-wrapper { display: none; }
.bb-landing .added_to_cart { display: none; }
