:root{
  --bg:#0b1220;
  --card:#0f1a2f;
  --text:#eaf0ff;
  --muted:rgba(234,240,255,.72);
  --line:rgba(255,255,255,.10);

  --brand1:#ffb703;   /* gold */
  --brand2:#21c58e;   /* green */
  --brand3:#3b82f6;   /* blue */

  --radius:18px;
  --shadow: 0 18px 50px rgba(0,0,0,.35);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  background:
    radial-gradient(900px 600px at 75% 10%, rgba(111,143,47,.18), transparent 55%),
    radial-gradient(700px 520px at 20% 0%, rgba(210,170,105,.18), transparent 60%),
    linear-gradient(180deg, #f7f4ea 0%, #eef4e8 55%, #ffffff 100%);

  color:#0f172a;
}



a{ color:inherit; text-decoration:none; }
.container{ width:min(1200px, 92%); margin-inline:auto; }

/* Header */
.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.70);
  border-bottom: 1px solid var(--line);
}
.header-row{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:14px 0;
}
.brand{ display:flex; gap:10px; align-items:center; }
.brand-mark{
  width:42px; height:42px; border-radius:14px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, var(--brand2), var(--brand3));
  box-shadow: var(--shadow);
  font-weight:900;
}
.brand-text strong{ display:block; line-height:1.05; }
.brand-text small{ display:block; color:var(--muted); margin-top:2px; }

.nav{
  display:flex; align-items:center; gap:16px;
}
.nav a{ opacity:.88; }
.nav a:hover{ opacity:1; }

.mobile-toggle{
  display:none;
  padding:10px 12px; border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color:var(--text);
}

.mobile-nav{
  border-top:1px solid var(--line);
  padding:10px 0 14px;
}
.mobile-nav a{
  display:block;
  padding:10px 14px;
  opacity:.9;
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color:var(--text);
  font-weight:700;
}
.btn:hover{ transform: translateY(-1px); }
.btn-primary{
  border:0;
  color:#141006;
  background: linear-gradient(135deg, var(--brand1), #ff7a18);
  box-shadow: 0 14px 30px rgba(255,183,3,.18);
}
.btn-soft{
  border:1px solid rgba(33,197,142,.35);
  background: rgba(33,197,142,.12);
}
.btn-outline{
  border:1px solid rgba(59,130,246,.35);
  background: rgba(59,130,246,.10);
}

/* Hero */
.hero{ padding:34px 0 40px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:26px;
  align-items:center;
}
.pill{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color:var(--muted);
  margin:0 0 12px;
}
h1{
  font-size: clamp(28px, 4vw, 48px);
  line-height:1.05;
  margin:0 0 10px;
  letter-spacing:-.3px;
}
.lead{
  margin:0 0 16px;
  color:var(--muted);
  font-size: 16px;
  line-height:1.6;
  max-width: 58ch;
}
.hero-cta{ display:flex; gap:12px; flex-wrap:wrap; margin:10px 0 18px; }

.trust-row{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:10px;
}
.trust-item{
  padding:12px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
}
.trust-item strong{ display:block; }
.trust-item span{ display:block; color:var(--muted); margin-top:4px; font-size:13px; }

.hero-media{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow);
}
.hero-media img{
  width:100%;
  height:auto;
  display:block;
}

@media (max-width: 900px){
  .nav{ display:none; }
  .mobile-toggle{ display:inline-flex; }

  /* hero goes back to 1 column on mobile (text first, image below) */
  .hero-grid{ grid-template-columns: 1fr; }

  /* trust cards back to stacked (one per row) */
  .trust-row{ grid-template-columns: 1fr; }
}



.hero-media{
  position: relative;
  min-height: 420px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);

  background-size: cover;
  background-position: center;
}
.hero-media-overlay{
  position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(11,18,32,.35), rgba(11,18,32,.65));
}


/* =========================
   HERO COLOR MATCH (PASTE LAST)
   ========================= */

:root{
  --bg:#fbfbf8;
  --card:#ffffff;
  --text:#0f1b10;
  --muted:rgba(15,27,16,.70);
  --line:rgba(15,27,16,.12);

  --brand1:#c0a260; /* honey/gold */
  --brand2:#729c40; /* leaf green */
  --brand3:#4f7029; /* deep green */

  --radius:18px;
  --shadow: 0 18px 50px rgba(15,27,16,.14);
}

body{
  background:
    radial-gradient(1100px 650px at 15% 10%, rgba(114,156,64,.18), transparent 60%),
    radial-gradient(900px 600px at 85% 0%, rgba(192,162,96,.18), transparent 55%),
    var(--bg);
  color:var(--text);
}

/* Header becomes clean + premium */
.site-header{
  background: rgba(251,251,248,.82);
  border-bottom: 1px solid var(--line);
}
.nav a{ color: var(--text); }

