/* ============================================================
   MAX FORCE GUMMIES — style.css
   Color palette: Deep navy #0F1E3C | Gold #C9952A | Warm white #F7F4EE | Dark text #1A1A2E
   ============================================================ */

:root {
  --navy:      #0F1E3C;
  --navy-mid:  #1A3060;
  --gold:      #C9952A;
  --gold-lt:   #E8B84B;
  --cream:     #F7F4EE;
  --white:     #FFFFFF;
  --text-dark: #1A1A2E;
  --text-mid:  #3D3D5C;
  --text-light:#6B6B8A;
  --border:    #D6D0C4;
  --green:     #2E7D32;
  --green-lt:  #E8F5E9;
  --red:       #B71C1C;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 19px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(24px, 3vw, 32px); }
h2 { font-size: clamp(20px, 2.5vw, 27px); }
h3 { font-size: clamp(18px, 2vw, 22px); }
h4 { font-size: 19px; }
p  { margin-bottom: 1em; max-width: 72ch; }

/* ---- Layout ---- */
.mf-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.mf-section   { padding: 70px 0; }
.mf-section-alt { padding: 70px 0; background: var(--cream); }
.text-center  { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }

/* ---- Header / Nav ---- */
.mf-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.mf-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.mf-logo { display: flex; align-items: center; gap: 10px; }
.mf-logo img { height: 48px; width: auto; }
.mf-logo-text { color: var(--white); font-weight: 700; font-size: 20px; letter-spacing: -.3px; }

.mf-nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.mf-nav a {
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background .2s, color .2s;
}
.mf-nav a:hover { color: var(--white); background: rgba(255,255,255,.12); text-decoration: none; }
.mf-nav .nav-order {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 6px;
}
.mf-nav .nav-order:hover { background: var(--gold-lt); }

/* Hamburger */
.mf-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.mf-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }

/* ---- Hero ---- */
.mf-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #2A4A7F 100%);
  padding: 70px 0 50px;
  color: var(--white);
}
.mf-hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 50px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.mf-hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.mf-hero h1 { color: var(--white); margin-bottom: 16px; }
.mf-hero h1 span { color: var(--gold-lt); }
.mf-hero p  { color: rgba(255,255,255,.88); font-size: 19px; max-width: 54ch; }
.mf-hero-bullets { list-style: none; margin: 22px 0; }
.mf-hero-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  color: rgba(255,255,255,.9);
  font-size: 17px;
  padding: 5px 0;
}
.mf-hero-bullets li::before {
  content: '✓';
  color: var(--gold-lt);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.mf-hero-img-wrap { text-align: center; }
.mf-hero-img-wrap img { max-height: 420px; width: auto; margin: 0 auto; filter: drop-shadow(0 8px 30px rgba(0,0,0,.4)); }

.mf-trust-strip {
  display: flex; gap: 18px; flex-wrap: wrap; margin-top: 28px;
}
.mf-trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: rgba(255,255,255,.75);
}
.mf-trust-item::before {
  content: '🛡';
  font-size: 15px;
}

/* ---- Buttons ---- */
.mf-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  padding: 15px 34px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  text-align: center;
  line-height: 1.2;
}
.mf-btn:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,149,42,.4); text-decoration: none; color: var(--navy); }
.mf-btn-lg { font-size: 18px; padding: 18px 44px; }
.mf-btn-white { background: var(--white); color: var(--navy); }
.mf-btn-white:hover { background: var(--cream); color: var(--navy); }
.mf-btn-outline { background: transparent; border: 2px solid var(--gold); color: var(--gold); }
.mf-btn-outline:hover { background: var(--gold); color: var(--navy); }

/* ---- Why Choose section ---- */
.mf-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 44px;
}
.mf-why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  border-radius: 10px;
  padding: 30px 26px;
}
.mf-why-icon { font-size: 34px; margin-bottom: 14px; }
.mf-why-card h3 { margin-bottom: 10px; }
.mf-why-card p { font-size: 16px; color: var(--text-mid); margin: 0; }

