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

:root {
  --bg: #ffffff;
  --bg2: #f9f0f4;
  --bg3: #fce8f0;
  --border: rgba(200,50,100,0.15);
  --text: #1a0a10;
  --text-muted: #8a5068;
  --accent: #d4006a;
  --accent2: #ff4d9a;
  --gold: #ff1a6e;
  --radius: 12px;
  --radius-lg: 20px;
  --font: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Light mode overrides */
strong { color: var(--text); }

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent2), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 700;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  padding: 14px 28px;
  font-size: 15px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,0,106,0.4); }

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 28px;
  font-size: 15px;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.05); }

.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 16px; border-radius: 10px; }
.btn-full { width: 100%; border-radius: 8px; padding: 14px; font-size: 15px; }

/* ===== SECTION LABELS ===== */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 540px;
  margin-bottom: 48px;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(212,0,106,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
}

.logo {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

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

/* ===== HERO ===== */
.hero {
  padding: 160px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(212,0,106,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner { position: relative; max-width: 800px; margin: 0 auto; }

.hero-badge {
  display: inline-block;
  background: rgba(212,0,106,0.08);
  border: 1px solid rgba(212,0,106,0.25);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat { text-align: center; }
.stat-num { display: block; font-size: 32px; font-weight: 900; color: var(--text); }
.stat-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ===== INGREDIENTS ===== */
.ingredients {
  padding: 100px 0;
  background: var(--bg2);
  text-align: center;
}

.ingredients .section-sub { max-width: 600px; margin-left: auto; margin-right: auto; }

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.ingredient-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: border-color 0.2s, transform 0.2s;
  box-shadow: 0 2px 12px rgba(212,0,106,0.06);
}
.ingredient-card:hover {
  border-color: rgba(212,0,106,0.35);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(212,0,106,0.12);
}

.ingredient-icon { font-size: 36px; margin-bottom: 16px; }

.ingredient-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ingredient-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== PRODUCTS ===== */
.products {
  padding: 100px 0;
  text-align: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 8px;
}

.products-grid--two {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
  .products-grid--two { grid-template-columns: 1fr; max-width: 400px; }
}

.price-per {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(212,0,106,0.07);
  padding: 3px 8px;
  border-radius: 100px;
}

.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: left;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
  box-shadow: 0 2px 12px rgba(212,0,106,0.06);
}
.product-card:hover { transform: translateY(-4px); border-color: rgba(212,0,106,0.3); box-shadow: 0 8px 28px rgba(212,0,106,0.12); }

.product-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(212,0,106,0.18);
}

.product-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(212,0,106,0.07);
  color: var(--text-muted);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.product-badge--hot { background: rgba(212,0,106,0.12); color: var(--accent); }
.product-badge--value { background: rgba(212,0,106,0.08); color: var(--accent); }

.product-img-wrap {
  background: var(--bg3);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  margin-bottom: 20px;
  font-size: 40px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212,0,106,0.1);
  overflow: hidden;
}

.product-img {
  width: 100%;
  max-width: 280px;
  height: 200px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 8px 20px rgba(212,0,106,0.15));
  transition: transform 0.3s ease;
}

.product-card:hover .product-img {
  transform: scale(1.04);
}

.product-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.product-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
}

.price-current {
  font-size: 28px;
  font-weight: 900;
  color: var(--text);
}

.price-save {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(212,0,106,0.1);
  padding: 3px 8px;
  border-radius: 100px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 100px 0;
  background: var(--bg2);
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 8px;
}

.step {
  padding: 32px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(212,0,106,0.05);
}
.step:hover { border-color: rgba(212,0,106,0.3); box-shadow: 0 6px 20px rgba(212,0,106,0.1); }

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 50%;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== BENEFITS ===== */
.benefits { padding: 100px 0; }

