:root{
      --yellow:#FBDF0A;
      --coral:#86C440;
      --brand: var(--coral);
      --brand-dark:#2F5B1E;
      --pink:#F3F9EC;
      --peach:#F5FAF0;
      --purple:#1E3A10;
      --ink:#1D3B14;
      --white:#fff;
      --surface:#ffffff;
      --bg:#F5FAF0;

      --max: 1760px;
      --radius: 18px;
      --radius2: 22px;

      --shadow: 0 18px 40px rgba(0,0,0,.18);
      --shadow2: 0 12px 26px rgba(0,0,0,.12);
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color:var(--ink);
      background:var(--bg);
    }
    a{color:inherit;text-decoration:none}
    .container{width:min(var(--max), calc(100% - 48px)); margin:0 auto}

    .top-strip{
      background:rgba(29,59,20,.96);
      color:#fff;
      font-weight:800;
      letter-spacing:.4px;
      text-align:center;
      padding:8px 12px;
      font-size:14px;
    }

    header{
      background:var(--white);
      position:sticky;
      top:0;
      z-index:50;
      border-bottom:1px solid rgba(0,0,0,.08);
    }
    .header-inner{
      display:grid;
      grid-template-columns: 1fr auto 1fr;
      align-items:center;
      gap:12px;
      padding:18px 0;
    }
    .nav{
      display:flex;
      gap:18px;
      align-items:center;
      font-weight:900;
      letter-spacing:.5px;
      text-transform:uppercase;
      font-size:12px;
    }
    .nav a{padding:8px 10px; border-radius:999px}
    .nav a:hover{background:rgba(255,255,255,.35)}
    .logo{
      display:flex; align-items:center;
    }
    .logo-img{height:170px; width:auto; display:block}
    @media (max-width: 520px){
      .logo-img{height:124px}
    }
    .header-right{
      display:flex;
      justify-content:flex-end;
      gap:10px;
      align-items:center;
    }
    .icon-btn{
      width:40px;height:40px;
      display:grid;place-items:center;
      border-radius:999px;
      border:1px solid rgba(0,0,0,.14);
      background:rgba(255,255,255,.40);
      cursor:pointer;
    }
    .icon-btn:hover{background:rgba(255,255,255,.62)}
    .mobile-toggle{display:none}

    .hero{
      background:linear-gradient(180deg, rgba(245,250,240,.96) 0%, rgba(255,255,255,.88) 55%, rgba(134,196,64,.04) 100%);
      position:relative;
      overflow:hidden;
      padding:54px 0 18px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:26px;
      align-items:center;
      padding-bottom:24px;
    }
    h1{
      margin:0 0 10px;
      color:var(--brand-dark);
      font-family: Fredoka, Inter, system-ui, sans-serif;
      font-weight:900;
      letter-spacing:-.6px;
      font-size: clamp(68px, 5.9vw, 104px);
      line-height:.95;
      text-transform:lowercase;
    }
    .hero p{
      margin:0 0 14px;
      font-size:19px;
      line-height:1.6;
      max-width:46ch;
      color:rgba(29,59,20,.82);
      font-weight:600;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:10px 14px;
      border-radius:999px;
      background:rgba(29,59,20,.96);
      color:#fff;
      font-weight:900;
      letter-spacing:.4px;
      text-transform:uppercase;
      font-size:12px;
      border:0;
      cursor:pointer;
      box-shadow: 0 10px 18px rgba(29,59,20,.18);
    }
    .btn:hover{filter:brightness(1.06)}
    .btn.ghost{background:var(--bg); color:var(--purple); box-shadow:none}
    .hero-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:8px}

    .hero-art{position:relative; min-height:620px;}
    .hero-art.single{min-height:560px;}
    .hero-art.single .can.big{right:50%; transform:translateX(50%) rotate(6deg); top:-10px;}

    .can{
      position:absolute;
      width:min(640px, 90vw);
      filter: drop-shadow(0 22px 40px rgba(0,0,0,.25));
      transform-origin: 50% 85%;
    }
    .can.big{right:32px; top:-24px; transform:rotate(8deg); z-index:4}
    .can.left{right:320px; top:170px; transform:rotate(-12deg) scale(.90); z-index:2}
    .can.front{right:110px; top:220px; transform:rotate(-6deg) scale(.94); z-index:3}
    .can.right{right:-34px; top:165px; transform:rotate(12deg) scale(.90); z-index:1}

    .fruit{position:absolute; width:130px; filter: drop-shadow(0 12px 20px rgba(0,0,0,.18)); opacity:.95;}
    .fruit.lemon{right:260px; top:20px; width:98px}
    .fruit.blue{right:110px; top:18px; width:64px}
    .fruit.red{right:8px; top:55px; width:88px}
    .fruit.grape{right:190px; top:70px; width:66px}

    .wave{position:relative; height:58px; margin-top:-8px;}
    .wave svg{width:100%; height:100%; display:block}
    .wave path{fill:rgba(134,196,64,.18)}

    .sunset{
      background: linear-gradient(180deg, #ffffff 0%, var(--peach) 100%);
      position:relative;
      overflow:hidden;
      padding:0 0 26px;
    }

    .section{padding:32px 0;}
    .title{
      font-family: Fredoka, Inter, system-ui, sans-serif;
      font-weight:900;
      font-size: clamp(46px, 3.8vw, 74px);
      text-align:center;
      margin:0 0 12px;
      letter-spacing:-.3px;
      text-transform:capitalize;
      color:var(--purple);
    }
    .subline{
      text-align:center;
      margin:0 auto 18px;
      max-width:72ch;
      color:rgba(29,59,20,.78);
      font-weight:700;
      font-size:14px;
      line-height:1.6;
    }

    .flavors{display:flex; gap:18px; justify-content:center; align-items:flex-start; flex-wrap:wrap; padding-top:10px;}
    .flavor{width:195px; text-align:center; color:rgba(29,59,20,.9); font-weight:800; font-size:14px;}
    .flavor .imgwrap{
      width:186px; height:186px; margin:0 auto 10px; display:grid; place-items:center;
      background:rgba(255,255,255,.28); border:1px solid rgba(30,58,16,.18);
      border-radius:999px; box-shadow: var(--shadow2);
    }
    .flavor img{height:186px; width:auto}
    .flavor small{display:block; margin-top:4px; font-weight:900; opacity:.85}

    .dots{display:flex; gap:7px; justify-content:center; margin-top:12px;}
    .dot{width:7px; height:7px; border-radius:999px; background:rgba(29,59,20,.28);}
    .dot.on{background:rgba(29,59,20,.9)}

    .happy-grid{display:flex; gap:26px; justify-content:center; flex-wrap:wrap; margin-top:12px;}
    .happy{width:195px; text-align:center; font-weight:900; color:rgba(29,59,20,.9); font-size:14px; text-transform:lowercase;}
    .happy svg{width:60px; height:60px; display:block; margin:0 auto 8px;}
    .lineicon *{stroke: var(--purple); fill:none; stroke-width:2.2; stroke-linecap:round; stroke-linejoin:round}

    .ticker{margin:18px 0 0; border-top:1px solid rgba(30,58,16,.18); border-bottom:1px solid rgba(30,58,16,.18); padding:12px 0; overflow:hidden;}
    .ticker .track{
      display:flex; gap:34px; width:max-content; animation: scroll 18s linear infinite;
      font-weight:900; letter-spacing:.6px; text-transform:uppercase; font-size:12px; color:rgba(29,59,20,.9);
    }
    .spark{display:inline-flex; align-items:center; gap:10px}
    .spark svg{width:18px;height:18px}
    .spark path{fill:rgba(29,59,20,.85)}
    @keyframes scroll{ from{transform: translateX(0)} to{transform: translateX(-50%)} }

    .seen{display:flex; justify-content:center; gap:26px; flex-wrap:wrap; margin-top:10px;
      font-weight:900; text-transform:uppercase; font-size:10px; letter-spacing:.7px; color:rgba(29,59,20,.75);
    }
    .seen .mid{width:42px; height:42px; border-radius:999px; border:1px solid rgba(29,59,20,.22);
      display:grid; place-items:center; font-family: Fredoka, Inter, system-ui, sans-serif; font-size:19px; color:rgba(29,59,20,.9);
    }

    .perfect-row{
      display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:18px; align-items:stretch;
      margin-top:14px; position:relative;
    }
    .p-card{
      background:var(--bg); border:2px solid rgba(29,59,20,.9); border-radius:14px; padding:16px 14px;
      box-shadow: var(--shadow2); min-height:124px;
    }
    .p-card h4{margin:0 0 8px; font-family: Fredoka, Inter, system-ui, sans-serif; font-weight:900; font-size:19px; color:var(--purple);}
    .p-card p{margin:0; font-weight:700; font-size:14px; color:rgba(29,59,20,.78); line-height:1.55}
    .p-card .mini-ico{width:26px; height:26px; border-radius:10px; background:rgba(255,122,94,.14);
      border:1px solid rgba(30,58,16,.18); display:grid; place-items:center; margin-bottom:10px; font-weight:900; color:var(--purple);
    }
    .sticker{
      position:absolute; right:-10px; top:-24px; width:96px; height:96px; border-radius:999px; background:var(--bg);
      border:2px solid rgba(29,59,20,.9); box-shadow: var(--shadow2); display:grid; place-items:center; transform: rotate(12deg);
    }
    .sticker span{width:88px; text-align:center; font-weight:1000; font-size:10px; text-transform:uppercase; letter-spacing:.6px; line-height:1.2;}
    .sticker small{display:block; margin-top:6px; font-family: Fredoka, Inter, system-ui, sans-serif; font-size:19px; letter-spacing:-.2px; text-transform:none;}

    .makes{display:flex; justify-content:center; gap:22px; flex-wrap:wrap; margin-top:12px;}
    .make{width:140px; text-align:center; font-weight:900; font-size:12px; text-transform:capitalize; color:rgba(29,59,20,.9);}
    .make svg{width:66px; height:66px; display:block; margin:0 auto 8px}
    .make .lineicon *{stroke-width:2.1}

    .dark{background:rgba(29,59,20,.96); color:#fff; position:relative; overflow:hidden; padding:0 0 10px;}
    .dark .wave-top, .dark .wave-bot{height:86px;}
    .dark .wave-top svg, .dark .wave-bot svg{width:100%; height:100%; display:block}
    .dark-inner{padding:34px 0 40px}
    .dark-title{text-align:center; font-family: Fredoka, Inter, system-ui, sans-serif; font-weight:900;
      font-size: clamp(30px, 3.5vw, 46px); letter-spacing:-.3px; margin:0 0 18px;
    }
    .stars{display:flex; justify-content:center; gap:3px; margin-bottom:6px; color:#FBDF0A; font-weight:1000; letter-spacing:1px;}
    .t-row{display:flex; gap:14px; overflow:auto; padding:10px 4px 4px; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch;}
    .t-card{scroll-snap-align:start; min-width: 320px; background:var(--bg); color:var(--purple); border-radius:12px;
      border:3px solid rgba(255,184,70,.0); box-shadow: 0 18px 36px rgba(0,0,0,.22); padding:12px;
    }
    .t-card.primary{border-color:#FBDF0A}
    .t-head{display:flex; gap:10px; align-items:center; margin-bottom:8px;}
    .avatar{width:44px;height:44px;border-radius:999px; background:rgba(255,120,178,.25); border:1px solid rgba(30,58,16,.18);
      display:grid;place-items:center; font-weight:1000; flex:0 0 auto;
    }
    .t-name{font-weight:1000; font-size:14px; line-height:1.25}
    .t-sub{opacity:.75; font-weight:900; font-size:10px; margin-top:2px}
    .t-stars{color:#FBDF0A; font-weight:1000; letter-spacing:1px; font-size:12px}
    .t-card p{margin:8px 0 0; font-weight:700; font-size:14px; line-height:1.55; color:rgba(29,59,20,.86)}
    .dark-actions{display:flex; justify-content:center; margin-top:16px;}
    .dark-note{text-align:center; margin-top:14px; font-weight:900; text-transform:uppercase; font-size:10px; letter-spacing:.6px; opacity:.86;}

    .peach{
      background: #ffffff;
      position:relative;
      overflow:hidden;
      padding:32px 0;
      border-top: 1px solid rgba(30,58,16,.12);
      border-bottom: 1px solid rgba(30,58,16,.12);
    }
    .compare-wrap{display:flex; justify-content:center; margin-top:16px;}
    .compare{
      width:min(860px, 100%); background:var(--bg); border-radius:14px; border:3px solid rgba(29,59,20,.95);
      box-shadow: var(--shadow); overflow:hidden;
    }
    table{width:100%; border-collapse:collapse; font-size:14px; font-weight:900; color:rgba(29,59,20,.88);}
    thead th{background:rgba(248,216,8,.18); color:rgba(29,59,20,.9); padding:10px 8px; text-align:center; border-bottom:1px solid rgba(30,58,16,.18);}
    thead th:first-child{text-align:left; padding-left:12px}
    tbody td{padding:10px 8px; border-top:1px solid rgba(29,59,20,.12); text-align:center;}
    tbody td:first-child{text-align:left; padding-left:12px; display:flex; align-items:center; gap:10px; font-weight:1000;}
    .brandlogo{width:40px;height:40px;border-radius:10px; background:rgba(255,120,178,.18); border:1px solid rgba(29,59,20,.14);
      display:grid; place-items:center; overflow:hidden;
    }
    .brandlogo img{max-width:100%; max-height:100%}
    .good{color:#86C440}
    .bad{color:#DC2626}
    .try-row{display:flex; justify-content:center; margin-top:14px}

    /* It's All Smiles — now using your exact images */
    .smiles-row{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:12px;
      margin-top:16px;
    }
    .shot{
      height:220px;
      border-radius:10px;
      overflow:hidden;
      position:relative;
      box-shadow: var(--shadow2);
      background:rgba(255,255,255,.25);
    }
    .shot img{
      width:100%; height:100%;
      object-fit:cover;
      display:block;
      transform: scale(1.02);
    }
    
    .smiles-row{ align-items:start; }
    .mini-cta{
      position:absolute;
      left:10px; bottom:10px;
      background:rgba(255,255,255,.92);
      color:var(--purple);
      border:2px solid rgba(29,59,20,.9);
      font-weight:1000;
      font-size:10px;
      letter-spacing:.6px;
      text-transform:uppercase;
      padding:7px 10px;
      border-radius:999px;
      box-shadow: 0 10px 18px rgba(0,0,0,.18);
    }
    .mini-cta:hover{ filter:brightness(1.03); }
    .shot-cap{
      margin-top:8px;
      font-weight:900;
      font-size:11px;
      color:rgba(29,59,20,.85);
    }


    .shot .cap{
      position:absolute;
      left:8px; bottom:8px;
      background:rgba(29,59,20,.85);
      color:#fff;
      font-weight:1000;
      font-size:10px;
      letter-spacing:.5px;
      text-transform:uppercase;
      padding:7px 10px;
      border-radius:999px;
    }
    .read-reviews{display:flex; justify-content:center; margin-top:14px;}

    footer{
      background:rgba(29,59,20,.96);
      color:#fff;
      position:relative;
      overflow:hidden;
      padding:26px 0 18px;
      border-top:1px solid rgba(255,255,255,.08);
    }
    .footer-top{
      display:grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap:18px; align-items:start; padding:16px 0 8px;
    }
    .foot-logo{font-family: Fredoka, Inter, system-ui, sans-serif; font-weight:900; font-size:34px; line-height:1; margin:0 0 6px;}
    .foot-tag{opacity:.88; font-weight:800; font-size:14px; line-height:1.5}
    .foot-col h5{margin:6px 0 8px; font-weight:1000; text-transform:uppercase; letter-spacing:.7px; font-size:10px; opacity:.9;}
    .foot-col a{display:block; padding:5px 0; opacity:.9; font-weight:800; font-size:14px;}
    .foot-col a:hover{opacity:1}
    .signup{display:flex; gap:10px; align-items:center; margin:10px 0 14px;}
    .signup input{
      width:100%; padding:10px 12px; border-radius:999px; border:1px solid rgba(255,255,255,.18);
      background:rgba(255,255,255,.08); color:#fff; outline:none; font-weight:800; font-size:14px;
    }
    .signup input::placeholder{color:rgba(255,255,255,.65)}
    .footer-bottom{
      display:flex; justify-content:space-between; align-items:center; gap:12px; padding-top:12px;
      border-top:1px solid rgba(255,255,255,.10); font-weight:800; font-size:12px; opacity:.88; flex-wrap:wrap;
    }
    .social{display:flex; gap:10px}
    .social a{
      width:32px;height:32px;border-radius:999px; display:grid;place-items:center;
      border:1px solid rgba(255,255,255,.18); background:rgba(255,255,255,.08);
    }

    
    @media (min-width: 980px){
      .t-row{ overflow:visible; }
      .t-card{ min-width: 0; width:100%; }
      .t-row{ display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); }
    }


    @media (max-width: 980px){
      .header-inner{grid-template-columns:auto 1fr auto}
      .nav.left{display:none}
      .mobile-toggle{display:inline-flex}
      .hero-grid{grid-template-columns: 1fr; gap:18px}
      .hero-art{min-height:300px}
      .can.big{right:20px}
      .can.left{right:172px}
      .can.front{right:64px}
      .perfect-row{grid-template-columns:1fr; gap:12px}
      .sticker{position:relative; right:auto; top:auto; margin:12px auto 0; transform:rotate(10deg)}
      .smiles-row{grid-template-columns:1fr;}
      .footer-top{grid-template-columns:1fr 1fr;}
    }
    @media (max-width: 560px){
      .hero{padding-top:26px}
      .hero p{font-size:13px}
      .hero-art{min-height:260px}
      .can.big{width:min(280px, 78vw); right:4px}
      .can.left{display:none}
      .can.right{display:none}
      .fruit{display:none}
      .flavor{width:140px}
      .t-card{min-width: 280px}
      .footer-top{grid-template-columns:1fr}
    }

    .drawer{
      display:none !important;
      background:rgba(255,255,255,.86);
      backdrop-filter: blur(8px);
      border-top:1px solid rgba(0,0,0,.08);
      padding:12px 0 16px;
    }
    .drawer a{
      display:block;
      width:min(var(--max), calc(100% - 30px));
      margin:8px auto 0;
      padding:12px 14px;
      border-radius:14px;
      background:rgba(255,255,255,.55);
      border:1px solid rgba(0,0,0,.10);
      font-weight:1000;
      letter-spacing:.4px;
      text-transform:uppercase;
      font-size:12px;
    }
    .drawer.show{display:block !important}
  
    /* Desktop scale bump so it doesn't feel tiny on big monitors */
    
    
    @media (min-width: 1900px){
      .container{ width: calc(100% - 96px); max-width: 1900px; }
    }


@media (max-width: 720px){
      .container{ width: calc(100% - 30px); }
    }


@media (min-width: 1100px){
      body{ font-size: 20px; }
      .btn{ font-size:14px; padding:14px 22px; }
      .nav{ font-size:12px; }
      .icon-btn{ width:44px; height:44px; }
      .p-card h4{ font-size:19px; }
      .p-card p{ font-size:13px; }
      table{ font-size:13px; }
    }


    /* Optional: force the mobile look at any screen width (use ?view=mobile) */
    body.force-mobile .container{ width: min(460px, calc(100% - 26px)); }
    body.force-mobile header .nav.left{ display:none; }
    body.force-mobile .mobile-toggle{ display:inline-flex; }
    body.force-mobile .hero-grid{ grid-template-columns: 1fr; gap:18px; }
    body.force-mobile .hero-art{ min-height:260px; }
    body.force-mobile .can.left, body.force-mobile .can.right{ display:none; }
    body.force-mobile .fruit{ display:none; }
    body.force-mobile .perfect-row{ grid-template-columns:1fr; }
    body.force-mobile .smiles-row{ grid-template-columns:1fr; }
    body.force-mobile .footer-top{ grid-template-columns:1fr; }


    /* Size boost pack (desktop) */
    @media (min-width: 980px){
      .hero-grid{ gap: 34px; }
      .hero-art{ transform: translateX(10px); }
    }



@media (max-width: 820px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-art{ min-height: 520px; margin-top: 12px; }
  .can{ width: min(520px, 92vw); }
  .can.big{ right: 6px; top: -10px; }
  .can.front{ right: -6px; top: 180px; }
  .can.left{ right: 180px; top: 210px; }
  .can.right{ display:none; } /* closest to mobile screenshot cluster */
}


/* =========================
   HERO: composition polish
   ========================= */
.hero{ padding-top: 22px; }
.hero-grid{ align-items:center; }
.hero-art{ min-height: 560px; } /* less tall than before */
.hero-art img.can{ filter: drop-shadow(0 24px 26px rgba(0,0,0,.26)); }

/* Tight triangular cluster (closer to perfy) */
.can.big{
  right: 18px;
  top: -10px;
  transform: rotate(8deg) scale(1.02);
  z-index: 4;
}
.can.front{
  right: 88px;
  top: 168px;
  transform: rotate(-6deg) scale(.96);
  z-index: 3;
}
.can.left{
  right: 250px;
  top: 188px;
  transform: rotate(-14deg) scale(.90);
  z-index: 2;
}
.can.right{
  right: -12px;
  top: 158px;
  transform: rotate(14deg) scale(.90);
  z-index: 1;
}

/* Let cans sit into the wave instead of being sliced */
.hero .waveWrap{ margin-top: -36px; }
.hero .waveWrap svg{ transform: translateY(10px); }

@media (min-width: 980px){
  .hero-art{ transform: translateX(18px) translateY(-2px); }
}
@media (max-width: 820px){
  .hero{ padding-top: 16px; }
  .hero-art{ min-height: 500px; }
  .can{ width: min(520px, 92vw); }
  .can.big{ right: 6px; top: -8px; }
  .can.front{ right: 10px; top: 172px; }
  .can.left{ right: 160px; top: 206px; }
  .can.right{ display:none; }
  .hero .waveWrap{ margin-top: -18px; }
}


/* --- HERO GUARD: keep cans overlapping --- */
.hero-art{ position:relative; }
.hero-art img.can{ position:absolute !important; display:block; }

.flavors{ padding-top: 44px; }

/* Perfect Soda cards: stronger hierarchy */
.p-card{ box-shadow: 12px 14px 0 rgba(29,59,20,.92); }
.p-card h4{ margin-bottom: 12px; }
.p-card p{ font-size: 15px; line-height: 1.65; }

/* Footer breathing room */
.footer-top{ column-gap: 44px; row-gap: 18px; }
.footer a{ line-height: 1.7; }


/* =========================
   GLOBAL SPACING / RHYTHM
   ========================= */
.section{ padding: 92px 0; }
.section.tight{ padding: 72px 0; }
.section.loose{ padding: 112px 0; }

/* Give headings breathing room */
.section-title{ margin-bottom: 28px; }
.kicker{ margin-bottom: 14px; }
.sub{ margin-top: 12px; }

/* Separate stacked sections that sit close (waves can compress) */
.wave-sep{ height: 34px; }

/* Hero -> next section spacing */
.hero{ padding-bottom: 44px; }
.hero .waveWrap{ margin-top: -12px; } /* less pull-up so it doesn't crowd the next section */

.flavors{ padding-top: 78px; padding-bottom: 92px; }
.happyWrap{ padding-top: 86px; padding-bottom: 92px; }

.perfect{ padding-top: 90px; padding-bottom: 102px; }
.perfy-icons{ padding-top: 86px; padding-bottom: 96px; }
.love{ padding-top: 92px; padding-bottom: 108px; }
.vs{ padding-top: 92px; padding-bottom: 104px; }
.smiles{ padding-top: 92px; padding-bottom: 108px; }

/* Footer spacing */
footer{ padding-top: 64px; padding-bottom: 54px; }


/* Extra breathing room for the last sections */
.vs{ padding-top: 112px; padding-bottom: 124px; }
.smiles{ padding-top: 118px; padding-bottom: 132px; }
footer{ padding-top: 78px; padding-bottom: 72px; }

    /* Cohesive page tint so white sections don't feel harsh next to brand green */
    main{background:transparent}
    .section{background:transparent}



/* ===== DTC Shop + Locator + Cart ===== */
.shop{ padding: 88px 0; background: linear-gradient(180deg, rgba(134,196,64,.08), rgba(255,255,255,0)); }
.shop .shop-head{ text-align:center; max-width: 900px; margin: 0 auto 28px; }
.eyebrow{ display:inline-block; font-weight:700; letter-spacing:.08em; text-transform:uppercase; font-size:12px; color: var(--brand-dark); background: rgba(134,196,64,.14); padding: 8px 12px; border-radius: 999px; }
.shop h2{ margin-top: 14px; }
.shop .sub{ margin: 10px auto 0; max-width: 720px; color: rgba(29,59,20,.82); }
.purchase-bar{ margin: 18px auto 0; display:flex; gap:10px; flex-wrap:wrap; justify-content:center; align-items:center; }
.pill{ border: 1px solid rgba(29,59,20,.18); background: #fff; color: var(--brand-dark); border-radius: 999px; padding: 10px 14px; font-weight: 700; cursor:pointer; }
.pill.active{ background: var(--brand-dark); color:#fff; border-color: var(--brand-dark); }
.ship-note{ font-weight:600; color: rgba(29,59,20,.75); margin-left: 6px; }

.shop-grid{ margin-top: 26px; display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.sku{ border-radius: 20px; background: #fff; border: 1px solid rgba(29,59,20,.12); box-shadow: 0 18px 40px rgba(0,0,0,.06); padding: 18px; position:relative; }
.sku.featured{ border-color: rgba(134,196,64,.55); box-shadow: 0 20px 48px rgba(134,196,64,.12); transform: translateY(-6px); }
.sku .badge{ position:absolute; top: 14px; right: 14px; background: var(--yellow); color: #2b2b2b; font-weight: 900; border-radius: 999px; padding: 8px 10px; font-size: 12px; }
.sku-top{ display:flex; justify-content:space-between; align-items:baseline; margin-bottom: 12px; }
.sku-title{ font-size: 18px; font-weight: 900; color: var(--brand-dark); }
.sku-size{ font-size: 13px; font-weight: 800; color: rgba(29,59,20,.65); }
.sku-points{ margin: 0 0 14px; padding-left: 18px; color: rgba(29,59,20,.8); }
.price-row{ display:flex; align-items:baseline; justify-content:space-between; margin: 12px 0 12px; }
.price .money{ font-size: 26px; font-weight: 900; color: var(--brand-dark); }
.per{ font-size: 13px; color: rgba(29,59,20,.65); font-weight: 700; }

.shop-trust{ margin-top: 18px; display:flex; gap:10px; flex-wrap:wrap; align-items:center; justify-content:center; }
.trust-item{ background: rgba(134,196,64,.10); border: 1px solid rgba(29,59,20,.10); color: rgba(29,59,20,.85); padding: 10px 12px; border-radius: 999px; font-weight: 700; }
.btn-ghost{ background: #fff; border: 1px solid rgba(29,59,20,.18); color: var(--brand-dark); }
.btn-ghost:hover{ background: rgba(134,196,64,.10); }

.find{ padding: 86px 0; background: rgba(134,196,64,.06); }
.find-inner{ display:grid; grid-template-columns: 1.2fr .8fr; gap: 22px; align-items:start; }
.find-list{ background:#fff; border-radius: 20px; border: 1px solid rgba(29,59,20,.12); padding: 16px; }
.retailer{ display:flex; justify-content:space-between; gap: 14px; padding: 12px 10px; border-radius: 14px; }
.retailer + .retailer{ border-top: 1px solid rgba(29,59,20,.08); border-radius:0; }
.retailer span{ color: rgba(29,59,20,.68); font-weight: 600; }

.modal, .cart-drawer{ position: fixed; inset: 0; z-index: 9999; display:none; }
.modal.open, .cart-drawer.open{ display:block; }
.modal-backdrop, .cart-backdrop{ position:absolute; inset:0; background: rgba(0,0,0,.50); }
.modal-card{ position: relative; width: min(720px, calc(100% - 28px)); margin: 70px auto 0; background: #fff; border-radius: 22px; padding: 20px; box-shadow: 0 24px 70px rgba(0,0,0,.25); border: 1px solid rgba(29,59,20,.10); }
.modal-card h3{ margin: 2px 0 6px; color: var(--brand-dark); }
.modal-sub{ margin: 0 0 14px; color: rgba(29,59,20,.75); }
.modal-x{ border: 0; background: transparent; font-size: 18px; cursor:pointer; color: rgba(29,59,20,.75); }
.modal-card .modal-x{ position:absolute; top: 14px; right: 14px; }

.locator-controls{ display:grid; grid-template-columns: 1fr 170px 140px; gap: 10px; margin-bottom: 14px; }
.locator-controls input, .locator-controls select{ border-radius: 12px; border: 1px solid rgba(29,59,20,.18); padding: 12px; font-weight: 600; }
.locator-results{ display:grid; gap: 10px; }
.store{ border: 1px solid rgba(29,59,20,.12); border-radius: 16px; padding: 12px 12px; background: rgba(134,196,64,.06); }
.store-top{ display:flex; justify-content:space-between; gap: 10px; align-items:flex-start; }
.store-name{ font-weight: 900; color: var(--brand-dark); }
.store-city{ color: rgba(29,59,20,.72); font-weight: 600; }
.store-dist{ font-weight: 900; color: rgba(29,59,20,.75); }
.store-formats{ margin-top: 8px; color: rgba(29,59,20,.78); }

.cart-panel{ position:absolute; right:0; top:0; height:100%; width: min(420px, 100%); background:#fff; border-left: 1px solid rgba(29,59,20,.12); box-shadow: -18px 0 60px rgba(0,0,0,.25); display:flex; flex-direction:column; }
.cart-head{ padding: 16px 16px; display:flex; align-items:center; justify-content:space-between; border-bottom: 1px solid rgba(29,59,20,.10); }
.cart-head h3{ margin:0; color: var(--brand-dark); }
.cart-body{ padding: 14px 16px; flex:1; overflow:auto; display:grid; gap: 12px; }
.cart-item{ display:flex; justify-content:space-between; gap: 10px; align-items:center; border: 1px solid rgba(29,59,20,.10); border-radius: 16px; padding: 12px; }
.cart-title{ font-weight: 900; color: var(--brand-dark); }
.cart-meta{ color: rgba(29,59,20,.70); font-weight: 600; font-size: 13px; margin-top: 2px; }
.qty{ display:flex; align-items:center; gap: 10px; }
.qty button{ width: 34px; height: 34px; border-radius: 10px; border: 1px solid rgba(29,59,20,.18); background:#fff; cursor:pointer; font-weight: 900; color: var(--brand-dark); }
.qty span{ min-width: 16px; text-align:center; font-weight: 800; color: rgba(29,59,20,.78); }
.cart-foot{ padding: 14px 16px 18px; border-top: 1px solid rgba(29,59,20,.10); display:grid; gap: 10px; }
.cart-row{ display:flex; justify-content:space-between; align-items:center; color: rgba(29,59,20,.8); font-weight: 700; }
.empty{ padding: 18px; border-radius: 16px; border: 1px dashed rgba(29,59,20,.22); color: rgba(29,59,20,.75); background: rgba(134,196,64,.06); text-align:center; }

.cart-badge{ position:absolute; top: -6px; right: -6px; background: var(--yellow); color: #2b2b2b; font-weight: 900; border-radius: 999px; padding: 2px 7px; font-size: 12px; border: 1px solid rgba(0,0,0,.10); }

@media (max-width: 900px){
  .shop-grid{ grid-template-columns: 1fr; }
  .sku.featured{ transform:none; }
  .find-inner{ grid-template-columns: 1fr; }
  .locator-controls{ grid-template-columns: 1fr; }
}


/* Shop product images */
.sku-img{ width: 100%; height: 230px; object-fit: contain; display:block; margin: 6px auto 12px; filter: drop-shadow(0 18px 22px rgba(0,0,0,.10)); }
.sku.featured .sku-img{ height: 240px; }
@media (max-width: 820px){ .sku-img{ height: 210px; } }



/* Our Story page layout */
.story-hero{
  background: linear-gradient(180deg, rgba(245,250,240,0.96) 0%, rgba(255,255,255,0.96) 100%);
  padding: 64px 0 40px;
  text-align: center;
}
.story-hero h1{
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: -0.03em;
  color: var(--ink);
}
.story-hero .subhead{
  max-width: 640px;
  margin: 12px auto 0;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(29,59,20,0.86);
}

.story-core{
  padding: 48px 0;
  background: var(--white);
}
.story-grid{
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: flex-start;
}
.story-heading h2{
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.03em;
  color: var(--ink);
}
.story-copy p{
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(29,59,20,0.9);
}

.story-formats{
  padding: 40px 0 48px;
  background: #f8fbf2;
}
.story-formats h2{
  text-align: center;
  font-size: 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 22px;
}
.formats{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.format-card{
  background: var(--surface);
  border-radius: var(--radius2);
  padding: 20px 18px 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.03);
}
.format-card h3{
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--ink);
}
.format-card p{
  font-size: 14px;
  line-height: 1.6;
  color: rgba(29,59,20,0.9);
}

.story-belief{
  padding: 52px 0 40px;
  background: var(--bg);
  text-align: center;
}
.story-belief h2{
  font-size: 24px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--ink);
}
.story-belief p{
  max-width: 640px;
  margin: 0 auto 10px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(29,59,20,0.9);
}

.story-cta{
  padding: 34px 0 64px;
  text-align: center;
}

/* Responsive tweaks for Our Story */
@media (max-width: 900px){
  .story-grid{
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }
  .story-heading h2{
    text-align: center;
  }
}
@media (max-width: 640px){
  .formats{
    grid-template-columns: minmax(0, 1fr);
  }
  .story-hero{
    padding: 44px 0 28px;
  }
}



/* Store Locator page */
.locator-hero{
  background: linear-gradient(180deg, rgba(245,250,240,0.96) 0%, rgba(255,255,255,0.96) 100%);
  padding: 64px 0 40px;
  text-align: center;
}
.locator-hero h1{
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: -0.03em;
  color: var(--ink);
}
.locator-hero .subhead{
  max-width: 640px;
  margin: 12px auto 0;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(29,59,20,0.86);
}

.locator-controls{
  padding: 28px 0 12px;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.locator-controls-inner{
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 20px;
  align-items: flex-end;
}
.control-group label{
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
  color: rgba(29,59,20,0.7);
}
.control-group input,
.control-group select{
  width: 100%;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  font-size: 14px;
}
.control-group input::placeholder{
  color: rgba(29,59,20,0.5);
}
.control-note p{
  font-size: 12px;
  line-height: 1.5;
  color: rgba(29,59,20,0.7);
}

.locator-results{
  padding: 34px 0 64px;
  background: #f8fbf2;
}
.locator-layout{
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: flex-start;
}
.locator-summary h2{
  font-size: 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 10px;
}
.locator-summary p{
  font-size: 14px;
  line-height: 1.7;
  color: rgba(29,59,20,0.9);
  margin-bottom: 10px;
}

.locator-list-wrapper{
  background: var(--surface);
  border-radius: var(--radius2);
  box-shadow: 0 14px 40px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.03);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.locator-list-header{
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  padding: 10px 16px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(240,247,232,0.9);
  color: rgba(29,59,20,0.75);
}
.locator-list-scroll{
  max-height: 360px;
  overflow-y: auto;
}
.store-list{
  list-style: none;
  margin: 0;
  padding: 0;
}
.store-list li{
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  padding: 10px 16px;
  font-size: 14px;
  border-top: 1px solid rgba(0,0,0,0.03);
}
.store-list li:nth-child(2n){
  background: rgba(248,251,242,0.9);
}
.store-list li strong{
  font-weight: 600;
}

/* Responsive tweaks for locator */
@media (max-width: 900px){
  .locator-controls-inner{
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
  }
  .locator-layout{
    grid-template-columns: minmax(0, 1fr);
  }
  .locator-summary{
    order: -1;
  }
}
@media (max-width: 640px){
  .locator-hero{
    padding: 44px 0 28px;
  }
  .locator-list-scroll{
    max-height: 300px;
  }
}