/* Brand mark matches greenery */
.brand-mark{
  background: linear-gradient(135deg, var(--brand2), var(--brand3));
  color:#ffffff;
}

/* Buttons match honey + green */
.btn{
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  color: var(--text);
}
.btn-primary{
  border: 0;
  color: #0f1b10;
  background: linear-gradient(135deg, var(--brand2), var(--brand1));
  box-shadow: 0 16px 34px rgba(114,156,64,.18);
}
.btn-soft{
  border: 1px solid rgba(114,156,64,.35);
  background: rgba(114,156,64,.12);
}
.btn-outline{
  border: 1px solid rgba(192,162,96,.35);
  background: rgba(192,162,96,.10);
}

/* Hero section gets “fresh” feel */
.hero{
  padding: 38px 0 44px;
}

/* Hero image becomes premium card */
.hero-media{
  position: relative;
  min-height: 440px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(15,27,16,.10);
  box-shadow: var(--shadow);

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Soft overlay so it looks polished */
.hero-media-overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(520px 420px at 70% 30%, rgba(192,162,96,.20), transparent 55%),
    linear-gradient(135deg, rgba(251,251,248,.08), rgba(15,27,16,.10));
}

/* Trust cards look lighter + expensive */
.trust-item{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,27,16,.10);
}
.pill{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,27,16,.10);
}

/* =========================
   HERO BLEND INTO BACKGROUND
   (PASTE AT VERY END)
   ========================= */

.hero{
  position: relative;
  overflow: hidden;
}

/* Soft blurred backdrop using the same hero image */
.hero::before{
  content:"";
  position:absolute;
  inset:-120px -40px -120px -40px;
  background: url("../images/hero.jpg") center/cover no-repeat;
  filter: blur(28px) saturate(1.15);
  opacity: .22;
  transform: scale(1.08);
  z-index: -1;
}

