/* Custom Global Properties and Variables Configuration */
:root {
  --primary-green: #0891b2;
  --accent-emerald: #0e7490;
  --text-dark: #0f172a;
  --text-slate: #475569;
  --bg-light-white: #ffffff;
  --bg-light-gray: #f8fafc;
  --border-color: #e2e8f0;
  --highlight-yellow: #fef08a;
}

/* Base Document Overrides */
* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; 
}
body { 
  background: var(--bg-light-white); 
  color: var(--text-dark); 
  line-height: 1.5; 
  scroll-behavior: smooth; 
}

/* Layout Containers Framework */
.content-container { max-width: 1100px; margin: 0 auto; padding: 60px 20px; }
.max-800 { max-width: 800px; }
.max-600 { max-width: 600px; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.block { display: block; }
.responsive-img { width: 100%; height: auto; display: block; }

/* Urgency Announcement Header Bar */
.urgency-ticker { 
  background: #FF61F8; 
  color: #fff; 
  text-align: center; 
  padding: 8px 10px; 
  font-size: 12px; 
  font-weight: 800; 
  letter-spacing: 1px; 
}

/* Sticky Navigation and Logo Architecture */
.main-header { 
  background: #fff; 
  border-bottom: 1px solid var(--border-color); 
  position: sticky; 
  top: 0; 
  z-index: 1000; 
}
.nav-container { 
  max-width: 1100px; 
  margin: 0 auto; 
  padding: 15px 20px; 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
}
.logo { 
  font-size: 22px; 
  font-weight: 800; 
  color: var(--text-dark); 
  text-decoration: none; 
  display: flex; 
  align-items: center; 
  gap: 6px; 
}
.text-accent { color: var(--primary-green); }
.nav-menu a { 
  text-decoration: none; 
  color: var(--text-slate); 
  margin: 0 15px; 
  font-weight: 500; 
  font-size: 14px; 
}
.nav-btn { 
  background: var(--primary-green); 
  color: #fff; 
  padding: 8px 18px; 
  border-radius: 6px; 
  text-decoration: none; 
  font-weight: 600; 
  font-size: 14px; 
}

/* Typography Layout Rules */
.white-section { background: var(--bg-light-white); }
.gray-section { background: var(--bg-light-gray); }
.section-label { 
  font-size: 11px; 
  font-weight: 700; 
  color: var(--primary-green); 
  letter-spacing: 1.5px; 
  text-transform: uppercase; 
  margin-bottom: 12px; 
  display: inline-block; 
}
h2 { 
  font-size: 32px; 
  font-weight: 800; 
  margin-bottom: 16px; 
  color: var(--text-dark); 
  letter-spacing: -0.5px; 
}
.lead-paragraph { 
  font-size: 18px; 
  color: var(--text-slate); 
  max-width: 850px; 
  margin: 0 auto 20px auto; 
}
.sub-lead { font-size: 16px; color: var(--text-slate); }

/* Hero Box Layout Settings */
.hero-section { 
  background: linear-gradient(135deg, #ecfeff 0%, #ffffff 100%); 
  border-bottom: 1px solid var(--border-color); 
}
.hero-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
  gap: 40px; 
  align-items: center; 
}
h1 { 
  font-size: 44px; 
  font-weight: 800; 
  line-height: 1.15; 
  margin-bottom: 20px; 
  color: var(--text-dark); 
  letter-spacing: -1px; 
}
.hero-subtext { font-size: 18px; color: var(--text-slate); margin-bottom: 24px; }
.hero-bullets { list-style: none; margin-bottom: 30px; }
.hero-bullets li { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  font-size: 16px; 
  font-weight: 600; 
  margin-bottom: 12px; 
  color: var(--text-dark); 
}
.hero-bullets li span { color: var(--primary-green); font-size: 20px; }

/* Primary High-Conversion CTA Button */
.primary-btn { 
  background: #FF61F8; 
  color: #fff; 
  padding: 16px 32px; 
  border-radius: 8px; 
  font-size: 18px; 
  font-weight: 700; 
  text-decoration: none; 
  display: inline-block; 
  box-shadow: 0 4px 14px rgba(255, 97, 248, 0.4); 
  transition: background 0.2s ease, transform 0.1s ease;
  text-align: center;
}
.primary-btn:hover { background: #e146da; }
.primary-btn:active { transform: scale(0.98); }
.stock-alert { font-size: 13px; color: #c2410c; margin-top: 12px; font-weight: 600; }

/* Responsive Multi-Column Placements & Flex-Card Alignment */
.split-grid-half { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; align-items: stretch; }
.benefits-triple-grid, .ingredients-grid, .reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 32px; }
.card-glass { 
  background: #fff; 
  border: 1px solid var(--border-color); 
  padding: 24px; 
  border-radius: 12px; 
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Testimonial User Block Formatting */
.review-user-block { 
  display: flex; 
  align-items: center; 
  gap: 14px; 
  margin-top: auto; /* Pushes the user block down to perfectly line up card bottoms */
  border-top: 1px solid var(--border-color); 
  padding-top: 14px; 
}
.fallback-avatar-placeholder { 
  width: 50px; 
  height: 50px; 
  border-radius: 50%; 
  background: var(--primary-green); 
  color: #fff; 
  text-align: center; 
  line-height: 50px; 
  font-weight: bold; 
  font-size: 16px; 
  flex-shrink: 0;
}

/* Why Choose Us Badge Framework */
.badges-quad-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 35px;
}
.badge-compliance-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.01);
  transition: transform 0.2s ease;
}
.badge-compliance-card:hover { transform: translateY(-4px); }
.badge-compliance-icon { font-size: 38px; margin-bottom: 12px; display: inline-block; }
.badge-compliance-card h4 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.badge-compliance-card p { font-size: 13px; color: var(--text-slate); line-height: 1.5; }