.benefits-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 768px) {
  .benefits-inner { grid-template-columns: 1fr; gap: 40px; }
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  background: rgba(212,0,106,0.12);
  color: var(--accent);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.benefits-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-highlight {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(212,0,106,0.05);
}
.benefit-highlight:hover { border-color: rgba(212,0,106,0.3); box-shadow: 0 6px 20px rgba(212,0,106,0.1); }

.bh-icon {
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-highlight strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.benefit-highlight p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* ===== REVIEWS ===== */
.reviews {
  padding: 100px 0;
  background: var(--bg2);
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: left;
  box-shadow: 0 2px 12px rgba(212,0,106,0.06);
}

.review-card--featured {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(212,0,106,0.15);
}

.stars {
  color: #d4006a;
  font-size: 18px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.reviewer {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(212,0,106,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta h2 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

/* ===== FOOTER ===== */
.footer {
  border-top: none;
  padding: 60px 0 32px;
  background: #000;
  color: #fff;
}

.footer .container {
  max-width: 1100px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
  text-align: center;
  justify-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  max-width: 240px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 4px;
}

.footer-nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-block h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 4px;
}

.footer-contact-link {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-link:hover {
  color: #fff;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  margin-bottom: 28px;
}

.bbt-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.bbt-copy {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.5;
}

.bbt-footer-badge img {
  max-width: 300px;
  height: auto;
}

.bbt-payment-cards {
  max-width: 220px;
  height: auto;
  border-radius: 8px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .footer { padding: 40px 0 24px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
  }
  .footer-tagline { max-width: 100%; }
  .footer-nav { align-items: center; text-align: center; }
  .footer-contact-block {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
  }
  .footer-logo-img { height: 50px; }
}

/* ===== NAV LOGO ===== */
.nav-logo-img {
  height: 44px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
}

.logo-text {
  vertical-align: middle;
  font-weight: 900;
  font-size: 16px;
}

/* ===== POLICY MODALS ===== */
.bbt-policy-overlay {
  display:none; position:fixed; inset:0; z-index:99999;
  background:rgba(0,0,0,0.75); backdrop-filter:blur(4px);
  align-items:center; justify-content:center;
}
.bbt-policy-overlay.active { display:flex; }
.bbt-policy-modal {
  background:#fff; border-radius:16px; padding:0;
  max-width:750px; width:92%; max-height:85vh;
  position:relative; box-shadow:0 20px 60px rgba(0,0,0,0.3);
  display:flex; flex-direction:column; overflow:hidden;
}
.bbt-policy-close {
  position:absolute; top:12px; right:16px; background:none; border:none;
  font-size:2rem; color:#1a1a1a; cursor:pointer; line-height:1;
  width:40px; height:40px; display:flex; align-items:center; justify-content:center;
  border-radius:50%; transition:background 0.2s; z-index:2;
}
.bbt-policy-close:hover { background:rgba(0,0,0,0.08); }
.bbt-policy-body {
  overflow-y:auto; padding:40px 36px;
}
.bbt-policy-body h2 {
  font-family:'Inter',sans-serif; font-weight:900; font-size:1.6rem;
  color:#1a1a1a; margin-bottom:24px; padding-right:40px;
  border-bottom:3px solid #e63946; padding-bottom:12px;
}
.bbt-policy-body h3 {
  font-family:'Inter',sans-serif; font-weight:700; font-size:1rem;
  color:#1a1a1a; margin:28px 0 10px; text-transform:uppercase;
  letter-spacing:0.5px; border-left:4px solid #e63946; padding-left:12px;
}
.bbt-policy-body p { font-size:0.88rem; color:#444; line-height:1.7; margin-bottom:12px; }
.bbt-policy-body ul { margin:8px 0 16px 24px; list-style:disc; }
.bbt-policy-body ul li { font-size:0.88rem; color:#444; line-height:1.7; margin-bottom:4px; }
@media (max-width:600px) { .bbt-policy-body { padding:28px 20px; } }

/* ===== CART ===== */
.cart-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(212,0,106,0.4);
  transition: transform 0.2s;
  font-family: var(--font);
}
.cart-fab:hover { transform: scale(1.05); }

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--accent);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 12px;
  font-weight: 900;
  margin-left: 4px;
}

.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 300;
}
.cart-overlay.active { display: block; }

.cart-modal {
  position: fixed;
  top: 0; right: -440px;
  width: 420px;
  max-width: 95vw;
  height: 100vh;
  background: #fff;
  border-left: 1px solid var(--border);
  box-shadow: -4px 0 32px rgba(212,0,106,0.1);
  z-index: 400;
  padding: 32px 28px;
  transition: right 0.3s ease;
  overflow-y: auto;
}
.cart-modal.open { right: 0; }

.cart-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 20px;
  cursor: pointer;
  float: right;
  margin-bottom: 16px;
}
.cart-close:hover { color: var(--text); }

.cart-modal h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 28px;
  clear: both;
}

.cart-items { margin-bottom: 24px; min-height: 80px; }

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.cart-item-name { font-weight: 600; }
.cart-item-price { color: var(--accent2); font-weight: 700; }
.cart-item-remove { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 16px; padding: 0 4px; }
.cart-item-remove:hover { color: var(--accent); }

.cart-empty { color: var(--text-muted); font-size: 14px; padding: 20px 0; }

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.cart-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ===== CHECKOUT FORM ===== */
.checkout-form {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212,0,106,0.1);
}

.form-group input::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

#payBtn {
  margin-top: 16px;
}

.form-row {
  display: flex;
  gap: 12px;
}

@media (max-width: 480px) {
  .form-row { flex-direction: column; gap: 0; }
}

/* ===== MOBILE CART FIXES ===== */
@media (max-width: 768px) {
  .cart-modal {
    width: 100vw;
    max-width: 100vw;
    right: -100vw;
    padding: 24px 18px;
    padding-bottom: 100px;
  }
  .cart-modal.open { right: 0; }
  .cart-modal h2 { font-size: 18px; margin-bottom: 16px; }
  .cart-total { font-size: 16px; }
  .cart-fab {
    bottom: 16px;
    right: 16px;
    padding: 12px 18px;
    font-size: 14px;
  }
  #card-form {
    min-height: 260px !important;
  }
  .form-group input {
    padding: 14px 12px;
    font-size: 16px; /* prevents iOS zoom */
  }
  .btn-full {
    padding: 16px;
    font-size: 16px;
  }
}