/* Remove hard border/shadow + feather edges so it "disappears" */
.hero-media{
  border: 0 !important;
  box-shadow: none !important;
  background-color: transparent;
  border-radius: 26px;
  overflow: hidden;

  /* Edge feather (best effect) */
  -webkit-mask-image: radial-gradient(120% 110% at 50% 50%, #000 72%, transparent 100%);
  mask-image: radial-gradient(120% 110% at 50% 50%, #000 72%, transparent 100%);
}

/* Gentle overlay for polish (no visible border) */
.hero-media-overlay{
  background:
    radial-gradient(700px 520px at 75% 25%, rgba(192,162,96,.18), transparent 60%),
    linear-gradient(135deg, rgba(251,251,248,.06), rgba(15,27,16,.12));
}


.trust-item{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 10px 24px rgba(15,23,42,.08);
}


.trust-item{
  display:flex;
  gap:12px;
  align-items:flex-start;
}

.trust-icon{
  width:24px;
  height:24px;
  flex: 0 0 24px;
  margin-top:2px;
}

/* =========================
   Footer (Dark Premium)
========================= */
.site-footer{
  margin-top: 60px;
  background:
    radial-gradient(900px 600px at 20% 0%, rgba(209,174,101,.18), transparent 60%),
    radial-gradient(900px 600px at 80% 0%, rgba(44,94,92,.22), transparent 55%),
    linear-gradient(180deg, #0b1212 0%, #071010 100%);
  color: rgba(255,255,255,.86);
  border-top: 1px solid rgba(255,255,255,.10);
}

.footer-top{
  padding: 44px 0 26px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 22px;
}

.footer-col{ min-width: 0; }

.footer-brand{
  display:flex;
  gap:12px;
  align-items:center;
  text-decoration:none;
  color: rgba(255,255,255,.92);
  margin-bottom: 12px;
}

.footer-mark{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 900;
  color: #0b1212;
  background: linear-gradient(135deg, #d1ae65, #a38343);
  box-shadow: 0 14px 30px rgba(209,174,101,.18);
}

.footer-brand-text strong{ display:block; line-height:1.05; }
.footer-brand-text small{ display:block; opacity:.72; margin-top:2px; }

.footer-text{
  margin: 0 0 14px;
  opacity: .78;
  line-height: 1.6;
  max-width: 48ch;
}

.footer-badges{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}

.f-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  font-size: 13px;
  opacity: .9;
}

.footer-title{
  margin: 4px 0 12px;
  font-size: 15px;
  letter-spacing: .2px;
  color: rgba(255,255,255,.92);
}

.footer-links{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 10px;
}

.footer-links a{
  text-decoration:none;
  color: rgba(255,255,255,.78);
  opacity: .95;
}
.footer-links a:hover{
  color: rgba(255,255,255,.95);
  text-decoration: underline;
}

.footer-contact{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 10px;
}

.fc-label{
  display:inline-block;
  min-width: 74px;
  opacity: .65;
}

.footer-contact a{
  color: rgba(255,255,255,.85);
  text-decoration:none;
}
.footer-contact a:hover{
  color: rgba(209,174,101,.95);
}

.footer-social{
  display:flex;
  gap:10px;
  margin-top: 14px;
}

.social-btn{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
  text-decoration:none;
  font-weight: 800;
}
.social-btn:hover{
  border-color: rgba(209,174,101,.35);
  background: rgba(209,174,101,.10);
  color: rgba(255,255,255,.95);
}

.footer-bottom{
  padding: 16px 0 22px;
  border-top: 1px solid rgba(255,255,255,.10);
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.footer-note{
  opacity: .68;
  line-height: 1.55;
  max-width: 90ch;
}

/* Responsive footer */
@media (max-width: 980px){
  .footer-top{
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px){
  .footer-top{
    grid-template-columns: 1fr;
  }
}

/* =========================
   HERO (Dark Premium)
========================= */
.hero--dark{
  padding: 48px 0 34px;
  background:
    radial-gradient(900px 520px at 20% 0%, rgba(209,174,101,.16), transparent 60%),
    radial-gradient(900px 520px at 80% 10%, rgba(44,94,92,.22), transparent 58%),
    linear-gradient(180deg, #071010 0%, #0b1212 100%);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
}

.hero-copy{ min-width: 0; }

.hero-pill{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.80);
  margin: 0 0 14px;
  font-size: 13px;
}
.pill-dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d1ae65, #a38343);
  box-shadow: 0 10px 22px rgba(209,174,101,.18);
}

.hero-title{
  margin: 0 0 12px;
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.6px;
  color: rgba(255,255,255,.94);
}
.hero-accent{
  color: #d1ae65;
}

.hero-lead{
  margin: 0 0 18px;
  color: rgba(255,255,255,.76);
  line-height: 1.7;
  max-width: 62ch;
}

.hero-cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 18px;
}

/* Buttons (hero style) */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.90);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{ transform: translateY(-1px); }

.btn-primary{
  border: 0;
  color: #0b1212;
  background: linear-gradient(135deg, #d1ae65, #a38343);
  box-shadow: 0 16px 34px rgba(209,174,101,.18);
}

.btn-secondary{
  border-color: rgba(44,94,92,.55);
  background: rgba(44,94,92,.18);
}

/* Trust cards */
.trust-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.trust-item{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
}

.trust-item:last-child{
  grid-column: 1 / -1;       /* third card goes full width */
  max-width: 520px;          /* keeps it neat */
}

.trust-icon{
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  margin-top: 2px;
}

.trust-item strong{
  display: block;
  color: rgba(255,255,255,.92);
}
.trust-item span{
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.70);
  font-size: 13px;
}

/* Hero media */
.hero-media{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: 0 24px 60px rgba(0,0,0,.40);
}

.hero-media img{
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile */
@media (max-width: 900px){
  .hero-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .trust-row{
    grid-template-columns: 1fr;
  }
  .trust-item:last-child{
    grid-column: auto;
    max-width: none;
  }
}


/* =========================
   HERO (Dark Premium)
========================= */
.hero--dark{
  padding: 52px 0 36px;
  background:
    radial-gradient(900px 520px at 20% 0%, rgba(209,174,101,.16), transparent 60%),
    radial-gradient(900px 520px at 80% 10%, rgba(44,94,92,.22), transparent 58%),
    linear-gradient(180deg, #071010 0%, #0b1212 100%);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
}

.hero-copy{ min-width: 0; }

.hero-pill{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.80);
  margin: 0 0 14px;
  font-size: 13px;
}

.pill-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d1ae65, #a38343);
  box-shadow: 0 10px 22px rgba(209,174,101,.18);
}

.hero-title{
  margin: 0 0 12px;
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.6px;
  color: rgba(255,255,255,.94);
}

.hero-accent{ color: #d1ae65; }

.hero-lead{
  margin: 0 0 18px;
  color: rgba(255,255,255,.76);
  line-height: 1.7;
  max-width: 62ch;
}

.hero-cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 18px;
}

/* Buttons used in hero (safe for whole site) */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.90);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{ transform: translateY(-1px); }

.btn-primary{
  border: 0;
  color: #0b1212;
  background: linear-gradient(135deg, #d1ae65, #a38343);
  box-shadow: 0 16px 34px rgba(209,174,101,.18);
}

.btn-secondary{
  border-color: rgba(44,94,92,.55);
  background: rgba(44,94,92,.18);
}

/* Trust cards */
.trust-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.trust-item{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
}

.trust-item:last-child{
  grid-column: 1 / -1;
  max-width: 520px;
}

.trust-icon{
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  margin-top: 2px;
}

.trust-item strong{
  display: block;
  color: rgba(255,255,255,.92);
}
.trust-item span{
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.70);
  font-size: 13px;
}

/* Hero media */
.hero-media{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: 0 24px 60px rgba(0,0,0,.40);
}
.hero-media img{
  width: 100%;
  height: auto;
  display: block;
}

/* ===== Hero Animation (subtle) ===== */
.hero-anim .anim-item,
.hero-anim.anim-item{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}

.hero.is-visible .hero-copy .anim-item{
  opacity: 1;
  transform: translateY(0);
}

/* stagger */
.hero.is-visible .hero-copy .anim-item:nth-child(1){ transition-delay: .06s; }
.hero.is-visible .hero-copy .anim-item:nth-child(2){ transition-delay: .12s; }
.hero.is-visible .hero-copy .anim-item:nth-child(3){ transition-delay: .18s; }
.hero.is-visible .hero-copy .anim-item:nth-child(4){ transition-delay: .24s; }
.hero.is-visible .hero-copy .anim-item:nth-child(5){ transition-delay: .30s; }

.hero.is-visible .hero-media.hero-anim.anim-item{
  opacity: 1;
  transform: translateY(0);
  transition-delay: .16s;
}

/* Mobile */
@media (max-width: 900px){
  .hero-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .trust-row{
    grid-template-columns: 1fr;
  }
  .trust-item:last-child{
    grid-column: auto;
    max-width: none;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .hero-anim .anim-item,
  .hero-anim.anim-item{
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* =========================
   SECTION 3: CATEGORIES
========================= */
.section{
  padding: 54px 0;
}

.section--categories{
  background:
    radial-gradient(900px 520px at 20% 0%, rgba(44,94,92,.16), transparent 60%),
    radial-gradient(900px 520px at 80% 20%, rgba(209,174,101,.12), transparent 55%),
    linear-gradient(180deg, #0b1212 0%, #071010 100%);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.section-head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-title{
  margin: 0 0 8px;
  font-size: clamp(22px, 2.4vw, 30px);
  color: rgba(255,255,255,.92);
  letter-spacing: -0.2px;
}

.section-subtitle{
  margin: 0;
  color: rgba(255,255,255,.70);
  line-height: 1.6;
  max-width: 70ch;
}

.cat-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.cat-card{
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  transform: translateY(0);
  transition: transform .18s ease, border-color .18s ease;
  min-height: 210px;
}

.cat-card:hover{
  transform: translateY(-2px);
  border-color: rgba(209,174,101,.28);
}

.cat-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.02);
}

.cat-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,16,16,.25) 0%, rgba(7,16,16,.72) 70%, rgba(7,16,16,.86) 100%);
}