/* ---- Pricing section ---- */
.mf-pricing-bg {
  background: var(--navy);
  color: var(--white);
  padding: 70px 0;
}
.mf-pricing-bg h2 { color: var(--white); }
.mf-pricing-bg .mf-pricing-sub { color: rgba(255,255,255,.8); font-size: 17px; margin-top: 8px; }
.mf-pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
  align-items: start;
}
.mf-price-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  position: relative;
  color: var(--text-dark);
}
.mf-price-card.featured {
  background: var(--cream);
  border: 3px solid var(--gold);
  transform: translateY(-10px);
}
.mf-price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
}
.mf-price-card img { max-height: 200px; width: auto; margin: 10px auto 18px; }
.mf-price-qty { font-size: 15px; font-weight: 600; color: var(--text-mid); margin-bottom: 4px; }
.mf-price-main { font-size: 44px; font-weight: 800; color: var(--navy); line-height: 1; }
.mf-price-main sup { font-size: 22px; vertical-align: top; margin-top: 8px; display: inline-block; }
.mf-price-each { font-size: 14px; color: var(--text-light); margin-top: 4px; }
.mf-price-was { font-size: 14px; color: var(--red); text-decoration: line-through; margin-top: 6px; }
.mf-price-save { display: inline-block; background: var(--green-lt); color: var(--green); font-size: 13px; font-weight: 700; padding: 3px 10px; border-radius: 4px; margin: 6px 0; }
.mf-price-ship { font-size: 13px; color: var(--text-light); margin: 6px 0; }
.mf-price-guarantee { font-size: 13px; color: var(--green); font-weight: 600; margin: 6px 0 14px; }
.mf-price-card .mf-btn { width: 100%; margin-top: 6px; }
.mf-price-cards-foot { text-align: center; margin-top: 28px; }
.mf-price-cards-foot img { max-width: 320px; margin: 0 auto; }

.mf-stock-notice {
  text-align: center;
  background: #FFF3CD;
  border: 1px solid #FFEAA7;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #856404;
  margin-bottom: 28px;
}

/* ---- What Is section ---- */
.mf-what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 30px;
}
.mf-what-grid img { border-radius: 14px; box-shadow: 0 10px 40px rgba(0,0,0,.12); }

/* ---- How It Works ---- */
.mf-how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 44px;
}
.mf-step {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.mf-step-num {
  display: inline-flex;
  width: 52px; height: 52px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
}
.mf-step h3 { margin-bottom: 10px; }
.mf-step p { font-size: 16px; color: var(--text-mid); margin: 0; }

/* ---- Reviews section ---- */
.mf-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.mf-review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
}
.mf-review-stars { color: var(--gold); font-size: 18px; margin-bottom: 12px; }
.mf-review-text { font-size: 16px; color: var(--text-mid); font-style: italic; margin-bottom: 16px; }
.mf-review-author { display: flex; align-items: center; gap: 12px; }
.mf-review-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 16px; flex-shrink: 0; }
.mf-review-name { font-weight: 700; font-size: 15px; }
.mf-review-location { font-size: 13px; color: var(--text-light); }

/* ---- Ingredients section ---- */
.mf-ingr-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 44px;
}
.mf-ingr-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.mf-ingr-img { width: 80px; flex-shrink: 0; }
.mf-ingr-img img { border-radius: 8px; }
.mf-ingr-body h3 { margin-bottom: 8px; }
.mf-ingr-body p { font-size: 16px; color: var(--text-mid); margin: 0; }

/* ---- Sci Formulated ---- */
.mf-sci-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 44px;
}
.mf-sci-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
}
.mf-sci-icon { font-size: 40px; margin-bottom: 16px; }
.mf-sci-card h3 { color: var(--white); margin-bottom: 10px; }
.mf-sci-card p { font-size: 16px; color: rgba(255,255,255,.8); margin: 0; }

/* ---- Benefits ---- */
.mf-benefit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 50px 0;
  border-bottom: 1px solid var(--border);
}
.mf-benefit:last-child { border-bottom: none; }
.mf-benefit.reverse { direction: rtl; }
.mf-benefit.reverse > * { direction: ltr; }
.mf-benefit-img img { border-radius: 12px; }
.mf-benefit-body .mf-ingr-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.mf-ingr-tag { font-size: 13px; background: var(--cream); border: 1px solid var(--border); padding: 3px 10px; border-radius: 20px; color: var(--navy); font-weight: 600; }

