/* LuluTox — styles.css */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --peach:    #F4A460;
  --peach-lt: #FFF5EE;
  --green:    #8FBC8F;
  --green-dk: #5a8a5a;
  --cream:    #FDF8F3;
  --brown:    #7B4F2E;
  --text:     #3D2B1F;
  --muted:    #7A6055;
  --white:    #FFFFFF;
  --shadow:   0 4px 24px rgba(120,80,40,.12);
  --radius:   12px;
  --font-head: Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.25; color: var(--brown); }
h1 { font-size: clamp(2rem,5vw,3.2rem); }
h2 { font-size: clamp(1.5rem,4vw,2.4rem); margin-bottom: .5rem; }
h3 { font-size: clamp(1.1rem,2.5vw,1.5rem); }
p  { margin-bottom: 1rem; color: var(--muted); }
a  { color: var(--peach); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── LAYOUT ── */
.container { width: 92%; max-width: 1100px; margin: 0 auto; }
.section    { padding: 72px 0; }
.section--alt { background: var(--white); }
.section--peach { background: var(--peach-lt); }
.text-center { text-align: center; }
.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-dk);
  background: #e8f5e8;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* ── NAV ── */
.nav {
  background: var(--white);
  border-bottom: 1px solid #f0e8e0;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav__logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--brown);
}
.nav__logo span { color: var(--peach); }
.nav__links { display: flex; gap: 28px; list-style: none; }
.nav__links a { color: var(--text); font-size: .95rem; font-weight: 500; transition: color .2s; }
.nav__links a:hover { color: var(--peach); text-decoration: none; }
.nav__cta { background: var(--peach); color: var(--white) !important; padding: 8px 20px; border-radius: 24px; font-weight: 600 !important; transition: background .2s !important; }
.nav__cta:hover { background: var(--brown) !important; }
.nav__toggle { display: none; background: none; border: none; cursor: pointer; font-size: 1.4rem; color: var(--brown); }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--peach-lt) 0%, #fde8d8 100%);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero__badge {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.hero__title { margin-bottom: 16px; }
.hero__title span { color: var(--peach); }
.hero__desc { font-size: 1.1rem; max-width: 480px; margin-bottom: 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__note { font-size: .85rem; color: var(--muted); }
.hero__image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero__image-wrap::before {
  content: '';
  position: absolute;
  width: 90%; height: 90%;
  background: radial-gradient(circle, rgba(244,164,96,.2) 0%, transparent 70%);
  border-radius: 50%;
}
.hero__img {
  max-width: 420px;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  object-fit: contain;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .22s;
  text-align: center;
  white-space: nowrap;
}
.btn--primary {
  background: var(--peach);
  color: var(--white);
  border-color: var(--peach);
}
.btn--primary:hover { background: var(--brown); border-color: var(--brown); text-decoration: none; color: var(--white); }
.btn--outline {
  background: transparent;
  color: var(--brown);
  border-color: var(--brown);
}
.btn--outline:hover { background: var(--brown); color: var(--white); text-decoration: none; }
.btn--green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--green:hover { background: var(--green-dk); border-color: var(--green-dk); text-decoration: none; color: var(--white); }
.btn--lg { padding: 16px 40px; font-size: 1.1rem; }

/* ── BENEFITS ── */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .2s;
}
.benefit-card:hover { transform: translateY(-4px); }
.benefit-card__icon { font-size: 2.4rem; margin-bottom: 14px; }
.benefit-card h3 { margin-bottom: 8px; }
.benefit-card p  { margin-bottom: 0; font-size: .95rem; }

/* ── HOW IT WORKS ── */
.how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
  counter-reset: step;
}
.how-step { text-align: center; }
.how-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--peach);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 16px;
}
.how-step h3 { margin-bottom: 8px; }

/* ── PRODUCT DETAILS ── */
.product__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.product__img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  max-height: 480px;
}
.product__badge {
  background: var(--peach-lt);
  border: 1px solid var(--peach);
  border-radius: 8px;
  padding: 12px 20px;
  margin-bottom: 24px;
  font-size: .95rem;
}
.product__list { list-style: none; margin-bottom: 24px; }
.product__list li {
  padding: 8px 0;
  border-bottom: 1px solid #f0e8e0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .95rem;
}
.product__list li::before { content: '✓'; color: var(--green); font-weight: bold; flex-shrink: 0; }
.product__price {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--brown);
  margin-bottom: 6px;
}
.product__price-note { font-size: .85rem; color: var(--muted); margin-bottom: 20px; }

/* ── INGREDIENTS ── */
.ingredients__img {
  width: 100%;
  border-radius: var(--radius);
  max-height: 320px;
  object-fit: cover;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}
.ingredients__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ingredient-tag {
  background: var(--white);
  border: 1px solid #f0e8e0;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: .9rem;
  text-align: center;
}
.ingredient-tag span { display: block; font-size: 1.4rem; margin-bottom: 4px; }

/* ── FAQ ── */
.faq__list { margin-top: 32px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.faq-item__q {
  padding: 18px 24px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-head);
  color: var(--brown);
  user-select: none;
}
.faq-item__q::after { content: '+'; font-size: 1.4rem; color: var(--peach); }
.faq-item.open .faq-item__q::after { content: '−'; }
.faq-item__a {
  display: none;
  padding: 0 24px 18px;
  color: var(--muted);
  font-size: .95rem;
}
.faq-item.open .faq-item__a { display: block; }

