/* ============================================================
     TOKENS
  ============================================================ */
  :root{
    --forest-900:#0d2f24;
    --forest-700:#0d2f24;
    --forest-500:#0d2f24;
    --cream-100:#FDF6F0;
    --cream-200:#f3e6d8;
    --cream-300:#e8d4c0;
    --husk-700:#5c3a22;
    --husk-500:#8a5a34;
    --husk-300:#c99a6b;
    --gold-500:#c69a3f;
    --ink-900:#152018;
    --ink-600:#3c4a41;
    --white:#ffffff;

    --font-display:'Protest Strike', sans-serif;
    --font-body:'Google Sans Flex', sans-serif;
    --font-mono:'Google Sans Flex', sans-serif;

    --container: 1420px;
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 10px;
    --topbar-h: 0px;

    --ease: cubic-bezier(.22,.7,.2,1);
  }

  body.has-topbar{ --topbar-h: 38px; }

  *,*::before,*::after{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  @media (prefers-reduced-motion: reduce){
    html{scroll-behavior:auto;}
    *,*::before,*::after{animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; scroll-behavior:auto !important;}
  }

  body{
    margin:0;
    font-family:var(--font-body);
    font-optical-sizing:auto;
    color:var(--ink-900);
    background:var(--cream-100);
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }

  img,svg{display:block; max-width:100%;}
  a{color:inherit; text-decoration:none;}
  ul{list-style:none; margin:0; padding:0;}
  button{font-family:inherit; cursor:pointer;}

  .wrap{
    max-width:var(--container);
    margin:0 auto;
    padding:0 clamp(20px,4vw,56px);
  }
.wrap-main{
  max-width:var(--container);
  margin:0 auto;
  padding:0 clamp(20px,4vw,56px);
}
  :focus-visible{
    outline:2.5px solid var(--gold-500);
    outline-offset:3px;
    border-radius:4px;
  }

  .eyebrow{
    font-family:var(--font-body);
    font-size:12.5px;
    font-weight:650;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:var(--gold-500);
    display:inline-flex;
    align-items:center;
    gap:10px;
  }
  .eyebrow::before{
    content:"";
    width:16px; height:1px;
    background:var(--gold-500);
    display:inline-block;
  }

  h1,h2,h3,h4{
    font-family:var(--font-display);
    font-weight:400;
    line-height:1.08;
    margin:0;
    color:var(--forest-900);
  }

  .btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:15px 28px;
    border-radius:100px;
    font-family:var(--font-body);
    font-weight:700;
    font-size:15px;
    border:1.5px solid transparent;
    transition:transform .35s var(--ease), background .3s ease, box-shadow .3s ease, color .3s ease, border-color .3s ease;
    white-space:nowrap;
  }
  .btn:hover{ transform:translateY(-2px); }
  .btn-primary{
    background:var(--forest-900);
    color:var(--cream-100);
    box-shadow:0 10px 24px -10px rgba(13,47,36,.55);
  }
  .btn-primary:hover{ background:var(--forest-700); box-shadow:0 14px 30px -10px rgba(13,47,36,.6);}
  .btn-ghost{
    background:transparent;
    color:var(--forest-900);
    border-color:rgba(13,47,36,.28);
  }
  .btn-ghost:hover{ border-color:var(--forest-900); background:rgba(13,47,36,.05);}
  .btn-buy{
    background:var(--husk-700);
    color:var(--cream-100);
    box-shadow:0 10px 22px -10px rgba(92,58,34,.55);
  }
  .btn-buy:hover{ background:#4a2e1a; }
  .btn-sm{ padding:11px 20px; font-size:13.5px; }
  .btn svg{ width:16px; height:16px; }

  /* ============================================================
     TOP BAR
  ============================================================ */
  .topbar{
    position:relative;
    z-index:20;
    display:none;
    align-items:center;
    justify-content:center;
    background:var(--forest-900);
    color:#fff;
    text-align:center;
    height:38px;
    padding:0 20px;
  }
  body.has-topbar .topbar{ display:flex; }
  .topbar p{
    margin:0;
    font-size:12.5px;
    font-weight:700;
    letter-spacing:.04em;
    line-height:1.35;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    max-width:100%;
    color:#fff;
  }
  .topbar a{
    color:#fff;
    text-decoration:underline;
    text-underline-offset:3px;
  }
  @media (max-width:640px){
    body.has-topbar{ --topbar-h: 52px; }
    .topbar{
      height:auto;
      min-height:38px;
      padding:9px 16px;
    }
    .topbar p{
      font-size:11px;
      letter-spacing:.02em;
      line-height:1.4;
      white-space:normal;
      overflow:visible;
      text-overflow:unset;
    }
  }

  /* ============================================================
     NAV
  ============================================================ */
  .nav{
    position:absolute;
    top:var(--topbar-h);
    left:0; right:0;
    z-index:10;
    padding:16px 0;
  }
  .nav-bar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
  }
  .brand{
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .nav .brand{
    background:var(--cream-100);
    border-radius:14px;
    padding: 4px 9px 7px;
    flex-shrink:0;
  }
  .brand-logo{
    display:block;
    height:39px;
    width:auto;
    max-width:min(220px, 52vw);
  }
  .foot-brand .brand-logo{
    height:48px;
    filter:brightness(0) invert(1);
  }

  .nav-links{ display:flex; align-items:center; gap:28px; margin-left:auto; margin-right:18px; }
  .nav-links a{
    font-size:14.5px; font-weight:600; color:rgba(253,246,240,.88);
    position:relative; padding:4px 0;
    transition:color .25s ease;
  }
  .nav-links a::after{
    content:""; position:absolute; left:0; bottom:-2px; height:1.5px; width:0%;
    background:var(--gold-500); transition:width .3s var(--ease);
  }
  .nav-links a:hover{ color:var(--white); }
  .nav-links a:hover::after{ width:100%; }

  .nav-actions{ display:flex; align-items:center; justify-content:flex-end; gap:14px; flex-shrink:0; }
  .nav .btn-primary{
    background:var(--forest-500);
    color:var(--cream-100);
    box-shadow:none;
  }
  .burger{
    display:none; width:42px; height:42px; border-radius:50%;
    border:1.5px solid rgba(250,246,236,.35); background:transparent;
    align-items:center; justify-content:center;
  }
  .burger span{ width:18px; height:1.6px; background:var(--cream-100); position:relative; display:block;}
  .burger span::before,.burger span::after{
    content:""; position:absolute; left:0; width:18px; height:1.6px; background:var(--cream-100);
  }
  .burger span::before{ top:-6px; } .burger span::after{ top:6px; }

  .mobile-menu{
    position:fixed; inset:0; z-index:99; background:var(--forest-900);
    display:flex; flex-direction:column; align-items:center; justify-content:center; gap:30px;
    transform:translateY(-100%); transition:transform .5s var(--ease);
  }
  .mobile-menu.open{ transform:translateY(0); }
  .mobile-menu a{ font-family:var(--font-display); font-size:28px; color:var(--cream-100); }

  @media (max-width:920px){
    .nav-links{ display:none; }
    .burger{ display:flex; }
  }
  @media (max-width:560px){
    .nav-actions .btn{ display:none; }
  }

  /* ============================================================
     HERO
  ============================================================ */
  .hero{
    position:relative;
    min-height:calc(100vh - var(--topbar-h));
    padding:0;
    overflow:hidden;
    display:flex;
    align-items:stretch;
  }
  .hero-bg{
    position:absolute; inset:0;
    background-color:#0d2f24;
    background-image:
      linear-gradient(90deg, rgba(13,47,36,.42) 0%, rgba(13,47,36,.18) 28%, rgba(13,47,36,.04) 48%, transparent 62%),
      url("../images/trop-desktop-bg.webp");
    background-position: 0 0, 62% center;
    background-size: auto, cover;
    background-repeat: no-repeat;
  }
  .hero .wrap-main{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    width:100%;
    min-height:calc(100vh - var(--topbar-h));
    padding-top:108px;
    padding-bottom:92px;
    backdrop-filter: brightness(0.7);
  }
  .hero-copy{
    max-width:560px;
    text-align:left;
  }
  .hero-copy h1{
    font-size:clamp(40px,5.6vw,72px);
    margin:0 0 28px;
    letter-spacing:-.015em;
    color:var(--cream-100);
  }
  .hero-copy h1 .lt-line{ display:block; }
  .hero-copy h1 .lt-wrap.accent,
  .hero-copy h1 .accent{
    font-family:var(--font-display);
    font-style:normal;
    font-weight:400;
    color: var(--cream-100);
  }

  .hero-ctas{ display:flex; align-items:center; gap:16px; flex-wrap:wrap; opacity:0; transform:translateY(14px); animation:riseIn .8s var(--ease) .5s forwards;}
  .btn-hero{
    background:var(--forest-500);
    color:var(--cream-100);
    box-shadow:none;
  }
  .btn-hero:hover{ background:var(--forest-700); }
  .btn-ghost-light{
    background:transparent;
    color:var(--cream-100);
    border-color:rgba(250,246,236,.42);
  }
  .btn-ghost-light:hover{ border-color:var(--cream-100); background:rgba(250,246,236,.1); }

  @keyframes riseIn{ to{ opacity:1; transform:translateY(0);} }

  @media (max-width:920px){
    .hero .wrap-main{
      align-items:flex-start;
      padding-top:92px;
      padding-bottom:80px;
    }
    .hero-copy{ max-width:100%; }
    .hero-copy h1{ font-size:clamp(32px,7vw,44px); margin-bottom:18px; }
    .hero-bg{
      background-color:#0d2f24;
      background-image:
        linear-gradient(180deg, rgba(13,47,36,.62) 0%, rgba(13,47,36,.32) 18%, rgba(13,47,36,.08) 36%, transparent 52%, rgba(13,47,36,.38) 100%),
        url("../images/trop-mobile-bg.webp");
      background-position: 0 0, center 18%;
      background-size: auto, cover;
      background-repeat: no-repeat;
    }
  }
  @media (max-width:560px){
    .hero .wrap-main{
      padding-top:86px;
      padding-bottom:64px;
    }
    .hero-copy h1{ font-size:clamp(28px,8.4vw,36px); margin-bottom:14px; }
    .hero-ctas{ gap:10px; }
    .hero-ctas .btn{ padding:12px 20px; font-size:13.5px; }
    .hero-bg{
      background-color:#0d2f24;
      background-image:
        linear-gradient(180deg, rgba(13,47,36,.64) 0%, rgba(13,47,36,.3) 16%, rgba(13,47,36,.06) 32%, transparent 48%, rgba(13,47,36,.4) 100%),
        url("../images/trop-mobile-bg.webp");
      background-position: 0 0, center 40%;
      background-size: auto, cover;
      background-repeat: no-repeat;
    }
  }

  /* ============================================================
     MARQUEE / TRUST STRIP
  ============================================================ */
  .trust{
    background:var(--forest-900);
    padding:22px 0;
    overflow:hidden;
  }
  .trust-track{ display:flex; gap:56px; width:max-content; animation:scrollX 26s linear infinite; }
  @keyframes scrollX{ from{transform:translateX(0);} to{transform:translateX(-50%);} }
  .trust-item{ display:flex; align-items:center; gap:12px; font-family:var(--font-mono); font-size:13px; letter-spacing:.06em; text-transform:uppercase; color:var(--cream-200); }
  .trust-item svg{ width:18px; height:18px; flex-shrink:0; }

  /* ============================================================
     REVEAL UTILITY
  ============================================================ */
  .reveal{ opacity:0; transform:translateY(26px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
  .reveal.in{ opacity:1; transform:translateY(0); }
  .reveal-stagger.in > *{ transition-delay:calc(var(--i,0) * 90ms); }

  section{ position:relative; }

  .wave{
    position:absolute;
    left:0; right:0;
    height:78px;
    pointer-events:none;
    z-index:3;
    line-height:0;
  }
  .wave svg{ width:100%; height:100%; display:block; }
  .wave-top{ top:-1px; }
  .wave-bottom{ bottom:-1px; }

  /* ============================================================
     STORY
  ============================================================ */
  .story{
    padding:140px 0;
    background:var(--white);
    overflow:hidden;
  }
  .story .wrap{
    position:relative;
    z-index:2;
    display:block;
  }
  .story-copy{
    max-width:680px;
    margin:0 auto;
    text-align:center;
  }
  .story-copy .eyebrow{
    margin-bottom:18px;
  }
  .story-copy h2{
    font-size:clamp(30px,3.6vw,44px);
    margin-bottom:22px;
  }

  /* ============================================================
     STAGGERED LETTER SLIDE-IN (all titles)
  ============================================================ */
  html.js .letter-title:not(.is-ready){ opacity:0; }
  .letter-title .lt-line{
    display:block;
  }
  .letter-title .lt-word{
    display:inline-block;
    white-space:nowrap;
  }
  .letter-title .lt-wrap{
    display:inline-block;
    overflow:hidden;
    vertical-align:bottom;
    padding-bottom:.12em;
    margin-bottom:-.12em;
    -webkit-transform:translateZ(0);
    transform:translateZ(0);
  }
  .letter-title .lt-char{
    display:block;
    opacity:0;
    -webkit-transform:translate3d(0,110%,0);
    transform:translate3d(0,110%,0);
    -webkit-backface-visibility:hidden;
    backface-visibility:hidden;
  }
  .letter-title.in .lt-char{
    -webkit-animation:letterSlideIn .7s var(--ease) both;
    animation:letterSlideIn .7s var(--ease) both;
  }
  @-webkit-keyframes letterSlideIn{
    from{ opacity:0; -webkit-transform:translate3d(0,110%,0); }
    to{ opacity:1; -webkit-transform:translate3d(0,0,0); }
  }
  @keyframes letterSlideIn{
    from{ opacity:0; transform:translate3d(0,110%,0); }
    to{ opacity:1; transform:translate3d(0,0,0); }
  }
  .story-copy p{
    font-size:16.5px;
    line-height:1.8;
    color:var(--ink-600);
    margin:0 0 18px;
  }
  .story-copy p:last-child{ margin-bottom:0; }

  .story-float{
    position:absolute;
    z-index:1;
    pointer-events:none;
    user-select:none;
  }
  .story-float img{
    display:block;
    width:100%;
    height:auto;
    max-width:none;
  }
  .story-float-left{
    left:clamp(-72px, -2vw, 8px);
    top:50%;
    width:min(280px, 24vw);
    transform:translateY(-52%);
  }
  .story-float-right{
    right:clamp(-80px, -3vw, 0px);
    top:50%;
    width:min(300px, 26vw);
    transform:translateY(-46%);
  }
  @media (min-width:1740px){
    .story-float-left{
      left:calc(50% - 700px);
      width:280px;
    }
    .story-float-right{
      right:calc(50% - 720px);
      width:300px;
    }
  }
  .story-float-left img{
    animation:storyBob 5.6s ease-in-out infinite;
  }
  .story-float-right img{
    animation:storyBob 6.4s ease-in-out infinite reverse;
  }
  @keyframes storyBob{
    0%,100%{ transform:translateY(0); }
    50%{ transform:translateY(-18px); }
  }

  @media (max-width:920px){
    .story{ padding:110px 0; }
    .story-float-left{ width:170px; left:-58px; }
    .story-float-right{ width:180px; right:-64px; }
    .story-copy{ max-width:520px; }
  }
  @media (max-width:640px){
    .story{ padding:78px 0 108px; }
    .story-copy{ max-width:100%; }
    .story-copy h2{ font-size:clamp(26px,7.4vw,34px); }
    .story-copy p{ font-size:15px; }
    .story-float-left{
      top:10px;
      left:-38px;
      width:108px;
      transform:none;
    }
    .story-float-right{
      top:auto;
      bottom:6px;
      right:-42px;
      width:116px;
      transform:none;
    }
  }
  @media (prefers-reduced-motion: reduce){
    .story-float img{ animation:none; }
    html.js .letter-title:not(.is-ready){ opacity:1; }
    .letter-title .lt-char{
      opacity:1;
      -webkit-transform:none;
      transform:none;
      -webkit-animation:none;
      animation:none;
    }
  }

  /* ============================================================
     PRODUCTS
  ============================================================ */
  .products{ padding:110px 0 130px; background:var(--cream-100); }
  .section-head{ display:flex; justify-content:space-between;gap:30px; margin-bottom:56px; flex-wrap:wrap; }
  .section-head h2{ font-size:clamp(30px,3.6vw,44px); max-width:560px; margin-top:18px; }
  .section-head p{ max-width:380px; color:var(--ink-600); font-size:15.5px; line-height:1.7; }

  .range-banner{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:16px;
    margin:0 auto 52px;
    max-width:720px;
    padding:8px 12px 0;
  }
  .range-banner h2{
    margin:0;
    max-width:none;
    color:var(--forest-900);
    font-size:clamp(26px,4vw,42px);
    line-height:1.16;
    font-weight:400;
    letter-spacing:-.015em;
  }
  .range-banner-rule{
    display:flex;
    align-items:center;
    gap:10px;
    width:min(220px, 55%);
    color:var(--gold-500);
  }
  .range-banner-rule span{
    flex:1;
    height:1px;
    background:linear-gradient(90deg, transparent, var(--gold-500), transparent);
    opacity:.7;
  }
  @media (max-width:560px){
    .range-banner{ margin-bottom:36px; gap:12px; }
    .range-banner h2{ font-size:clamp(24px,7.2vw,32px); }
  }

  .product-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
  @media (max-width:1080px){ .product-grid{ grid-template-columns:repeat(2,1fr); } }
  @media (max-width:560px){ .product-grid{ grid-template-columns:1fr; } }

  .p-card{
    background:var(--white);
    border-radius:var(--radius-lg);
    padding:15px;
    display:flex; flex-direction:column;
    border:1px solid rgba(13,47,36,.07);
    transition:transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s ease;
  }
  .p-card:hover{ transform:translateY(-8px); box-shadow:0 30px 60px -30px rgba(13,47,36,.28); border-color:transparent; }
  .p-media{
    aspect-ratio:1/1;
    border-radius:var(--radius-md);
    display:flex; align-items:center; justify-content:center;
    margin-bottom:20px;
    position:relative;
    overflow:hidden;
  }
  .p-media img{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
    position:relative;
    z-index:2;
  }
  .p-card h3{ font-size:20px; margin-bottom:6px; }
  .p-card .p-desc{ font-size:14px; color:var(--ink-600); line-height:1.65; margin-bottom:16px; flex-grow:1; }
  .p-specs{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:18px; }
  .p-specs span{
    font-family:var(--font-mono); font-size:11px; color:var(--forest-700);
    background:var(--cream-200); padding:5px 10px; border-radius:8px; letter-spacing:.02em;
  }
  .p-foot{ display:flex; justify-content:space-between; gap:10px; margin-top:auto; padding-top:14px; border-top:1px dashed rgba(13,47,36,.14); }
  .p-price{ font-family:var(--font-display); font-size:19px; color:var(--forest-900); }
  .p-price small{ display:block; font-family:var(--font-mono); font-size:10px; color:var(--ink-600); font-weight:400; }

  /* per-card media backgrounds */
  .media-milk{ background:radial-gradient(circle at 30% 20%, #eef3ea, var(--cream-200)); }
  .media-oil{ background:radial-gradient(circle at 30% 20%, #eaf2ec, var(--forest-500)15); background:linear-gradient(160deg,#e7f2ea,#cfe3d5); }
  .media-powder{ background:linear-gradient(160deg,#f5efe0,#e9dcc0); }
  .media-mct{ background:linear-gradient(160deg,#eee7da,#dcd0b8); }

  /* ============================================================
     WELLNESS
  ============================================================ */
  .wellness{
    padding:150px 0 160px;
    background:var(--forest-900);
    color:var(--cream-100);
    overflow:hidden;
  }
  .wellness .section-head h2{ color:var(--cream-100); }
  .wellness .eyebrow, .wellness .eyebrow::before{ color:var(--gold-500); }
  .wellness .eyebrow::before{ background:var(--gold-500); }
  .wellness .section-head p{ color:rgba(253,246,240,.68); }

  .benefit-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:rgba(250,246,236,.14); border-radius:var(--radius-lg); overflow:hidden; }
  @media (max-width:860px){ .benefit-grid{ grid-template-columns:repeat(2,1fr);} }
  @media (max-width:560px){ 
  .cta-band{
    margin: 0px 20px!important;
  }
  .hero-copy{
    margin: 0 auto;
        text-align: center;
  }
  .hero .wrap-main{
    padding-top: 172px;

  }
  .brand-logo{
    height: 30px;
  }
  .benefit-grid{ grid-template-columns:1fr;} }
  .benefit{ background:var(--forest-900); padding:34px 30px; display:flex; flex-direction:column; gap:14px; }
  .benefit .ring-bullet{ width:34px; height:34px; }
  .benefit h4{ color:var(--cream-100); font-size:18px; }
  .benefit p{ font-size:14px; line-height:1.7; color:rgba(250,246,236,.66); margin:0; }

  /* ============================================================
     PROCESS
  ============================================================ */
  .process{ position:relative; z-index:1; padding:72px 0 130px; background:var(--cream-100); }
  .process-row{ display:grid; grid-template-columns:repeat(4,1fr); gap:0; position:relative; margin-top:60px; }
  .process-row::before{
    content:""; position:absolute; top:19px; left:6%; right:6%; height:1px;
    background:repeating-linear-gradient(90deg, rgba(13,47,36,.25) 0 8px, transparent 8px 16px);
  }
  @media (max-width:860px){ .process-row{ grid-template-columns:1fr; gap:34px; } .process-row::before{ display:none; } }
  .p-step{ padding:0 22px; position:relative; }
  .p-step .idx{
    width:38px; height:38px; border-radius:50%; background:var(--cream-100); border:1.5px solid var(--forest-900);
    display:flex; align-items:center; justify-content:center; font-family:var(--font-mono); font-size:13px; color:var(--forest-900);
    margin-bottom:22px; position:relative; z-index:2;
  }
  .p-step h4{ font-size:17px; margin-bottom:8px; }
  .p-step p{ font-size:13.5px; color:var(--ink-600); line-height:1.7; margin:0; }

  /* ============================================================
     CTA BAND
  ============================================================ */
  .cta-band{
    margin:0 clamp(20px,4vw,56px) 48px;
    max-width:calc(var(--container) - 0px);
    margin-left:auto; margin-right:auto;
    background:linear-gradient(135deg, var(--husk-700), var(--husk-500));
    border-radius:var(--radius-lg);
    padding:64px clamp(28px,6vw,80px);
    display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap;
    color:var(--cream-100);
    position:relative;
    overflow:hidden;
  }
  .cta-band::after{
    content:""; position:absolute; right:-60px; top:-60px; width:260px; height:260px; border-radius:50%;
    border:1px solid rgba(250,246,236,.25);
  }
  .cta-band h3{ color:var(--cream-100); font-size:clamp(24px,3vw,34px); max-width:460px; }
  .cta-band .btn-primary{ background:var(--cream-100); color:var(--husk-700); }
  .cta-band .btn-primary:hover{ background:var(--white); }

  /* ============================================================
     ISLAND / FROM THE LAND
  ============================================================ */
  .island{
    position:relative;
    z-index:0;
    isolation:isolate;
    padding:80px 0 0;
    background:var(--white);
    overflow:hidden;
  }
  .island > .wrap{
    position:relative;
    z-index:1;
    padding-bottom:96px;
  }
  .island .wave.wave-bottom{
    position:relative;
    top:auto;
    bottom:auto;
    z-index:2;
    height:88px;
  }
  .island-head{
    text-align:center;
    max-width:680px;
    margin:0 auto 28px;
  }
  .island-head .eyebrow{ justify-content:center; margin-bottom:16px; gap:10px; }
  .island-head .eyebrow::before{ display:inline-block; }
  .island-head .eyebrow::after{
    content:"";
    width:16px; height:1px;
    background:var(--gold-500);
    display:inline-block;
  }
  .island-head h2{
    font-size:clamp(30px,4vw,46px);
    margin:0 0 16px;
    letter-spacing:-.015em;
  }
  .island-head p{
    margin:0 auto;
    max-width:520px;
    font-size:16px;
    line-height:1.75;
    color:var(--ink-600);
  }
  .island-stage{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(360px, 52%) minmax(0,1fr);
    grid-template-areas:
      "tl vis tr"
      "bl vis br";
    align-items:center;
    gap:12px 16px;
    max-width:1380px;
    margin:0 auto;
    width:100%;
  }
  .island-visual{
    grid-area:vis;
    display:flex;
    align-items:center;
    justify-content:center;
    pointer-events:none;
    z-index:1;
    min-width:0;
  }
  .island-visual img{
    width:100%;
    max-width:680px;
    height:auto;
    margin:0 auto;
    display:block;
    filter:drop-shadow(0 32px 48px rgba(13,47,36,.16));
  }
  .island-card{
    background:rgba(255,255,255,.78);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    border:1px solid rgba(13,47,36,.08);
    border-radius:22px;
    padding:22px 22px 20px;
    box-shadow:0 18px 40px -22px rgba(13,47,36,.22);
    position:relative;
    z-index:1;
  }
  .island-card-tl{ grid-area:tl; align-self:end; margin-bottom:8%; }
  .island-card-tr{ grid-area:tr; align-self:end; margin-bottom:8%; }
  .island-card-bl{ grid-area:bl; align-self:start; margin-top:4%; }
  .island-card-br{ grid-area:br; align-self:start; margin-top:4%; }
  .island-icon{
    width:42px; height:42px; border-radius:50%;
    background:#eef5ef;
    display:flex; align-items:center; justify-content:center;
    margin-bottom:14px;
  }
  .island-icon svg{ width:20px; height:20px; }
  .island-card h3{
    font-family:var(--font-body);
    font-weight:750;
    font-size:17px;
    letter-spacing:-.01em;
    margin:0 0 8px;
    color:var(--forest-900);
  }
  .island-card p{
    margin:0;
    font-size:14px;
    line-height:1.65;
    color:var(--ink-600);
  }
  @media (max-width:1080px){
    .island{ padding:80px 0 0; }
    .island > .wrap{ padding-bottom:80px; }
    .island-stage{
      grid-template-columns:1fr 1fr;
      grid-template-areas:
        "vis vis"
        "tl tr"
        "bl br";
      gap:16px;
    }
    .island-card-tl, .island-card-tr, .island-card-bl, .island-card-br{
      align-self:stretch; margin:0;
    }
    .island-visual img{ max-width:560px; width:100%; margin:0 auto; }
    .island-head{ margin-bottom:12px; }
  }
  @media (max-width:640px){
    .island{ padding:72px 0 0; }
    .island > .wrap{ padding-bottom:64px; }
    .island-stage{ grid-template-columns:1fr; grid-template-areas: "vis" "tl" "tr" "bl" "br"; }
    .island-visual img{ max-width:400px; }
  }
  @media (min-width:1081px) and (max-height:820px){
    .island{ padding:56px 0 0; }
    .island > .wrap{ padding-bottom:72px; }
    .island-head h2{ font-size:clamp(26px,3.4vw,36px); margin-bottom:10px; }
    .island-card{ padding:16px 18px; }
  }
  @media (prefers-reduced-motion: reduce){
    .island{ padding:80px 0 0; }
    .island > .wrap{ padding-bottom:96px; }
  }

  /* ============================================================
     FOOTER
  ============================================================ */
  footer{
    position:relative;
    background:var(--forest-900);
    color:rgba(253,246,240,.7);
    padding:140px 0 30px;
    margin-top:0;
    overflow:hidden;
  }
  .foot-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; padding-bottom:60px; }
  @media (max-width:860px){ .foot-grid{ grid-template-columns:1fr 1fr; } }
  @media (max-width:520px){ .foot-grid{ grid-template-columns:1fr; } }
  .foot-brand .brand{
    color:var(--cream-100);
    justify-content:flex-start;
    display:inline-flex;
  }
  .foot-brand p{ font-size:14px; line-height:1.8; max-width:280px; margin:18px 0 0; }
  footer h5{ font-family:var(--font-mono); font-size:11.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--husk-300); margin:0 0 18px; font-weight:500; }
  footer ul li{ margin-bottom:12px; font-size:14.5px; }
  footer ul li a:hover{ color:var(--cream-100); }
  .foot-bottom{ border-top:1px solid rgba(250,246,236,.14); padding-top:26px; display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; font-size:12.5px; color:rgba(250,246,236,.5); }

  ::selection{ background:var(--husk-700); color:var(--cream-100); }

/* ============================================================
   SHARED PHP SITE + INNER PAGES
============================================================ */
.skip-link{
  position:fixed; left:18px; top:12px; z-index:300;
  background:var(--cream-100); color:var(--forest-900); padding:10px 14px;
  border-radius:10px; font-weight:750; transform:translateY(-160%);
  transition:transform .2s ease;
}
.skip-link:focus{ transform:translateY(0); }
.nav-links a.active{ color:var(--white); }
.nav-links a.active::after{ width:100%; }
.mobile-menu a.active{ color:var(--gold-500); }
.mobile-menu .m-link{ transition:color .25s ease, transform .25s var(--ease); }
.mobile-menu .m-link:hover{ color:var(--gold-500); transform:translateY(-2px); }

.page-hero{
  min-height:520px;
  display:flex;
  align-items:flex-end;
  position:relative;
  overflow:hidden;
  background:var(--forest-900);
  color:var(--cream-100);
  padding:calc(148px + var(--topbar-h)) 0 90px;
}
.page-hero::before,
.page-hero::after{ content:""; position:absolute; inset:0; }
.page-hero::before{
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}
.page-hero::after{
  background:linear-gradient(90deg,rgba(13,47,36,.94) 0%,rgba(13,47,36,.74) 44%,rgba(13,47,36,.28) 78%,rgba(13,47,36,.42) 100%);
}
.page-hero-about::before{ background-image:url("../images/blog-farm-kitchen.webp"); background-position:center 50%; }
.page-hero-contact::before{ background-image:url("../images/trop-desktop-bg.webp"); background-position:60% center; }
.page-hero-blog::before{ background-image:url("../images/blog-cooking.webp"); background-position:center 48%; }
.page-hero-products::before{ background-image:url("../images/blog-range.webp"); background-position:center 48%; }
.page-hero .wrap{ position:relative; z-index:2; width:100%; }
.page-hero-copy{ max-width:750px; }
.page-hero .eyebrow{ margin-bottom:18px; }
.page-hero h1{ color:var(--cream-100); font-size:clamp(44px,6vw,76px); letter-spacing:-.02em; margin-bottom:18px; }
.page-hero p{ max-width:630px; margin:0; color:rgba(253,246,240,.78); font-size:16px; line-height:1.75; }
.page-hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:28px; }
.hero-breadcrumbs{ display:flex; align-items:center; gap:9px; flex-wrap:wrap; color:rgba(253,246,240,.62); font-size:12px; text-transform:uppercase; letter-spacing:.08em; margin-bottom:24px; }
.hero-breadcrumbs a:hover{ color:var(--cream-100); }

.content-section{ padding:110px 0; background:var(--cream-100); }
.content-section.white{ background:var(--white); }
.content-section.forest{ background:var(--forest-900); color:var(--cream-100); }
.content-section.compact{ padding:80px 0; }
.section-intro{ max-width:720px; margin-bottom:52px; }
.section-intro.center{ text-align:center; margin-left:auto; margin-right:auto; }
.section-intro .eyebrow{ margin-bottom:16px; }
.section-intro h2{ font-size:clamp(32px,4.2vw,50px); margin-bottom:18px; }
.section-intro p{ margin:0; color:var(--ink-600); font-size:16px; line-height:1.8; }
.forest .section-intro h2{ color:var(--cream-100); }
.forest .section-intro p{ color:rgba(253,246,240,.68); }

.story-split{ display:grid; grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr); gap:clamp(44px,7vw,100px); align-items:center; }
.story-visual{ position:relative; min-height:530px; }
.story-visual .visual-main{ width:88%; height:500px; object-fit:cover; border-radius:var(--radius-lg); box-shadow:0 34px 72px -40px rgba(13,47,36,.38); }
.story-visual .visual-float{ position:absolute; width:44%; right:0; bottom:-24px; border-radius:22px; border:8px solid var(--cream-100); box-shadow:0 24px 48px -28px rgba(13,47,36,.45); }
.story-copy-lg .eyebrow{ margin-bottom:18px; }
.story-copy-lg h2{ font-size:clamp(34px,4.4vw,52px); margin-bottom:22px; }
.story-copy-lg p{ font-size:16px; line-height:1.85; color:var(--ink-600); margin:0 0 18px; }
.story-copy-lg p:last-child{ margin-bottom:0; }
.fact-row{ display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:28px; }
.fact-card{ background:var(--white); border:1px solid rgba(13,47,36,.08); border-radius:16px; padding:18px; }
.fact-card strong{ display:block; font-family:var(--font-display); font-size:28px; color:var(--forest-900); margin-bottom:4px; }
.fact-card span{ font-size:12px; line-height:1.5; color:var(--ink-600); }

.purpose-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
.purpose-card{ min-height:330px; border-radius:var(--radius-lg); padding:44px; position:relative; overflow:hidden; display:flex; flex-direction:column; justify-content:flex-end; }
.purpose-card.mission{ background:var(--forest-900); }
.purpose-card.vision{ background:linear-gradient(135deg,var(--husk-700),var(--husk-500)); }
.purpose-card::before{ content:""; position:absolute; width:260px; height:260px; border:1px solid rgba(253,246,240,.18); border-radius:50%; right:-76px; top:-84px; }
.purpose-card .mini-label{ font-size:12px; font-weight:750; letter-spacing:.12em; text-transform:uppercase; color:var(--gold-500); margin-bottom:14px; position:relative; }
.purpose-card h3{ color:var(--cream-100); font-size:clamp(28px,3vw,38px); max-width:480px; position:relative; }
.purpose-card p{ color:rgba(253,246,240,.72); font-size:15px; line-height:1.75; max-width:520px; margin:14px 0 0; position:relative; }

.values-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.value-card{ background:var(--white); border:1px solid rgba(13,47,36,.08); border-radius:22px; padding:28px; transition:transform .35s var(--ease), box-shadow .35s var(--ease); }
.value-card:hover{ transform:translateY(-6px); box-shadow:0 24px 50px -30px rgba(13,47,36,.38); }
.value-icon{ width:46px; height:46px; display:grid; place-items:center; border-radius:50%; background:#eef5ef; color:var(--forest-900); margin-bottom:22px; }
.value-icon svg{ width:22px; height:22px; }
.value-card h3{ font-family:var(--font-body); font-weight:800; font-size:18px; margin-bottom:10px; }
.value-card p{ color:var(--ink-600); font-size:14px; line-height:1.7; margin:0; }

.milestone-layout{ display:grid; grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr); gap:clamp(40px,7vw,90px); align-items:start; }
.team-panel{ background:var(--white); border-radius:var(--radius-lg); padding:36px; border:1px solid rgba(13,47,36,.08); position:sticky; top:30px; }
.team-panel h3{ font-size:30px; margin-bottom:14px; }
.team-panel > p{ color:var(--ink-600); line-height:1.75; margin:0 0 26px; }
.team-list{ display:grid; gap:12px; }
.team-role{ display:flex; align-items:center; gap:14px; padding:14px; background:var(--cream-100); border-radius:14px; }
.team-role span:first-child{ width:42px; height:42px; border-radius:50%; display:grid; place-items:center; background:var(--forest-900); color:var(--cream-100); font-weight:800; font-size:12px; flex:none; }
.team-role strong{ display:block; font-size:14px; color:var(--forest-900); }
.team-role small{ display:block; margin-top:3px; color:var(--ink-600); }
.timeline{ position:relative; padding-left:38px; }
.timeline::before{ content:""; position:absolute; left:8px; top:8px; bottom:8px; width:1px; background:rgba(13,47,36,.22); }
.timeline-item{ position:relative; padding:0 0 38px; }
.timeline-item:last-child{ padding-bottom:0; }
.timeline-item::before{ content:""; position:absolute; left:-36px; top:6px; width:13px; height:13px; border-radius:50%; background:var(--gold-500); border:4px solid var(--cream-100); box-shadow:0 0 0 1px var(--gold-500); }
.timeline-year{ color:var(--husk-500); font-weight:800; font-size:13px; letter-spacing:.08em; text-transform:uppercase; }
.timeline-item h3{ font-size:24px; margin:7px 0 8px; }
.timeline-item p{ color:var(--ink-600); line-height:1.7; font-size:14px; margin:0; }

/* Contact */
.contact-layout{ display:grid; grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr); gap:28px; align-items:start; }
.contact-stack{ display:grid; gap:18px; }
.contact-info-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.contact-card{ background:var(--white); border:1px solid rgba(13,47,36,.08); border-radius:20px; padding:24px; }
.contact-card .value-icon{ margin-bottom:18px; }
.contact-card h3{ font-family:var(--font-body); font-weight:800; font-size:16px; margin-bottom:7px; }
.contact-card p,.contact-card a{ color:var(--ink-600); font-size:14px; line-height:1.6; margin:0; }
.contact-card a:hover{ color:var(--forest-900); }
.map-card{ overflow:hidden; border-radius:var(--radius-lg); min-height:380px; border:1px solid rgba(13,47,36,.08); background:var(--cream-200); }
.map-card iframe{ display:block; width:100%; height:380px; border:0; filter:saturate(.75) contrast(.95); }
.form-card{ background:var(--white); border:1px solid rgba(13,47,36,.08); border-radius:var(--radius-lg); padding:clamp(26px,4vw,46px); box-shadow:0 30px 65px -46px rgba(13,47,36,.35); }
.form-card h2{ font-size:36px; margin-bottom:10px; }
.form-card > p{ margin:0 0 28px; color:var(--ink-600); line-height:1.7; }
.form-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.field{ display:grid; gap:8px; }
.field.full{ grid-column:1 / -1; }
.field label{ font-size:13px; font-weight:750; color:var(--forest-900); }
.input,.select,.textarea{
  width:100%; border:1.5px solid rgba(13,47,36,.16); background:#fffdf9; color:var(--ink-900);
  border-radius:13px; padding:14px 15px; font:inherit; font-size:15px; transition:border-color .2s ease, box-shadow .2s ease;
}
.textarea{ min-height:145px; resize:vertical; }
.input:focus,.select:focus,.textarea:focus{ outline:none; border-color:var(--forest-900); box-shadow:0 0 0 4px rgba(13,47,36,.08); }
.field-help{ color:var(--ink-600); font-size:12px; }
.honeypot{ position:absolute !important; left:-9999px !important; opacity:0 !important; pointer-events:none !important; }
.form-alert{ padding:14px 16px; border-radius:12px; margin-bottom:20px; font-size:14px; line-height:1.55; }
.form-alert.success{ background:#e7f3e9; color:#174e36; border:1px solid #b9dec2; }
.form-alert.error{ background:#fff0eb; color:#7a321d; border:1px solid #efc4b5; }
.form-alert ul{ list-style:disc; padding-left:20px; }
.form-submit{ margin-top:22px; display:flex; align-items:center; gap:14px; flex-wrap:wrap; }
.form-submit small{ color:var(--ink-600); max-width:310px; line-height:1.5; }
.faq-list{ max-width:920px; margin:0 auto; display:grid; gap:12px; }
.faq-item{ background:var(--white); border:1px solid rgba(13,47,36,.09); border-radius:16px; overflow:hidden; }
.faq-item summary{ cursor:pointer; list-style:none; padding:20px 56px 20px 22px; font-weight:780; color:var(--forest-900); position:relative; }
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{ content:"+"; position:absolute; right:22px; top:50%; transform:translateY(-50%); font-size:24px; font-weight:400; color:var(--husk-500); transition:transform .25s ease; }
.faq-item[open] summary::after{ transform:translateY(-50%) rotate(45deg); }
.faq-item p{ margin:0; padding:0 22px 22px; color:var(--ink-600); font-size:14px; line-height:1.75; }

/* Blog */
.blog-shell{ display:grid; grid-template-columns:minmax(0,1fr) 310px; gap:34px; align-items:start; }
.blog-grid{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:22px; }
.article-card{ background:var(--white); border:1px solid rgba(13,47,36,.08); border-radius:var(--radius-lg); overflow:hidden; display:flex; flex-direction:column; transition:transform .35s var(--ease), box-shadow .35s var(--ease); }
.article-card:hover{ transform:translateY(-6px); box-shadow:0 28px 56px -34px rgba(13,47,36,.38); }
.article-image{ aspect-ratio:16/10; overflow:hidden; background:var(--cream-200); }
.article-image img{ width:100%; height:100%; object-fit:cover; transition:transform .55s var(--ease); }
.article-card:hover .article-image img{ transform:scale(1.035); }
.article-body{ padding:24px; display:flex; flex-direction:column; flex:1; }
.article-category{ color:var(--husk-500); font-size:11px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; margin-bottom:11px; }
.article-card h2{ font-size:25px; line-height:1.18; margin-bottom:12px; }
.article-card p{ color:var(--ink-600); font-size:14px; line-height:1.7; margin:0 0 18px; }
.article-meta{ display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap; border-top:1px dashed rgba(13,47,36,.14); padding-top:15px; margin-top:auto; font-size:11px; color:var(--ink-600); }
.article-action{ margin-top:18px; }
.blog-sidebar{ display:grid; gap:18px; position:sticky; top:28px; }
.sidebar-card{ background:var(--white); border:1px solid rgba(13,47,36,.08); border-radius:20px; padding:22px; }
.sidebar-card h3{ font-family:var(--font-body); font-weight:800; font-size:15px; margin-bottom:16px; }
.search-row{ display:flex; gap:8px; }
.search-row .input{ min-width:0; }
.icon-btn{ width:48px; min-width:48px; border:0; border-radius:12px; background:var(--forest-900); color:var(--cream-100); display:grid; place-items:center; }
.icon-btn svg{ width:18px; height:18px; }
.category-list{ display:grid; gap:7px; }
.category-list a{ display:flex; justify-content:space-between; gap:10px; padding:10px 12px; border-radius:10px; color:var(--ink-600); font-size:13px; transition:background .2s,color .2s; }
.category-list a:hover,.category-list a.active{ background:var(--cream-100); color:var(--forest-900); }
.pagination{ display:flex; align-items:center; justify-content:center; gap:8px; margin-top:38px; flex-wrap:wrap; }
.pagination a,.pagination span{ min-width:42px; height:42px; display:grid; place-items:center; border-radius:50%; border:1px solid rgba(13,47,36,.16); font-size:13px; font-weight:750; }
.pagination a:hover,.pagination .current{ background:var(--forest-900); color:var(--cream-100); border-color:var(--forest-900); }
.empty-state{ background:var(--white); border:1px solid rgba(13,47,36,.08); border-radius:var(--radius-lg); padding:60px 30px; text-align:center; grid-column:1/-1; }
.empty-state h2{ font-size:30px; margin-bottom:10px; }
.empty-state p{ color:var(--ink-600); }
.article-detail{ max-width:920px; margin:0 auto; }
.article-detail .article-lead-image{ aspect-ratio:16/8.5; border-radius:var(--radius-lg); overflow:hidden; margin-bottom:42px; }
.article-detail .article-lead-image img{ width:100%; height:100%; object-fit:cover; }
.article-detail-header{ margin-bottom:34px; }
.article-detail-header .article-category{ margin-bottom:12px; }
.article-detail-header h1{ font-size:clamp(38px,5vw,62px); margin-bottom:18px; }
.article-detail-header .article-meta{ justify-content:flex-start; border:0; padding:0; font-size:13px; }
.prose{ max-width:760px; margin:0 auto; }
.prose p{ font-size:17px; line-height:1.9; color:var(--ink-600); margin:0 0 24px; }
.article-back{ margin-top:38px; }

/* Products catalog */
.catalog-toolbar{ display:flex; align-items:center; justify-content:space-between; gap:16px; margin-bottom:24px; flex-wrap:wrap; }
.catalog-count{ color:var(--ink-600); font-size:14px; }
.filter-open{ display:none; }
.catalog-layout{ display:grid; grid-template-columns:260px minmax(0,1fr); gap:28px; align-items:start; }
.filter-panel{ background:var(--white); border:1px solid rgba(13,47,36,.08); border-radius:22px; padding:22px; position:sticky; top:28px; }
.filter-panel-head{ display:flex; justify-content:space-between; align-items:center; gap:12px; margin-bottom:20px; }
.filter-panel h2{ font-family:var(--font-body); font-weight:800; font-size:16px; }
.filter-close{ display:none; border:0; background:none; font-size:24px; color:var(--forest-900); }
.filter-group + .filter-group{ border-top:1px solid rgba(13,47,36,.09); margin-top:20px; padding-top:20px; }
.filter-label{ display:block; font-size:12px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; color:var(--husk-500); margin-bottom:12px; }
.filter-options{ display:grid; gap:9px; }
.filter-option{ display:flex; align-items:center; gap:10px; font-size:13px; color:var(--ink-600); cursor:pointer; }
.filter-option input{ accent-color:var(--forest-900); width:16px; height:16px; }
.catalog-grid{ display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:20px; }
.catalog-card{ position:relative; }
.catalog-card[hidden]{ display:none !important; }
.catalog-card .p-media{ margin-bottom:17px; }
.rating-row{ display:flex; align-items:center; gap:7px; margin:-2px 0 10px; font-size:12px; }
.stars{ color:var(--gold-500); letter-spacing:.04em; font-size:13px; }
.rating-row span:last-child{ color:var(--ink-600); }
.catalog-card-actions{ display:flex; gap:8px; flex-wrap:wrap; }
.catalog-card-actions .btn{ flex:1; justify-content:center; padding-left:15px; padding-right:15px; }
.catalog-empty{ display:none; background:var(--white); border-radius:var(--radius-lg); padding:54px 28px; text-align:center; border:1px solid rgba(13,47,36,.08); }
.catalog-empty.show{ display:block; }
.filter-scrim{ display:none; }

/* Generic CTA */
.inner-cta{ padding:0 0 74px; background:var(--cream-100); }
.inner-cta .cta-band{ margin-bottom:0; }

/* Homepage refactor image paths/layout safeguards */
.home-main .story-float img,.home-main .p-media img,.home-main .island-visual img{ user-select:none; }

@media (max-width:1180px){
  .values-grid{ grid-template-columns:repeat(2,1fr); }
  .catalog-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:920px){
  .page-hero{ min-height:470px; padding-top:calc(130px + var(--topbar-h)); padding-bottom:72px; }
  .page-hero::after{ background:linear-gradient(180deg,rgba(13,47,36,.85) 0%,rgba(13,47,36,.7) 55%,rgba(13,47,36,.88) 100%); }
  .story-split,.contact-layout,.milestone-layout{ grid-template-columns:1fr; }
  .story-visual{ order:2; min-height:460px; }
  .story-visual .visual-main{ height:430px; }
  .team-panel{ position:relative; top:auto; }
  .blog-shell{ grid-template-columns:1fr; }
  .blog-sidebar{ position:relative; top:auto; grid-row:1; }
  .blog-sidebar{ grid-template-columns:1fr 1fr; }
  .catalog-layout{ grid-template-columns:1fr; }
  .filter-open{ display:inline-flex; }
  .filter-panel{
    position:fixed; z-index:180; left:0; top:0; bottom:0; width:min(340px,88vw); border-radius:0 24px 24px 0;
    transform:translateX(-104%); transition:transform .35s var(--ease); overflow:auto; padding-top:28px;
  }
  .filter-panel.open{ transform:translateX(0); }
  .filter-close{ display:block; }
  .filter-scrim{ position:fixed; z-index:170; inset:0; background:rgba(13,47,36,.52); backdrop-filter:blur(2px); }
  .filter-scrim.show{ display:block; }
}
@media (max-width:700px){
  .content-section{ padding:78px 0; }
  .content-section.compact{ padding:62px 0; }
  .page-hero{ min-height:430px; padding-bottom:58px; }
  .page-hero h1{ font-size:clamp(38px,11vw,54px); }
  .purpose-grid,.blog-grid,.contact-info-grid,.form-grid,.blog-sidebar{ grid-template-columns:1fr; }
  .purpose-card{ min-height:280px; padding:30px; }
  .values-grid{ grid-template-columns:1fr; }
  .fact-row{ grid-template-columns:1fr 1fr; }
  .story-visual{ min-height:390px; }
  .story-visual .visual-main{ height:360px; width:94%; }
  .story-visual .visual-float{ width:48%; border-width:6px; }
  .catalog-grid{ grid-template-columns:1fr; }
  .article-detail .article-lead-image{ border-radius:20px; margin-bottom:28px; }
  .prose p{ font-size:16px; }
}
@media (max-width:520px){
  .fact-row{ grid-template-columns:1fr; }
  .contact-info-grid{ grid-template-columns:1fr; }
  .map-card,.map-card iframe{ min-height:320px; height:320px; }
  .form-card{ padding:24px 20px; }
  .catalog-toolbar{ align-items:stretch; }
  .catalog-toolbar .search-row{ width:100%; }
  .catalog-toolbar .search-row .input{ flex:1; }
  .catalog-card-actions{ flex-direction:column; }
  .catalog-card-actions .btn{ width:100%; }
}
.sr-only{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}
.stars.unrated{color:var(--husk-300)}

/* ============================================================
   CONTENT-DOC INTEGRATION / V3
============================================================ */
.hero-subhook{
  max-width:520px;
  margin:-10px 0 28px;
  color:rgba(253,246,240,.84);
  font-size:clamp(16px,1.8vw,20px);
  line-height:1.65;
}
.hero-copy h1{ max-width:720px; }

.use-card{
  background:var(--forest-900);
  justify-content:flex-start;
  min-height:100%;
}
.use-card:nth-child(2){ background:linear-gradient(135deg,var(--husk-700),var(--husk-500)); }
.forest .use-card{ background:rgba(253,246,240,.06); border:1px solid rgba(253,246,240,.12); }
.forest .use-card:nth-child(2){ background:rgba(198,154,63,.13); }
.use-card h3{ margin-bottom:18px; }
.use-product-pair{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; margin:4px 0 22px; position:relative; }
.use-product-pair img{ width:100%; aspect-ratio:1/1; object-fit:contain; background:rgba(255,255,255,.9); border-radius:16px; padding:8px; }
.source-list{ display:grid; gap:10px; margin:0; padding:0; list-style:none; position:relative; }
.source-list li{ position:relative; padding-left:22px; color:rgba(253,246,240,.82); font-size:14px; line-height:1.65; }
.source-list li::before{ content:""; position:absolute; left:0; top:.7em; width:8px; height:8px; border-radius:50%; background:var(--gold-500); }

/* The Coconut, Whole: 2 cards left, 2 cards right, 1 centered below the visual. */
.whole-grid{
  display:grid;
  grid-template-columns:minmax(240px,310px) minmax(440px,680px) minmax(240px,310px);
  grid-template-areas:
    "left-top visual right-top"
    "left-bottom visual right-bottom"
    ". bottom .";
  column-gap:clamp(26px,3.5vw,58px);
  row-gap:30px;
  align-items:center;
  justify-content:center;
  width:100%;
  max-width:1380px;
  margin:0 auto;
}
.whole-visual{
  grid-area:visual;
  min-width:0;
  min-height:520px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0;
  position:relative;
  z-index:1;
}
.whole-visual img{
  display:block;
  width:100%;
  max-width:680px;
  height:auto;
  margin:0 auto;
  filter:drop-shadow(0 32px 48px rgba(13,47,36,.14));
}
.whole-grid .island-card{
  width:100%;
  min-height:0;
  align-self:center;
}
.whole-grid .island-card:nth-of-type(1){ grid-area:left-top; justify-self:end; }
.whole-grid .island-card:nth-of-type(2){ grid-area:left-bottom; justify-self:end; }
.whole-grid .island-card:nth-of-type(3){ grid-area:right-top; justify-self:start; }
.whole-grid .island-card:nth-of-type(4){ grid-area:right-bottom; justify-self:start; }
.whole-grid .island-card:nth-of-type(5){
  grid-area:bottom;
  width:min(100%,520px);
  justify-self:center;
  margin-top:-8px;
}

@media (max-width:1080px){
  .whole-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    grid-template-areas:
      "visual visual"
      "left-top right-top"
      "left-bottom right-bottom"
      "bottom bottom";
    gap:18px;
    max-width:820px;
  }
  .whole-visual{
    min-height:0;
    margin-bottom:10px;
  }
  .whole-visual img{ max-width:580px; }
  .whole-grid .island-card:nth-of-type(1),
  .whole-grid .island-card:nth-of-type(2),
  .whole-grid .island-card:nth-of-type(3),
  .whole-grid .island-card:nth-of-type(4){ justify-self:stretch; }
  .whole-grid .island-card:nth-of-type(5){
    width:min(100%,520px);
    justify-self:center;
    margin-top:0;
  }
}

.values-grid-five{ grid-template-columns:repeat(3,1fr); }
.values-grid-five .value-card:nth-child(4),
.values-grid-five .value-card:nth-child(5){ grid-column:span 1; }
.about-process{ margin-top:44px; }

.blog-prose-heading{ font-size:clamp(26px,3vw,36px); margin:34px 0 14px; color:var(--forest-900); }
.prose .blog-prose-heading:first-child{ margin-top:0; }

.foot-grid > div:last-child > p{ color:rgba(253,246,240,.64); font-size:13px; line-height:1.7; margin:0; }

@media (max-width:980px){
  .values-grid-five{ grid-template-columns:repeat(2,1fr); }
  .values-grid-five .value-card:last-child{ grid-column:1 / -1; }
}
@media (max-width:720px){
  .hero-subhook{ margin:-2px 0 22px; max-width:100%; }
  .whole-grid{
    grid-template-columns:1fr;
    grid-template-areas:
      "visual"
      "left-top"
      "left-bottom"
      "right-top"
      "right-bottom"
      "bottom";
    gap:16px;
  }
  .whole-visual{
    min-height:0;
    margin-bottom:6px;
  }
  .whole-visual img{
    width:100%;
    max-width:420px;
  }
  .whole-grid .island-card,
  .whole-grid .island-card:nth-of-type(1),
  .whole-grid .island-card:nth-of-type(2),
  .whole-grid .island-card:nth-of-type(3),
  .whole-grid .island-card:nth-of-type(4),
  .whole-grid .island-card:nth-of-type(5){
    width:100%;
    max-width:none;
    justify-self:stretch;
    margin:0;
  }
  .values-grid-five{ grid-template-columns:1fr; }
  .values-grid-five .value-card:last-child{ grid-column:auto; }
  .use-product-pair{ max-width:360px; }
}

/* About page: preserve the original layout while integrating the revised farm narrative. */
.about-page .page-hero-copy{
  max-width:840px;
}
.about-page .about-hero-copy{
  display:grid;
  gap:12px;
  max-width:760px;
}
.about-page .about-hero-copy p{
  margin:0;
}
.about-page .story-visual.story-visual-single{
  min-height:0;
}
.about-page .story-visual.story-visual-single .visual-main{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:1.34 / 1;
  object-fit:cover;
  object-position:center;
}
.about-page .about-quality{
  background:
    radial-gradient(circle at 92% 8%, rgba(196,145,78,.10), transparent 28%),
    var(--white);
}
.about-page .about-quality-intro{
  max-width:860px;
  margin-bottom:40px;
}
.about-page .about-quality-intro p{
  max-width:820px;
}
.about-page #quality .purpose-card{
  min-height:300px;
}
.about-page #quality .purpose-card.vision{
  background:linear-gradient(135deg,var(--husk-700),var(--husk-500));
}

@media (max-width: 900px){
  .about-page .story-visual.story-visual-single{
    order:0;
  }
  .about-page .story-visual.story-visual-single .visual-main{
    width:100%;
    height:auto;
    aspect-ratio:16 / 10;
  }
}

@media (max-width: 640px){
  .about-page .about-hero-copy{
    gap:10px;
  }
  .about-page .page-hero p{
    font-size:15px;
    line-height:1.65;
  }
  .about-page .story-visual.story-visual-single .visual-main{
    aspect-ratio:4 / 3;
    border-radius:20px;
  }
  .about-page .about-quality-intro{
    margin-bottom:30px;
  }
  .about-page #quality .purpose-card{
    min-height:260px;
  }
}

/* ============================================================
   PRODUCT DETAIL PAGE — SHOPIFY-STYLE LAYOUT
   Scoped to product.php so the rest of the Tropitri site remains unchanged.
============================================================ */
.product-card-media-link{
  display:block;
  border-radius:inherit;
}
.catalog-card h3 a{
  transition:color .25s ease;
}
.catalog-card h3 a:hover{
  color:var(--husk-500);
}

.product-shopify-page .nav{
  background:var(--forest-900);
  box-shadow:0 1px 0 rgba(255,255,255,.07);
}
.product-shopify-page .nav .btn-primary{
  background:var(--cream-100);
  color:var(--forest-900);
}
.shop-product-page{
  background:var(--white);
  padding-top:calc(84px + var(--topbar-h));
}
.shop-product-main{
  padding:32px 0 72px;
  background:#fff;
}
.shop-product-breadcrumbs{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  margin:0 0 26px;
  color:#6c726f;
  font-size:12.5px;
  line-height:1.4;
}
.shop-product-breadcrumbs a{
  color:#59615d;
  transition:color .2s ease;
}
.shop-product-breadcrumbs a:hover{
  color:var(--forest-900);
}
.shop-product-breadcrumbs span[aria-hidden="true"]{
  color:#a4aaa7;
  font-size:16px;
}
.shop-product-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(440px,.92fr);
  gap:clamp(44px,6vw,88px);
  align-items:start;
}
.shop-product-gallery{
  min-width:0;
}
.shop-product-image-frame{
  display:grid;
  place-items:center;
  min-height:640px;
  aspect-ratio:1 / 1;
  background:#f4f4f2;
  border:1px solid #eceeea;
  overflow:hidden;
}
.shop-product-image-frame img{
  width:82%;
  height:82%;
  object-fit:contain;
  mix-blend-mode:multiply;
  transition:transform .4s var(--ease);
}
.shop-product-image-frame:hover img{
  transform:scale(1.025);
}
.shop-product-thumbnails{
  display:flex;
  gap:12px;
  margin-top:12px;
}
.shop-product-thumb{
  width:86px;
  height:86px;
  padding:6px;
  border:1px solid #d9ddda;
  background:#f5f5f3;
  border-radius:0;
  appearance:none;
}
.shop-product-thumb.is-active{
  border-color:var(--forest-900);
  box-shadow:inset 0 0 0 1px var(--forest-900);
}
.shop-product-thumb img{
  width:100%;
  height:100%;
  object-fit:contain;
  mix-blend-mode:multiply;
}
.shop-product-summary{
  position:sticky;
  top:calc(116px + var(--topbar-h));
  padding-top:2px;
}
.shop-product-heading-row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
}
.shop-product-category{
  display:inline-block;
  margin-bottom:12px;
  color:var(--husk-500);
  font-size:11px;
  font-weight:800;
  letter-spacing:.13em;
  text-transform:uppercase;
}
.shop-product-summary h1{
  margin:0;
  color:#171b19;
  font-family:var(--font-body);
  font-size:clamp(30px,3.2vw,44px);
  font-weight:700;
  line-height:1.12;
  letter-spacing:-.035em;
}
.shop-product-price-row{
  display:flex;
  align-items:baseline;
  gap:10px;
  margin-top:18px;
}
.shop-product-price{
  color:#202522;
  font-size:22px;
  font-weight:650;
}
.shop-product-price-unit{
  color:#7c827f;
  font-size:12px;
}
.shop-product-tagline{
  margin:26px 0 8px;
  color:#666d69;
  font-size:14px;
  line-height:1.65;
}
.shop-product-description{
  margin:0;
  color:#3d4541;
  font-size:14.5px;
  line-height:1.75;
}
.shop-product-option{
  margin-top:26px;
}
.shop-product-option-label{
  display:block;
  margin-bottom:10px;
  color:#2f3733;
  font-size:12px;
  font-weight:700;
}
.shop-product-option-value{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:62px;
  min-height:42px;
  padding:8px 15px;
  border:1.5px solid var(--forest-900);
  background:var(--forest-900);
  color:#fff;
  font-size:12px;
  font-weight:750;
}
.shop-product-amazon-button{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:52px;
  margin-top:28px;
  padding:14px 20px;
  border:1px solid var(--forest-900);
  background:var(--forest-900);
  color:#fff;
  font-size:14px;
  font-weight:800;
  letter-spacing:.01em;
  transition:background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.shop-product-amazon-button:hover{
  background:#134333;
  transform:translateY(-1px);
  box-shadow:0 10px 24px -16px rgba(13,47,36,.7);
}
.shop-product-utility-row{
  display:flex;
  align-items:center;
  gap:26px;
  padding:20px 0 18px;
  border-bottom:1px solid #e7e9e7;
}
.shop-product-utility-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:0;
  border:0;
  background:none;
  color:#3f4743;
  font:inherit;
  font-size:12.5px;
  cursor:pointer;
}
.shop-product-utility-link:hover{
  color:var(--forest-900);
}
.shop-product-utility-link svg{
  width:18px;
  height:18px;
}
.shop-product-confidence{
  display:grid;
  gap:14px;
  padding-top:18px;
}
.shop-product-confidence > div{
  display:grid;
  grid-template-columns:22px 1fr;
  gap:11px;
  align-items:start;
  color:#68706c;
  font-size:12px;
  line-height:1.55;
}
.shop-product-confidence svg{
  width:20px;
  height:20px;
  color:var(--forest-900);
  margin-top:1px;
}
.shop-product-confidence strong{
  color:#333a36;
  font-weight:750;
}

.shop-product-details-strip{
  overflow:hidden;
  background:var(--forest-900);
  color:#fff;
}
.shop-product-details-strip__track{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:38px;
  min-width:max-content;
  padding:13px 24px;
  font-size:12px;
  font-weight:750;
  letter-spacing:.01em;
}
.shop-product-details-strip__track i{
  color:var(--gold-500);
  font-style:normal;
}

.shop-product-information{
  padding:54px 0 28px;
  background:#fff;
}
.shop-product-info-tabs{
  display:flex;
  gap:40px;
  border-bottom:1px solid #e8eae8;
}
.shop-product-info-tabs a{
  position:relative;
  padding:0 0 14px;
  color:#838985;
  font-size:13px;
  font-weight:650;
}
.shop-product-info-tabs a.is-active{
  color:#232925;
}
.shop-product-info-tabs a.is-active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:2px;
  background:var(--forest-900);
}
.shop-product-info-copy{
  max-width:980px;
  padding:28px 0 18px;
}
.shop-product-info-copy p{
  margin:0;
  color:#606763;
  font-size:14px;
  line-height:1.9;
}