/* Hero Section Media Handling */
.hero-main-display {
  max-width: 100%;
  max-height: 450px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

/* Pricing Card Component Engine */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 40px; align-items: stretch; }
.price-card { 
  background: #fff; 
  border: 2px solid var(--border-color); 
  border-radius: 16px; 
  padding: 32px 24px; 
  text-align: center; 
  position: relative; 
  display: flex; 
  flex-direction: column; 
  justify-content: space-between; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.02); 
}
.price-card.featured { 
  border-color: var(--primary-green); 
  box-shadow: 0 10px 30px rgba(8,145,178,0.1); 
  transform: scale(1.02); 
}
.popular-tag { 
  position: absolute; 
  top: -14px; 
  left: 50%; 
  transform: translateX(-50%); 
  background: var(--primary-green); 
  color: #fff; 
  padding: 4px 14px; 
  font-size: 11px; 
  font-weight: 700; 
  border-radius: 20px; 
  text-transform: uppercase; 
  white-space: nowrap;
}
.pkg-title { font-size: 18px; font-weight: 800; margin-bottom: 4px; line-height: 1.2; }
.pkg-img-wrapper {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0;
}
.pkg-display-img { 
  max-width: 100%; 
  max-height: 150px; 
  object-fit: contain; 
}
.pkg-price { font-size: 44px; font-weight: 800; color: var(--text-dark); margin: 10px 0 2px 0; }
.pkg-price span { font-size: 14px; font-weight: 500; color: var(--text-slate); }
.pkg-shipping { font-size: 12px; font-weight: 700; color: var(--primary-green); margin-bottom: 15px; }
.pkg-bonus-box { 
  background: #ecfeff; 
  border: 1px dashed var(--primary-green); 
  padding: 10px; 
  border-radius: 6px; 
  font-size: 12px; 
  font-weight: 600; 
  margin-bottom: 15px; 
  color: var(--accent-emerald); 
}

/* Package Choice CTA Elements */
.buy-btn { 
  background: #FF61F8; 
  color: #fff; 
  padding: 14px 24px; 
  border-radius: 6px; 
  text-decoration: none; 
  font-weight: 700; 
  display: block; 
  margin-top: auto; 
  box-shadow: 0 2px 8px rgba(255, 97, 248, 0.2);
  transition: background 0.2s ease, transform 0.1s ease;
}
.buy-btn:hover { background: #e146da; }
.buy-btn:active { transform: scale(0.98); }

/* Testimonial Image Styles */
.review-avatar-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-green);
  background: #f1f5f9;
  flex-shrink: 0;
}

/* Ingredients Presentational Forms */
.ing-card { 
  text-align: center; 
  padding: 30px 20px; 
  background: #fff; 
  border: 1px solid var(--border-color); 
  border-radius: 12px; 
  box-shadow: 0 4px 6px rgba(0,0,0,0.01); 
}
.ing-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.ing-desc { font-size: 14px; color: var(--text-slate); line-height: 1.6; }

