/** Shopify CDN: Minification failed

Line 295:0 Unexpected "}"

**/
/* =====================================================
   THE DAILY CRAVE — SHOPIFY THEME CSS
   Design System: Soft Luxury Wellness
   ===================================================== */

/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&display=swap');

@font-face {
  font-family: 'Alta';
  src: url('https://fonts.cdnfonts.com/s/15326/Alta-Bold.woff2') format('woff2'),
       url('https://fonts.cdnfonts.com/s/15326/Alta-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* CSS VARIABLES */
:root {
  --cream: #FAF7F2;
  --warm-white: #FFFCF7;
  --forest: #2D4A3E;
  --forest-light: #3D6454;
  --coral: #E8714A;
  --coral-light: #F2956C;
  --gold: #C9A96E;
  --green-bright: #7ED957;
  --blue-bright: #0cc0df;
  --red-bright: #FF3131;
  --text-dark: #1C1C1A;
  --text-mid: #4A4A46;
  --text-light: #8A8A84;
  --border: #E8E3DA;
  --font-display: 'Alta', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--warm-white); color: var(--text-dark); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font-family: var(--font-body); }

/* ACCESSIBILITY */
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }
:focus-visible { outline: 2px solid var(--forest); outline-offset: 2px; }

/* =====================================================
   ANNOUNCEMENT BAR
   ===================================================== */
.announce-bar {
  background: #FF3131;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.announce-bar span { color: #fff; font-weight: 700; }

/* =====================================================
   NAVIGATION
   ===================================================== */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-nav {
  max-width: 1400px; margin: 0 auto;
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  color: var(--forest); letter-spacing: 0.02em;
  text-decoration: none;
}
.nav-logo img { height: 40px; width: auto; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--text-mid);
  text-decoration: none; letter-spacing: 0.07em;
  text-transform: uppercase; transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--forest); }
.nav-actions { display: flex; gap: 16px; align-items: center; }
.btn-nav {
  background: var(--forest); color: #fff;
  padding: 10px 22px; border-radius: 50px;
  font-size: 13px; font-weight: 600; text-decoration: none;
  letter-spacing: 0.04em; transition: background 0.2s, transform 0.1s;
  border: none; cursor: pointer;
}
.btn-nav:hover { background: var(--forest-light); transform: translateY(-1px); }
.nav-cart-btn {
  background: none; border: none; cursor: pointer;
  font-size: 20px; color: var(--text-mid);
  display: flex; align-items: center; gap: 6px; position: relative;
}
.cart-count {
  position: absolute; top: -6px; right: -6px;
  background: var(--red-bright); color: #fff;
  border-radius: 50%; width: 18px; height: 18px;
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; font-size: 24px; color: var(--text-dark); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: var(--warm-white); padding: 24px;
  flex-direction: column; gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu-close { align-self: flex-end; background: none; border: none; font-size: 28px; cursor: pointer; color: var(--text-dark); margin-bottom: 32px; }
.mobile-menu nav ul { list-style: none; }
.mobile-menu nav li { border-bottom: 1px solid var(--border); }
.mobile-menu nav a { display: block; padding: 18px 0; font-size: 20px; font-weight: 600; color: var(--text-dark); text-decoration: none; }
.mobile-menu .btn-nav { display: inline-block; margin-top: 32px; font-size: 16px; padding: 16px 36px; }

/* =====================================================
   SHARED SECTION STYLES
   ===================================================== */
.section { padding: 100px 40px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--coral); margin-bottom: 14px; display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px); font-weight: 700;
  line-height: 1.1; color: var(--text-dark); margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--forest); }