.shop-product-why{
  padding:78px 0 72px;
  background:#fff;
}
.shop-product-why h2,
.shop-product-accordions h2,
.shop-product-related-heading h2{
  margin:0;
  color:#202522;
  font-family:var(--font-body);
  font-size:clamp(28px,3vw,40px);
  font-weight:650;
  letter-spacing:-.03em;
  text-align:center;
}
.shop-product-why-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:42px;
  margin-top:48px;
}
.shop-product-why-grid article{
  text-align:center;
}
.shop-product-icon{
  display:grid;
  place-items:center;
  width:48px;
  height:48px;
  margin:0 auto 18px;
  color:var(--forest-900);
}
.shop-product-icon svg{
  width:44px;
  height:44px;
}
.shop-product-why-grid h3{
  margin:0 0 9px;
  color:#252a27;
  font-family:var(--font-body);
  font-size:17px;
  font-weight:650;
}
.shop-product-why-grid p{
  max-width:330px;
  margin:0 auto;
  color:#747b77;
  font-size:12.5px;
  line-height:1.7;
}

.shop-product-accordions{
  padding:48px 0 74px;
  background:#fff;
}
.shop-product-accordion-list{
  max-width:1120px;
  margin:36px auto 0;
  border-top:1px solid #e1e4e2;
}
.shop-product-accordion-list details{
  border-bottom:1px solid #e1e4e2;
}
.shop-product-accordion-list summary{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:19px 0;
  color:#303633;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  list-style:none;
}
.shop-product-accordion-list summary::-webkit-details-marker{
  display:none;
}
.shop-product-accordion-list summary span{
  transition:transform .2s ease;
  font-size:18px;
}
.shop-product-accordion-list details[open] summary span{
  transform:rotate(180deg);
}
.shop-product-accordion-content{
  padding:0 0 22px;
  color:#666d69;
  font-size:13px;
  line-height:1.8;
}
.shop-product-accordion-content ul,
.shop-product-accordion-content ol{
  display:grid;
  gap:8px;
  margin:0;
  padding-left:20px;
  list-style:disc;
}
.shop-product-accordion-content ol{
  list-style:decimal;
}
.shop-product-spec-list{
  display:grid;
  margin:0;
}
.shop-product-spec-list > div{
  display:grid;
  grid-template-columns:minmax(150px,.4fr) 1fr;
  gap:24px;
  padding:10px 0;
  border-bottom:1px solid #eef0ee;
}
.shop-product-spec-list > div:last-child{
  border-bottom:0;
}
.shop-product-spec-list dt{
  color:#303633;
  font-weight:700;
}
.shop-product-spec-list dd{
  margin:0;
  color:#6c736f;
}

