/* Add custom CSS styles below */ 
:root{
    --green:#02542F;
    --green-dark:#013D22;
    --green-tint:#EAF2ED;
    --green-tint-2:#F6FAF7;
    --ink:#14201A;
    --white:#FFFFFF;
    --grey:#6E7A73;
    --line:#DDE7E1;
  }

  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--white);
    color:var(--ink);
    font-family:'Tajawal', sans-serif;
  }
  h1,h2,h3,.display{ font-family:'El Messiri', serif; font-weight:600; }
  a{color:inherit; text-decoration:none;}
  img{max-width:100%; display:block;}

  /* ===== Offer popup ===== */
  .offer-overlay{
    position:fixed; inset:0; z-index:200;
    background:rgba(20,32,26,0.55);
    display:flex; align-items:center; justify-content:center;
    padding:20px;
    opacity:1; visibility:visible; transition:opacity .3s ease, visibility .3s ease;
  }
  .offer-overlay.hidden{ opacity:0; visibility:hidden; pointer-events:none; }
  .offer-card{
    position:relative; background:var(--white); border:1px solid var(--line); border-radius:16px;
    max-width:400px; width:100%; padding:40px 30px 34px; text-align:center;
    box-shadow:0 20px 50px rgba(0,0,0,0.18);
  }
  .offer-close{
    position:absolute; top:14px; left:14px; width:32px; height:32px; border-radius:50%;
    border:1px solid var(--line); background:var(--white); color:var(--grey); font-size:1.1rem;
    cursor:pointer; line-height:1;
  }
  .offer-close:hover{ background:var(--green-tint); color:var(--ink); }
  .offer-tag{
    display:inline-block; color:var(--green); font-size:0.72rem; letter-spacing:0.5px;
    text-transform:uppercase; font-weight:700; background:var(--green-tint); padding:6px 14px; border-radius:20px;
    margin-bottom:16px;
  }
  .offer-card h3{ font-size:1.7rem; color:var(--ink); margin-bottom:10px; }
  .offer-card p{ color:var(--grey); font-size:0.92rem; line-height:1.8; margin-bottom:20px; }
  .offer-timer{
    font-family:'El Messiri',serif; font-size:1.9rem; color:var(--green-dark);
    background:var(--green-tint); border-radius:10px; padding:12px; margin-bottom:22px; letter-spacing:1px;
  }

  .offer-bar{
    display:none; align-items:center; justify-content:center; gap:14px; flex-wrap:wrap;
    background:var(--green); color:var(--white); font-size:0.85rem; text-align:center;
    padding:10px 6%;
  }
  .offer-bar strong{ font-family:'El Messiri',serif; font-size:1rem; }
  .offer-bar a{ text-decoration:underline; font-weight:700; }
  .offer-bar.show{ display:flex; }

  /* ===== Nav ===== */
  header{
    position:sticky; top:0; z-index:50;
    display:flex; align-items:center; justify-content:space-between;
    padding:16px 6%;
    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line);
  }
  .logo{ display:flex; align-items:center; gap:10px; }
  .logo img{ height:46px; width:auto; }
  nav ul{ display:flex; gap:36px; list-style:none; font-size:0.95rem; color:var(--ink); font-weight:500; }
  nav a{ position:relative; padding-bottom:4px; }
  nav a::after{ content:''; position:absolute; right:0; bottom:0; width:0; height:2px; background:var(--green); transition:width .3s ease; }
  nav a:hover::after{ width:100%; }

  .btn{
    padding:13px 30px; border-radius:6px; font-weight:700; font-size:0.9rem;
    border:1.5px solid var(--green); cursor:pointer; transition:all .3s ease; letter-spacing:.3px;
  }
  .btn.primary{ background:var(--green); color:var(--white); }
  .btn.primary:hover{ background:var(--green-dark); border-color:var(--green-dark); }
  .btn.ghost{ background:transparent; color:var(--green); }
  .btn.ghost:hover{ background:var(--green-tint); }

  /* ===== Hero ===== */
  .hero{
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    text-align:center; padding:90px 6% 100px;
    background: var(--white);
  }
  .hero img.logo-big{ width:180px; margin-bottom:10px; }
  .hero .eyebrow{
    color:var(--green); letter-spacing:1.5px; font-size:0.8rem; text-transform:uppercase;
    margin-bottom:18px; font-weight:700;
  }
  .hero h1{
    font-size:clamp(2.6rem, 6vw, 4.4rem); line-height:1.15; color:var(--ink); max-width:820px;
  }
  .hero h1 span{ color:var(--green); }
  .hero p.sub{
    max-width:520px; margin:26px auto 0; color:var(--grey); font-size:1.08rem; line-height:1.9; font-weight:400;
  }
  .hero-cta{ margin-top:38px; display:flex; gap:16px; flex-wrap:wrap; justify-content:center; }

  section{ padding:90px 6%; }
  .section-head{ text-align:center; max-width:600px; margin:0 auto 56px; }
  .section-head .tag{ color:var(--green); letter-spacing:1.5px; font-size:0.78rem; text-transform:uppercase; font-weight:600; }
  .section-head h2{ font-size:clamp(1.9rem,3.4vw,2.6rem); margin-top:14px; color:var(--ink); }
  .section-head p{ color:var(--grey); margin-top:14px; line-height:1.9; }

  /* ===== Trust strip ===== */
  .trust{
    display:flex; justify-content:center; gap:50px; flex-wrap:wrap;
    padding:36px 6%; background:var(--green-tint-2); border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  }
  .trust div{ display:flex; align-items:center; gap:10px; color:var(--green-dark); font-weight:700; font-size:0.92rem; }

  /* ===== Products ===== */
  .grid{
    display:grid; grid-template-columns:repeat(4,1fr); gap:26px;
    max-width:1320px; margin:0 auto;
  }
  .card{
    background:var(--white); border:1px solid var(--line); border-radius:14px;
    overflow:hidden; display:flex; flex-direction:column;
    transition:transform .3s ease, box-shadow .3s ease;
  }
  .card:hover{ transform:translateY(-3px); box-shadow:0 10px 24px rgba(2,84,47,0.08); }
  .card-badge{
    position:absolute; margin:16px; font-size:0.68rem; font-weight:700; letter-spacing:0.5px;
    background:var(--green); color:var(--white); padding:5px 12px; border-radius:20px; text-transform:uppercase;
  }
  .card-visual{
    aspect-ratio:1/1; position:relative; display:flex; align-items:center; justify-content:center;
    background:var(--green-tint); border-bottom:1px solid var(--line);
  }
  .card-visual svg{ width:44%; }
  .card-body{ padding:24px 22px 26px; display:flex; flex-direction:column; flex:1; }
  .card-body .kicker{ color:var(--green); font-size:0.72rem; letter-spacing:0.5px; text-transform:uppercase; font-weight:700; margin-bottom:8px; }
  .card-body h3{ font-size:1.35rem; color:var(--ink); margin-bottom:10px; }
  .card-body p{ color:var(--grey); font-size:0.9rem; line-height:1.8; flex:1; }
  .card-footer{
    display:flex; align-items:center; justify-content:space-between; margin-top:18px; padding-top:16px; border-top:1px solid var(--line);
  }
  .price{ font-family:'El Messiri',serif; font-size:1.4rem; color:var(--green-dark); }
  .price small{ font-size:0.78rem; color:var(--grey); font-family:'Tajawal',sans-serif; font-weight:400; }
  .buy{
    display:inline-flex; align-items:center; gap:6px; font-size:0.82rem; font-weight:700; color:var(--white);
    background:var(--green); padding:9px 18px; border-radius:6px; border:1.5px solid var(--green); cursor:pointer; transition:all .25s ease;
  }
  .buy:hover{ background:var(--green-dark); }

  /* ===== Story ===== */
  .story{
    background:var(--green-tint-2); display:grid; grid-template-columns:1fr 1.15fr; gap:60px; align-items:center; border-radius:20px; margin:0 6%; padding:70px 6%;
  }
  .story-art{ display:flex; align-items:center; justify-content:center; }
  .story-art img{ width:70%; }
  .story-text .tag{ color:var(--green); letter-spacing:1.5px; font-size:0.78rem; text-transform:uppercase; font-weight:600; }
  .story-text h2{ font-size:clamp(1.8rem,3vw,2.4rem); margin:14px 0 20px; color:var(--ink); }
  .story-text p{ color:var(--grey); line-height:1.9; margin-bottom:14px; }

  /* ===== How to order ===== */
  .steps{ display:flex; gap:30px; max-width:1000px; margin:0 auto; flex-wrap:wrap; justify-content:center; }
  .step{ flex:1; min-width:220px; text-align:center; }
  .step .num{
    width:48px; height:48px; border-radius:50%; background:var(--green); color:var(--white);
    display:flex; align-items:center; justify-content:center; font-family:'El Messiri',serif; font-size:1.3rem;
    margin:0 auto 16px;
  }
  .step h4{ font-size:1.05rem; margin-bottom:8px; color:var(--ink); }
  .step p{ color:var(--grey); font-size:0.88rem; line-height:1.8; }

  /* ===== CTA ===== */
  .cta-band{
    background:var(--green); color:var(--white); text-align:center; border-radius:20px; margin:0 6%; padding:64px 6%;
  }
  .cta-band h2{ font-size:clamp(1.7rem,3vw,2.3rem); margin-bottom:16px; }
  .cta-band p{ opacity:0.85; max-width:480px; margin:0 auto 30px; line-height:1.8; }
  .cta-band .btn.primary{ background:var(--white); color:var(--green); border-color:var(--white); }
  .cta-band .btn.primary:hover{ background:var(--green-tint); }

  /* ===== Footer ===== */
  footer{ padding:60px 6% 26px; }
  .foot-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:44px; max-width:1280px; margin:0 auto 40px; }
  .foot-logo{ display:flex; align-items:center; gap:10px; margin-bottom:14px; }
  .foot-logo img{ height:38px; }
  .foot-grid p{ color:var(--grey); line-height:1.9; font-size:0.9rem; max-width:320px; }
  .foot-grid h4{ color:var(--ink); font-size:0.92rem; margin-bottom:16px; }
  .foot-grid ul{ list-style:none; display:flex; flex-direction:column; gap:10px; }
  .foot-grid ul a{ color:var(--grey); font-size:0.88rem; }
  .foot-grid ul a:hover{ color:var(--green); }
  .foot-bottom{
    max-width:1280px; margin:0 auto; padding-top:22px; border-top:1px solid var(--line);
    display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; color:var(--grey); font-size:0.8rem;
  }

  .reveal{ opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
  .reveal.in{ opacity:1; transform:translateY(0); }

  @media (max-width:980px){
    nav{ display:none; }
    .grid{ grid-template-columns:repeat(2,1fr); }
    .story{ grid-template-columns:1fr; }
    .foot-grid{ grid-template-columns:1fr; }
  }
  @media (max-width:560px){
    .grid{ grid-template-columns:1fr; }
  }
  @media (prefers-reduced-motion: reduce){ *{ animation:none !important; transition:none !important; } }