.cat-content{
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  display: grid;
  gap: 6px;
}

.cat-title{
  font-weight: 900;
  font-size: 18px;
  color: rgba(255,255,255,.92);
}

.cat-sub{
  font-size: 13px;
  color: rgba(255,255,255,.72);
}

.cat-cta{
  margin-top: 6px;
  width: fit-content;
  font-weight: 900;
  font-size: 13px;
  color: rgba(209,174,101,.95);
  border-bottom: 1px solid rgba(209,174,101,.35);
  padding-bottom: 2px;
}

/* Focus accessibility */
.cat-card:focus{
  outline: 3px solid rgba(209,174,101,.28);
  outline-offset: 3px;
}

/* Responsive: tablet */
@media (max-width: 900px){
  .section-head{
    flex-direction: column;
    align-items: flex-start;
  }
  .cat-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Responsive: mobile */
@media (max-width: 560px){
  .cat-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .cat-card{
    min-height: 170px;
  }
}

/* Very small phones */
@media (max-width: 360px){
  .cat-grid{
    grid-template-columns: 1fr;
  }
}

/* ===== Scroll reveal animation ===== */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce){
  .reveal{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =========================
   SECTION 4: PRODUCTS GRID
========================= */
.section--products{
  background: #071010;
}

.product-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

/* Product card */
.p-card{
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  transition: transform .18s ease, border-color .18s ease;
}

.p-card:hover{
  transform: translateY(-2px);
  border-color: rgba(209,174,101,.28);
}

.p-media{
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(255,255,255,.04);
}

.p-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.03);
}