.shop-product-related{
  padding:74px 0 92px;
  background:#fafaf8;
}
.shop-product-related-heading{
  position:relative;
  margin-bottom:36px;
}
.shop-product-related-heading a{
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  color:var(--forest-900);
  font-size:12px;
  font-weight:750;
}
.shop-product-related-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}
.shop-product-related-card{
  min-width:0;
}
.shop-product-related-image{
  display:grid;
  place-items:center;
  aspect-ratio:1 / 1;
  overflow:hidden;
  background:#f0f1ef;
  border:1px solid #e8eae8;
}
.shop-product-related-image img{
  width:82%;
  height:82%;
  object-fit:contain;
  mix-blend-mode:multiply;
  transition:transform .3s var(--ease);
}
.shop-product-related-card:hover .shop-product-related-image img{
  transform:scale(1.03);
}
.shop-product-related-card h3{
  margin:14px 0 7px;
  color:#242925;
  font-family:var(--font-body);
  font-size:14px;
  font-weight:650;
  line-height:1.4;
}
.shop-product-related-card p{
  margin:0;
  color:#666d69;
  font-size:12px;
}
.shop-product-related-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  margin-top:14px;
}
.shop-product-related-detail,
.shop-product-related-buy{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:10px 12px;
  border:1px solid var(--forest-900);
  font-size:12px;
  font-weight:750;
  transition:background .2s ease,color .2s ease;
}
.shop-product-related-detail{
  color:var(--forest-900);
  background:transparent;
}
.shop-product-related-detail:hover{
  background:#edf3ef;
}
.shop-product-related-buy{
  color:#fff;
  background:var(--forest-900);
}
.shop-product-related-buy:hover{
  background:#134333;
}