.section-sub { font-size: 17px; color: var(--text-mid); line-height: 1.7; max-width: 560px; }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn-primary {
  background: #FF3131; color: #fff;
  padding: 16px 36px; border-radius: 50px; font-size: 15px;
  font-weight: 600; text-decoration: none; letter-spacing: 0.02em;
  transition: all 0.2s; box-shadow: 0 8px 24px rgba(255,49,49,0.35);
  display: inline-block; border: none; cursor: pointer; font-family: var(--font-body);
}
.btn-primary:hover { background: #ff5555; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,49,49,0.4); }
.btn-secondary {
  color: var(--forest); font-size: 14px; font-weight: 600;
  text-decoration: none; border-bottom: 2px solid var(--forest);
  padding-bottom: 2px; transition: opacity 0.2s; display: inline-block;
}
.btn-secondary:hover { opacity: 0.7; }
.btn-outline {
  border: 2px solid var(--forest); color: var(--forest);
  padding: 14px 36px; border-radius: 50px; font-size: 15px;
  font-weight: 600; text-decoration: none; transition: all 0.2s;
  display: inline-block; background: transparent; cursor: pointer; font-family: var(--font-body);
}
.btn-outline:hover { background: var(--forest); color: #fff; }
.btn-forest {
  background: var(--forest); color: #fff; border: none;
  padding: 14px 28px; border-radius: 50px; font-size: 14px;
  font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: var(--font-body);
}
.btn-forest:hover { background: var(--forest-light); transform: translateY(-1px); }

/* =====================================================
   SOCIAL PROOF BAR
   ===================================================== */
.social-proof-bar {
  background: #0cc0df;
  padding: 20px 40px;
  display: flex; align-items: center; justify-content: center; gap: 60px;
  flex-wrap: wrap;
}
.proof-item { text-align: center; color: #fff; }
.proof-number {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 700;
  color: #fff; line-height: 1;
}
.proof-label {
  font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85); margin-top: 4px;
}
.proof-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.35); }

/* =====================================================
   GUARANTEE STRIP
   ===================================================== */
.guarantee-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.guarantee-strip::-webkit-scrollbar { display: none; }
.guarantee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-mid);
  white-space: nowrap;
  padding: 0 22px;
  letter-spacing: 0.01em;
}
.guarantee-item .g-icon { font-size: 16px; flex-shrink: 0; }
.guarantee-divider { width: 1px; height: 18px; background: var(--border); flex-shrink: 0; }
.guarantee-strip-dark {
  background: var(--forest); color: #fff;
  padding: 20px 40px;
  display: flex; align-items: center; justify-content: center; gap: 40px;
  flex-wrap: wrap; font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
}
@media (max-width: 1100px) {
  .guarantee-strip { justify-content: flex-start; padding: 14px 20px; }
  .guarantee-item { padding: 0 16px; font-size: 12px; }
}
@media (max-width: 768px) {
  .guarantee-strip { padding: 12px 16px; }
  .guarantee-item { padding: 0 12px; font-size: 11.5px; }
  .guarantee-divider { height: 14px; }
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  min-height: 92vh;
  background: var(--cream);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 0;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(45,74,62,0.06) 0%, transparent 60%);
}
.hero-content { padding: 80px 60px 80px 80px; position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #7ED957; color: #fff;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 7px 16px; border-radius: 50px; margin-bottom: 28px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 76px); font-weight: 700;
  line-height: 1.05; color: var(--text-dark); margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--forest); }