/* ---- Guarantee ---- */
.mf-guarantee-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  background: var(--cream);
  border: 2px solid var(--gold);
  border-radius: 16px;
  padding: 44px 40px;
  margin-top: 44px;
}
.mf-guarantee-seal img { max-width: 160px; width: 160px; }
.mf-guarantee-text h2 { margin-bottom: 14px; }
.mf-guarantee-text p { color: var(--text-mid); margin-bottom: 10px; }

/* ---- FAQ ---- */
.mf-faq-list { margin-top: 44px; }
.mf-faq-item {
  border-bottom: 1px solid var(--border);
}
.mf-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  gap: 16px;
  user-select: none;
}
.mf-faq-q:hover { color: var(--gold); }
.mf-faq-toggle { font-size: 22px; flex-shrink: 0; color: var(--gold); transition: transform .25s; }
.mf-faq-item.open .mf-faq-toggle { transform: rotate(45deg); }
.mf-faq-a { display: none; padding: 0 0 20px; color: var(--text-mid); font-size: 17px; }
.mf-faq-item.open .mf-faq-a { display: block; }

/* ---- Final CTA section ---- */
.mf-final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.mf-final-cta::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(201,149,42,.15) 0%, transparent 70%);
  border-radius: 50%;
}
.mf-final-cta h2 { color: var(--white); margin-bottom: 14px; }
.mf-final-cta p { color: rgba(255,255,255,.85); font-size: 18px; max-width: 54ch; margin: 0 auto 28px; }

/* ---- Footer ---- */
.mf-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,.7);
  padding: 50px 0 28px;
  font-size: 14px;
}
.mf-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.mf-footer-brand img { height: 44px; width: auto; margin-bottom: 12px; }
.mf-footer-brand p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.6; }
.mf-footer h4 { color: var(--white); font-size: 14px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.mf-footer ul { list-style: none; }
.mf-footer ul li { margin-bottom: 8px; }
.mf-footer ul a { color: rgba(255,255,255,.65); font-size: 13px; transition: color .2s; }
.mf-footer ul a:hover { color: var(--gold); text-decoration: none; }
.mf-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
}

/* ---- Blog Cards ---- */
.mf-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 44px;
}
.mf-blog-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.mf-blog-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.1); transform: translateY(-3px); }
.mf-blog-card-img img { width: 100%; height: 200px; object-fit: cover; }
.mf-blog-card-body { padding: 22px 20px; }
.mf-blog-card-cat { font-size: 12px; font-weight: 700; text-transform: uppercase; color: var(--gold); letter-spacing: 1px; margin-bottom: 8px; }
.mf-blog-card h3 { font-size: 17px; margin-bottom: 10px; }
.mf-blog-card p { font-size: 15px; color: var(--text-mid); margin: 0 0 14px; }
.mf-blog-card a.mf-read-more { font-size: 14px; font-weight: 700; color: var(--navy); }

/* ---- Breadcrumb ---- */
.mf-breadcrumb {
  background: var(--cream);
  padding: 12px 0;
  font-size: 13px;
  color: var(--text-light);
}
.mf-breadcrumb a { color: var(--text-light); }
.mf-breadcrumb a:hover { color: var(--gold); }
.mf-breadcrumb span { color: var(--text-dark); font-weight: 600; }

/* ---- Page Hero (inner pages) ---- */
.mf-page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 54px 0;
  text-align: center;
}
.mf-page-hero h1 { color: var(--white); margin-bottom: 12px; }
.mf-page-hero p { color: rgba(255,255,255,.82); font-size: 18px; max-width: 60ch; margin: 0 auto; }