.shop-product-not-found{
  min-height:80vh;
  padding:calc(120px + var(--topbar-h)) 0 80px;
  background:var(--cream-100);
}
.shop-product-not-found__inner{
  display:grid;
  place-items:center;
}
.shop-product-not-found__card{
  max-width:720px;
  padding:56px;
  text-align:center;
  background:#fff;
  border:1px solid rgba(13,47,36,.08);
}
.shop-product-not-found__card .eyebrow{
  justify-content:center;
}
.shop-product-not-found__code{
  margin:18px 0 0;
  color:var(--husk-300);
  font-family:var(--font-display);
  font-size:88px;
  line-height:1;
}
.shop-product-not-found__card h1{
  margin-top:2px;
  font-size:46px;
}
.shop-product-not-found__card > p:not(.shop-product-not-found__code){
  max-width:500px;
  margin:16px auto 26px;
  color:var(--ink-600);
  line-height:1.7;
}

@media (max-width:1100px){
  .shop-product-layout{
    grid-template-columns:minmax(0,1fr) minmax(380px,.9fr);
    gap:38px;
  }
  .shop-product-image-frame{
    min-height:520px;
  }
}

@media (max-width:860px){
  .shop-product-page{
    padding-top:calc(78px + var(--topbar-h));
  }
  .shop-product-main{
    padding-top:28px;
  }
  .shop-product-layout{
    grid-template-columns:1fr;
    gap:34px;
  }
  .shop-product-summary{
    position:static;
  }
  .shop-product-image-frame{
    min-height:0;
    aspect-ratio:1 / 1;
  }
  .shop-product-why-grid{
    grid-template-columns:1fr;
    gap:36px;
  }
  .shop-product-related-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .shop-product-related-card:last-child{
    grid-column:1 / -1;
    max-width:calc(50% - 10px);
  }
}