/* Security & Shield Framework Boxes */
.guarantee-box { 
  display: flex; 
  gap: 32px; 
  background: #fff; 
  border: 1px solid var(--border-color); 
  padding: 40px; 
  border-radius: 16px; 
  align-items: center; 
  box-shadow: 0 4px 12px rgba(0,0,0,0.02); 
}
.guarantee-badge { 
  border: 4px solid var(--primary-green); 
  width: 120px; 
  height: 120px; 
  border-radius: 50%; 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center; 
  flex-shrink: 0; 
  color: var(--primary-green); 
}
.badge-number { font-size: 32px; font-weight: 800; line-height: 1; }
.badge-days { font-size: 12px; font-weight: 700; text-transform: uppercase; }
.alert-tag { font-size: 11px; font-weight: 700; color: #FF61F8; display: block; margin-bottom: 8px; text-transform: uppercase; }
.security-row { 
  display: flex; 
  gap: 20px; 
  margin-top: 18px; 
  font-size: 12px; 
  font-weight: 600; 
  color: var(--text-slate); 
  border-top: 1px solid var(--border-color); 
  padding-top: 14px; 
}

/* Accordion Layout Components */
.faq-item { background: #fff; border: 1px solid var(--border-color); padding: 20px; border-radius: 8px; margin-bottom: 12px; }
.faq-q { 
  font-size: 16px; 
  font-weight: 700; 
  color: var(--text-dark); 
  cursor: pointer; 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
}
.faq-a { 
  font-size: 14px; 
  color: var(--text-slate); 
  line-height: 1.6; 
  margin-top: 12px; 
  border-top: 1px solid var(--border-color); 
  padding-top: 12px; 
  display: none; 
}

/* Legal Footer Interface */
.main-footer { 
  background-color: #0f172a; 
  color: #94a3b8; 
  padding: 40px 20px; 
  border-top: 1px solid #1e293b; 
  text-align: center; 
}
.footer-nav-links { margin-bottom: 24px; font-size: 14px; font-weight: 500; }
.footer-nav-links a { color: #cbd5e1; text-decoration: none; margin: 0 8px; }
.footer-disclaimer { 
  font-size: 12px; 
  line-height: 1.6; 
  max-width: 900px; 
  margin: 0 auto 20px auto;
  color: #94a3b8; 
}
.copyright { font-size: 12px; color: #64748b; margin-top: 10px; }

/* Responsive Media Viewport Overrides */
@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  .guarantee-box { flex-direction: column; text-align: center; }
  .nav-menu { display: none; }
  .price-card.featured { transform: none; }
}/* Final Verdict Section & Color Updates */
.verdict-section {
  background: linear-gradient(135deg, #090d16 0%, #111827 100%);
  border-top: 3px solid var(--primary-green);
  border-bottom: 1px solid #111827;
  padding: 60px 20px;
}

/* Flexbox container keeping content tightly aligned */
.verdict-flex-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 950px;
  padding: 0;
}

/* Image container layout rules */
.verdict-image-box {
  flex: 0 0 220px; /* Locks image width to 220px on desktop layout sizes */
  display: flex;
  justify-content: center;
  align-items: center;
}

.verdict-display-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Dynamic placeholder background box if image filename is missing */
.verdict-img-fallback {
  width: 160px;
  height: 160px;
  background: rgba(8, 145, 178, 0.1);
  border: 2px dashed var(--primary-green);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--primary-green);
  font-size: 44px;
  text-align: center;
}

/* Text control element boundaries */
.verdict-text-block {
  flex: 1;
  text-align: left; /* Aligns body copy with image cleanly on desktop viewports */
}

.verdict-cta-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  display: block;
  width: 100%;
  max-width: 550px;
}

/* Adaptive mobile layout mechanics */
@media (max-width: 768px) {
  .verdict-flex-container {
    flex-direction: column; /* Stacks image element directly over text text fields */
    text-align: center;
    gap: 24px;
  }
  .verdict-text-block {
    text-align: center;
  }
  .verdict-image-box {
    flex: none;
    width: 150px;
  }
  .verdict-cta-box {
    margin: 0 auto;
  }
}