/* ── GLUCOBERRY PRESSEL — style.css ── */

:root {
  --red-deep: #8b1a1a;
  --red-mid: #c0392b;
  --red-light: #e74c3c;
  --berry: #6d1f2e;
  --gold: #c9a84c;
  --gold-light: #f0c040;
  --cream: #fdf6f0;
  --white: #ffffff;
  --green-cta: #27ae60;
  --green-cta-dark: #1e8449;
  --text-dark: #1a0a0a;
  --text-mid: #5a3a3a;
  --blue-science: #1a3a5c;
  --blue-mid: #2980b9;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Merriweather', serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--red-deep);
  color: var(--gold-light);
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #1a0505 0%, #3d0a0a 50%, #1a0d05 100%);
  padding: 60px 20px 80px;
  text-align: center;
  position: relative;
  overflow: visible;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(192,57,43,0.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero .badge,
.hero h1,
.hero .subtitle,
.hero-product,
.hero .cta-btn,
.hero .cta-sub {
  position: relative;
  z-index: 2;
}
.hero .badge {
  display: inline-block;
  background: var(--red-mid);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 24px;
  font-family: 'Lato', sans-serif;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(192,57,43,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(192,57,43,0); }
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4.5vw, 50px);
  color: var(--white);
  line-height: 1.2;
  max-width: 820px;
  margin: 0 auto 20px;
  font-weight: 900;
}
.hero h1 em { color: var(--gold-light); font-style: italic; }
.hero .subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
}
.hero-product {
  max-width: 280px;
  margin: 0 auto 40px;
  filter: drop-shadow(0 20px 50px rgba(192,57,43,0.5));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-product img { width: 100%; }

/* ── CTA BUTTON ── */
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--green-cta) 0%, var(--green-cta-dark) 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 20px 50px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 8px 30px rgba(39,174,96,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
  font-family: 'Lato', sans-serif;
  position: relative;
  z-index: 10;
}
.cta-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(39,174,96,0.55); }
.cta-sub { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 12px; font-family: 'Lato', sans-serif; }

/* ── SECTIONS ── */
section { padding: 70px 20px; }
.container { max-width: 860px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red-mid);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
  margin-bottom: 16px;
  font-family: 'Lato', sans-serif;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.5vw, 38px);
  line-height: 1.25;
  color: var(--blue-science);
  margin-bottom: 20px;
}
.section-title em { color: var(--red-mid); font-style: italic; }

/* ── DISCOVERY ── */
.discovery { background: #fff; border-top: 4px solid var(--gold); }
.discovery p { font-size: 17px; line-height: 1.9; color: var(--text-mid); margin-bottom: 18px; font-family: 'Lato', sans-serif; }
.discovery strong { color: var(--blue-science); }
.highlight-box {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  border-left: 5px solid var(--red-mid);
  padding: 24px 28px;
  border-radius: 0 12px 12px 0;
  margin: 30px 0;
}
.highlight-box p { font-size: 18px; font-weight: 700; color: var(--blue-science); margin: 0; font-family: 'Lato', sans-serif; }
.dr-img {
  display: block;
  max-width: 160px;
  margin: 30px auto;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(192,57,43,0.15), 0 0 0 12px rgba(192,57,43,0.07);
}

/* ── SCIENCE ── */
.science { background: linear-gradient(180deg, #0d1f35 0%, var(--blue-science) 100%); text-align: center; }
.science .section-title { color: var(--white); }
.science .section-label { color: var(--gold-light); border-color: var(--gold-light); }
.science p { color: rgba(255,255,255,0.8); font-size: 17px; line-height: 1.8; max-width: 680px; margin: 0 auto 30px; font-family: 'Lato', sans-serif; }
.product-big { max-width: 260px; margin: 0 auto 40px; display: block; filter: drop-shadow(0 20px 40px rgba(192,57,43,0.5)); }
.badges-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin: 30px auto 0; max-width: 640px; }
.badge-item {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px; padding: 10px 18px; color: rgba(255,255,255,0.8);
  font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 8px;
  font-family: 'Lato', sans-serif;
}
.badge-item .dot { width: 8px; height: 8px; background: var(--green-cta); border-radius: 50%; }

/* ── INGREDIENTS ── */
.ingredients { background: var(--cream); }
.ing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 40px; }
.ing-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(139,26,26,0.08); transition: transform 0.25s; }
.ing-card:hover { transform: translateY(-5px); }
.ing-card img { width: 100%; height: 200px; object-fit: cover; }
.ing-card-body { padding: 20px; }
.ing-card h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--blue-science); margin-bottom: 8px; }
.ing-card p { font-size: 14px; color: var(--text-mid); line-height: 1.65; font-family: 'Lato', sans-serif; }
.ing-tick { color: var(--green-cta); font-weight: 700; font-size: 13px; margin-top: 10px; font-family: 'Lato', sans-serif; }
.ing-tick span { display: block; margin-bottom: 4px; }