@media (max-width:640px){
  .shop-product-main{
    padding:22px 0 48px;
  }
  .shop-product-breadcrumbs{
    margin-bottom:18px;
    gap:7px;
    font-size:11px;
  }
  .shop-product-summary h1{
    font-size:30px;
  }
  .shop-product-price{
    font-size:20px;
  }
  .shop-product-image-frame img{
    width:88%;
    height:88%;
  }
  .shop-product-thumb{
    width:70px;
    height:70px;
  }
  .shop-product-utility-row{
    gap:18px;
  }
  .shop-product-details-strip__track{
    justify-content:flex-start;
    gap:22px;
    overflow-x:auto;
    scrollbar-width:none;
  }
  .shop-product-details-strip__track::-webkit-scrollbar{
    display:none;
  }
  .shop-product-information{
    padding:38px 0 20px;
  }
  .shop-product-info-tabs{
    gap:26px;
  }
  .shop-product-why{
    padding:58px 0 50px;
  }
  .shop-product-accordions{
    padding:38px 0 58px;
  }
  .shop-product-why h2,
  .shop-product-accordions h2,
  .shop-product-related-heading h2{
    font-size:28px;
  }
  .shop-product-accordion-list{
    margin-top:26px;
  }
  .shop-product-spec-list > div{
    grid-template-columns:1fr;
    gap:4px;
  }
  .shop-product-related{
    padding:58px 0 70px;
  }
  .shop-product-related-heading a{
    position:static;
    display:block;
    margin-top:12px;
    transform:none;
    text-align:center;
  }
  .shop-product-related-grid{
    grid-template-columns:1fr;
  }
  .shop-product-related-card:last-child{
    grid-column:auto;
    max-width:none;
  }
  .shop-product-not-found__card{
    padding:38px 24px;
  }
}

