/* ==================== ROOT VARIABLES ==================== */
:root {
  --primary-color: #471f03;
  --accent-color: #ffc107;
  --accent-hover: #e0a800;
  --dark-bg: #031538;
}

/* ==================== RESET & BASE STYLES ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  color: #444;
  background-color: white;
  line-height: 1.5;
  font-size: 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 600;
}

/* ==================== HEADER STYLES ==================== */
.header {
  color: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background-color: white;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo h2 {
  color: black;
  font-weight: bold;
  font-size: 30px;
  margin: 0;
}

.glow-link {
  text-decoration: none;
  transition: color 0.3s ease;
}

.glow-link h2 {
  transition: text-shadow 0.3s ease;
  cursor: pointer;
}

.glow-link:hover h2 {
  color: rgb(90, 90, 90);
}

.newHeadBox {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links {
  display: flex;
  gap: 10px;
}

.nav-links a {
  color: black;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  font-size: 22px;
  padding: 0 12px;
}

.nav-links a:hover {
  color: var(--accent-color);
}

.order-button {
  background-color: var(--accent-color);
  color: black;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-flex;
  align-items: center;
  font-size: 24px;
}

.order-button::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  font-weight: 900;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 16V4H2V2h3a1 1 0 0 1 1 1v12h12.438l2-8H8V5h13.72a1 1 0 0 1 .97 1.243l-2.5 10a1 1 0 0 1-.97.757H5a1 1 0 0 1-1-1zm2 7a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm12 0a2 2 0 1 1 0-4 2 2 0 0 1 0 4z"/></svg>');
  margin-left: 5px;
}

.order-button:hover {
  background-color: var(--accent-hover);
}

/* Mobile Menu */
.mobile-menu-icon {
  background: none;
  border: none;
  color: black;
  font-size: 32px;
  cursor: pointer;
  display: none;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background-color: var(--dark-bg);
  color: #ffffff;
  padding: 60px 20px;
  transition: right 0.3s ease;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mobile-sidebar.open {
  right: 0;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 24px;
  padding: 10px 20px;
}

.close-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 32px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 250;
}

.sidebar-overlay.show {
  opacity: 1;
  visibility: visible;
}

.mobile-button {
  margin: 0 !important;
}

/* ==================== HERO SECTION STYLES ==================== */
.hero-header {
  width: 100%;
  background: var(--primary-color); /* deep navy blue */
  color: #ffffff;
  text-align: center;
  padding: 24px 12px;
  margin: 0 auto 0;
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  box-shadow: inset 0 -4px 0 rgba(235, 230, 230, 0.03);
}

.hero-header h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Responsive title scaling */
@media (min-width: 768px) {
  .hero-header h2 { font-size: 36px; }
}
@media (min-width: 1200px) {
  .hero-header h2 { font-size: 42px; }
}
.hero-section {
  display: grid;
  grid-template-columns: 540px 1fr;
  gap: 40px;
  align-items: start;
  padding: 30px 20px;
  max-width: 1200px;
  margin: 0 auto 20px;
  background: white;
}

.product-image {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}

.product-image img {
  width: 520px;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(3,21,56,0.12);
}

/* Product info (right column) */
.product-info {
  padding: 0 10px;
  color: #222;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.product-info .rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.stars {
  display:flex;
  gap:4px;
  align-items:center;
}

.stars svg { width:18px; height:18px; fill:#2ecc71; }

/* Reviews count */
.reviews-count {
  color:#555;
  font-weight:600;
  margin-left:6px;
  font-size:16px;
}

/* Headline */
.product-info h2 {
  font-size:44px;
  margin:6px 0 8px 0;
  font-weight:800;
  color:#0b1220;
  letter-spacing: -0.5px;
}

/* Subheadline */
.product-info .subhead {
  font-weight:700;
  margin-bottom:14px;
  color:#111;
  font-size:20px;
}

/* Bullets with green check icons */
.benefits-lists {
  list-style:none;
  padding:0;
  margin:12px 0 18px 0;
}

.benefits-lists li {
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:12px;
  font-size:18px;
  color:#222;
}

.benefits-lists li .check {
  min-width:28px;
  min-height:28px;
  border-radius:6px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(180deg,#e6f8ef,#c9f0df);
  color:#1b8a4d;
  font-weight:800;
  box-shadow: 0 3px 8px rgba(27,138,77,0.12);
}

/* CTA */
.cta-buttons {
  margin-top:16px;
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
}

.cta-button {
  background:#f6c53a;
  color:#0b1220;
  padding:14px 28px;
  border-radius:999px;
  font-weight:800;
  text-decoration:none;
  box-shadow: 0 10px 30px rgba(246,197,58,0.18);
  display:inline-flex;
  align-items:center;
  gap:10px;
}

/* Urgency timer style */
.offer-row {
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:12px;
}

.timer {
  background:#ff3b3b;
  color:white;
  padding:8px 12px;
  border-radius:8px;
  font-weight:800;
  display:inline-flex;
  gap:8px;
  align-items:center;
}

.timer .box {
  background:rgba(255,255,255,0.12);
  padding:6px 8px;
  border-radius:6px;
}

/* Certifications below */
.cert-row {
  display:flex;
  gap:18px;
  align-items:center;
  margin-top:20px;
  flex-wrap:wrap;
}

.cert-row img {
  height:48px;
  object-fit:contain;
}

/* Responsive adjustments */
@media (max-width: 980px) {
  .hero-section { grid-template-columns: 1fr; padding: 20px; }
  .product-image img { width: 420px; max-width: 100%; }
  .product-info h2 { font-size:34px; }
}

@media (max-width: 520px) {
  .product-image { order:-1; }
  .product-image img { width: 320px; }
  .product-info h2 { font-size:26px; }
  .benefits-lists li { font-size:15px; }
  .cta-button { width:100%; justify-content:center; padding:12px 18px; }
}

/* Small utility */
.product-title { text-align:center; margin:16px 0 8px; font-weight:700; color:#eeeff1;}


/* ==================== CERTIFICATIONS SECTION ==================== */
.certifications {
  background-color: white;
  padding: 0 0 40px 0;
  text-align: center;
  color: #333;
}

.certifications h2 {
  background-color: var(--primary-color);
  color: white;
  margin: 0 0 30px 0;
  padding: 20px 0;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: bold;
}

.certification-badges {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 5px;
  padding: 0 10px;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 250px;
  background-color: #f5f5f5;
  padding: 10px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.badge img {
  width: auto;
  height: auto;
  max-width: 250px;
  max-height: 250px;
  object-fit: contain;
  margin-bottom: 5px;
  padding: 5px;
  transition: transform 0.3s ease;
}

.badge:hover img {
  transform: scale(1.1);
}

.badge-title {
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
  font-size: 24px;
  margin-top: 5px;
}

.badge-description {
  font-size: 20px;
  text-align: center;
  line-height: 1.4;
  color: #000;
  margin: 10px 0;
}

/* Certifications Responsive */
@media (max-width: 768px) {
  .certifications h2 {
    font-size: 25px;
  }

  .certification-badges {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .badge {
    margin-bottom: 20px;
    max-width: 350px;
  }

  .badge-title {
    font-size: 22px;
  }

  .badge-description {
    font-size: 18px;
  }
}

/* ==================== PRODUCT DETAILS SECTION (WHAT IS SYNOGUT) ==================== */
.section-title-banner {
  background: var(--primary-color); /* bright blue band like reference */
  color: #fff;
  text-align: center;
  padding: 26px 12px;
  margin-bottom: 18px;
  box-shadow: inset 0 -6px 0 rgba(0,0,0,0.02);
}
.section-title-banner h2 {
  margin: 0;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: 0.5px;
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Container/grid */
.product-details-content {
  max-width: 1200px;
  margin: 0 auto 48px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 520px 1fr; /* image left, text right on wide screens */
  gap: 40px;
  align-items: center;
  background: #fff;
}

/* Image */
.product-details-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(3,21,56,0.08);
  display: block;
  margin-left: 12px; /* slight offset like reference */
}

/* Text column */
.product-details-text { font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; color:#222; }
.product-details-text .lead {
  font-size: 18px;
  line-height: 1.65;
  color: #444;
  margin: 0 0 18px 0;
  max-width: 60ch;
}

/* Feature list with green check */
.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
}
.product-features li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 17px;
  color: #222;
  line-height: 1.45;
}
.product-features .check {
  min-width: 30px;
  min-height: 30px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg,#e6f8ef,#c9f0df);
  color: #0b8a4d;
  font-weight: 800;
  box-shadow: 0 3px 10px rgba(20,120,70,0.08);
}

/* Guarantee */
.guarantee {
  margin-top: 8px;
  font-weight: 700;
  color: #222;
}

/* CTA button */
.product-cta-row { margin-top: 18px; }
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f6c53a;
  color: #0b1220;
  padding: 16px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 12px 34px rgba(246,197,58,0.18);
  transition: transform .12s ease, box-shadow .12s ease;
  font-size: 18px;
}
.btn-cta:hover, .btn-cta:focus {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(246,197,58,0.22);
  outline: none;
}

/* Responsive: stack on small screens and show image above text */
@media (max-width: 920px) {
  .product-details-content {
    grid-template-columns: 1fr;
  }
  .product-details-image { order: -1; display:flex; justify-content:center; }
  .section-title-banner h2 { font-size: 36px; padding: 20px 12px; }
  .product-details-content { gap: 20px; }
  .product-details-image img { max-width: 360px; margin-left: 0; }
  .product-features li { font-size: 16px; }
  .btn-cta { width: 100%; justify-content: center; padding: 14px; font-size: 16px; }
}

/* Small tweak for very narrow phones */
@media (max-width: 420px) {
  .section-title-banner h2 { font-size: 28px; }
  .product-details-text .lead { font-size: 15px; }
  .product-features li { font-size: 15px; }
}

/* ==================== HOW IT WORKS SECTION ==================== */
/* Blue title banner */
.section-title-banner {
  background: var(--primary-color);
  color: #fff;
  text-align: center;
  padding: 26px 12px;
  margin-bottom: 28px;
}
.section-title-banner h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 800;
  text-transform: capitalize;
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Content wrapper */
.how-it-works-content {
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 0 20px;
  color: #222;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* Intro paragraph */
.how-intro {
  font-size: 17px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}

/* Subtitle */
.how-subtitle {
  font-weight: 700;
  font-size: 20px;
  color: #111;
  margin-bottom: 20px;
  text-align: left;
}

/* Steps */
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
}

.how-step p {
  font-size: 17px;
  line-height: 1.55;
  color: #222;
}

.how-step .check {
  display: inline-block;
  margin-right: 8px;
  font-size: 20px;
  background: linear-gradient(180deg,#e6f8ef,#c9f0df);
  color: #1b8a4d;
  border-radius: 4px;
  padding: 3px 6px;
}

/* End note */
.how-end-note {
  margin-top: 18px;
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  text-align: center;
}

/* CTA button reuse */
.cta-section {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}
.cta-button {
  background: #f6c53a;
  color: #0b1220;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(246,197,58,0.18);
  transition: transform .15s ease, box-shadow .15s ease;
}
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(246,197,58,0.22);
}

/* Responsive */
@media (max-width: 768px) {
  .section-title-banner h2 { font-size: 34px; }
  .how-intro, .how-step p { font-size: 16px; }
  .cta-button { width: 100%; justify-content: center; padding: 14px; }
}

/* ==================== CUSTOMER REVIEWS SECTION ==================== */
.reviews-top-banner {
  background: var(--primary-color);
  color: #fff;
  text-align: center;
  padding: 22px 12px;
  margin-bottom: 20px;
}
.reviews-top-banner h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* wrapper */
.reviews-wrapper {
  max-width: 1200px;
  margin: 0 auto 70px;
  padding: 0 16px;
}

/* Top photos row */
.reviewer-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 28px;
}
.photo-item {
  background: #fff;
  padding: 18px;
  border-radius: 6px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 18px 40px rgba(3,21,56,0.06);
}
.photo-item img {
  width: 100%;
  height: auto;
  max-width: 360px;
  object-fit: cover;
  display:block;
  border-radius: 4px;
}

/* Reviews grid (cards) */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Individual review card */
.review-card {
  background: #fff;
  padding: 26px;
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(3,21,56,0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 340px;
}

/* Stars */
.review-card .stars {
  color: #ffb300;
  font-size: 20px;
  letter-spacing: 3px;
}
.review-card .star { margin-right: 4px; }

/* Card head: title + verified */
.card-head {
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}
.card-head h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #0b1220;
}
.verified {
  display:flex;
  align-items:center;
  gap:6px;
  color:#1b8a4d;
}

/* Review text */
.review-text {
  color: #333;
  font-size: 16px;
  line-height: 1.7;
  margin-top: 4px;
  flex: 1 1 auto;
}

/* Author */
.review-author {
  font-weight: 700;
  color: #111;
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 1000px) {
  .reviewer-photos { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .reviewer-photos { grid-template-columns: 1fr; gap: 14px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 14px; }
  .reviews-top-banner h2 { font-size: 28px; padding: 18px 12px; }
  .review-card { min-height: auto; }
}

/* ==================== PRICING SECTION ==================== */
.image-grid-section {
  padding: 0;
  background-color: white;
  text-align: center;
  margin-top: 0;
}

.image-grid-section h2 {
  background-color: #d93636;
  color: white;
  margin: 0;
  padding: 30px 10px 40px;
  font-size: 32px;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1.4;
}

.off-white-background {
  position: relative;
  width: 100%;
  height: 0;
}

.buying-background {
  background: #d93636;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  top: -1px;
}

.g-arrow {
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  height: 30px;
  width: 100%;
}

.p-4 {
  padding: 0;
}

.pricing-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 50px auto 40px;
  padding: 0 20px;
  max-width: 1300px;
  align-items: flex-start;
}

.product-card {
  background-color: #d93636;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.card-header {
  color: #ffffff;
  padding: 15px 10px;
  font-size: 1.6em;
  font-weight: 700;
  border-radius: 15px 15px 0 0;
  line-height: 1.2;
}

.supply-days {
  display: block;
  font-size: 0.55em;
  font-weight: 400;
  margin-top: 5px;
}

.header-1x,
.header-3x {
  background-color: #d93636;
  margin-top: 15px;
}

.header-6x {
  background-color: #8b3030;
  
}

.card-content {
  padding: 30px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  background-color: rgb(255, 255, 255);
  border-radius: 0 0 15px 15px;
}

.product-image-new {
  width: 100%;
  max-width: 100%;
  height: 200px;
  margin-bottom: 20px;
  object-fit: contain;
}

.price-section {
  margin-bottom: 15px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  width: 100%;
}

.current-price {
  font-size: 3.5em;
  font-weight: 700;
  color: #333;
  line-height: 1;
}

.per-bottle {
  font-size: 1.3em;
  color: #666;
  margin-left: 8px;
}

.ebooks {
  background-color: #fff;
  color: #ff9900;
  border: 2px dashed #ff9900;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: 20px;
}

.buy-now-btn {
  background-color: #ffc107;
  color: #000;
  border: none;
  padding: 18px 50px;
  border-radius: 50px;
  font-size: 1.5em;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 1px;
}

.buy-now-btn:hover {
  background-color: #ffcd38;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.total-price {
  font-size: 1.2em;
  color: #333;
  margin: 15px 0;
  font-weight: 600;
}

.original-total {
  text-decoration: line-through;
  color: #999;
  margin-right: 8px;
  font-weight: 400;
  font-size: 0.9em;
}

.discounted-total {
  color: #000;
  font-size: 1.4em;
  font-weight: 700;
}

.payment-methods {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 15px;
}

.payment-methods img {
  height: 30px;
  width: auto;
  object-fit: contain;
}

/* Best Value Card */
.product-card.best-value {
  background-color: #fffacd;
}

.product-card.best-value .card-content {
  background-color: #fffacd;
}

/* Pricing Responsive */
@media (max-width: 1100px) {
  .pricing-container {
    gap: 25px;
  }
}

@media (max-width: 900px) {
  .pricing-container {
    flex-direction: column;
    align-items: center;
  }

  .product-card {
    max-width: 450px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .image-grid-section h2 {
    font-size: 26px;
    padding: 25px 15px 35px;
  }
  
  .pricing-container {
    margin: 40px auto 30px;
    padding: 0 15px;
  }

  .product-card {
    max-width: 400px;
  }

  .card-header {
    font-size: 1.4em;
  }
}

@media (max-width: 500px) {
  .image-grid-section h2 {
    font-size: 22px;
    padding: 20px 10px 30px;
  }

  .buy-now-btn {
    padding: 15px 40px;
    font-size: 1.3em;
  }

  .current-price {
    font-size: 2.8em;
  }

  .card-header {
    font-size: 1.3em;
    padding: 12px 8px;
  }
}

@media (max-width: 425px) {
  .g-arrow {
    height: 25px;
  }
  
  .product-card {
    min-width: 100%;
  }
}

/* ==================== BONUSES SECTION ==================== */
.bonuses-section {
  padding: 0;
  background-color: white;
  color: #333;
  max-width: 100%;
  margin: 0 auto;
  font-size: 20px;
}

.bonuses-section h2 {
  background-color: var(--primary-color);
  color: white;
  margin: 0;
  padding: 20px 0;
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
}

.ebook-bonus-section {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 40px 20px;
  flex-wrap: wrap;
  background-color: #fff;
}

.ebook-card {
  flex: 1 1 45%;
  max-width: 500px;
  text-align: center;
  border: 1px solid black;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.ebook-card img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 10px;
}

.ebook-text {
  margin-top: 20px;
  font-size: 15px;
  color: #000;
}

.ebook-text strong {
  font-size: 16px;
  display: block;
  margin-bottom: 5px;
}

.ebook-text p {
  margin-top: 10px;
  line-height: 1.6;
  text-align: left;
}

/* Bonuses Responsive */
@media (max-width: 768px) {
  .ebook-bonus-section {
    flex-direction: column;
    align-items: center;
  }

  .ebook-card {
    flex: 1 1 100%;
    max-width: 90%;
    margin-bottom: 30px;
  }

  .ebook-text {
    font-size: 14px;
    padding: 0 10px;
  }

  .bonuses-section h2 {
    font-size: 25px;
  }
}

/* ==================== INGREDIENTS SECTION (ENHANCED) ==================== */
.ingredients-section {
  padding: 0 0 60px 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
  color: #333;
  max-width: 100%;
  margin: 0 auto;
  font-size: 20px;
}

.ingredients-section h2 {
  background-color: var(--primary-color);
  color: white;
  margin: 0 0 30px 0;
  padding: 25px 20px;
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  letter-spacing: 1px;
}

.ingredients-intro {
  margin: 0 auto 50px auto;
  line-height: 1.7;
  padding: 0 20px;
  max-width: 1200px;
  text-align: center;
  font-size: 20px;
  color: #444;
}

.ingredients-list {
  list-style: none;
  padding: 0 20px;
  margin: 0 auto;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
}

.ingredient-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.ingredient-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.ingredient-number {
  min-width: 60px;
  min-height: 60px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #052554 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(3, 21, 56, 0.3);
  transition: all 0.3s ease;
}

.ingredient-item:hover .ingredient-number {
  transform: rotate(360deg) scale(1.1);
  background: linear-gradient(135deg, var(--accent-color) 0%, #e0a800 100%);
}

.ingredient-content {
  flex: 1;
}

.ingredient-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.ingredient-description {
  margin: 0;
  line-height: 1.7;
  color: #555;
  font-size: 18px;
}

/* Ingredients Responsive */
@media (max-width: 1024px) {
  .ingredients-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ingredients-section h2 {
    font-size: 25px;
    padding: 20px 15px;
  }

  .ingredients-intro {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .ingredients-list {
    gap: 20px;
    padding: 0 10px;
  }

  .ingredient-item {
    padding: 20px;
    gap: 20px;
  }

  .ingredient-number {
    min-width: 50px;
    min-height: 50px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .ingredient-title {
    font-size: 20px;
  }

  .ingredient-description {
    font-size: 16px;
  }
}

@media (max-width: 500px) {
  .ingredients-list {
    grid-template-columns: 1fr;
  }

  .ingredient-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 15px;
  }

  .ingredient-number {
    margin-bottom: 10px;
  }
}

/* ==================== SCIENCE & GUARANTEE SECTION ==================== */
.science-section {
  padding: 40px 0;
  background-color: white;
  text-align: center;
  color: #333;
  font-size: 20px;
}

.cert-logos {
  background-color: #000;
  padding: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cert-logos img {
  width: auto;
  max-width: 100%;
  height: auto;
}

.science-heading {
  font-size: 30px;
  font-weight: 700;
  margin: 40px 0 30px 0;
  text-transform: uppercase;
  color: #333;
}

.science-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0 auto 40px;
  max-width: 1200px;
  padding: 0 20px;
}

.science-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 300px;
  text-align: center;
  gap: 15px;
  flex: 1;
  min-width: 250px;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.step-title {
  font-weight: 700;
  font-size: 22px;
  margin: 0;
  color: #333;
}

.step-desc {
  line-height: 1.6;
  margin: 0;
  font-size: 18px;
  color: #555;
}

.step-arrow {
  font-size: 40px;
  font-weight: bold;
  color: var(--primary-color);
  align-self: center;
  margin: 0 10px;
}

.guarantee-block {
  background-color: #ffffff;
  padding: 40px 20px;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  flex-wrap: wrap;
  background-color: var(--primary-color);
  border-radius: 15px;
  padding: 40px;
}

.guarantee-badge {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-badge img {
  width: 100%;
  max-width: 300px;
  height: auto;
}

.guarantee-text {
  flex: 1;
  min-width: 300px;
}

.guarantee-text h3 {
  color: white;
  font-size: 28px;
  margin: 0 0 20px 0;
  font-weight: 700;
}

.guarantee-text p {
  margin: 0;
  line-height: 1.7;
  color: white;
  font-size: 18px;
}

/* Science Section Responsive */
@media (max-width: 768px) {
  .science-heading {
    font-size: 25px;
    margin: 20px 0 20px;
  }

  .science-steps {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .step-arrow {
    display: none;
  }

  .science-step {
    max-width: 100%;
  }

  .guarantee-content {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    border-radius: 0;
  }

  .guarantee-badge {
    order: -1;
  }

  .guarantee-badge img {
    max-width: 250px;
  }

  .guarantee-text h3 {
    font-size: 24px;
    text-align: center;
  }

  .guarantee-text p {
    font-size: 16px;
    text-align: justify;
  }

  .cert-logos {
    padding: 20px 10px;
  }

  .cert-logos img {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .step-title {
    font-size: 20px;
  }

  .step-desc {
    font-size: 16px;
  }
}

/* ==================== BENEFITS SECTION ==================== */
.benefits-section {
  background-color: white;
  color: #333;
  padding: 0 0 60px 0;
  text-align: left;
}

.benefits-section h2 {
  background-color: var(--primary-color);
  color: white;
  margin: 0 0 30px 0;
  padding: 20px 0;
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
}

.benefits-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.benefits-intro {
  font-size: 20px;
  line-height: 1.5;
  margin: 0 auto 40px auto;
  max-width: 1200px;
  text-align: center;
  color: #444;
}

.benefits-list {
  list-style: none;
  padding: 0;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  text-align: left;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 20px;
}

.benefit-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.benefit-content {
  flex: 1;
}

.benefit-title {
  font-weight: 700;
  font-size: 20px;
  color: #222;
  margin-bottom: 6px;
  line-height: 1.3;
}

.benefit-desc {
  font-size: 20px;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

.checkmark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--primary-color);
  flex-shrink: 0;
  position: relative;
  margin-top: 2px;
}

.checkmark::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
}

/* Benefits Responsive */
@media (max-width: 768px) {
  .benefits-section h2 {
    font-size: 25px;
  }

  .benefits-intro {
    font-size: 18px;
  }

  .benefit-title {
    font-size: 18px;
  }

  .benefit-desc {
    font-size: 18px;
  }

  .benefits-section {
    padding: 0 0 10px 0;
  }
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
  background: #fff;
  color: #333;
  padding: 0;
  font-size: 20px;
}

.faq-heading {
  background-color: var(--primary-color);
  color: #fff;
  margin: 0 0 40px 0;
  padding: 20px 0;
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
}

.faq-questions {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  max-width: 1200px;
  font-size: 20px;
}

.faq-item {
  padding: 15px 20px;
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-item:hover {
  background: #f7f7f7;
}

.faq-q {
  font-weight: 600;
  display: block;
  position: relative;
}

.faq-q::after {
  content: "+";
  float: right;
  font-weight: bold;
  font-size: 24px;
}

.faq-item.open .faq-q::after {
  content: "-";
}

.faq-a {
  margin-top: 15px;
  color: #555;
  font-size: 18px;
  line-height: 1.6;
  display: none;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-banners {
  display: flex;
  align-items: center;
  background: var(--primary-color);
  border: 1px solid #ccc;
  padding: 25px 30px;
  max-width: 1200px;
  margin: 40px auto;
  flex-wrap: wrap;
  border-radius: 15px;
}

.banner-image {
  width: 50%;
  display: flex;
  justify-content: center;
}

.banner-image img {
  width: 80%;
  max-width: 400px;
  height: auto;
}

.banner-content {
  width: 50%;
}

.banner-content h3 {
  margin: 0 0 20px 0;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}

.max-button-padding {
  padding: 14px 22px;
  font-size: 30px;
}

.faq-answer-block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.6;
  font-size: 20px;
}

.faq-answer-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.faq-text-content {
  flex: 1;
  min-width: 300px;
}

.faq-image-content {
  flex: 0 0 auto;
  max-width: 500px;
  width: 100%;
}

.checkout-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid #e0e0e0;
}

.faq-answer-block h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: var(--primary-color);
}

.answer-subheading {
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 5px;
}

.bottom-banner {
  flex-direction: column;
  text-align: center;
  gap: 10px;
  max-width: none;
  width: 100%;
  margin: 20px 0;
  border: none;
  padding: 0;
}

.bottom-banner h3 {
  background: var(--primary-color);
  color: #fff;
  width: 100%;
  padding: 15px 0;
  margin: 0;
  font-size: 40px;
}

.bottom-banner img {
  max-width: 550px;
  width: 100%;
  height: auto;
  padding: 10px;
}

.bottom-banner .regular-price.small {
  font-size: 18px;
  margin: 10px 0 5px 0;
  color: #000;
  font-weight: bold;
}

.bottom-banner .discounted {
  font-size: 25px;
  color: #000;
  margin-bottom: 20px;
  display: block;
}

/* FAQ Responsive */
@media (max-width: 768px) {
  .faq-heading {
    font-size: 25px;
    margin: 0 0 20px;
  }

  .faq-banners {
    flex-direction: column;
    padding: 20px;
    margin: 20px;
  }

  .banner-image,
  .banner-content {
    width: 100%;
    text-align: center;
  }

  .banner-content h3 {
    font-size: 25px;
  }

  .faq-answer-block {
    padding: 20px 10px;
  }

  .faq-answer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .faq-image-content {
    order: -1; /* Image appears first on mobile */
    max-width: 100%;
  }
  
  .faq-answer-block h3 {
    margin: 0 0 10px;
    font-size: 20px;
  }

  .bottom-banner h3 {
    font-size: 25px;
  }
}

@media (max-width: 480px) {
  .checkout-image {
    border-radius: 5px;
  }
}

/* ==================== FOOTER SECTION ==================== */
.footer-section {
  background: #fff;
  border-top: 1px solid #000;
  padding: 30px 20px 50px;
  font-size: 14px;
  color: #000;
}

.footer-disclaimer {
  padding: 15px;
  margin: 0 auto 15px auto;
}

.footer-disclaimer p {
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 14px;
  text-align: justify;
  color: #000;
}

.footer-bottom {
  border: 2px solid #000;
  border-radius: 25px;
  padding: 25px;
  text-align: center;
  
  margin: 0 auto;
  background: #b3b3b300;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 20px;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: #000;
  background-color: transparent;
  text-decoration: none;
  transition: transform 0.3s ease;
  border: 1px solid #000;
}

.social-icons a:hover {
  transform: scale(1.1);
  background-color: #8c8c8c;
}

.social-icons i {
  font-size: 18px;
}

.footer-links {
  margin-bottom: 15px;
  font-size: 14px;
}

.footer-links a {
  color: #000;
  text-decoration: none;
  margin: 0 3px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copy {
  font-size: 14px;
  color: #000;
  margin: 0;
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer-disclaimer p {
    text-align: left;
    padding: 0 10px;
  }

  .footer-bottom {
    margin: 0 5px;
    padding: 20px 15px;
  }

  .social-icons {
    gap: 12px;
  }

  .social-icons a {
    width: 40px;
    height: 40px;
  }

  .social-icons i {
    font-size: 16px;
  }

  .footer-section {
    padding: 20px 10px;
  }
}

/* ==================== BOTTOM CTA BANNER ==================== */
.bottom-cta-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #052554 100%);
  color: white;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
  transition: transform 0.3s ease;
  border-top: 3px solid var(--accent-color);
}

.bottom-cta-banner.hidden {
  transform: translateY(100%);
}

.cta-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  flex-wrap: wrap;
  gap: 15px;
  position: relative;
}

.cta-banner-text h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-color);
}

.cta-banner-text p {
  margin: 0;
  font-size: 14px;
  color: #ffffff;
  opacity: 0.9;
}

.cta-banner-price {
  text-align: center;
}

.cta-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
}

.cta-original-price {
  font-size: 12px;
  color: #ccc;
  text-decoration: line-through;
}

.cta-banner-button {
  background-color: var(--accent-color);
  color: #000;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.cta-banner-button:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.cta-banner-button svg {
  width: 16px;
  height: 16px;
}

.cta-banner-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.cta-banner-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-banner-content {
    flex-direction: column;
    text-align: center;
    padding: 12px 15px;
    gap: 10px;
  }

  .cta-banner-text h4 {
    font-size: 16px;
  }

  .cta-banner-text p {
    font-size: 13px;
  }

  .cta-price {
    font-size: 20px;
  }

  .cta-banner-button {
    padding: 10px 20px;
    font-size: 14px;
  }

  .cta-banner-close {
    top: 5px;
    right: 10px;
  }
}

@media (max-width: 480px) {
  .cta-banner-content {
    padding: 10px 12px;
  }

  .cta-banner-text h4 {
    font-size: 14px;
  }

  .cta-price {
    font-size: 18px;
  }
}

/* ==================== LEGAL PAGES STYLES ==================== */
.legal-page {
  min-height: 100vh;
  background-color: #fff;
  font-family: 'Roboto Condensed', sans-serif;
}

.legal-page-header {
  background-color: var(--primary-color);
  color: white;
  padding: 40px 0;
  text-align: center;
  margin: 0;
}

.legal-page-header h1 {
  font-size: 48px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'Roboto Condensed', sans-serif;
}

.legal-content {
  padding: 60px 0;
  background-color: #fff;
}

.legal-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.legal-content h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 30px;
  font-weight: 600;
  font-family: 'Roboto Condensed', sans-serif;
}