.p-badge{
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  color: #071010;
  background: linear-gradient(135deg, #d1ae65, #a38343);
  box-shadow: 0 14px 26px rgba(209,174,101,.14);
}

.p-badge--soft{
  color: rgba(255,255,255,.92);
  background: rgba(44,94,92,.82);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: none;
}

.p-body{
  padding: 14px 14px 16px;
}

.p-title{
  margin: 0 0 6px;
  font-size: 16px;
  letter-spacing: -0.2px;
}
.p-title a{
  color: rgba(255,255,255,.92);
  text-decoration: none;
}
.p-title a:hover{
  color: rgba(209,174,101,.95);
}

.p-meta{
  margin: 0 0 12px;
  font-size: 13px;
  color: rgba(255,255,255,.68);
}

.p-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.p-price{
  display: grid;
  gap: 4px;
}

.price-now{
  font-weight: 900;
  color: rgba(255,255,255,.92);
}

.price-was{
  font-size: 12px;
  color: rgba(255,255,255,.55);
  text-decoration: line-through;
}

/* Small button inside cards */
.btn-sm{
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
}

/* Responsive: tablet */
@media (max-width: 900px){
  .product-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Responsive: mobile (still 2 columns per your requirement) */
@media (max-width: 560px){
  .product-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .p-body{
    padding: 12px;
  }
  .p-title{
    font-size: 15px;
  }
  .btn-sm{
    padding: 9px 10px;
  }
}

/* Very small phones: allow 1 column if screen is extremely narrow */
@media (max-width: 340px){
  .product-grid{
    grid-template-columns: 1fr;
  }
}

/* =========================
   SECTION 5: WHY CHOOSE US
========================= */
.section--trust{
  background:
    radial-gradient(900px 520px at 25% 0%, rgba(209,174,101,.14), transparent 60%),
    radial-gradient(900px 520px at 80% 30%, rgba(44,94,92,.18), transparent 60%),
    linear-gradient(180deg, #071010 0%, #0b1212 100%);
}

.trust-grid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.t-card{
  border-radius: 20px;
  padding: 18px 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  box-shadow: 0 20px 50px rgba(0,0,0,.30);
  transition: transform .18s ease, border-color .18s ease;
}

.t-card:hover{
  transform: translateY(-2px);
  border-color: rgba(209,174,101,.28);
}

.t-icon{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(44,94,92,.18);
  border: 1px solid rgba(255,255,255,.10);
  margin-bottom: 12px;
}

.t-icon img{
  width: 24px;
  height: 24px;
}

.t-card h3{
  margin: 0 0 8px;
  font-size: 16px;
  color: rgba(255,255,255,.92);
  letter-spacing: -0.2px;
}

.t-card p{
  margin: 0;
  color: rgba(255,255,255,.70);
  line-height: 1.65;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 900px){
  .trust-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px){
  .trust-grid{
    grid-template-columns: 1fr;
  }
}

/* =========================
   SECTION 6: VIDEO TESTIMONIALS
========================= */
.section--videos{
  background:
    radial-gradient(900px 520px at 20% 0%, rgba(44,94,92,.18), transparent 60%),
    radial-gradient(900px 520px at 80% 30%, rgba(209,174,101,.12), transparent 60%),
    linear-gradient(180deg, #0b1212 0%, #071010 100%);
}

.video-grid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.v-card{
  text-align: left;
  cursor: pointer;
  border-radius: 20px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  box-shadow: 0 20px 50px rgba(0,0,0,.30);
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease;
}

.v-card:hover{
  transform: translateY(-2px);
  border-color: rgba(209,174,101,.28);
}

.v-thumb{
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(255,255,255,.04);
}

.v-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  filter: saturate(1.04) contrast(1.04);
}

.v-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,16,16,.15) 0%, rgba(7,16,16,.78) 100%);
}

.v-play{
  position: absolute;
  left: 14px;
  bottom: 14px;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #071010;
  background: linear-gradient(135deg, #d1ae65, #a38343);
  box-shadow: 0 18px 36px rgba(209,174,101,.18);
}

.v-body{
  display: grid;
  gap: 6px;
  padding: 14px 14px 16px;
}

.v-title{
  font-weight: 900;
  color: rgba(255,255,255,.92);
  letter-spacing: -0.2px;
}

.v-text{
  color: rgba(255,255,255,.70);
  line-height: 1.55;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 900px){
  .video-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px){
  .video-grid{
    grid-template-columns: 1fr;
  }
}

/* =========================
   Video Modal
========================= */
.video-modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.video-modal.is-open{
  display: block;
}

.video-modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(6px);
}

.video-modal__panel{
  position: relative;
  width: min(980px, 92%);
  margin: 7vh auto 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(7,16,16,.92);
  box-shadow: 0 28px 80px rgba(0,0,0,.55);
}

.video-modal__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.92);
}

.video-modal__close{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  cursor: pointer;
}