.hero-sub { font-size: 17px; color: var(--text-mid); line-height: 1.7; margin-bottom: 36px; max-width: 440px; }
.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 44px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-pill { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-mid); font-weight: 500; }
.trust-pill .icon {
  width: 28px; height: 28px;
  background: #7ED957;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 12px; flex-shrink: 0; color: #fff;
}
.hero-image {
  height: 92vh;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-inner { text-align: center; position: relative; }
.product-visual {
  width: 320px; height: 400px;
  background: linear-gradient(145deg, var(--forest) 0%, var(--forest-light) 100%);
  border-radius: 30px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; color: #fff;
  box-shadow: 0 40px 80px rgba(45,74,62,0.3); position: relative; overflow: hidden;
}
.product-visual-label { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: #fff; text-align: center; padding: 0 20px; }
.product-visual-sub { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 8px; }
.product-badge { position: absolute; top: -12px; right: 20px; background: #FF3131; color: #fff; font-size: 11px; font-weight: 700; padding: 6px 14px; border-radius: 50px; letter-spacing: 0.05em; }
.floating-review {
  position: absolute; bottom: 30px; left: -60px;
  background: #fff; border-radius: 16px; padding: 14px 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12); width: 220px;
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.floating-review .stars { color: var(--gold); font-size: 12px; margin-bottom: 4px; }
.floating-review .review-text { font-size: 12px; color: var(--text-mid); line-height: 1.5; }
.floating-review .reviewer { font-size: 11px; font-weight: 600; color: var(--text-dark); margin-top: 6px; }

/* =====================================================
   BENEFITS GRID
   ===================================================== */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 60px; }
.benefit-card {
  background: var(--cream); padding: 50px 40px;
  position: relative; overflow: hidden; transition: transform 0.3s;
}
.benefit-card:hover { transform: translateY(-4px); }
.benefit-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--forest); transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-number { font-family: var(--font-display); font-size: 72px; font-weight: 700; color: rgba(45,74,62,0.08); line-height: 1; position: absolute; top: 20px; right: 30px; }
.benefit-icon { font-size: 36px; margin-bottom: 20px; }
.benefit-title { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.benefit-desc { font-size: 15px; color: var(--text-mid); line-height: 1.7; }
.benefit-link { display: inline-block; margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--forest); text-decoration: none; border-bottom: 1px solid var(--forest); padding-bottom: 1px; }

/* =====================================================
   PRODUCT CARDS
   ===================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 0;
}
.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: 0 24px 60px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.product-badge-tag {
  position: absolute; top: 20px; left: 20px;
  background: #FF3131; color: #fff; font-size: 11px;
  font-weight: 700; padding: 5px 12px; border-radius: 50px;
  letter-spacing: 0.04em; z-index: 2;
}
.product-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  padding: 24px 24px 0;
  text-decoration: none;
  overflow: hidden;
}
.product-image-wrap img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  transition: transform 0.4s ease;
  display: block;
}
.product-card:hover .product-image-wrap img {
  transform: scale(1.04) translateY(-4px);
}
.product-image-placeholder {
  text-align: center;
  padding: 40px 0;
}
.flavour-label {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 700; color: var(--forest);
}
.flavour-gummy { font-size: 60px; display: block; margin-bottom: 10px; }
.product-info { padding: 24px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.product-name {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 8px;
}
.product-desc {
  font-size: 14px; color: var(--text-mid);
  line-height: 1.6; margin-bottom: 14px; flex: 1;
}
.product-stars { color: var(--gold); font-size: 13px; margin-bottom: 16px; }
.product-stars span { color: var(--text-mid); font-size: 12px; margin-left: 6px; }
.product-price-row {
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
}
.product-price { font-size: 22px; font-weight: 700; color: var(--text-dark); }
.price-save {
  font-size: 12px; font-weight: 600; color: #FF3131;
  margin-left: 8px; background: rgba(255,49,49,0.08);
  padding: 3px 8px; border-radius: 4px;
}
.btn-atc {
  background: var(--forest); color: #fff; border: none;
  padding: 12px 24px; border-radius: 50px; font-size: 14px;
  font-weight: 600; cursor: pointer; transition: all 0.2s;
  font-family: var(--font-body); white-space: nowrap;
}
.btn-atc:hover { background: var(--forest-light); transform: translateY(-1px); }
.subscribe-note {
  font-size: 12px; color: var(--text-light);
  margin-top: 12px; padding-top: 12px;
  border-top: 1px solid var(--border);
}

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

/* =====================================================
   INGREDIENT TRANSPARENCY
   ===================================================== */
.ingredients-section { background: #0cc0df; overflow: hidden; position: relative; }
.ingredients-section::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,0.06); }
.ingredients-section .section-tag { color: rgba(255,255,255,0.85); }
.ingredients-section .section-title { color: #fff; }
.ingredients-section .section-sub { color: rgba(255,255,255,0.85); }
.ingredient-block { background: rgba(255,255,255,0.1); padding: 40px; transition: background 0.3s; }
.ingredient-block:hover { background: rgba(255,255,255,0.18); }
.ingredient-status { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 12px; border-radius: 50px; margin-bottom: 16px; }
.ingredient-status.has { background: rgba(255,255,255,0.2); color: #fff; }
.ingredient-status.hasnt { background: rgba(0,0,0,0.12); color: rgba(255,255,255,0.95); }
.ingredient-block h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: #fff; margin-bottom: 10px; }
.ingredient-block p { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.7; }
.dose-callout { display: inline-block; background: #fff; color: #0cc0df; font-size: 13px; font-weight: 700; padding: 6px 14px; border-radius: 50px; margin-top: 12px; }
/* =====================================================
   TESTIMONIALS / REVIEWS
   ===================================================== */
.reviews-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 50px; flex-wrap: wrap; gap: 24px; }
.reviews-score { text-align: center; }
.big-score { font-family: var(--font-display); font-size: 80px; font-weight: 700; color: var(--text-dark); line-height: 1; }
.big-stars { color: var(--gold); font-size: 22px; margin: 8px 0; }
.big-score-label { font-size: 13px; color: var(--text-light); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: var(--cream); border-radius: 16px; padding: 32px; border: 1px solid var(--border); transition: transform 0.3s; }
.review-card:hover { transform: translateY(-4px); }
.review-stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; }
.review-text { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--forest); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 18px; font-weight: 700; color: #fff; flex-shrink: 0; }
.review-name { font-weight: 600; font-size: 14px; color: var(--text-dark); }
.review-meta { font-size: 12px; color: var(--text-light); }
.reviews-cta { text-align: center; margin-top: 50px; }
.star-bar-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.star-label { font-size: 13px; font-weight: 600; color: var(--text-dark); width: 50px; flex-shrink: 0; }
.star-bar-track { flex: 1; background: var(--border); border-radius: 4px; height: 8px; overflow: hidden; }
.star-bar-fill { height: 100%; background: var(--gold); border-radius: 4px; transition: width 0.8s ease; }
.star-pct { font-size: 12px; color: var(--text-light); width: 36px; text-align: right; flex-shrink: 0; }

/* =====================================================
   CTA SECTIONS
   ===================================================== */
.quiz-section { background: #0cc0df; padding: 80px 40px; text-align: center; position: relative; overflow: hidden; }
.quiz-section::before { content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; border-radius: 50%; background: rgba(255,255,255,0.08); }
.quiz-section .section-title { color: #fff; max-width: 600px; margin: 0 auto 20px; }
.quiz-section .section-sub { color: rgba(255,255,255,0.9); max-width: 500px; margin: 0 auto 36px; font-size: 17px; }
.btn-quiz { background: #fff; color: #0cc0df; padding: 16px 40px; border-radius: 50px; font-size: 16px; font-weight: 700; text-decoration: none; display: inline-block; transition: all 0.2s; box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.btn-quiz:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.2); }

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-section { background: var(--cream); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image {
  background: linear-gradient(145deg, #D4E0D2, #B8CEB5);
  height: 500px; border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px; position: relative; overflow: hidden;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; }
.about-image::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40%; background: linear-gradient(transparent, rgba(45,74,62,0.3)); border-radius: 0 0 24px 24px; }
.about-tag { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral); margin-bottom: 14px; }
.about-title { font-family: var(--font-display); font-size: clamp(32px, 3.5vw, 48px); font-weight: 700; color: var(--text-dark); margin-bottom: 20px; line-height: 1.15; }
.about-body { font-size: 16px; color: var(--text-mid); line-height: 1.8; margin-bottom: 24px; }
.cert-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.cert-badge { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 12px 18px; display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: var(--text-dark); }
.cert-badge .badge-icon { font-size: 18px; }

/* =====================================================
   EMAIL CAPTURE
   ===================================================== */
.email-section { background: var(--forest); padding: 80px 40px; text-align: center; }
.email-tag { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: block; }
.email-title { font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); font-weight: 700; color: #fff; margin-bottom: 12px; line-height: 1.1; }
.email-title em { font-style: italic; }
.email-sub { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 36px; }
.email-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.email-input { flex: 1; padding: 16px 22px; border-radius: 50px; border: none; font-family: var(--font-body); font-size: 14px; background: rgba(255,255,255,0.12); color: #fff; outline: none; transition: background 0.2s; }
.email-input::placeholder { color: rgba(255,255,255,0.45); }
.email-input:focus { background: rgba(255,255,255,0.18); }
.btn-email { background: #FF3131; color: #fff; border: none; padding: 16px 28px; border-radius: 50px; font-family: var(--font-body); font-size: 14px; font-weight: 700; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.btn-email:hover { background: #ff5555; transform: translateY(-1px); }
.email-note { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 14px; }
.email-incentive { display: inline-block; background: rgba(201,169,110,0.2); color: var(--gold); font-size: 13px; font-weight: 600; padding: 8px 20px; border-radius: 50px; border: 1px solid rgba(201,169,110,0.3); margin-bottom: 28px; }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer { background: var(--text-dark); color: rgba(255,255,255,0.7); padding: 60px 40px 30px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 50px; }
.footer-brand .logo { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 16px; display: block; }
.footer-brand .logo img { height: 36px; width: auto; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-socials { display: flex; gap: 12px; margin-top: 24px; }
.social-icon { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; color: rgba(255,255,255,0.7); text-decoration: none; transition: background 0.2s; }
.social-icon:hover { background: #FF3131; color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; font-size: 13px; flex-wrap: wrap; gap: 12px; }
.footer-payments { display: flex; gap: 8px; }
.payment-icon { background: rgba(255,255,255,0.1); border-radius: 4px; padding: 4px 8px; font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.7); }

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */
.page-hero { background: var(--cream); padding: 80px 40px 70px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 100%, rgba(45,74,62,0.06) 0%, transparent 60%); }
.page-tag { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral); margin-bottom: 16px; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(40px, 5vw, 68px); font-weight: 700; line-height: 1.05; color: var(--text-dark); margin-bottom: 20px; position: relative; }
.page-hero h1 em { font-style: italic; color: var(--forest); }
.page-hero-sub { font-size: 17px; color: var(--text-mid); max-width: 520px; margin: 0 auto 36px; line-height: 1.75; position: relative; }

/* =====================================================
   FAQ ACCORDION
   ===================================================== */
.faq-list { list-style: none; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-toggle { width: 100%; background: none; border: none; padding: 22px 0; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px; text-align: left; font-family: var(--font-body); }
.faq-question { font-size: 16px; font-weight: 600; color: var(--text-dark); line-height: 1.45; }
.faq-icon { width: 28px; height: 28px; min-width: 28px; background: var(--cream); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--forest); transition: transform 0.3s, background 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--forest); color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 0 24px; font-size: 15px; color: var(--text-mid); line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 500px; }

/* =====================================================
   PRODUCT PAGE
   ===================================================== */
.product-page { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; padding: 80px 60px; max-width: 1400px; margin: 0 auto; }
.product-gallery { position: sticky; top: 90px; }
.product-gallery-main { border-radius: 24px; overflow: hidden; background: var(--cream); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-thumbs { display: flex; gap: 12px; margin-top: 16px; }
.product-gallery-thumb { width: 80px; height: 80px; border-radius: 12px; overflow: hidden; border: 2px solid transparent; cursor: pointer; transition: border-color 0.2s; background: var(--cream); }
.product-gallery-thumb.active { border-color: var(--forest); }
.product-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-detail h1 { font-family: var(--font-display); font-size: clamp(32px, 3.5vw, 48px); font-weight: 700; line-height: 1.1; color: var(--text-dark); margin-bottom: 16px; }
.product-detail .product-stars { margin-bottom: 20px; font-size: 15px; }
.product-detail-desc { font-size: 16px; color: var(--text-mid); line-height: 1.8; margin-bottom: 28px; }
.purchase-options { background: var(--cream); border-radius: 20px; padding: 28px; margin-bottom: 24px; border: 1px solid var(--border); }
.purchase-tabs { display: flex; gap: 4px; background: var(--border); padding: 4px; border-radius: 50px; margin-bottom: 20px; }
.purchase-tab { flex: 1; padding: 10px; border-radius: 50px; border: none; cursor: pointer; font-family: var(--font-body); font-size: 14px; font-weight: 600; transition: all 0.2s; background: transparent; color: var(--text-mid); }
.purchase-tab.active { background: var(--forest); color: #fff; }
.pack-options { display: flex; gap: 10px; margin-bottom: 20px; }
.pack-btn { flex: 1; padding: 14px 10px; border: 2px solid var(--border); border-radius: 12px; cursor: pointer; font-family: var(--font-body); font-size: 13px; font-weight: 600; background: #fff; transition: all 0.2s; text-align: center; }
.pack-btn.active { border-color: var(--forest); background: rgba(45,74,62,0.04); }
.pack-btn .pack-count { font-size: 18px; font-weight: 700; color: var(--forest); display: block; margin-bottom: 2px; }
.pack-btn .pack-price { font-size: 13px; color: var(--text-mid); }
.pack-btn .pack-save { font-size: 11px; color: #FF3131; font-weight: 700; }
.product-price-display { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; }
.price-current { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--text-dark); }
.price-was { font-size: 20px; color: var(--text-light); text-decoration: line-through; }
.price-save-tag { background: rgba(255,49,49,0.1); color: #FF3131; font-size: 13px; font-weight: 700; padding: 4px 12px; border-radius: 50px; }
.btn-add-full { width: 100%; padding: 18px; border-radius: 50px; font-size: 16px; font-weight: 700; background: #FF3131; color: #fff; border: none; cursor: pointer; font-family: var(--font-body); transition: all 0.2s; box-shadow: 0 8px 24px rgba(255,49,49,0.35); }
.btn-add-full:hover { background: #ff5555; transform: translateY(-2px); }
.product-trust-row { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 20px; }
.product-trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-mid); font-weight: 500; }

/* =====================================================
   SHOP PAGE
   ===================================================== */
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.subscribe-banner { background: var(--forest); border-radius: 20px; padding: 32px 40px; display: flex; align-items: center; justify-content: space-between; margin-bottom: 50px; flex-wrap: wrap; gap: 20px; }
.subscribe-banner h3 { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.subscribe-banner p { font-size: 14px; color: rgba(255,255,255,0.7); }
.subscribe-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.subscribe-pill { background: rgba(255,255,255,0.1); color: #fff; font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 50px; }

/* =====================================================
   BLOG / LEARN PAGE
   ===================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: #fff; border-radius: 20px; overflow: hidden; border: 1px solid var(--border); transition: transform 0.3s, box-shadow 0.3s; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.blog-image { height: 220px; background: linear-gradient(145deg, #E8EDE7, #C8D8C5); display: flex; align-items: center; justify-content: center; font-size: 48px; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-content { padding: 24px; }
.blog-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); margin-bottom: 10px; }
.blog-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; line-height: 1.3; text-decoration: none; display: block; }
.blog-title:hover { color: var(--forest); }
.blog-excerpt { font-size: 14px; color: var(--text-mid); line-height: 1.6; margin-bottom: 16px; }
.blog-meta { font-size: 12px; color: var(--text-light); }

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: start; }
.form-label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dark); margin-bottom: 8px; }
.form-label .required { color: #FF3131; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 14px 18px; border: 1.5px solid var(--border); border-radius: 12px; font-family: var(--font-body); font-size: 15px; color: var(--text-dark); background: #fff; transition: border-color 0.2s, box-shadow 0.2s; outline: none; appearance: none; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(45,74,62,0.08); }
.form-textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.btn-submit { background: #FF3131; color: #fff; border: none; padding: 16px 40px; border-radius: 50px; font-family: var(--font-body); font-size: 16px; font-weight: 700; cursor: pointer; transition: all 0.2s; box-shadow: 0 8px 24px rgba(255,49,49,0.35); }
.btn-submit:hover { background: #ff5555; transform: translateY(-2px); }
.sidebar-block { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 32px; margin-bottom: 24px; }
.sidebar-block-title { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--text-dark); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }

/* =====================================================
   CART DRAWER
   ===================================================== */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 400; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer { position: fixed; right: 0; top: 0; bottom: 0; width: 420px; background: #fff; z-index: 500; transform: translateX(100%); transition: transform 0.3s ease; display: flex; flex-direction: column; }
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header { padding: 24px 28px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.cart-drawer-title { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--text-dark); }
.cart-drawer-close { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text-mid); }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 24px 28px; }
.cart-empty { text-align: center; padding: 60px 20px; }
.cart-empty-icon { font-size: 48px; margin-bottom: 16px; }
.cart-empty p { font-size: 16px; color: var(--text-mid); margin-bottom: 24px; }
.cart-drawer-footer { padding: 24px 28px; border-top: 1px solid var(--border); }
.cart-subtotal { display: flex; justify-content: space-between; font-size: 16px; font-weight: 600; color: var(--text-dark); margin-bottom: 16px; }
.cart-subtotal-amount { font-family: var(--font-display); font-size: 22px; }
.btn-checkout { width: 100%; padding: 18px; background: #FF3131; color: #fff; border: none; border-radius: 50px; font-family: var(--font-body); font-size: 16px; font-weight: 700; cursor: pointer; transition: all 0.2s; }
.btn-checkout:hover { background: #ff5555; }

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }
.animate-fade-up { animation: fadeUp 0.7s ease both; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1200px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 60px 30px; }
  .hero-image { height: 400px; }
  .site-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .product-page { grid-template-columns: 1fr; gap: 40px; padding: 40px 20px; }
  .product-gallery { position: static; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-inner { grid-template-columns: 1fr; gap: 50px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 60px 20px; }
  .page-hero { padding: 60px 20px 50px; }
  .benefits-grid, .ingredients-grid, .reviews-grid, .products-grid, .shop-grid, .blog-grid { grid-template-columns: 1fr; }
  .social-proof-bar { gap: 30px; padding: 20px; }
  .proof-divider { display: none; }
  .email-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .site-footer { padding: 50px 20px 24px; }
  .reviews-header { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .cart-drawer { width: 100%; }
  .pack-options { flex-wrap: wrap; }
}