/* ============================================================
   HOME / CATALOG PRODUCT CARD ACTIONS
============================================================ */
.p-card-actions,
.catalog-card-actions{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}
/* .p-card-actions{
  justify-content:flex-end;
} */
.p-card-actions .btn,
.catalog-card-actions .btn{
  justify-content:center;
  white-space:nowrap;
  padding-left:14px;
  padding-right:14px;
}
@media (max-width:720px){
  .products .p-foot{
    align-items:flex-start;
    flex-direction:column;
  }
  .products .p-card-actions,
  .catalog-card-actions{
    width:100%;
  }
  .products .p-card-actions .btn,
  .catalog-card-actions .btn{
    flex:1 1 0;
  }
}
@media (max-width:390px){
  .products .p-card-actions,
  .catalog-card-actions{
    flex-direction:column;
  }
  .products .p-card-actions .btn,
  .catalog-card-actions .btn{
    width:100%;
  }
}

/* ============================================================
   PRODUCT DETAIL — COMPACT TROPITRI REFINEMENT
   Keeps the Shopify-style information architecture while using
   the site's own spacing, radii and forest / cream visual system.
============================================================ */
.product-shopify-page .shop-product-main > .wrap,
.product-shopify-page .shop-product-information > .wrap,
.product-shopify-page .shop-product-why > .wrap,
.product-shopify-page .shop-product-accordions > .wrap,
.product-shopify-page .shop-product-related > .wrap{
  max-width:1280px;
}

.product-shopify-page .shop-product-main{
  padding:26px 0 46px;
}
.product-shopify-page .shop-product-breadcrumbs{
  margin-bottom:18px;
}
.product-shopify-page .shop-product-layout{
  grid-template-columns:minmax(0,1fr) minmax(390px,.82fr);
  gap:clamp(30px,4vw,54px);
}
.product-shopify-page .shop-product-image-frame{
  min-height:0;
  aspect-ratio:1 / 1;
  border-color:rgba(13,47,36,.08);
  border-radius:var(--radius-lg);
  background:linear-gradient(145deg,#fffaf6 0%,var(--cream-100) 100%);
}
.product-shopify-page .shop-product-image-frame img{
  width:78%;
  height:78%;
}
.product-shopify-page .shop-product-thumb{
  width:76px;
  height:76px;
  border-radius:var(--radius-sm);
  background:var(--cream-100);
  overflow:hidden;
}
.product-shopify-page .shop-product-summary{
  top:calc(104px + var(--topbar-h));
}
.product-shopify-page .shop-product-category{
  margin-bottom:8px;
}
.product-shopify-page .shop-product-summary h1{
  color:var(--forest-900);
  font-size:clamp(30px,3vw,40px);
}
.product-shopify-page .shop-product-price-row{
  margin-top:14px;
}
.product-shopify-page .shop-product-tagline{
  margin:19px 0 6px;
  color:var(--husk-500);
  font-weight:650;
}
.product-shopify-page .shop-product-description{
  line-height:1.68;
}
.product-shopify-page .shop-product-option{
  margin-top:20px;
}
.product-shopify-page .shop-product-option-label{
  margin-bottom:8px;
}
.product-shopify-page .shop-product-option-value{
  min-height:38px;
  padding:7px 14px;
  border-radius:999px;
}
.product-shopify-page .shop-product-amazon-button{
  min-height:50px;
  margin-top:22px;
  border-radius:999px;
  box-shadow:0 12px 24px -18px rgba(13,47,36,.7);
}
.product-shopify-page .shop-product-utility-row{
  gap:22px;
  padding:16px 2px 14px;
}
.product-shopify-page .shop-product-confidence{
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  padding-top:14px;
}
.product-shopify-page .shop-product-confidence > div{
  grid-template-columns:20px 1fr;
  gap:9px;
  padding:12px;
  border:1px solid rgba(13,47,36,.08);
  border-radius:var(--radius-sm);
  background:rgba(253,246,240,.58);
}

.product-shopify-page .shop-product-details-strip__track{
  gap:28px;
  padding:11px 22px;
}

.product-shopify-page .shop-product-information{
  padding:50px 0;
  border-bottom: 1px solid rgba(13, 47, 36, .10);
}
.product-shopify-page .shop-product-info-tabs{
  gap:34px;
}
.product-shopify-page .shop-product-info-tab{
  position:relative;
  appearance:none;
  margin:0;
  padding:0 0 13px;
  border:0;
  background:transparent;
  color:#7b827e;
  font:inherit;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
  transition:color .2s ease;
}
.product-shopify-page .shop-product-info-tab:hover{
  color:var(--forest-900);
}
.product-shopify-page .shop-product-info-tab.is-active{
  color:var(--forest-900);
}
.product-shopify-page .shop-product-info-tab.is-active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:2px;
  border-radius:2px;
  background:var(--forest-900);
}
.product-shopify-page .shop-product-info-panels{
  max-width:960px;
  min-height:118px;
  padding:22px 0 8px;
}
.product-shopify-page .shop-product-info-panel[hidden]{
  display:none;
}
.product-shopify-page .shop-product-info-panel > p{
  margin:0;
  color:#59625d;
  font-size:14px;
  line-height:1.78;
}
.product-shopify-page .shop-product-usage-intro{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:20px;
  margin-bottom:16px;
}
.product-shopify-page .shop-product-usage-intro h3{
  color:var(--forest-900);
  font-family:var(--font-body);
  font-size:16px;
  font-weight:750;
}
.product-shopify-page .shop-product-usage-intro p{
  margin:0;
  color:#717975;
  font-size:12.5px;
}
.product-shopify-page .shop-product-usage-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin:0;
  padding:0;
  list-style:none;
}
.product-shopify-page .shop-product-usage-list li{
  display:grid;
  grid-template-columns:34px 1fr;
  gap:10px;
  align-items:start;
  padding:14px 15px;
  border:1px solid rgba(13,47,36,.08);
  border-radius:var(--radius-sm);
  background:rgba(253,246,240,.52);
}
.product-shopify-page .shop-product-usage-list li > span{
  display:grid;
  place-items:center;
  width:30px;
  height:30px;
  border-radius:50%;
  background:var(--forest-900);
  color:var(--cream-100);
  font-size:10px;
  font-weight:800;
}
.product-shopify-page .shop-product-usage-list p{
  margin:3px 0 0;
  color:#58615c;
  font-size:13px;
  line-height:1.6;
}