/* ── ORDER FORM ── */
.order-section { background: var(--peach-lt); }
.order__inner {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow);
}
.order__title { text-align: center; margin-bottom: 8px; }
.order__subtitle { text-align: center; margin-bottom: 32px; font-size: 1rem; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0d4cc;
  border-radius: 8px;
  font-size: .98rem;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--peach);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-qty {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.qty-option {
  flex: 1;
  border: 2px solid #e0d4cc;
  border-radius: 10px;
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
  font-size: .92rem;
}
.qty-option:hover { border-color: var(--peach); }
.qty-option.selected { border-color: var(--peach); background: var(--peach-lt); }
.qty-option strong { display: block; font-family: var(--font-head); font-size: 1.1rem; color: var(--brown); }
.qty-option .save { display: block; font-size: .76rem; color: var(--green-dk); font-weight: 600; }
.form-submit { width: 100%; margin-top: 8px; }
.form-secure {
  text-align: center;
  font-size: .82rem;
  color: var(--muted);
  margin-top: 12px;
}
.form-secure span { margin: 0 8px; }

/* ── LIFESTYLE STRIP ── */
.lifestyle-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius);
}
.lifestyle-strip img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* ── FOOTER ── */
.footer {
  background: var(--brown);
  color: #e8d5c4;
  padding: 48px 0 24px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__brand { font-family: var(--font-head); font-size: 1.4rem; color: var(--white); margin-bottom: 10px; }
.footer__brand span { color: var(--peach); }
.footer p { color: #c9b8a8; font-size: .88rem; }
.footer h4 { color: var(--white); font-size: .95rem; margin-bottom: 14px; }
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 8px; }
.footer__links a { color: #c9b8a8; font-size: .88rem; transition: color .2s; }
.footer__links a:hover { color: var(--peach); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__bottom p { font-size: .82rem; color: #c9b8a8; margin: 0; }
.footer__disclaimer {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 16px;
  margin-top: 16px;
  font-size: .78rem;
  color: #a89080;
  line-height: 1.5;
}

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--brown);
  color: var(--white);
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
  box-shadow: 0 -4px 24px rgba(0,0,0,.2);
  transform: translateY(100%);
  transition: transform .4s ease;
}
#cookie-banner.show { transform: translateY(0); }
#cookie-banner p { margin: 0; font-size: .88rem; color: #f5e8da; flex: 1; min-width: 220px; }
#cookie-banner a { color: var(--peach); }
.cookie-actions { display: flex; gap: 10px; }
.btn-cookie-accept {
  background: var(--peach); color: var(--white);
  border: none; padding: 9px 22px;
  border-radius: 20px; cursor: pointer;
  font-size: .88rem; font-weight: 600;
}
.btn-cookie-decline {
  background: transparent; color: #c9b8a8;
  border: 1px solid #c9b8a8; padding: 9px 18px;
  border-radius: 20px; cursor: pointer;
  font-size: .88rem;
}

/* ── INNER PAGE ── */
.page-hero {
  background: linear-gradient(135deg, var(--peach-lt), #fde8d8);
  padding: 60px 0 40px;
  text-align: center;
}
.page-hero h1 { margin-bottom: 10px; }
.page-content { padding: 60px 0; }
.page-content h2 { margin-top: 36px; margin-bottom: 10px; }
.page-content h3 { margin-top: 24px; margin-bottom: 8px; }
.page-content p,
.page-content li { font-size: .97rem; line-height: 1.7; }
.page-content ul,
.page-content ol { padding-left: 20px; margin-bottom: 16px; }
.page-content li { margin-bottom: 6px; }
.breadcrumb { font-size: .85rem; color: var(--muted); margin-bottom: 24px; }
.breadcrumb a { color: var(--peach); }

/* ── CONTACT ── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info__item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-info__icon {
  width: 44px; height: 44px;
  background: var(--peach-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-form { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero__inner,
  .product__grid,
  .contact__grid { grid-template-columns: 1fr; }
  .hero__image-wrap { order: -1; }
  .hero__img { max-width: 320px; }
  .benefits__grid,
  .how__grid,
  .ingredients__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .lifestyle-strip { grid-template-columns: 1fr; }
  .lifestyle-strip img:last-child { display: none; }
}
@media (max-width: 600px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid #f0e8e0;
    padding: 16px 24px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    gap: 16px;
    z-index: 99;
  }
  .benefits__grid,
  .how__grid,
  .ingredients__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .order__inner { padding: 28px 20px; }
  .form-qty { flex-direction: column; }
  .hero { padding: 48px 0; }
  .section { padding: 48px 0; }
}

/* ── TRUST BADGES ── */
.trust-bar {
  background: var(--white);
  border-top: 1px solid #f0e8e0;
  border-bottom: 1px solid #f0e8e0;
  padding: 18px 0;
}
.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: var(--muted);
  font-weight: 500;
}
.trust-item span:first-child { font-size: 1.2rem; }

/* ── ALERT / NOTICE ── */
.notice {
  background: #fff8e7;
  border-left: 4px solid #f4c842;
  padding: 14px 18px;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: .9rem;
}
.notice--info { border-color: var(--green); background: #f0faf0; }