.legal-content h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin: 40px 0 20px 0;
  font-weight: 600;
  font-family: 'Roboto Condensed', sans-serif;
}

.legal-content h4 {
  font-size: 20px;
  color: #333;
  margin: 30px 0 15px 0;
  font-weight: 600;
  font-family: 'Roboto Condensed', sans-serif;
}

.legal-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
  text-align: justify;
}

.legal-content ul,
.legal-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.legal-content li {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 10px;
}

.legal-content strong {
  color: #333;
  font-weight: 600;
}

.legal-content em {
  font-style: italic;
  color: var(--primary-color);
}

.legal-highlight {
  background-color: #f8f9fa;
  border-left: 4px solid var(--accent-color);
  padding: 20px;
  margin: 30px 0;
  border-radius: 5px;
}

.legal-highlight p {
  margin-bottom: 0;
  font-weight: 500;
}

.legal-divider {
  border: none;
  height: 2px;
  background-color: #e9ecef;
  margin: 40px 0;
}

.legal-section {
  margin-bottom: 50px;
}

.legal-subsection {
  margin-bottom: 30px;
}

.contact-info {
  background-color: var(--primary-color);
  color: white;
  padding: 25px;
  border-radius: 10px;
  margin: 40px 0;
}

.contact-info h3 {
  color: var(--accent-color);
  margin-top: 0;
}