.product-shopify-page .shop-product-why{
  padding:48px 0 46px;
  background:var(--cream-100);
}
.product-shopify-page .shop-product-why h2,
.product-shopify-page .shop-product-accordions h2,
.product-shopify-page .shop-product-related-heading h2{
  color:var(--forest-900);
  font-family:var(--font-display);
  font-weight:400;
  letter-spacing:0;
}
.product-shopify-page .shop-product-why-grid{
  gap:14px;
  margin-top:30px;
}
.product-shopify-page .shop-product-why-grid article{
  padding:24px 22px;
  border:1px solid rgba(13,47,36,.08);
  border-radius:var(--radius-md);
  background:rgba(255,255,255,.76);
}
.product-shopify-page .shop-product-icon{
  width:42px;
  height:42px;
  margin-bottom:13px;
}
.product-shopify-page .shop-product-icon svg{
  width:38px;
  height:38px;
}
.product-shopify-page .shop-product-why-grid h3{
  color:var(--forest-900);
}

.product-shopify-page .shop-product-accordions{
  padding:42px 0 50px;
}
.product-shopify-page .shop-product-accordion-list{
  max-width:1020px;
  margin-top:26px;
}
.product-shopify-page .shop-product-accordion-list summary{
  padding:17px 2px;
}
.product-shopify-page .shop-product-accordion-content{
  padding-bottom:18px;
}

.product-shopify-page .shop-product-related{
  padding:50px 0 62px;
  background:#f8f2eb;
}
.product-shopify-page .shop-product-related-heading{
  margin-bottom:26px;
}
.product-shopify-page .shop-product-related-grid{
  gap:14px;
}
.product-shopify-page .shop-product-related-card{
  display:flex;
  flex-direction:column;
  padding:10px 10px 14px;
  border:1px solid rgba(13,47,36,.08);
  border-radius:var(--radius-md);
  background:#fff;
  overflow:hidden;
  box-shadow:0 14px 34px -32px rgba(13,47,36,.38);
}
.product-shopify-page .shop-product-related-image{
  border:0;
  border-radius:calc(var(--radius-md) - 5px);
  background:var(--cream-100);
}
.product-shopify-page .shop-product-related-card h3,
.product-shopify-page .shop-product-related-card > p,
.product-shopify-page .shop-product-related-actions{
  margin-left:4px;
  margin-right:4px;
}
.product-shopify-page .shop-product-related-card h3{
  margin-top:12px;
}
.product-shopify-page .shop-product-related-actions{
  margin-top:12px;
}
.product-shopify-page .shop-product-related-detail,
.product-shopify-page .shop-product-related-buy{
  min-height:40px;
  border-radius:999px;
}
.product-shopify-page .shop-product-related-detail:hover{
  background:var(--cream-100);
}
.product-shopify-page .shop-product-not-found__card{
  border-radius:var(--radius-lg);
}

@media (max-width:980px){
  .product-shopify-page .shop-product-layout{
    grid-template-columns:minmax(0,1fr) minmax(350px,.88fr);
    gap:30px;
  }
  .product-shopify-page .shop-product-confidence{
    grid-template-columns:1fr;
  }
}

@media (max-width:860px){
  .product-shopify-page .shop-product-main{
    padding-bottom:34px;
  }
  .product-shopify-page .shop-product-layout{
    grid-template-columns:1fr;
    gap:26px;
  }
  .product-shopify-page .shop-product-summary{
    max-width:680px;
  }
  .product-shopify-page .shop-product-confidence{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:640px){
  .product-shopify-page .shop-product-main{
    padding:18px 0 32px;
  }
  .product-shopify-page .shop-product-image-frame{
    border-radius:var(--radius-md);
  }
  .product-shopify-page .shop-product-image-frame img{
    width:84%;
    height:84%;
  }
  .product-shopify-page .shop-product-summary h1{
    font-size:29px;
  }
  .product-shopify-page .shop-product-tagline{
    margin-top:16px;
  }
  .product-shopify-page .shop-product-amazon-button{
    margin-top:18px;
  }
  .product-shopify-page .shop-product-confidence{
    grid-template-columns:1fr;
  }
  .product-shopify-page .shop-product-information{
    padding:28px 0 12px;
  }
  .product-shopify-page .shop-product-info-tabs{
    gap:26px;
  }
  .product-shopify-page .shop-product-info-panels{
    min-height:0;
    padding-top:18px;
  }
  .product-shopify-page .shop-product-usage-intro{
    display:block;
  }
  .product-shopify-page .shop-product-usage-intro p{
    margin-top:5px;
  }
  .product-shopify-page .shop-product-usage-list{
    grid-template-columns:1fr;
  }
  .product-shopify-page .shop-product-why{
    padding:38px 0;
  }
  .product-shopify-page .shop-product-why-grid{
    gap:10px;
    margin-top:24px;
  }
  .product-shopify-page .shop-product-why-grid article{
    padding:20px 18px;
  }
  .product-shopify-page .shop-product-accordions{
    padding:34px 0 42px;
  }
  .product-shopify-page .shop-product-related{
    padding:40px 0 50px;
  }
}

/* ============================================================
   PRODUCT CTA CLEANUP — SINGLE ACTION FLOW
============================================================ */
.products .p-card-actions .btn,
.products-page .catalog-card-actions .btn{
  width:100%;
  flex:1 1 100%;
}
.product-shopify-page .shop-product-related-actions{
  grid-template-columns:1fr;
}
.product-shopify-page .shop-product-related-buy{
  width:100%;
}

/* ============================================================
   PRODUCT DETAIL — PRODUCT STORY CONTENT / V4
   Product-specific content architecture derived from the four
   Tropitri A5 product sheets while preserving the site system.
============================================================ */
.product-shopify-page .shop-product-image-frame.is-secondary{
  background:#f6f1e9;
}
.product-shopify-page .shop-product-image-frame.is-secondary img{
  width:100%;
  height:100%;
  object-fit:contain;
  mix-blend-mode:normal;
  transform:none;
}
.product-shopify-page .shop-product-image-frame.is-secondary:hover img{
  transform:none;
}
.product-shopify-page .shop-product-thumb--secondary img{
  object-fit:cover;
  object-position:top center;
  mix-blend-mode:normal;
}

.product-shopify-page .shop-product-highlight{
  display:inline-flex;
  width:max-content;
  max-width:100%;
  margin:7px 0 12px;
  padding:7px 12px;
  border-radius:999px;
  background:var(--cream-200);
  color:var(--husk-700);
  font-size:11px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.product-shopify-page .shop-product-perfect{
  margin-top:18px;
  padding-top:16px;
  border-top:1px solid rgba(13,47,36,.09);
}
.product-shopify-page .shop-product-perfect-label{
  display:block;
  margin-bottom:9px;
  color:var(--forest-900);
  font-size:11px;
  font-weight:800;
  letter-spacing:.09em;
  text-transform:uppercase;
}
.product-shopify-page .shop-product-perfect-list{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
}
.product-shopify-page .shop-product-perfect-list > span{
  display:inline-flex;
  align-items:center;
  min-height:31px;
  padding:6px 11px;
  border:1px solid rgba(13,47,36,.12);
  border-radius:999px;
  background:#fff;
  color:#4b5550;
  font-size:11.5px;
  line-height:1.2;
}

.product-shopify-page .shop-product-info-panels{
  max-width:1040px;
  min-height:0;
}
.product-shopify-page .shop-product-story-copy{
  max-width:860px;
}
.product-shopify-page .shop-product-story-copy .eyebrow{
  margin-bottom:10px;
}
.product-shopify-page .shop-product-story-copy h3{
  margin:0 0 11px;
  color:var(--forest-900);
  font-family:var(--font-display);
  font-size:26px;
  font-weight:400;
}
.product-shopify-page .shop-product-story-copy p{
  max-width:820px;
  margin:0;
  color:#59625d;
  font-size:14px;
  line-height:1.78;
}
.product-shopify-page .shop-product-usage-intro{
  align-items:flex-start;
  margin-bottom:14px;
}
.product-shopify-page .shop-product-usage-intro .eyebrow{
  margin-bottom:8px;
}
.product-shopify-page .shop-product-usage-intro h3{
  margin:0;
  font-family:var(--font-display);
  font-size:26px;
  font-weight:400;
}
.product-shopify-page .shop-product-perfect-list--tab{
  justify-content:flex-end;
  max-width:460px;
}
.product-shopify-page .shop-product-perfect-list--tab > span{
  background:var(--cream-100);
}

.product-shopify-page .shop-product-section-heading{
  max-width:660px;
  margin:0 auto 28px;
  text-align:center;
}
.product-shopify-page .shop-product-section-heading .eyebrow{
  justify-content:center;
  margin-bottom:10px;
}
.product-shopify-page .shop-product-section-heading h2{
  margin:0;
  color:var(--forest-900);
  font-family:var(--font-display);
  font-size:clamp(30px,3.6vw,42px);
  font-weight:400;
}

.product-shopify-page .shop-product-strengths{
  padding:48px 0 52px;
  background:var(--cream-100);
}
.product-shopify-page .shop-product-strength-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}
.product-shopify-page .shop-product-strength-card{
  min-height:190px;
  padding:21px;
  border:1px solid rgba(13,47,36,.09);
  border-radius:var(--radius-md);
  background:rgba(255,255,255,.82);
  box-shadow:0 14px 30px -30px rgba(13,47,36,.35);
}
.product-shopify-page .shop-product-strength-index{
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  margin-bottom:22px;
  border-radius:50%;
  background:var(--forest-900);
  color:var(--cream-100);
  font-size:10px;
  font-weight:800;
  letter-spacing:.04em;
}
.product-shopify-page .shop-product-strength-card h3{
  margin:0 0 8px;
  color:var(--forest-900);
  font-family:var(--font-body);
  font-size:16px;
  font-weight:800;
  line-height:1.35;
}
.product-shopify-page .shop-product-strength-card p{
  margin:0;
  color:#68716c;
  font-size:12.5px;
  line-height:1.68;
}

.product-shopify-page .shop-product-process{
  padding:54px 0 58px;
  background:#fff;
}
.product-shopify-page .shop-product-process-head{
  margin-bottom:30px;
}
.product-shopify-page .shop-product-process-head .eyebrow{
  margin-bottom:10px;
}
.product-shopify-page .shop-product-process-head h2{
  margin:0;
  color:var(--forest-900);
  font-size:clamp(30px,3.7vw,44px);
}
.product-shopify-page .shop-product-process-head > p{
  margin:0;
  color:#66706a;
  font-size:13.5px;
  line-height:1.75;
}
.product-shopify-page .shop-product-process-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:0;
  border:1px solid rgba(13,47,36,.09);
  border-radius:var(--radius-md);
  overflow:hidden;
  background:#fff;
}
.product-shopify-page .shop-product-process-step{
  position:relative;
  min-height:190px;
  padding:24px 22px;
  border-right:1px solid rgba(13,47,36,.09);
}
.product-shopify-page .shop-product-process-step:last-child{
  border-right:0;
}
.product-shopify-page .shop-product-process-number{
  display:block;
  margin-bottom:28px;
  color:var(--gold-500);
  font-size:11px;
  font-weight:850;
  letter-spacing:.12em;
}
.product-shopify-page .shop-product-process-step h3{
  margin:0 0 8px;
  color:var(--forest-900);
  font-family:var(--font-body);
  font-size:15px;
  font-weight:800;
  line-height:1.35;
}
.product-shopify-page .shop-product-process-step p{
  margin:0;
  color:#68716c;
  font-size:12.5px;
  line-height:1.65;
}

