  :root{
    --mint:        #E8F5EE;
    --mint-border: #CFE8DA;
    --green:       #1F8A57;
    --green-deep:  #14603C;
    --navy:        #122438;
    --ink:         #14181F;
    --body:        #5C6572;
    --card-border: #E7E5E0;
    --amber:       #E8A23D;
    --white:       #FFFFFF;
    --radius:      16px;
    --max:         1120px;
  }

  *{ box-sizing:border-box; margin:0; padding:0; }
  html{ scroll-behavior:smooth; }
  body{
    font-family:'Inter', system-ui, sans-serif;
    color:var(--ink);
    background:var(--white);
    line-height:1.5;
    -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3,h4{ font-family:'Sora', 'Inter', sans-serif; color:var(--ink); line-height:1.15; }
  img{ max-width:100%; display:block; }
  a{ color:inherit; text-decoration:none; }
  button{ font-family:inherit; cursor:pointer; }
  .wrap{ max-width:var(--max); margin:0 auto; padding:0 20px; }
  .visually-hidden{ position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

  /* ---------- Nav ---------- */
  .nav{
    position:sticky; top:0; z-index:50;
    background:rgba(255,255,255,0.92);
    backdrop-filter:saturate(160%) blur(8px);
    border-bottom:1px solid var(--card-border);
  }
  .nav .wrap{
    display:flex; align-items:center; justify-content:space-between;
    height:76px; gap:24px;
  }
  .brand{ display:flex; align-items:center; gap:12px; }
  .brand-mark{
    width:38px; height:38px; border-radius:11px;
    background:#0b0b0b; overflow:hidden;
    display:flex; align-items:center; justify-content:center;
    flex-shrink:0;
  }
  .brand-mark img{ width:100%; height:100%; object-fit:cover; display:block; }
  .brand-name{ font-family:'Sora'; font-weight:700; font-size:19px; letter-spacing:-0.01em; white-space:nowrap; }
  .brand-tag{
    display:none; font-size:12.5px; color:var(--body); padding-left:14px;
    border-left:1px solid var(--card-border); font-weight:500;
  }
  .nav-links{ display:none; gap:4px; align-items:center; }
  .nav-links a{
    font-size:14.5px; font-weight:500; color:var(--ink); white-space:nowrap;
    padding:10px 12px; border-radius:8px; transition:background .15s, color .15s;
  }
  .nav-links a:hover{ background:var(--mint); color:var(--green-deep); }
  .nav-actions{ display:flex; align-items:center; gap:12px; }
  .nav-search{ display:none; position:relative; width:200px; }
  .nav-search input{
    width:100%; height:40px; border-radius:999px; border:1px solid var(--mint-border);
    background:var(--mint); padding:0 40px 0 16px; font-size:13.5px; outline:none;
  }
  .nav-search input:focus{ border-color:var(--green); background:#fff; }
  .nav-search svg{ position:absolute; right:14px; top:50%; transform:translateY(-50%); pointer-events:none; }
  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:8px;
    font-weight:600; font-size:14.5px; border-radius:999px; border:1.5px solid transparent;
    padding:11px 22px; transition:all .15s ease; white-space:nowrap;
  }
  .btn-navy{ background:var(--navy); color:#fff; }
  .btn-navy:hover{ background:#0c1a2a; }
  .btn-outline{ background:transparent; border-color:var(--navy); color:var(--navy); }
  .btn-outline:hover{ background:var(--navy); color:#fff; }
  .btn-white{ background:#fff; color:var(--navy); }
  .btn-white:hover{ background:var(--mint); }
  .btn-outline-light{ border-color:rgba(255,255,255,.55); color:#fff; }
  .btn-outline-light:hover{ background:rgba(255,255,255,.12); }
  .btn-sm{ padding:8px 16px; font-size:13.5px; }
  .menu-toggle{
    display:flex; width:44px; height:44px; border-radius:12px; border:1px solid var(--card-border);
    align-items:center; justify-content:center; background:none;
  }

  /* mobile drawer */
  .drawer{
    position:fixed; inset:0; background:rgba(10,16,24,.45); z-index:60;
    opacity:0; pointer-events:none; transition:opacity .2s;
  }
  .drawer.open{ opacity:1; pointer-events:auto; }
  .drawer-panel{
    position:absolute; top:0; right:0; height:100%; width:80%; max-width:320px;
    background:#fff; padding:24px 20px; transform:translateX(100%); transition:transform .25s ease;
    display:flex; flex-direction:column; gap:4px;
  }
  .drawer.open .drawer-panel{ transform:translateX(0); }
  .drawer-panel a{ padding:14px 6px; font-weight:600; font-size:15.5px; border-bottom:1px solid #F1F0EC; }
  .drawer-close{ align-self:flex-end; width:36px; height:36px; border-radius:10px; border:1px solid var(--card-border); background:none; margin-bottom:8px; }

  /* ---------- Hero ---------- */
  .hero{ background:var(--mint); padding:52px 0 56px; overflow:hidden; position:relative; }
  .hero .wrap{ display:flex; flex-direction:column; align-items:center; text-align:center; gap:20px; }
  .badges{ display:flex; flex-wrap:wrap; gap:8px; justify-content:center; }
  .badge{
    display:inline-flex; align-items:center; gap:6px; background:#fff;
    border:1px solid var(--mint-border); border-radius:999px; padding:6px 14px;
    font-size:12.5px; font-weight:600; color:var(--green-deep);
  }
  .hero h1{
    font-size:clamp(30px, 5.4vw, 54px); font-weight:800; max-width:720px; letter-spacing:-0.015em;
  }
  .hero h1 .accent{ color:var(--green); }
  .hero p.lede{ font-size:clamp(15px,1.6vw,18.5px); color:var(--body); max-width:560px; }
  .hero-actions{ display:flex; flex-wrap:wrap; gap:12px; justify-content:center; width:100%; max-width:560px; }
  .search-box{ position:relative; flex:1; min-width:220px; }
  .search-box input{
    width:100%; height:52px; border-radius:999px; border:1px solid var(--mint-border);
    background:#fff; padding:0 48px 0 20px; font-size:14.5px; outline:none;
  }
  .search-box input:focus{ border-color:var(--green); box-shadow:0 0 0 3px rgba(31,138,87,.12); }
  .search-box svg{ position:absolute; right:18px; top:50%; transform:translateY(-50%); color:var(--body); pointer-events:none; }

  .hero-visual{
    margin-top:12px; width:100%; max-width:1000px; aspect-ratio:16/9; border-radius:22px;
    overflow:hidden; border:1px solid var(--mint-border); background:#DCF0E4;
  }
  .hero-visual img{ width:100%; height:100%; object-fit:cover; object-position:15% center; display:block; }
  @media (min-width:700px){ .hero-visual{ aspect-ratio:5/2; } }
  @media (min-width:900px){ .hero-visual{ aspect-ratio:3/1; } }

  /* ---------- Section shells ---------- */
  section{ padding:64px 0; }
  .section-head{ display:flex; align-items:baseline; justify-content:space-between; gap:16px; margin-bottom:28px; }
  .section-head h2{ font-size:clamp(20px,2.4vw,28px); font-weight:700; }
  .section-head a{ font-size:14px; font-weight:600; color:var(--green-deep); display:inline-flex; align-items:center; gap:6px; }

  /* ---------- Categories ---------- */
  .cat-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:12px; }
  .cat-card{
    display:flex; flex-direction:column; align-items:center; gap:10px; text-align:center;
    padding:22px 10px; border:1px solid var(--card-border); border-radius:14px;
    transition:border-color .15s, box-shadow .15s, transform .15s;
  }
  .cat-card:hover{ border-color:var(--green); box-shadow:0 8px 20px -14px rgba(20,30,40,.3); transform:translateY(-2px); }
  .cat-icon{
    width:46px; height:46px; border-radius:12px; background:var(--mint);
    display:flex; align-items:center; justify-content:center; color:var(--green-deep);
  }
  .cat-card span{ font-size:13.5px; font-weight:600; }

  /* ---------- Product grid ---------- */
  .prod-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
  .prod-card{
    border:1px solid var(--card-border); border-radius:14px; overflow:hidden;
    display:flex; flex-direction:column; transition:box-shadow .15s, transform .15s;
  }
  .prod-card:hover{ box-shadow:0 12px 28px -16px rgba(20,30,40,.28); transform:translateY(-2px); }
  .prod-media{ aspect-ratio:1; position:relative; background:var(--mint); }
  .prod-media img{ width:100%; height:100%; object-fit:cover; display:block; }
  .prod-tag{
    position:absolute; top:10px; left:10px; background:rgba(255,255,255,.92); color:var(--green-deep);
    font-size:10.5px; font-weight:700; padding:3px 8px; border-radius:999px; letter-spacing:.02em;
  }
  .prod-body{ padding:14px; display:flex; flex-direction:column; gap:6px; flex:1; }
  .prod-name{ font-size:13.5px; font-weight:600; line-height:1.35; }
  .prod-price{ font-size:16px; font-weight:700; margin-top:auto; padding-top:6px; }
  .prod-price .old{ font-size:12px; color:var(--body); font-weight:500; text-decoration:line-through; margin-left:6px; }

  /* ---------- Why shop ---------- */
  .why{ background:var(--green-deep); color:#fff; }
  .why h2{ color:#fff; text-align:center; margin-bottom:40px; }
  .why-grid{ display:grid; grid-template-columns:1fr; gap:32px; text-align:center; }
  .why-item{ display:flex; flex-direction:column; align-items:center; gap:12px; }
  .why-icon{ width:52px; height:52px; border-radius:50%; background:rgba(255,255,255,.12); display:flex; align-items:center; justify-content:center; }
  .why-item h3{ color:#fff; font-size:16.5px; }
  .why-item p{ color:rgba(255,255,255,.78); font-size:14px; max-width:280px; }

  /* ---------- Testimonials ---------- */
  .rating-row{ display:flex; align-items:center; gap:8px; margin-bottom:4px; }
  .stars{ color:var(--amber); display:flex; gap:2px; }
  .testi-scroller{
    display:flex; gap:16px; overflow-x:auto; scroll-snap-type:x mandatory; padding-bottom:6px;
    -ms-overflow-style:none; scrollbar-width:none;
  }
  .testi-scroller::-webkit-scrollbar{ display:none; }
  .testi-card{
    scroll-snap-align:start; min-width:260px; max-width:300px; flex:0 0 auto;
    border:1px solid var(--card-border); border-radius:14px; padding:22px;
    display:flex; flex-direction:column; gap:12px;
  }
  .testi-top{ display:flex; align-items:center; gap:10px; }
  .avatar{
    width:40px; height:40px; border-radius:50%; object-fit:cover; flex-shrink:0; display:block;
  }
  .testi-name{ font-weight:600; font-size:13.5px; }
  .testi-role{ font-size:11.5px; color:var(--body); }
  .testi-card p{ font-size:13.5px; color:var(--body); line-height:1.55; }
  .testi-controls{ display:flex; gap:10px; justify-content:flex-end; margin-top:16px; }
  .testi-controls button{
    width:38px; height:38px; border-radius:50%; border:1px solid var(--card-border);
    background:#fff; display:flex; align-items:center; justify-content:center; color:var(--ink);
  }
  .testi-controls button:hover{ background:var(--mint); border-color:var(--mint-border); }

  /* ---------- CTA banner ---------- */
  .cta-band{ background:var(--navy); color:#fff; text-align:center; }
  .cta-band h2{ color:#fff; font-size:clamp(22px,3vw,32px); margin-bottom:10px; }
  .cta-band p{ color:rgba(255,255,255,.72); margin-bottom:28px; font-size:14.5px; }
  .cta-actions{ display:flex; gap:12px; flex-wrap:wrap; justify-content:center; }

  /* ---------- Footer ---------- */
  footer{ background:var(--navy); color:#fff; padding-top:48px; }
  .foot-grid{ display:grid; grid-template-columns:1fr; gap:32px; padding-bottom:28px; border-bottom:1px solid rgba(255,255,255,.1); }
  .foot-head{ font-size:12px; font-weight:700; letter-spacing:.04em; border-bottom:2px solid rgba(255,255,255,.12); padding-bottom:8px; margin-bottom:12px; }
  footer p.about{ font-size:13.5px; color:rgba(255,255,255,.72); max-width:320px; line-height:1.6; }
  footer p.disclaimer{ font-size:11.5px; color:rgba(255,255,255,.55); margin-top:14px; max-width:320px; line-height:1.6; }
  footer a{ display:block; font-size:13.5px; color:rgba(255,255,255,.72); padding:6px 0; transition:color .15s; }
  footer a:hover{ color:#fff; }
  footer .foot-line{ font-size:13.5px; color:rgba(255,255,255,.72); padding:6px 0; }
  .foot-bottom{ display:flex; flex-direction:column; gap:10px; align-items:center; text-align:center; padding:18px 0; font-size:12px; color:rgba(255,255,255,.6); }

  /* ---------- Desktop breakpoint ---------- */
  @media (min-width:900px){
    .nav-links{ display:flex; }
    .nav-search{ display:block; }
    .menu-toggle{ display:none; }
    .hero{ padding:88px 0 100px; }
    .cat-grid{ grid-template-columns:repeat(7,1fr); }
    .prod-grid{ grid-template-columns:repeat(4,1fr); }
    .why-grid{ grid-template-columns:repeat(3,1fr); }
    .foot-grid{ grid-template-columns:2fr 1fr 1fr 1fr; }
    .foot-bottom{ flex-direction:row; justify-content:space-between; }
  }
  @media (min-width:1100px){
    .brand-tag{ display:block; white-space:nowrap; }
  }
  @media (min-width:640px) and (max-width:899px){
    .cat-grid{ grid-template-columns:repeat(4,1fr); }
  }