/* ── TESTIMONIALS ── */
.testimonials { background: #fff; }
.test-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; margin-top: 40px; }
.test-card {
  border: 1px solid rgba(192,57,43,0.15); border-radius: 16px;
  padding: 28px; position: relative; background: #fdfafa;
}
.test-card::before {
  content: '"'; position: absolute; top: 10px; left: 20px;
  font-family: 'Playfair Display', serif; font-size: 80px;
  color: rgba(192,57,43,0.1); line-height: 1;
}
.test-card img.avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 3px solid var(--gold); margin-bottom: 14px; display: block; }
.stars { color: var(--gold); font-size: 18px; margin-bottom: 10px; }
.test-card p { font-size: 15px; line-height: 1.75; color: var(--text-mid); margin-bottom: 14px; font-family: 'Lato', sans-serif; }
.test-card .name { font-weight: 700; color: var(--blue-science); font-size: 14px; font-family: 'Lato', sans-serif; }
.result-badge { display: inline-block; background: var(--green-cta); color: #fff; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 20px; margin-bottom: 14px; font-family: 'Lato', sans-serif; }

/* ── PRICING ── */
.pricing { background: linear-gradient(135deg, #0d1f35, var(--blue-science)); text-align: center; }
.pricing .section-title { color: #fff; }
.pricing .section-label { color: var(--gold-light); border-color: var(--gold-light); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 40px; }
.price-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; padding: 30px 20px; position: relative; transition: transform 0.25s; text-align: center; }
.price-card:hover { transform: translateY(-5px); }
.price-card.featured { background: rgba(201,168,76,0.12); border: 2px solid var(--gold); transform: scale(1.04); }
.price-card.featured:hover { transform: scale(1.04) translateY(-5px); }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--blue-science); font-size: 11px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; padding: 5px 16px; border-radius: 20px; white-space: nowrap; font-family: 'Lato', sans-serif; }
.price-card h3 { color: var(--gold-light); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; font-family: 'Lato', sans-serif; }
.price-card .bottles { color: #fff; font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 4px; }
.price-card .supply { color: rgba(255,255,255,0.55); font-size: 13px; margin-bottom: 16px; font-family: 'Lato', sans-serif; }
.price-card img.product-img { max-width: 120px; margin: 0 auto 16px; display: block; }
.price-card .price { color: #fff; font-size: 38px; font-weight: 900; margin-bottom: 4px; font-family: 'Lato', sans-serif; }
.price-card .price-per { color: var(--gold-light); font-size: 16px; font-weight: 700; margin-bottom: 6px; font-family: 'Lato', sans-serif; }
.price-card .total { color: rgba(255,255,255,0.55); font-size: 13px; margin-bottom: 6px; font-family: 'Lato', sans-serif; }
.price-card .shipping { color: var(--gold-light); font-size: 13px; font-weight: 700; margin-bottom: 20px; font-family: 'Lato', sans-serif; }
.price-card .cta-btn { font-size: 15px !important; padding: 14px 30px !important; width: 100%; text-align: center; display: block !important; }

/* ── GUARANTEE ── */
.guarantee { background: #fff; }
.guarantee-inner { display: flex; align-items: center; gap: 40px; max-width: 760px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.guarantee-inner img { max-width: 160px; }
.guarantee-text { flex: 1; min-width: 260px; text-align: left; }
.guarantee-text h2 { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--blue-science); margin-bottom: 14px; }
.guarantee-text p { font-size: 16px; line-height: 1.8; color: var(--text-mid); font-family: 'Lato', sans-serif; }

/* ── FAQ ── */
.faq { background: var(--cream); }
.faq-item { background: #fff; border-radius: 12px; margin-bottom: 12px; overflow: hidden; box-shadow: 0 2px 10px rgba(139,26,26,0.06); }
.faq-q { padding: 20px 24px; font-weight: 700; font-size: 16px; color: var(--blue-science); cursor: pointer; display: flex; justify-content: space-between; align-items: center; list-style: none; user-select: none; font-family: 'Lato', sans-serif; }
.faq-q::after { content: '+'; font-size: 22px; color: var(--red-mid); transition: transform 0.3s; }
details[open] .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 24px 20px; font-size: 15px; line-height: 1.8; color: var(--text-mid); font-family: 'Lato', sans-serif; }

/* ── FINAL CTA ── */
.final-cta { background: linear-gradient(135deg, #1a0505, #0d1f35); text-align: center; padding: 80px 20px; }
.final-cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(24px,4vw,40px); color: #fff; margin-bottom: 16px; }
.final-cta h2 em { color: var(--gold-light); }
.final-cta p { color: rgba(255,255,255,0.75); font-size: 17px; margin-bottom: 36px; max-width: 580px; margin-left: auto; margin-right: auto; font-family: 'Lato', sans-serif; }

/* ── FOOTER ── */
footer { background: #080d15; color: rgba(255,255,255,0.4); text-align: center; padding: 30px 20px; font-size: 12px; line-height: 1.8; font-family: 'Lato', sans-serif; }
footer a { color: rgba(255,255,255,0.5); text-decoration: none; margin: 0 8px; }
footer a:hover { color: var(--gold-light); }

@media(max-width:600px) {
  .price-card.featured { transform: none; }
}