.product-shopify-page .shop-product-accordions{
  padding:42px 0 46px;
  background:var(--cream-100);
}
.product-shopify-page .shop-product-accordion-list{
  background:#fff;
  border:1px solid rgba(13,47,36,.09);
  border-radius:var(--radius-md);
  overflow:hidden;
}
.product-shopify-page .shop-product-accordion-list details{
  padding:0 20px;
}
.product-shopify-page .shop-product-accordion-list details:last-child{
  border-bottom:0;
}

.product-shopify-page .shop-product-range-story{
  padding:54px 0;
  background:#fff;
}
.product-shopify-page .shop-product-range-card{
  display:grid;
  grid-template-columns:minmax(280px,.85fr) minmax(0,1.15fr);
  gap:clamp(28px,5vw,64px);
  align-items:center;
  padding:clamp(16px,2vw,26px);
  border:1px solid rgba(13,47,36,.09);
  border-radius:var(--radius-lg);
  background:linear-gradient(135deg,#fffaf5 0%,var(--cream-100) 100%);
  overflow:hidden;
}
.product-shopify-page .shop-product-range-visual{
  aspect-ratio:4 / 3;
  max-height:430px;
  border-radius:calc(var(--radius-lg) - 8px);
  overflow:hidden;
  background:#eee6dc;
}
.product-shopify-page .shop-product-range-visual img{
  width:100%;
  height:100%;
  max-height:430px;
  object-fit:cover;
  object-position:center 39%;
}
.product-shopify-page .shop-product-range-copy{
  max-width:540px;
  padding:12px 18px 12px 0;
}
.product-shopify-page .shop-product-range-copy .eyebrow{
  margin-bottom:12px;
}
.product-shopify-page .shop-product-range-copy h2{
  margin:0 0 15px;
  color:var(--forest-900);
  font-size:clamp(31px,3.8vw,46px);
}
.product-shopify-page .shop-product-range-copy p{
  margin:0 0 22px;
  color:#616b65;
  font-size:14px;
  line-height:1.78;
}
.product-shopify-page .shop-product-range-copy .btn{
  border-radius:999px;
}

@media (max-width:980px){
  .product-shopify-page .shop-product-strength-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .product-shopify-page .shop-product-process-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .product-shopify-page .shop-product-process-step:nth-child(2){
    border-right:0;
  }
  .product-shopify-page .shop-product-process-step:nth-child(-n+2){
    border-bottom:1px solid rgba(13,47,36,.09);
  }
}

@media (max-width:760px){
  .product-shopify-page .shop-product-process-head,
  .product-shopify-page .shop-product-range-card{
    grid-template-columns:1fr;
  }
  .product-shopify-page .shop-product-process-head{
    gap:14px;
  }
  .product-shopify-page .shop-product-range-visual{
    max-height:360px;
  }
  .product-shopify-page .shop-product-range-visual img{
    max-height:360px;
    object-position:center 34%;
  }
  .product-shopify-page .shop-product-range-copy{
    max-width:none;
    padding:2px 8px 10px;
  }
}

@media (max-width:640px){
  .product-shopify-page .shop-product-highlight{
    margin-bottom:10px;
  }
  .product-shopify-page .shop-product-perfect{
    margin-top:15px;
    padding-top:14px;
  }
  .product-shopify-page .shop-product-perfect-list{
    gap:6px;
  }
  .product-shopify-page .shop-product-perfect-list > span{
    min-height:29px;
    padding:6px 10px;
    font-size:11px;
  }
  .product-shopify-page .shop-product-usage-intro{
    display:block;
  }
  .product-shopify-page .shop-product-perfect-list--tab{
    justify-content:flex-start;
    margin-top:12px;
  }
  .product-shopify-page .shop-product-strengths,
  .product-shopify-page .shop-product-process,
  .product-shopify-page .shop-product-range-story{
    padding:38px 0 42px;
  }
  .product-shopify-page .shop-product-strength-grid,
  .product-shopify-page .shop-product-process-grid{
    grid-template-columns:1fr;
  }
  .product-shopify-page .shop-product-strength-card{
    min-height:0;
    padding:18px;
  }
  .product-shopify-page .shop-product-strength-index{
    margin-bottom:16px;
  }
  .product-shopify-page .shop-product-process-grid{
    border-radius:var(--radius-sm);
  }
  .product-shopify-page .shop-product-process-step,
  .product-shopify-page .shop-product-process-step:nth-child(2){
    min-height:0;
    border-right:0;
    border-bottom:1px solid rgba(13,47,36,.09);
    padding:20px 18px;
  }
  .product-shopify-page .shop-product-process-step:last-child{
    border-bottom:0;
  }
  .product-shopify-page .shop-product-process-number{
    margin-bottom:16px;
  }
  .product-shopify-page .shop-product-accordion-list details{
    padding:0 16px;
  }
  .product-shopify-page .shop-product-range-visual,
  .product-shopify-page .shop-product-range-visual img{
    max-height:310px;
  }
  .product-shopify-page .shop-product-range-copy h2{
    font-size:31px;
  }
}


/* ============================================================
   PRODUCT DETAIL — TABBED INFORMATION / V5
   Keeps all story content inside Product details, with Usage and
   Product information as independent in-place tabs.
============================================================ */
.product-shopify-page .shop-product-info-panels{
  max-width:none;
  width:100%;
  padding-top:24px;
}
.product-shopify-page .shop-product-info-panel{
  width:100%;
}
.product-shopify-page .shop-product-detail-intro{
  max-width:900px;
  padding:24px 26px;
  border:1px solid rgba(13,47,36,.08);
  border-radius:var(--radius-md);
  background:linear-gradient(135deg,rgba(253,246,240,.86),rgba(255,255,255,.94));
}
.product-shopify-page .shop-product-detail-intro h2{
  margin:0 0 10px;
  color:var(--forest-900);
  font-family:var(--font-display);
  font-size:clamp(28px,3.4vw,40px);
  font-weight:400;
  line-height:1.12;
}
.product-shopify-page .shop-product-detail-block{
  margin-top:34px;
  padding-top:32px;
  border-top:1px solid rgba(13,47,36,.10);
}
.product-shopify-page .shop-product-section-heading--left{
  max-width:760px;
  margin:0 0 22px;
  text-align:left;
}
.product-shopify-page .shop-product-section-heading--left .eyebrow{
  justify-content:flex-start;
}
.product-shopify-page .shop-product-section-heading h3,
.product-shopify-page .shop-product-process-head h3{
  margin:0;
  color:var(--forest-900);
  font-family:var(--font-display);
  font-size:clamp(28px,3.4vw,40px);
  font-weight:400;
  line-height:1.12;
}
.product-shopify-page .shop-product-strength-card h4,
.product-shopify-page .shop-product-process-step h4{
  margin:0 0 8px;
  color:var(--forest-900);
  font-family:var(--font-body);
  font-size:15px;
  font-weight:800;
  line-height:1.35;
}
.product-shopify-page .shop-product-detail-strengths .shop-product-strength-grid{
  gap:12px;
}
.product-shopify-page .shop-product-detail-strengths .shop-product-strength-card{
  min-height:176px;
}
.product-shopify-page .shop-product-detail-process .shop-product-process-head{
  margin-bottom:22px;
}
.product-shopify-page .shop-product-detail-process .shop-product-process-grid{
  align-items:stretch;
}
.product-shopify-page .shop-product-detail-process .shop-product-process-step{
  display:flex;
  flex-direction:column;
  min-height:0;
  padding:0;
  background:#fff;
}
.product-shopify-page .shop-product-process-image{
  overflow:hidden;
  background:var(--cream-100);
  border-bottom:1px solid rgba(13,47,36,.08);
}
.product-shopify-page .shop-product-process-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.product-shopify-page .shop-product-process-step-copy{
  flex:1;
  padding:18px 18px 20px;
}
.product-shopify-page .shop-product-process-step-copy .shop-product-process-number{
  margin-bottom:12px;
}

.product-shopify-page .shop-product-usage-shell{
  display:grid;
  gap:24px;
}
.product-shopify-page .shop-product-usage-header{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(280px,.75fr);
  gap:32px;
  align-items:end;
  padding:24px 26px;
  border:1px solid rgba(13,47,36,.08);
  border-radius:var(--radius-md);
  background:linear-gradient(135deg,var(--cream-100),#fff);
}
.product-shopify-page .shop-product-usage-header .eyebrow{
  margin-bottom:10px;
}
.product-shopify-page .shop-product-usage-header h2{
  margin:0;
  color:var(--forest-900);
  font-family:var(--font-display);
  font-size:clamp(28px,3.4vw,40px);
  font-weight:400;
}
.product-shopify-page .shop-product-usage-header p{
  max-width:620px;
  margin:8px 0 0;
  color:#65706a;
  font-size:13.5px;
  line-height:1.7;
}
.product-shopify-page .shop-product-usage-perfect{
  justify-self:end;
  width:100%;
  max-width:420px;
}
.product-shopify-page .shop-product-usage-perfect .shop-product-perfect-list{
  justify-content:flex-end;
}
.product-shopify-page .shop-product-usage-list{
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}
.product-shopify-page .shop-product-usage-list li{
  min-height:150px;
  grid-template-columns:38px 1fr;
  gap:12px;
  padding:18px;
  background:#fff;
  border-radius:var(--radius-md);
  box-shadow:0 14px 30px -32px rgba(13,47,36,.32);
}
.product-shopify-page .shop-product-usage-list li > span{
  width:34px;
  height:34px;
}
.product-shopify-page .shop-product-usage-list strong{
  display:block;
  margin:1px 0 6px;
  color:var(--forest-900);
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.product-shopify-page .shop-product-usage-list p{
  margin:0;
}

.product-shopify-page .shop-product-information-panel{
  display:grid;
  gap:24px;
}
.product-shopify-page .shop-product-information-intro{
  max-width:760px;
}
.product-shopify-page .shop-product-information-intro .eyebrow{
  margin-bottom:10px;
}
.product-shopify-page .shop-product-information-intro h2{
  margin:0;
  color:var(--forest-900);
  font-family:var(--font-display);
  font-size:clamp(28px,3.4vw,40px);
  font-weight:400;
}
.product-shopify-page .shop-product-information-intro p{
  margin:8px 0 0;
  color:#66706a;
  font-size:13.5px;
}
.product-shopify-page .shop-product-information-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  max-width:1040px;
}
.product-shopify-page .shop-product-information-card{
  padding:22px;
  border:1px solid rgba(13,47,36,.09);
  border-radius:var(--radius-md);
  background:#fff;
}
.product-shopify-page .shop-product-information-card h3{
  margin:0 0 16px;
  color:var(--forest-900);
  font-family:var(--font-body);
  font-size:15px;
  font-weight:800;
}
.product-shopify-page .shop-product-information-card--note{
  background:var(--cream-100);
}
.product-shopify-page .shop-product-information-card--note p{
  margin:0;
  color:#66706a;
  font-size:13px;
  line-height:1.72;
}
.product-shopify-page .shop-product-information-card .shop-product-spec-list > div{
  grid-template-columns:minmax(120px,.42fr) 1fr;
}

@media (max-width:900px){
  .product-shopify-page .shop-product-usage-header,
  .product-shopify-page .shop-product-information-grid{
    grid-template-columns:1fr;
  }
  .product-shopify-page .shop-product-usage-perfect{
    justify-self:start;
    max-width:none;
  }
  .product-shopify-page .shop-product-usage-perfect .shop-product-perfect-list{
    justify-content:flex-start;
  }
  .product-shopify-page .shop-product-usage-list{
    grid-template-columns:1fr;
  }
  .product-shopify-page .shop-product-usage-list li{
    min-height:0;
  }
}

@media (max-width:640px){
  .product-shopify-page .shop-product-info-tabs{
    gap:0;
    overflow-x:auto;
    scrollbar-width:none;
    scroll-snap-type:x proximity;
  }
  .product-shopify-page .shop-product-info-tabs::-webkit-scrollbar{
    display:none;
  }
  .product-shopify-page .shop-product-info-tab{
    flex:0 0 auto;
    padding:0 18px 13px 0;
    margin-right:18px;
    scroll-snap-align:start;
    white-space:nowrap;
  }
  .product-shopify-page .shop-product-detail-intro,
  .product-shopify-page .shop-product-usage-header{
    padding:20px 18px;
    border-radius:var(--radius-sm);
  }
  .product-shopify-page .shop-product-detail-block{
    margin-top:28px;
    padding-top:26px;
  }
  .product-shopify-page .shop-product-detail-strengths .shop-product-strength-grid{
    grid-template-columns:1fr;
  }
  .product-shopify-page .shop-product-detail-strengths .shop-product-strength-card{
    min-height:0;
  }
  .product-shopify-page .shop-product-process-image{
    aspect-ratio:16 / 9;
  }
  .product-shopify-page .shop-product-information-card{
    padding:18px;
  }
  .product-shopify-page .shop-product-information-card .shop-product-spec-list > div{
    grid-template-columns:1fr;
  }
}