.video-modal__frame{
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-modal__frame iframe{
  width: 100%;
  height: 100%;
  border: 0;
}

/* Mobile modal spacing */
@media (max-width: 560px){
  .video-modal__panel{
    margin-top: 10vh;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .video-modal__panel{
    transition: none !important;
  }
}

/* =========================
   SECTION 7: SHOP BY GOAL
========================= */
.section--goals{
  background:
    radial-gradient(900px 520px at 20% 0%, rgba(209,174,101,.10), transparent 60%),
    radial-gradient(900px 520px at 80% 35%, rgba(44,94,92,.18), transparent 60%),
    linear-gradient(180deg, #071010 0%, #0b1212 100%);
  border-top: 1px solid rgba(255,255,255,.08);
}

.goal-grid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.goal-card{
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 6px;

  padding: 16px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  box-shadow: 0 20px 50px rgba(0,0,0,.30);
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.goal-card:hover{
  transform: translateY(-2px);
  border-color: rgba(209,174,101,.28);
  background: rgba(255,255,255,.06);
}

.goal-icon{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(44,94,92,.18);
  border: 1px solid rgba(255,255,255,.10);
  grid-row: 1 / span 2;
}

.goal-icon img{
  width: 24px;
  height: 24px;
}

.goal-title{
  font-weight: 900;
  color: rgba(255,255,255,.92);
  letter-spacing: -0.2px;
  align-self: end;
}

.goal-sub{
  font-size: 13px;
  color: rgba(255,255,255,.70);
  align-self: start;
}

.goal-arrow{
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: end;
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(209,174,101,.12);
  border: 1px solid rgba(209,174,101,.20);
  color: rgba(209,174,101,.95);
  font-weight: 900;
}

/* Responsive */
@media (max-width: 900px){
  .goal-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px){
  .goal-grid{
    grid-template-columns: 1fr;
  }
}

/* =========================
   SECTION 8: PROMO BANNER
========================= */
.section--promo{
  background: #071010;
}

.promo-card{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(900px 520px at 15% 0%, rgba(209,174,101,.16), transparent 60%),
    radial-gradient(900px 520px at 90% 40%, rgba(44,94,92,.20), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.03) 100%);
  box-shadow: 0 28px 80px rgba(0,0,0,.45);
  padding: 24px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items: center;
}

.promo-pill{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.80);
  margin: 0 0 12px;
  font-size: 13px;
}

.promo-title{
  margin: 0 0 10px;
  font-size: clamp(22px, 2.8vw, 34px);
  color: rgba(255,255,255,.92);
  letter-spacing: -0.3px;
  line-height: 1.1;
}

.promo-accent{
  color: #d1ae65;
}

.promo-text{
  margin: 0 0 16px;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  max-width: 68ch;
}

.promo-cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.promo-right{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.promo-stat{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(7,16,16,.42);
  padding: 16px 12px;
  text-align: center;
}

.promo-stat strong{
  display: block;
  font-size: 26px;
  letter-spacing: -0.5px;
  color: rgba(255,255,255,.92);
}

.promo-stat span{
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.68);
}

/* Responsive */
@media (max-width: 900px){
  .promo-card{
    grid-template-columns: 1fr;
  }
  .promo-right{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px){
  .promo-card{
    padding: 18px;
  }
  .promo-right{
    grid-template-columns: 1fr;
  }
  .promo-stat{
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  .promo-stat strong{
    font-size: 22px;
  }
}


/* =========================
   SECTION 9: HERBAL TIPS (BLOG PREVIEW)
========================= */
.section--tips{
  background:
    radial-gradient(900px 520px at 20% 0%, rgba(44,94,92,.18), transparent 60%),
    radial-gradient(900px 520px at 80% 30%, rgba(209,174,101,.10), transparent 60%),
    linear-gradient(180deg, #071010 0%, #0b1212 100%);
  border-top: 1px solid rgba(255,255,255,.08);
}

.tips-grid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.tip-card{
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  box-shadow: 0 20px 50px rgba(0,0,0,.30);
  transition: transform .18s ease, border-color .18s ease;
}

.tip-card:hover{
  transform: translateY(-2px);
  border-color: rgba(209,174,101,.28);
}

.tip-media{
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(255,255,255,.04);
}

.tip-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  filter: saturate(1.04) contrast(1.04);
}

.tip-tag{
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  color: rgba(255,255,255,.92);
  background: rgba(44,94,92,.82);
  border: 1px solid rgba(255,255,255,.10);
}

.tip-tag--gold{
  color: #071010;
  background: linear-gradient(135deg, #d1ae65, #a38343);
  border: 0;
}

.tip-body{
  padding: 14px 14px 16px;
}

.tip-title{
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -0.2px;
  line-height: 1.25;
}

.tip-title a{
  color: rgba(255,255,255,.92);
  text-decoration: none;
}
.tip-title a:hover{
  color: rgba(209,174,101,.95);
}

.tip-text{
  margin: 0 0 12px;
  color: rgba(255,255,255,.70);
  line-height: 1.6;
  font-size: 14px;
}

.tip-meta{
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
}

.tip-meta .dot{
  opacity: .6;
}

/* Responsive */
@media (max-width: 900px){
  .tips-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px){
  .tips-grid{
    grid-template-columns: 1fr;
  }
}


/* =========================
   SECTION 4: PRODUCTS GRID
========================= */
.section--products{
  background: #071010;
}

.product-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

/* Product card */
.p-card{
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  transition: transform .18s ease, border-color .18s ease;
}

.p-card:hover{
  transform: translateY(-2px);
  border-color: rgba(209,174,101,.28);
}

.p-media{
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(255,255,255,.04);
}

.p-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.03);
}

.p-badge{
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  color: #071010;
  background: linear-gradient(135deg, #d1ae65, #a38343);
  box-shadow: 0 14px 26px rgba(209,174,101,.14);
}

.p-badge--soft{
  color: rgba(255,255,255,.92);
  background: rgba(44,94,92,.82);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: none;
}

.p-body{
  padding: 14px 14px 16px;
}

.p-title{
  margin: 0 0 6px;
  font-size: 16px;
  letter-spacing: -0.2px;
}
.p-title a{
  color: rgba(255,255,255,.92);
  text-decoration: none;
}
.p-title a:hover{
  color: rgba(209,174,101,.95);
}

.p-meta{
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,.68);
}

/* Rating row */
.p-rating-row{
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 12px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
}

.stars{
  --star-size: 14px;
  position: relative;
  display: inline-block;
  line-height: 1;
  font-size: var(--star-size);
  letter-spacing: 2px;
}

/* empty stars */
.stars::before{
  content: "★★★★★";
  color: rgba(255,255,255,.22);
}

/* filled stars (based on --rating) */
.stars::after{
  content: "★★★★★";
  position: absolute;
  left: 0;
  top: 0;
  width: calc((var(--rating) / 5) * 100%);
  overflow: hidden;
  color: #d1ae65;
}

.p-rating-num{
  font-weight: 900;
  color: rgba(255,255,255,.86);
}

.p-review-count{
  color: rgba(255,255,255,.60);
}

/* Price + button row */
.p-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.p-price{
  display: grid;
  gap: 4px;
}

.price-now{
  font-weight: 900;
  color: rgba(255,255,255,.92);
}

.price-was{
  font-size: 12px;
  color: rgba(255,255,255,.55);
  text-decoration: line-through;
}

/* Small button inside cards */
.btn-sm{
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
}

/* Responsive: tablet */
@media (max-width: 900px){
  .product-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Responsive: mobile (2 columns as you want) */
@media (max-width: 560px){
  .product-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .p-body{
    padding: 12px;
  }
  .p-title{
    font-size: 15px;
  }
  .btn-sm{
    padding: 9px 10px;
  }
}

/* Very small phones: allow 1 column */
@media (max-width: 340px){
  .product-grid{
    grid-template-columns: 1fr;
  }
}


/* =========================
   SECTION 10: SUBSCRIBE
========================= */
.section--subscribe{
  background:
    radial-gradient(900px 520px at 20% 0%, rgba(209,174,101,.12), transparent 60%),
    radial-gradient(900px 520px at 80% 40%, rgba(44,94,92,.18), transparent 60%),
    linear-gradient(180deg, #0b1212 0%, #071010 100%);
  border-top: 1px solid rgba(255,255,255,.08);
}

.sub-card{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  box-shadow: 0 28px 80px rgba(0,0,0,.45);
  padding: 22px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items: stretch;
}

.sub-pill{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.80);
  margin: 0 0 12px;
  font-size: 13px;
}

.sub-title{
  margin: 0 0 10px;
  font-size: clamp(22px, 2.8vw, 34px);
  color: rgba(255,255,255,.92);
  letter-spacing: -0.3px;
  line-height: 1.1;
}

.sub-accent{ color: #d1ae65; }

.sub-text{
  margin: 0 0 16px;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  max-width: 70ch;
}

/* Form */
.sub-form{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 8px;
}

.sub-field{
  flex: 1 1 260px;
}

.sub-field input{
  width: 100%;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.90);
  padding: 0 14px;
  outline: none;
}

.sub-field input::placeholder{
  color: rgba(255,255,255,.55);
}

.sub-field input:focus{
  border-color: rgba(209,174,101,.35);
  box-shadow: 0 0 0 4px rgba(209,174,101,.12);
}

.sub-hint{
  margin: 0;
  min-height: 18px;
  font-size: 13px;
  color: rgba(255,255,255,.72);
}

.sub-hint.ok{ color: rgba(209,174,101,.95); }
.sub-hint.err{ color: rgba(255,120,120,.95); }

.sub-trust{
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Fix: Trust pill (icon + text) should be bright/white */
.sub-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 8px 10px;
  border-radius: 999px;

  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);

  color: rgba(255,255,255,.92) !important; /* force white text */
  opacity: 1 !important;                  /* remove dull/grey look */
  font-size: 13px;
}

/* Make sure any icon inside follows the white color */
.sub-badge *{
  color: inherit !important;
}

/* If you are using image icons inside the pill */
.sub-badge img{
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: inline-block;
  /* make dark icons become white */
  filter: brightness(0) invert(1);
}

/* If you are using SVG icons inside the pill */
.sub-badge svg{
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: currentColor;
  stroke: currentColor;
}


/* WhatsApp panel */
.sub-right{
  display: grid;
}

.wa-card{
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(600px 420px at 20% 0%, rgba(44,94,92,.22), transparent 60%),
    linear-gradient(180deg, rgba(7,16,16,.60) 0%, rgba(7,16,16,.45) 100%);
  padding: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}

.wa-card h3{
  margin: 0 0 8px;
  color: rgba(255,255,255,.92);
}

.wa-card p{
  margin: 0 0 14px;
  color: rgba(255,255,255,.70);
  line-height: 1.6;
}

.wa-btn{
  width: 100%;
  justify-content: center;
}

.wa-note{
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.60);
}

/* Responsive */
@media (max-width: 900px){
  .sub-card{
    grid-template-columns: 1fr;
  }
}

/* Accessibility helper */
.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================
   SHOP - SECTION 1: INTRO + CONTROLS
========================= */
.shop-hero{
  padding: 46px 0 26px;
  background:
    radial-gradient(900px 520px at 20% 0%, rgba(209,174,101,.12), transparent 60%),
    radial-gradient(900px 520px at 80% 30%, rgba(44,94,92,.20), transparent 60%),
    linear-gradient(180deg, #071010 0%, #0b1212 100%);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.shop-hero__top{
  margin-bottom: 16px;
}

.crumbs{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.78);
  font-size: 13px;
  margin-bottom: 14px;
}

.crumbs a{
  color: rgba(255,255,255,.88);
  text-decoration: none;
}
.crumbs a:hover{ text-decoration: underline; }

.crumbs__sep{ opacity: .55; }

.shop-hero__title{
  margin: 0 0 10px;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.5px;
  color: rgba(255,255,255,.94);
}

.shop-hero__subtitle{
  margin: 0;
  max-width: 78ch;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
}

/* Controls row */
.shop-controls{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

/* Search */
.shop-search{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}

.shop-search__icon{
  opacity: .75;
  color: rgba(255,255,255,.88);
  font-weight: 900;
}

.shop-search input{
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: rgba(255,255,255,.92);
  font-size: 14px;
}

.shop-search input::placeholder{
  color: rgba(255,255,255,.55);
}

/* Sort */
.shop-sort{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}

.shop-sort__label{
  color: rgba(255,255,255,.75);
  font-size: 13px;
  font-weight: 800;
}

.shop-sort select{
  border: 0;
  outline: none;
  background: transparent;
  color: rgba(255,255,255,.92);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
}

/* Category pills */
.shop-cats{
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cat-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.84);
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.cat-pill:hover{
  transform: translateY(-1px);
  border-color: rgba(209,174,101,.28);
  background: rgba(255,255,255,.08);
}

.cat-pill.is-active{
  color: #071010;
  border: 0;
  background: linear-gradient(135deg, #d1ae65, #a38343);
  box-shadow: 0 16px 34px rgba(209,174,101,.16);
}

/* Responsive */
@media (max-width: 900px){
  .shop-controls{
    grid-template-columns: 1fr;
  }
}

/* =========================
   SHOP - SECTION 2: GRID + PAGINATION
========================= */
.shop-products{
  background: #071010;
}

.shop-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

/* Match homepage product cards */
.shop-grid .p-card{
  border-radius: 20px;
}

/* Pagination */
.shop-pagination{
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.page-btn{
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.88);
  font-weight: 900;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.page-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(209,174,101,.28);
  background: rgba(255,255,255,.08);
}

.page-btn.is-active{
  color: #071010;
  border: 0;
  background: linear-gradient(135deg, #d1ae65, #a38343);
  box-shadow: 0 16px 34px rgba(209,174,101,.16);
}

.page-btn:disabled{
  opacity: .5;
  cursor: not-allowed;
  transform: none;
}

/* Responsive */
@media (max-width: 900px){
  .shop-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile: 2 columns (as requested) */
@media (max-width: 560px){
  .shop-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

/* =========================================================
   WORDPRESS FIXES (Aba Meds)
   - Fix WP menu bullets
   - Keep 2-column grids on small phones (down to ~320px)
   - Make page background consistent under the footer
   ========================================================= */

ul.nav, .nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

ul.nav li { margin: 0; padding: 0; }

/* Ensure full-page dark background (prevents white showing under footer) */
body { background: var(--bg); }

/* Small-phone responsive tweaks (keeps the layout closer to the original design) */
@media (max-width: 360px) {
  .cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 340px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 320px) {
  .cat-grid,
  .product-grid { grid-template-columns: 1fr; }
}