/* ---- Article (blog) ---- */
.mf-article-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 50px;
  padding: 60px 0;
}
.mf-article h2 { margin-top: 32px; margin-bottom: 12px; }
.mf-article h3 { margin-top: 24px; margin-bottom: 10px; }
.mf-article p  { color: var(--text-mid); }
.mf-article ul, .mf-article ol { padding-left: 24px; color: var(--text-mid); margin-bottom: 1em; }
.mf-article li { margin-bottom: 6px; }
.mf-sidebar { }
.mf-sidebar-box {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}
.mf-sidebar-box h4 { margin-bottom: 14px; font-size: 16px; }
.mf-sidebar-box ul { list-style: none; }
.mf-sidebar-box ul li { padding: 7px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.mf-sidebar-box ul li:last-child { border-bottom: none; }
.mf-sidebar-box ul a { color: var(--text-dark); }
.mf-sidebar-box ul a:hover { color: var(--gold); }
.mf-sidebar-cta { background: var(--navy); color: var(--white); border-radius: 12px; padding: 28px 20px; text-align: center; margin-bottom: 24px; }
.mf-sidebar-cta h4 { color: var(--white); margin-bottom: 10px; }
.mf-sidebar-cta p { font-size: 14px; color: rgba(255,255,255,.8); margin-bottom: 14px; }

/* ---- Ingredients Page ---- */
.mf-ingr-detail {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 34px;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  align-items: flex-start;
}
.mf-ingr-detail img { border-radius: 10px; }
.mf-ingr-detail h3 { margin-bottom: 8px; }
.mf-ingr-detail p { color: var(--text-mid); font-size: 17px; }
.mf-ingr-detail ul { color: var(--text-mid); padding-left: 22px; }
.mf-ingr-detail ul li { margin-bottom: 5px; }

/* ---- Contact ---- */
.mf-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-top: 30px; }
.mf-contact-info h3 { margin-bottom: 14px; }
.mf-contact-info p { color: var(--text-mid); }
.mf-contact-form input, .mf-contact-form textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--white);
  margin-bottom: 14px;
  display: block;
}
.mf-contact-form textarea { min-height: 120px; resize: vertical; }
.mf-contact-form input:focus, .mf-contact-form textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }

/* ---- Legal pages ---- */
.mf-legal-body h2 { margin-top: 36px; margin-bottom: 12px; }
.mf-legal-body h3 { margin-top: 24px; margin-bottom: 10px; }
.mf-legal-body p, .mf-legal-body li { color: var(--text-mid); font-size: 17px; }
.mf-legal-body ul, .mf-legal-body ol { padding-left: 24px; margin-bottom: 1em; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .mf-hero-inner { grid-template-columns: 1fr; }
  .mf-hero-img-wrap { order: -1; }
  .mf-hero-img-wrap img { max-height: 280px; }
  .mf-why-grid, .mf-how-steps, .mf-sci-grid { grid-template-columns: 1fr 1fr; }
  .mf-pricing-cards { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .mf-price-card.featured { transform: none; }
  .mf-reviews-grid { grid-template-columns: 1fr 1fr; }
  .mf-ingr-grid { grid-template-columns: 1fr; }
  .mf-what-grid, .mf-benefit { grid-template-columns: 1fr; gap: 30px; }
  .mf-benefit.reverse { direction: ltr; }
  .mf-guarantee-box { grid-template-columns: 1fr; text-align: center; }
  .mf-guarantee-seal { text-align: center; }
  .mf-footer-grid { grid-template-columns: 1fr 1fr; }
  .mf-article-wrap { grid-template-columns: 1fr; }
  .mf-blog-grid { grid-template-columns: 1fr 1fr; }
  .mf-ingr-detail { grid-template-columns: 1fr; }
  .mf-contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  body { font-size: 17px; }
  .mf-nav { display: none; flex-direction: column; position: absolute; top: 75px; left: 0; right: 0; background: var(--navy); padding: 16px 20px; gap: 4px; }
  .mf-nav.open { display: flex; }
  .mf-hamburger { display: flex; }
  .mf-why-grid, .mf-how-steps, .mf-sci-grid, .mf-reviews-grid, .mf-blog-grid { grid-template-columns: 1fr; }
  .mf-footer-grid { grid-template-columns: 1fr; }
  .mf-header-inner { position: relative; }
  .mf-section, .mf-section-alt, .mf-pricing-bg, .mf-final-cta { padding: 50px 0; }
}