.contact-info p {
  color: white;
  margin-bottom: 10px;
  text-align: left;
}

.contact-info a {
  color: var(--accent-color);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.effective-date {
  font-style: italic;
  color: #666;
  font-size: 16px;
  margin-bottom: 30px;
  text-align: center;
}

.legal-navigation {
  margin-top: 50px;
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #e9ecef;
}

.legal-back-link {
  display: inline-flex;
  align-items: center;
  background-color: var(--accent-color);
  color: #000;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  margin-right: 15px;
  margin-bottom: 10px;
}

.legal-back-link:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}

.legal-nav-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.legal-nav-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border: 1px solid var(--primary-color);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.legal-nav-link:hover {
  background-color: var(--primary-color);
  color: white;
}

.legal-nav-link.active {
  background-color: var(--primary-color);
  color: white;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.legal-table th,
.legal-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
}

.legal-table th {
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
}

.legal-table tr:hover {
  background-color: #f8f9fa;
}

.legal-notice {
  background-color: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 5px;
  padding: 20px;
  margin: 30px 0;
}

.legal-notice h4 {
  color: #856404;
  margin-top: 0;
}

.legal-notice p {
  color: #856404;
  margin-bottom: 0;
}

.last-updated {
  text-align: right;
  font-style: italic;
  color: #666;
  font-size: 14px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

/* Legal Pages Responsive */
@media (max-width: 768px) {
  .legal-page-header {
    padding: 30px 0;
  }

  .legal-page-header h1 {
    font-size: 32px;
    letter-spacing: 1px;
    padding: 0 15px;
  }

  .legal-content {
    padding: 40px 0;
  }

  .legal-container {
    padding: 0 15px;
  }

  .legal-content h2 {
    font-size: 24px;
  }

  .legal-content h3 {
    font-size: 20px;
    margin: 30px 0 15px 0;
  }

  .legal-content h4 {
    font-size: 18px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 16px;
    text-align: left;
  }

  .legal-back-link {
    font-size: 14px;
    padding: 10px 20px;
  }

  .legal-nav-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .legal-nav-link {
    width: 200px;
    text-align: center;
  }

  .legal-table {
    font-size: 14px;
  }

  .legal-table th,
  .legal-table td {
    padding: 10px 8px;
  }

  .contact-info {
    padding: 20px 15px;
  }
}

@media (max-width: 480px) {
  .legal-page-header h1 {
    font-size: 28px;
  }

  .legal-content h2 {
    font-size: 20px;
  }

  .legal-content h3 {
    font-size: 18px;
  }

  .legal-content h4 {
    font-size: 16px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 15px;
  }

  .legal-highlight,
  .legal-notice,
  .contact-info {
    padding: 15px;
  }

  .legal-table {
    font-size: 12px;
  }

  .legal-table th,
  .legal-table td {
    padding: 8px 6px;
  }
}

/* Print Styles for Legal Pages */
@media print {
  .legal-navigation,
  .legal-back-link,
  .legal-nav-links {
    display: none;
  }

  .legal-page-header {
    background-color: #333 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    color-adjust: exact;
  }

  .legal-content {
    font-size: 12px;
  }

  .legal-content h2,
  .legal-content h3,
  .legal-content h4 {
    page-break-after: avoid;
  }

  .legal-section {
    page-break-inside: avoid;
  }
}

/* ===== Mobile: slide-down menu (appears under sticky header) ===== */

/* mobile menu icon visible on small screens */
.mobile-menu-icon { display: none; }
@media (max-width: 920px) {
  .mobile-menu-icon { display: inline-block; z-index: 1600; position: relative; }
  .newHeadBox .nav-links, .newHeadBox .order-button { display: none; } /* hide desktop nav on mobile */
}

/* Slide-down mobile panel positioned under the header */
.mobile-sidebar {
  position: fixed;
  top: 64px;                    /* match header height (adjust if your header taller) */
  left: 0;
  right: 0;
  width: 100%;
  max-height: 0;                /* collapsed by default */
  overflow: hidden;
  background: linear-gradient(180deg,#071833,#08193a);
  color: #fff;
  padding: 0 12px;              /* horizontal padding while collapsed */
  box-shadow: 0 12px 30px rgba(3,21,56,0.24);
  transition: max-height .34s ease, padding .24s ease;
  z-index: 1500;                /* below header (header z-index = 100; but header is sticky so it's fine) */
  border-top: 3px solid rgba(255,193,7,0.06);
}

/* open state — allow room for menu items */
.mobile-sidebar.open {
  max-height: 420px;            /* adjust if you add more links */
  padding: 12px 12px 18px;
}

/* close button */
.mobile-sidebar .close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

/* nav inside */
.sidebar-nav { display:flex; flex-direction:column; gap:14px; margin-top:8px; padding-top:8px; }
.sidebar-nav a {
  color: #fff;
  text-decoration: none;
  font-weight:700;
  font-size:18px;
  padding: 10px 12px;
  border-radius:8px;
  background: transparent;
}

/* mobile CTA */
.mobile-sidebar .mobile-button {
  display: block;
  margin: 6px 0 0;
  background: #10e37a;
  color: #04221a;
  padding: 12px;
  text-align:center;
  font-weight:900;
  border-radius: 8px;
}

/* overlay (dim background) — optional, sits under header so header remains visible */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease;
  z-index: 1400;
}

.sidebar-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Keep page content pushed correctly if header is fixed */
@media (max-width: 920px) {
  body {
    padding-top: 64px;
  }
}