/* ================================================
   TRICELORA — Hair Recovery System
   Brand colors: Cream #F5EFE0 · Forest #0E3B2E · Gold #C9A35B
   ================================================ */

:root{
  --cream: #F5EFE0;
  --cream-2: #FAF6EC;
  --forest: #0E3B2E;
  --forest-2: #15523F;
  --forest-dark: #07291F;
  --gold: #C9A35B;
  --gold-2: #B68A3E;
  --ink: #1A1A1A;
  --muted: #6B6760;
  --line: #E6DFCF;
  --white: #ffffff;
  --red: #B91C1C;
  --green: #047857;
  --shadow: 0 10px 30px rgba(14,59,46,0.08);
  --shadow-lg: 0 20px 50px rgba(14,59,46,0.15);
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1200px;
}

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

html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }

body{
  font-family: 'Tajawal', 'Cairo', 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container{
  width:100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============= TYPOGRAPHY ============= */
h1,h2,h3,h4{ font-family:'Playfair Display','Tajawal',serif; font-weight:700; line-height:1.25; color: var(--forest-dark); }
h1{ font-size: clamp(2rem, 4.5vw, 3.5rem); }
h2{ font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3{ font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4{ font-size: 1.15rem; }
p{ color: #2A2A2A; }
.lead{ font-size: 1.15rem; color: #404040; }
.muted{ color: var(--muted); font-size: .92rem; }
.eyebrow{
  display:inline-block;
  font-size:.78rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: var(--gold-2);
  font-weight:700;
  margin-bottom: 14px;
}

/* ============= BUTTONS ============= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: 0;
  cursor: pointer;
  transition: all .2s ease;
  text-align: center;
  font-family: inherit;
}
.btn-primary{
  background: var(--forest);
  color: var(--cream);
  box-shadow: var(--shadow);
}
.btn-primary:hover{ background: var(--forest-2); transform: translateY(-2px); color: var(--cream); }
.btn-gold{
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: var(--forest-dark);
  box-shadow: 0 8px 22px rgba(201,163,91,.35);
}
.btn-gold:hover{ filter:brightness(1.05); transform: translateY(-2px); color: var(--forest-dark); }
.btn-outline{
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
}
.btn-outline:hover{ background: var(--forest); color: var(--cream); }
.btn-lg{ padding: 18px 36px; font-size: 1.1rem; }
.btn-block{ width:100%; }
.btn-whatsapp{
  background: #25D366;
  color: white;
}
.btn-whatsapp:hover{ background: #1FBA58; color:white; }

/* ============= ANNOUNCEMENT BAR ============= */
.announcement{
  background: var(--forest-dark);
  color: var(--cream);
  padding: 9px 16px;
  text-align: center;
  font-size: .85rem;
  font-weight:500;
  overflow: hidden;
}
.announcement .marquee{ display:flex; gap:50px; white-space:nowrap; animation: scroll 24s linear infinite; }
.announcement .marquee span{ display:inline-flex; align-items:center; gap:6px; }
.announcement .marquee strong{ color: var(--gold); }
@keyframes scroll{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

/* ============= HEADER ============= */
.header{
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
}
.logo{
  display:flex;
  align-items:center;
  gap: 10px;
  font-family:'Playfair Display', serif;
  font-weight:800;
  font-size: 1.5rem;
  color: var(--forest-dark);
  letter-spacing: .04em;
}
.logo svg{ width:34px; height:34px; }
.logo small{ display:block; font-family:'Inter',sans-serif; font-size:.55rem; letter-spacing:.25em; color: var(--gold-2); font-weight:600; margin-top:-4px; }
.nav{ display:flex; gap: 28px; align-items:center; }
.nav a{ color: var(--ink); font-weight:500; font-size:.95rem; }
.nav a:hover{ color: var(--gold-2); }
.nav-cta{ display:flex; gap:10px; align-items:center; }
.menu-toggle{
  display:none;
  background:none; border:0;
  width:42px; height:42px;
  cursor:pointer;
  flex-direction:column; gap:5px;
  align-items:center; justify-content:center;
}
.menu-toggle span{ display:block; width:24px; height:2px; background: var(--forest-dark); transition: all .2s; }

@media (max-width: 900px){
  .menu-toggle{ display:flex; }
  .nav{
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    box-shadow: var(--shadow-lg);
    transition: right .3s ease;
    z-index: 60;
  }
  .nav.open{ right: 0; }
  .nav a{ font-size: 1.1rem; padding: 8px 0; }
  .header .btn{ display:none; }
  .nav-overlay{
    display:none;
    position: fixed; inset:0;
    background: rgba(0,0,0,.4);
    z-index: 55;
  }
  .nav-overlay.open{ display:block; }
}

/* ============= HERO ============= */
.hero{
  position: relative;
  padding: 70px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 70% 20%, rgba(201,163,91,.18), transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(14,59,46,.12), transparent 60%),
    var(--cream);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items:center;
}
.hero h1{ margin-bottom: 22px; }
.hero h1 .accent{ color: var(--gold-2); font-style: italic; }
.hero p.lead{ margin-bottom: 28px; max-width: 540px; }
.hero-cta{ display:flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-rating{
  display:inline-flex; align-items:center; gap:10px;
  background: var(--white);
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: .9rem;
  border: 1px solid var(--line);
}
.stars{ color: var(--gold); letter-spacing:2px; }
.hero-img-wrap{
  position: relative;
  display:flex;
  justify-content:center;
  align-items:center;
}
.hero-img-wrap img{
  max-width: 100%;
  filter: drop-shadow(0 30px 50px rgba(14,59,46,.25));
  animation: float 5s ease-in-out infinite;
}
@keyframes float{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-15px); }
}
.hero-badges{
  display:flex; gap:14px; flex-wrap:wrap;
}
.hero-badge{
  background: var(--white);
  border:1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size:.82rem;
  font-weight:600;
  display:inline-flex; align-items:center; gap:6px;
  color: var(--forest-dark);
}
.hero-badge svg{ width:16px; height:16px; color: var(--green); }

@media (max-width: 900px){
  .hero{ padding: 40px 0 50px; }
  .hero-grid{ grid-template-columns: 1fr; gap: 30px; }
  .hero-img-wrap{ order: -1; }
  .hero-img-wrap img{ max-width: 280px; }
}

/* ============= SECTIONS ============= */
.section{ padding: 80px 0; }
.section-tight{ padding: 50px 0; }
.section-cream{ background: var(--cream); }
.section-cream-2{ background: var(--cream-2); }
.section-forest{ background: var(--forest); color: var(--cream); }
.section-forest h2, .section-forest h3{ color: var(--cream); }
.section-forest p{ color: rgba(245,239,224,.85); }

.section-head{ text-align:center; max-width: 720px; margin: 0 auto 50px; }
.section-head h2{ margin-bottom: 16px; }
.divider{
  width: 60px; height: 3px; background: var(--gold);
  margin: 0 auto 20px;
  border-radius: 999px;
}

@media (max-width: 700px){
  .section{ padding: 50px 0; }
}

/* ============= PRODUCT GRID (HOMEPAGE) ============= */
.product-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card{
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
  display:flex;
  flex-direction:column;
  border: 1px solid var(--line);
}
.product-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card-img{
  background: var(--cream-2);
  padding: 30px;
  text-align:center;
  position: relative;
  min-height: 280px;
  display:flex; align-items:center; justify-content:center;
}
.product-card-img img{ max-height: 240px; width:auto; margin:0 auto; }
.product-card-tag{
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold);
  color: var(--forest-dark);
  font-size: .7rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: .05em;
}
.product-card-body{ padding: 24px; flex:1; display:flex; flex-direction:column; }
.product-card-title{ font-size: 1.25rem; margin-bottom: 8px; color: var(--forest-dark); }
.product-card-sub{ color: var(--muted); font-size:.92rem; margin-bottom: 14px; min-height: 48px; }
.product-card-rating{ font-size:.85rem; color: var(--muted); margin-bottom: 14px; }
.product-card-price{ font-size: 1.35rem; font-weight: 800; color: var(--forest-dark); margin-bottom: 16px; }
.product-card-price small{ font-size: .85rem; color: var(--muted); font-weight: 500; }
.product-card-cta{ margin-top: auto; }

@media (max-width: 900px){ .product-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px){ .product-grid{ grid-template-columns: 1fr; } }

/* ============= FEATURE BADGES STRIP ============= */
.trust-strip{
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}
.trust-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align:center;
}
.trust-item{ display:flex; flex-direction:column; align-items:center; gap:8px; }
.trust-item svg{ width:32px; height:32px; color: var(--gold-2); }
.trust-item strong{ font-size:.95rem; color: var(--forest-dark); }
.trust-item span{ font-size:.8rem; color: var(--muted); }
@media (max-width: 700px){ .trust-grid{ grid-template-columns: 1fr 1fr; } }

/* ============= WHY US ============= */
.why-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.why-card{
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display:flex;
  gap: 18px;
  align-items:flex-start;
}
.why-icon{
  flex-shrink:0;
  width: 48px; height: 48px;
  background: var(--cream);
  border-radius: 12px;
  display:flex; align-items:center; justify-content:center;
  color: var(--gold-2);
}
.why-icon svg{ width: 26px; height: 26px; }
.why-card h4{ margin-bottom: 8px; color: var(--forest-dark); }
.why-card p{ color: #404040; font-size: .94rem; }
@media (max-width: 700px){ .why-grid{ grid-template-columns: 1fr; } }

/* ============= TESTIMONIALS ============= */
.testimonials{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial{
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  position: relative;
}
.testimonial::before{
  content: "“";
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  position: absolute;
  top: -20px;
  right: 18px;
  line-height: 1;
}
.testimonial-stars{ color: var(--gold); margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text{ font-size:.95rem; color: #2A2A2A; margin-bottom: 18px; line-height: 1.75; }
.testimonial-author{ display:flex; align-items:center; gap:12px; padding-top: 14px; border-top: 1px solid var(--line); }
.testimonial-avatar{
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  display:flex; align-items:center; justify-content:center;
  font-weight: 700;
}
.testimonial-meta strong{ display:block; color: var(--forest-dark); font-size:.95rem; }
.testimonial-meta span{ font-size:.82rem; color: var(--muted); }
.testimonial-verified{
  display:inline-block;
  background: #D1F5E1;
  color: var(--green);
  font-size:.7rem; font-weight:700;
  padding: 2px 8px; border-radius: 999px;
  margin-right: 6px;
}
@media (max-width: 900px){ .testimonials{ grid-template-columns: 1fr; } }

/* ============= HOW IT WORKS ============= */
.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}
.step{ text-align:center; position: relative; }
.step-num{
  width: 60px; height: 60px;
  background: var(--forest);
  color: var(--gold);
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  font-size: 1.6rem; font-weight: 800;
  margin: 0 auto 16px;
  font-family: 'Playfair Display', serif;
}
.step h4{ margin-bottom: 10px; color: var(--forest-dark); }
.step p{ color: #404040; font-size: .95rem; }
@media (max-width: 700px){ .steps{ grid-template-columns: 1fr; } }

/* ============= COMPARISON TABLE ============= */
.compare-wrap{ overflow-x: auto; }
.compare{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: .92rem;
}
.compare th, .compare td{
  padding: 16px 14px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.compare th{
  background: var(--forest);
  color: var(--cream);
  font-weight: 700;
}
.compare th.us{ background: var(--gold); color: var(--forest-dark); }
.compare td:first-child{ text-align: right; font-weight:600; background: var(--cream-2); }
.compare .ico-yes{ color: var(--green); font-size: 1.3rem; }
.compare .ico-no{ color: var(--red); font-size: 1.3rem; }
.compare tr:last-child td{ border-bottom: 0; }
.compare .col-us{ background: rgba(201,163,91,.06); }

/* ============= FAQ ============= */
.faq{ max-width: 820px; margin: 0 auto; }
.faq-item{
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-q{
  padding: 18px 22px;
  cursor:pointer;
  display:flex; justify-content:space-between; align-items:center;
  font-weight: 700;
  color: var(--forest-dark);
  font-size: 1.02rem;
  transition: background .2s;
}
.faq-q:hover{ background: var(--cream-2); }
.faq-q .plus{
  width: 24px; height: 24px;
  flex-shrink: 0;
  position: relative;
  transition: transform .25s;
}
.faq-q .plus::before, .faq-q .plus::after{
  content:''; position: absolute;
  background: var(--gold-2);
  border-radius: 2px;
}
.faq-q .plus::before{ top: 11px; left: 0; right: 0; height: 2px; }
.faq-q .plus::after{ top: 0; bottom: 0; right: 11px; width: 2px; transition: transform .25s; }
.faq-item.open .plus::after{ transform: rotate(90deg); }
.faq-a{
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  padding: 0 22px;
  color: #404040;
  font-size: .95rem;
}
.faq-item.open .faq-a{ max-height: 500px; padding: 0 22px 22px; }

/* ============= CTA SECTION ============= */
.cta-banner{
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align:center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before{
  content:'';
  position: absolute; top:-50%; left:-20%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(201,163,91,.18), transparent 70%);
}
.cta-banner *{ position: relative; z-index: 1; }
.cta-banner h2{ color: var(--cream); margin-bottom: 16px; }
.cta-banner p{ color: rgba(245,239,224,.9); font-size: 1.05rem; max-width: 580px; margin: 0 auto 28px; }
.cta-trust{ display:flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 24px; font-size: .85rem; color: rgba(245,239,224,.9); }
.cta-trust span{ display:inline-flex; align-items:center; gap:6px; }

/* ============= FOOTER ============= */
.footer{
  background: var(--forest-dark);
  color: rgba(245,239,224,.8);
  padding: 60px 0 24px;
  font-size: .92rem;
}
.footer-grid{
  display:grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer h4{ color: var(--cream); font-family:'Tajawal', sans-serif; font-size: 1.05rem; margin-bottom: 16px; }
.footer ul{ list-style: none; }
.footer ul li{ margin-bottom: 8px; }
.footer a{ color: rgba(245,239,224,.75); }
.footer a:hover{ color: var(--gold); }
.footer-logo{ color: var(--cream); font-family:'Playfair Display', serif; font-weight:800; font-size: 1.6rem; margin-bottom: 14px; }
.footer-logo small{ display:block; font-size:.55rem; letter-spacing:.25em; color: var(--gold); margin-top:-4px; }
.footer-about{ max-width: 360px; margin-bottom: 18px; }
.footer-bottom{
  padding-top: 24px;
  border-top: 1px solid rgba(245,239,224,.12);
  display:flex; justify-content:space-between; flex-wrap: wrap; gap: 12px;
  color: rgba(245,239,224,.55);
  font-size: .85rem;
}
@media (max-width: 800px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px){
  .footer-grid{ grid-template-columns: 1fr; }
}

/* ============= PRODUCT PAGE ============= */
.product-hero{
  padding: 50px 0 70px;
  background: var(--cream);
}
.product-hero-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}
.product-img-main{
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align:center;
  position: sticky;
  top: 80px;
  border: 1px solid var(--line);
}
.product-img-main img{ max-height: 500px; margin: 0 auto; }
.product-info h1{ margin-bottom: 14px; }
.product-info-rating{ display:flex; gap:10px; align-items:center; margin-bottom: 18px; font-size:.95rem; color: var(--muted); }
.product-info-rating .stars{ font-size: 1.1rem; }

.product-pitch{
  background: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius);
  border-right: 4px solid var(--gold);
  margin-bottom: 22px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.urgency{
  display:flex; align-items:center; gap: 10px;
  background: #FFF7E6;
  border: 1px dashed var(--gold-2);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: .92rem;
  color: var(--forest-dark);
  margin-bottom: 24px;
}
.urgency svg{ color: var(--gold-2); width: 22px; height: 22px; flex-shrink: 0; }

/* Offer cards */
.offers{ display:flex; flex-direction:column; gap: 12px; margin-bottom: 24px; }
.offer{
  position: relative;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px 16px 60px;
  cursor: pointer;
  transition: all .2s;
  display:flex; align-items:center; justify-content: space-between;
  gap: 14px;
}
.offer:hover{ border-color: var(--gold); }
.offer.active{ border-color: var(--forest); background: var(--cream-2); box-shadow: var(--shadow); }
.offer-radio{
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  border: 2px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  transition: all .2s;
}
.offer.active .offer-radio{ border-color: var(--forest); }
.offer.active .offer-radio::after{
  content:'';
  position:absolute; inset: 4px;
  background: var(--forest);
  border-radius: 50%;
}
.offer-title{ font-weight: 700; color: var(--forest-dark); font-size: 1.02rem; }
.offer-sub{ font-size: .82rem; color: var(--muted); }
.offer-price{ text-align:left; flex-shrink: 0; }
.offer-price .price-main{ font-size: 1.3rem; font-weight: 800; color: var(--forest-dark); }
.offer-price .price-old{ text-decoration: line-through; color: var(--muted); font-size:.85rem; display:block; }
.offer-tag{
  position: absolute;
  top: -10px; right: 50px;
  background: var(--gold);
  color: var(--forest-dark);
  font-size: .7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: .05em;
}
.offer-tag.best{ background: var(--forest); color: var(--gold); }

.benefits-row{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}
.benefit-mini{
  background: var(--cream-2);
  padding: 12px 8px;
  border-radius: 10px;
  text-align:center;
  font-size: .78rem;
  color: var(--forest-dark);
  font-weight: 600;
  border: 1px solid var(--line);
}
.benefit-mini svg{ width: 22px; height: 22px; color: var(--gold-2); margin: 0 auto 4px; display:block; }

@media (max-width: 900px){
  .product-hero-grid{ grid-template-columns: 1fr; }
  .product-img-main{ position: static; }
  .benefits-row{ grid-template-columns: 1fr 1fr; }
}

/* Pain points */
.pain-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.pain-card{
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.pain-quote{
  font-style: italic;
  color: var(--ink);
  font-size: 1.02rem;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px dashed var(--line);
  position: relative;
}
.pain-solution{ color: #2A2A2A; font-size: .94rem; }
.pain-solution strong{ color: var(--gold-2); }
@media (max-width: 700px){ .pain-grid{ grid-template-columns: 1fr; } }

/* Ingredients */
.ingredient{
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--line);
  margin-bottom: 18px;
  display:grid;
  grid-template-columns: 80px 1fr;
  gap: 22px;
  align-items:flex-start;
}
.ingredient-icon{
  width: 80px; height: 80px;
  background: var(--cream-2);
  border-radius: 16px;
  display:flex; align-items:center; justify-content:center;
  color: var(--gold-2);
  flex-shrink:0;
}
.ingredient-icon svg{ width: 40px; height: 40px; }
.ingredient h4{ color: var(--forest-dark); margin-bottom: 6px; font-size: 1.15rem; }
.ingredient .dose{ color: var(--gold-2); font-weight: 700; font-size: .85rem; margin-bottom: 8px; display:block; }
.ingredient p{ font-size: .94rem; color: #2A2A2A; margin-bottom: 10px; }
.ingredient .result{ background: var(--cream); padding: 8px 14px; border-radius: 8px; font-size: .85rem; color: var(--forest-dark); font-weight: 600; }
@media (max-width: 600px){
  .ingredient{ grid-template-columns: 1fr; }
}

/* Free of */
.free-of-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.free-of{
  background: var(--cream-2);
  padding: 14px 10px;
  border-radius: 10px;
  text-align:center;
  font-size:.85rem;
  color: var(--forest-dark);
  font-weight: 600;
  border: 1px solid var(--line);
}
.free-of::before{ content: "✕"; color: var(--red); margin-left: 6px; font-weight: 700; }
@media (max-width: 700px){ .free-of-grid{ grid-template-columns: 1fr 1fr; } }

/* Timeline */
.timeline{ display:grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.timeline-step{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
}
.timeline-step .week{
  display:inline-block;
  background: var(--gold);
  color: var(--forest-dark);
  font-weight:700;
  font-size:.78rem;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  letter-spacing:.05em;
}
.timeline-step h4{ color: var(--forest-dark); margin-bottom: 10px; font-size: 1.1rem; }
.timeline-step p{ color: #404040; font-size: .92rem; }
@media (max-width: 700px){ .timeline{ grid-template-columns: 1fr; } }

/* ============= ORDER FORM ============= */
.order-section{
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  padding: 70px 0;
}
.order-card{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.order-card-head{ text-align: center; margin-bottom: 28px; }
.order-card-head h2{ margin-bottom: 8px; }
.order-summary{
  background: var(--cream-2);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 24px;
  display:flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  border: 1px dashed var(--gold);
}
.order-summary .label{ font-size:.85rem; color: var(--muted); }
.order-summary .value{ font-size: 1.15rem; font-weight: 700; color: var(--forest-dark); }
.order-summary .price-final{ font-size: 1.6rem; color: var(--forest); }

.form-row{ margin-bottom: 18px; }
.form-row label{
  display:block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--forest-dark);
  font-size: .95rem;
}
.form-row label .req{ color: var(--red); }
.form-row input,
.form-row select,
.form-row textarea{
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 1rem;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  transition: border .2s;
  direction: rtl;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus{
  outline: 0;
  border-color: var(--gold);
}
.form-row textarea{ min-height: 80px; resize: vertical; }
.form-row .hint{ font-size:.82rem; color: var(--muted); margin-top: 4px; }
.form-row.error input, .form-row.error select, .form-row.error textarea{ border-color: var(--red); }
.form-row .err-msg{ display:none; color: var(--red); font-size:.82rem; margin-top: 4px; }
.form-row.error .err-msg{ display:block; }

.qty-row{
  display:flex; align-items:center; gap: 14px;
  background: var(--cream-2);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 18px;
}
.qty-row .qty-label{ font-weight: 600; color: var(--forest-dark); flex: 1; }

.form-trust{
  display:flex; flex-wrap:wrap; gap: 12px; justify-content: center;
  margin-top: 20px; font-size:.85rem;
  color: var(--muted);
}
.form-trust span{ display:inline-flex; align-items:center; gap: 6px; }
.form-trust svg{ width: 16px; height: 16px; color: var(--green); }

@media (max-width: 600px){
  .order-card{ padding: 24px 18px; }
}

/* ============= STICKY MOBILE BAR ============= */
.mobile-bar{
  display:none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  padding: 10px 14px;
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px rgba(0,0,0,.1);
  z-index: 40;
  gap: 10px;
}
.mobile-bar .btn{ flex: 1; padding: 14px 12px; font-size:.95rem; }
@media (max-width: 800px){
  .mobile-bar{ display:flex; }
  body{ padding-bottom: 80px; }
}

/* ============= WHATSAPP FLOAT ============= */
.wa-float{
  position: fixed;
  bottom: 90px;
  left: 20px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 41;
  animation: pulse-wa 2s infinite;
}
.wa-float svg{ width: 32px; height: 32px; color: white; }
@keyframes pulse-wa{
  0%,100%{ box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); }
  50%{ box-shadow: 0 8px 24px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0); }
}
@media (max-width: 800px){
  .wa-float{ bottom: 90px; }
}

/* ============= GENERIC PAGES (about/contact/legal) ============= */
.page-hero{
  background: var(--cream);
  padding: 60px 0 30px;
  text-align:center;
}
.page-content{
  max-width: 820px;
  margin: 0 auto;
  padding: 30px 20px 80px;
  font-size: 1.02rem;
  line-height: 1.85;
}
.page-content h2{ margin-top: 30px; margin-bottom: 12px; }
.page-content h3{ margin-top: 22px; margin-bottom: 10px; }
.page-content p, .page-content ul{ margin-bottom: 16px; color: #2A2A2A; }
.page-content ul{ padding-right: 22px; }
.page-content ul li{ margin-bottom: 6px; }
.page-content a{ color: var(--gold-2); text-decoration: underline; }

/* ============= CONTACT ============= */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-card{
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin-bottom: 14px;
}
.contact-card h4{ color: var(--forest-dark); margin-bottom: 8px; }
.contact-card a{ color: var(--gold-2); font-weight: 600; }
@media (max-width: 800px){ .contact-grid{ grid-template-columns: 1fr; } }

/* ============= UTILITIES ============= */
.text-center{ text-align: center; }
.mb-0{ margin-bottom: 0 !important; }
.mt-3{ margin-top: 24px; }
.gold{ color: var(--gold-2); }
.hidden{ display:none !important; }

/* ============= THANK YOU PAGE ============= */
.thanks{
  text-align:center;
  padding: 80px 20px;
}
.thanks-icon{
  width: 100px; height: 100px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 30px;
}
.thanks-icon svg{ width: 56px; height: 56px; }
.thanks h1{ margin-bottom: 16px; }
.thanks p{ max-width: 540px; margin: 0 auto 14px; color: #404040; font-size: 1.05rem; }
.thanks-actions{ margin-top: 36px; display:flex; justify-content:center; gap: 12px; flex-wrap:wrap; }

/* ============= FADE IN ON SCROLL ============= */
.reveal{ opacity:0; transform: translateY(30px); transition: all .7s ease; }
.reveal.in{ opacity: 1; transform: translateY(0); }
