/* =================================================================
   PFN v2 — Frontend Stylesheet
   Modern FMCG corporate · clean · product-led
   ================================================================= */

:root{
  --c-white:    #FFFFFF;
  --c-bg:       #FFFFFF;
  --c-cream:    #FBF7EF;
  --c-cream-2:  #F4EEDF;
  --c-cream-3:  #EDE5D0;

  --c-green:    #1B4D3E;
  --c-green-d:  #143A2D;
  --c-green-l:  #E8F0EC;

  --c-gold:     #D97706;
  --c-gold-d:   #B45309;
  --c-gold-l:   #FEF3E2;

  --c-ink:      #1A2421;
  --c-ink-2:    #4A5550;
  --c-mute:     #828A86;
  --c-line:     #E8E4D8;
  --c-line-2:   #F2EEE3;

  --c-ok:       #2F7D4F;
  --c-warn:     #C58A1E;
  --c-danger:   #B53C2C;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;

  --shadow-1: 0 2px 8px rgba(26,36,33,0.06);
  --shadow-2: 0 8px 24px rgba(26,36,33,0.08);
  --shadow-3: 0 20px 60px rgba(26,36,33,0.10);

  --container: 1280px;

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
}

*{ box-sizing: border-box; }
html, body{ margin:0; padding:0; }
html{ scroll-behavior: smooth; }
body{
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img{ max-width: 100%; display: block; }
a{ color: var(--c-green); text-decoration: none; }
a:hover{ color: var(--c-gold); }

h1, h2, h3, h4, h5{
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--c-green-d);
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
h1{ font-size: clamp(2rem, 4vw, 3.2rem); }
h2{ font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3{ font-size: clamp(1.2rem, 2vw, 1.5rem); }

p{ margin: 0 0 1em; color: var(--c-ink-2); }
.muted{ color: var(--c-mute); }
.center{ text-align: center; }

.container{ max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ========== ANNOUNCEMENT BAR ========== */
.announce-bar{
  background: var(--c-green-d);
  color: rgba(255,255,255,.92);
  font-size: .82rem;
  text-align: center;
  padding: 8px 16px;
}
.announce-bar a{ color: var(--c-gold-l); font-weight: 500; }

/* ========== NAVBAR ========== */
.nav{
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-line-2);
  transition: box-shadow .2s;
}
.nav.is-scrolled{ box-shadow: var(--shadow-1); }
.nav-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; gap: 24px;
}
.nav-brand{
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 600;
  color: var(--c-green-d);
}
.nav-brand-mark{
  width: 38px; height: 38px;
  background: var(--c-green); color: #fff;
  display: grid; place-items: center;
  border-radius: 8px;
  font-weight: 700; font-size: .9rem;
  font-family: var(--font-sans);
}
.nav-brand-name{ line-height: 1; }
.nav-brand-sub{ font-size: .68rem; color: var(--c-mute); font-family: var(--font-sans); font-weight: 400; letter-spacing: .04em; text-transform: uppercase; margin-top: 2px; }

.nav-menu{
  display: flex; gap: 4px; flex: 1; justify-content: center;
}
.nav-menu a{
  padding: 8px 14px;
  color: var(--c-ink);
  font-weight: 500; font-size: .92rem;
  border-radius: 6px;
}
.nav-menu a:hover{ background: var(--c-cream); color: var(--c-green-d); }
.nav-menu a.is-active{ color: var(--c-green); position: relative; }
.nav-menu a.is-active::after{
  content: '';
  position: absolute; bottom: -4px; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 2px;
  background: var(--c-gold);
  border-radius: 2px;
}

.nav-cta{ display: flex; gap: 10px; align-items: center; }

.nav-toggle{
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column; gap: 4px;
  align-items: center; justify-content: center;
}
.nav-toggle span{ display: block; width: 18px; height: 2px; background: var(--c-ink); border-radius: 2px; }

/* ========== BUTTONS ========== */
.btn{
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-family: inherit; font-weight: 500; font-size: .92rem;
  cursor: pointer;
  text-decoration: none !important;
  transition: background .15s, border-color .15s, transform .1s;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{ background: var(--c-gold); color: #fff; }
.btn-primary:hover{ background: var(--c-gold-d); color: #fff; }
.btn-secondary{ background: var(--c-green); color: #fff; }
.btn-secondary:hover{ background: var(--c-green-d); color: #fff; }
.btn-ghost{ background: #fff; color: var(--c-green-d); border-color: var(--c-line); }
.btn-ghost:hover{ background: var(--c-cream); color: var(--c-green-d); }
.btn-outline{ background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline:hover{ background: rgba(255,255,255,.1); color: #fff; }
.btn-wa{ background: #25D366; color: #fff; }
.btn-wa:hover{ background: #1FB855; color: #fff; }
.btn-sm{ padding: 8px 14px; font-size: .82rem; }
.btn-lg{ padding: 14px 26px; font-size: 1rem; }
.btn-block{ width: 100%; }

/* ========== HERO ========== */
.hero{
  background: linear-gradient(135deg, var(--c-cream) 0%, var(--c-cream-2) 100%);
  padding: 64px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before{
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(217,119,6,.08), transparent 70%);
  pointer-events: none;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.hero-eyebrow{
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem;
  color: var(--c-green);
  background: var(--c-green-l);
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 500;
  margin-bottom: 16px;
}
.hero-eyebrow::before{
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-gold);
}
.hero h1{ margin-bottom: 16px; }
.hero-lead{
  font-size: 1.1rem;
  color: var(--c-ink-2);
  max-width: 540px;
  margin-bottom: 28px;
  line-height: 1.6;
}
.hero-cta{ display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust{ display: flex; gap: 24px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid var(--c-line); }
.hero-trust-item{ display: flex; flex-direction: column; }
.hero-trust-num{ font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--c-green-d); line-height: 1; }
.hero-trust-label{ font-size: .82rem; color: var(--c-ink-2); margin-top: 4px; }

/* Hero visual collage */
.hero-visual{ position: relative; }
.hero-collage{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 180px 180px 100px;
  gap: 12px;
}
.hero-tile{
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  background: var(--c-cream-3);
  box-shadow: var(--shadow-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.hero-tile.t1{ grid-row: 1 / span 2; background: linear-gradient(135deg, var(--c-green-l), var(--c-green) 200%); }
.hero-tile.t2{ background: linear-gradient(135deg, #FEF3E2, var(--c-gold) 250%); }
.hero-tile.t3{ background: linear-gradient(135deg, var(--c-cream-2), var(--c-cream-3)); }
.hero-tile.t4{ grid-column: span 2; background: var(--c-green-d); color: #fff; padding: 16px 22px; font-size: .9rem; line-height: 1.4; align-items: flex-start; flex-direction: column; justify-content: center; }
.hero-tile.t4 strong{ display: block; font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 2px; }
.hero-tile.t4 small{ color: rgba(255,255,255,.75); font-size: .78rem; }

/* ========== SECTIONS ========== */
.section{ padding: 72px 0; }
.section-cream{ background: var(--c-cream); }
.section-green{ background: var(--c-green-d); color: #fff; }
.section-green h2, .section-green h3{ color: #fff; }
.section-green p{ color: rgba(255,255,255,.85); }

.section-head{
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section-head .eyebrow{
  display: inline-block;
  font-size: .78rem;
  color: var(--c-gold-d);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  margin-bottom: 12px;
}
.section-head h2{ margin-bottom: 12px; }
.section-head p{ font-size: 1.05rem; }

/* ========== CATEGORY GRID ========== */
.cat-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.cat-card{
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 24px 18px;
  text-align: center;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.cat-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  border-color: var(--c-green-l);
  color: var(--c-green-d);
}
.cat-card-icon{
  width: 56px; height: 56px;
  background: var(--c-cream);
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 1.8rem;
}
.cat-card-name{
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--c-green-d);
  font-size: 1rem;
}
.cat-card-count{ font-size: .78rem; color: var(--c-mute); }

/* ========== PRODUCT CARDS ========== */
.product-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-grid-3{ grid-template-columns: repeat(3, 1fr); }
.product-card{
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.product-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  border-color: var(--c-green-l);
}
.product-image{
  aspect-ratio: 1 / 1;
  background: var(--c-cream);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-image img{
  width: 100%; height: 100%;
  object-fit: cover;
}
.product-image-placeholder{
  font-size: 3.5rem;
  opacity: .35;
  color: var(--c-green);
}
.product-badges{
  position: absolute; top: 10px; left: 10px;
  display: flex; flex-direction: column; gap: 4px;
}
.badge{
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.badge-featured{ background: var(--c-gold); color: #fff; }
.badge-best{ background: var(--c-green); color: #fff; }
.badge-imported{ background: #fff; color: var(--c-green-d); border: 1px solid var(--c-line); }

.product-body{
  padding: 16px;
  display: flex; flex-direction: column; gap: 6px;
  flex: 1;
}
.product-meta{
  font-size: .72rem;
  color: var(--c-mute);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.product-name{
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-green-d);
  margin: 0;
  line-height: 1.3;
}
.product-name a{ color: inherit; }
.product-name a:hover{ color: var(--c-gold); }
.product-desc{
  font-size: .85rem;
  color: var(--c-ink-2);
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-actions{
  display: flex; gap: 6px;
  padding: 0 16px 16px;
}
.product-actions .btn{ flex: 1; padding: 8px 10px; font-size: .82rem; }

/* ========== PRODUCT DETAIL ========== */
.pd-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.pd-image-wrap{
  background: var(--c-cream);
  border-radius: var(--r-lg);
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.pd-image-wrap img{ width: 100%; height: 100%; object-fit: cover; }
.pd-image-placeholder{ font-size: 7rem; opacity: .4; color: var(--c-green); }

.pd-meta-line{ display: flex; gap: 8px; align-items: center; flex-wrap: wrap; margin-bottom: 12px; }
.pd-pill{
  display: inline-block; padding: 4px 12px;
  border-radius: 100px; font-size: .8rem;
  background: var(--c-green-l); color: var(--c-green-d);
  text-transform: capitalize;
}
.pd-pill-brand{ background: var(--c-cream-2); color: var(--c-ink); }
.pd-title{ margin-bottom: 12px; }
.pd-short{ font-size: 1.1rem; color: var(--c-ink-2); margin-bottom: 24px; }
.pd-section{ margin-bottom: 24px; }
.pd-section h4{ font-size: .82rem; font-weight: 600; color: var(--c-mute); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; font-family: var(--font-sans); }
.pd-section p{ white-space: pre-wrap; }

.pd-cta-box{
  background: var(--c-cream);
  border: 1px solid var(--c-cream-3);
  border-radius: var(--r-md);
  padding: 20px;
  margin-top: 24px;
}
.pd-cta-box h4{ margin-bottom: 12px; font-size: 1rem; color: var(--c-green-d); font-family: var(--font-display); text-transform: none; letter-spacing: 0; }
.pd-cta-row{ display: flex; gap: 8px; flex-wrap: wrap; }
.pd-cta-row .btn{ flex: 1; min-width: 140px; }

.pd-marketplace{ display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.mp-link{
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--c-line);
  font-size: .84rem;
  color: var(--c-ink);
  font-weight: 500;
}
.mp-link:hover{ border-color: var(--c-gold); color: var(--c-gold-d); }

.pd-breadcrumb{
  font-size: .85rem;
  color: var(--c-mute);
  margin-bottom: 24px;
}
.pd-breadcrumb a{ color: var(--c-ink-2); }
.pd-breadcrumb span{ margin: 0 8px; }

/* ========== FILTER BAR (products page) ========== */
.filter-section{
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 18px 20px;
  margin-bottom: 28px;
}
.filter-row{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 10px;
  align-items: center;
}
.filter-row input, .filter-row select{
  padding: 10px 12px;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  font-family: inherit;
  font-size: .9rem;
  background: #fff;
}
.filter-row input:focus, .filter-row select:focus{
  outline: none;
  border-color: var(--c-green);
  box-shadow: 0 0 0 3px var(--c-green-l);
}
.filter-tags{
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px;
}
.filter-tag{
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--c-green-l);
  color: var(--c-green-d);
  font-size: .8rem;
  padding: 4px 12px;
  border-radius: 100px;
}
.filter-tag a{ color: var(--c-green-d); font-weight: 600; }

.results-meta{
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 8px;
}
.results-count{ color: var(--c-mute); font-size: .92rem; }

/* ========== EMPTY STATE ========== */
.empty-state{
  background: var(--c-cream);
  border: 1px dashed var(--c-line);
  border-radius: var(--r-md);
  padding: 48px 24px;
  text-align: center;
  color: var(--c-ink-2);
}
.empty-state-icon{ font-size: 3rem; margin-bottom: 12px; }
.empty-state h3{ margin-bottom: 8px; }

/* ========== PAGINATION ========== */
.pager{
  display: flex; gap: 6px; justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}
.pager a, .pager .pager-cur, .pager .pager-dots{
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid var(--c-line);
  background: #fff;
  color: var(--c-ink);
  font-size: .9rem;
  font-weight: 500;
}
.pager a:hover{ background: var(--c-cream); color: var(--c-green-d); }
.pager .pager-cur{ background: var(--c-green); color: #fff; border-color: var(--c-green); }
.pager .pager-dots{ border-color: transparent; color: var(--c-mute); }

/* ========== BRAND GRID ========== */
.brand-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.brand-card{
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 28px 18px;
  text-align: center;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.brand-card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
  border-color: var(--c-green-l);
}
.brand-card-logo{
  width: 80px; height: 80px;
  display: grid; place-items: center;
  margin-bottom: 8px;
}
.brand-card-logo img{ max-width: 100%; max-height: 100%; object-fit: contain; }
.brand-card-logo-text{
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--c-cream-2), var(--c-cream-3));
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--c-green-d);
}
.brand-card-name{
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-green-d);
}
.brand-card-desc{
  font-size: .82rem;
  color: var(--c-ink-2);
  line-height: 1.5;
}

/* Compact brand strip (homepage) */
.brand-strip{
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
  align-items: center;
}
.brand-strip-item{
  background: #fff;
  border: 1px solid var(--c-line-2);
  border-radius: 8px;
  padding: 18px 12px;
  display: grid; place-items: center;
  height: 80px;
  transition: border-color .2s;
}
.brand-strip-item:hover{ border-color: var(--c-green-l); }
.brand-strip-item img{ max-height: 40px; max-width: 100%; object-fit: contain; }
.brand-strip-item-text{
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  color: var(--c-green-d);
  letter-spacing: -0.01em;
  text-align: center;
}

/* ========== CHANNELS ========== */
.channel-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.channel-card{
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 24px 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.channel-icon{
  width: 48px; height: 48px;
  background: var(--c-green-l);
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--c-green-d);
  margin-bottom: 8px;
}
.channel-name{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--c-green-d);
}
.channel-desc{ font-size: .9rem; color: var(--c-ink-2); }
.channel-num{
  font-family: var(--font-display);
  color: var(--c-gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
}

/* ========== WHY US ========== */
.why-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.why-card{
  text-align: center;
  padding: 24px 12px;
}
.why-card-icon{
  width: 60px; height: 60px;
  background: var(--c-gold-l);
  border-radius: 14px;
  display: grid; place-items: center;
  margin: 0 auto 14px;
  color: var(--c-gold-d);
}
.why-card h4{
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--c-green-d);
}
.why-card p{ font-size: .9rem; }

/* ========== CTA SECTIONS ========== */
.cta-card{
  background: linear-gradient(135deg, var(--c-green) 0%, var(--c-green-d) 100%);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card.alt{
  background: linear-gradient(135deg, var(--c-cream-2) 0%, var(--c-cream-3) 100%);
  color: var(--c-green-d);
}
.cta-card.alt h2{ color: var(--c-green-d); }
.cta-card h2{ color: #fff; margin-bottom: 12px; }
.cta-card p{ color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 24px; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-card.alt p{ color: var(--c-ink-2); }
.cta-card-actions{ display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.cta-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* ========== FAQ ACCORDION ========== */
.faq-list{ max-width: 800px; margin: 0 auto; }
.faq-item{
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.is-open{ border-color: var(--c-green); }
.faq-q{
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 500;
  color: var(--c-green-d);
  font-family: var(--font-display);
  font-size: 1.05rem;
  background: #fff;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-q:hover{ background: var(--c-cream); }
.faq-q-icon{
  width: 24px; height: 24px;
  display: grid; place-items: center;
  color: var(--c-gold);
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform .2s;
  flex-shrink: 0;
}
.faq-item.is-open .faq-q-icon{ transform: rotate(45deg); }
.faq-a{
  padding: 0 22px 20px;
  color: var(--c-ink-2);
  display: none;
  font-size: .95rem;
  line-height: 1.65;
  white-space: pre-wrap;
}
.faq-item.is-open .faq-a{ display: block; }

/* ========== FORMS ========== */
.form-card{
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 32px;
}
.form-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full{ grid-column: 1 / -1; }
.form-field{ display: flex; flex-direction: column; gap: 6px; }
.form-field label{
  font-size: .82rem;
  font-weight: 600;
  color: var(--c-green-d);
}
.form-field label .req{ color: var(--c-danger); }
.form-field input, .form-field select, .form-field textarea{
  padding: 10px 14px;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  font-family: inherit;
  font-size: .92rem;
  background: #fff;
  color: var(--c-ink);
  transition: border-color .15s, box-shadow .15s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{
  outline: none;
  border-color: var(--c-green);
  box-shadow: 0 0 0 3px var(--c-green-l);
}
.form-field textarea{ resize: vertical; min-height: 100px; }
.form-field input.has-error, .form-field select.has-error, .form-field textarea.has-error{
  border-color: var(--c-danger);
  background: #FCEBE8;
}
.form-error{
  font-size: .78rem;
  color: var(--c-danger);
}
.form-pills{ display: flex; flex-wrap: wrap; gap: 8px; }
.pill-check{
  cursor: pointer;
  user-select: none;
}
.pill-check input{ display: none; }
.pill-check span{
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 100px;
  font-size: .85rem;
  color: var(--c-ink);
}
.pill-check input:checked + span{
  background: var(--c-green);
  color: #fff;
  border-color: var(--c-green);
}
.form-actions{ display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-top: 8px; }

.form-success{
  background: #DFF1E5;
  border: 1px solid #B6DFC4;
  color: #1F5C3B;
  padding: 18px 22px;
  border-radius: var(--r-md);
  margin-bottom: 24px;
}
.form-success strong{ display: block; margin-bottom: 4px; font-size: 1.05rem; }
.form-error-banner{
  background: #FCEBE8;
  border: 1px solid #F2C5BD;
  color: #7C261B;
  padding: 14px 18px;
  border-radius: var(--r-md);
  margin-bottom: 20px;
}

/* ========== PAGE HEADER ========== */
.page-header{
  background: var(--c-cream);
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--c-line-2);
}
.page-header-eyebrow{
  font-size: .78rem;
  color: var(--c-gold-d);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  margin-bottom: 8px;
  display: inline-block;
}
.page-header h1{ margin-bottom: 12px; }
.page-header-lead{
  font-size: 1.1rem;
  color: var(--c-ink-2);
  max-width: 700px;
  margin: 0;
}

/* ========== TWO COLUMN LAYOUT ========== */
.two-col{ display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }
.two-col.reverse{ grid-template-columns: 1fr 1.5fr; }

.story-content{ font-size: 1.05rem; line-height: 1.7; }
.story-content p{ margin-bottom: 1.2em; }

.info-card{
  background: var(--c-cream);
  border-radius: var(--r-md);
  padding: 24px;
  border: 1px solid var(--c-line);
}
.info-card h4{ margin-bottom: 8px; font-size: 1rem; color: var(--c-green-d); font-family: var(--font-display); }
.info-card p{ margin-bottom: 0; font-size: .92rem; }

/* ========== CONTACT INFO CARDS ========== */
.contact-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-card{
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 28px 24px;
}
.contact-card-icon{
  width: 48px; height: 48px;
  background: var(--c-green-l);
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--c-green-d);
  margin-bottom: 14px;
}
.contact-card h4{
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--c-green-d);
}
.contact-card .contact-role{
  font-size: .8rem;
  color: var(--c-mute);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.contact-card-row{
  display: flex; gap: 8px; align-items: center;
  font-size: .9rem;
  margin-bottom: 6px;
}
.contact-card-row svg{ flex-shrink: 0; color: var(--c-gold-d); }
.contact-card-row a{ color: var(--c-ink); }
.contact-card-row a:hover{ color: var(--c-gold); }

/* ========== FOOTER ========== */
.site-footer{
  background: var(--c-green-d);
  color: rgba(255,255,255,.78);
  padding: 56px 0 24px;
  margin-top: 80px;
}
.site-footer h4{
  color: #fff;
  font-size: .85rem;
  margin-bottom: 16px;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}
.site-footer a{ color: rgba(255,255,255,.78); }
.site-footer a:hover{ color: var(--c-gold-l); }
.footer-grid{
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-brand{ font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: #fff; margin-bottom: 8px; }
.footer-tagline{ font-size: .9rem; line-height: 1.6; margin-bottom: 18px; max-width: 320px; }
.footer-list{ list-style: none; padding: 0; margin: 0; }
.footer-list li{ margin-bottom: 8px; font-size: .88rem; }
.footer-contact-line{ display: flex; gap: 8px; align-items: flex-start; font-size: .88rem; margin-bottom: 8px; }
.footer-social{ display: flex; gap: 10px; margin-top: 12px; }
.footer-social a{
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: grid; place-items: center;
  transition: background .15s;
}
.footer-social a:hover{ background: var(--c-gold); color: #fff; }
.footer-marketplace{ display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.footer-marketplace a{
  display: inline-block;
  padding: 8px 14px;
  background: rgba(255,255,255,.06);
  border-radius: 6px;
  font-size: .82rem;
  text-align: center;
  font-weight: 500;
}
.footer-marketplace a:hover{ background: var(--c-gold); color: #fff !important; }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}

/* ========== WhatsApp Float ========== */
.wa-float{
  position: fixed; right: 20px; bottom: 20px;
  width: 56px; height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 8px 20px rgba(37,211,102,.4);
  z-index: 40;
  transition: transform .2s;
}
.wa-float:hover{ transform: scale(1.05); color: #fff; }

/* ========== HONEYPOT ========== */
.hp-field{
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important; height: 1px !important;
  overflow: hidden;
  opacity: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px){
  .hero-grid{ grid-template-columns: 1fr; gap: 32px; }
  .hero-collage{ max-width: 500px; margin: 0 auto; }
  .product-grid{ grid-template-columns: repeat(3, 1fr); }
  .cat-grid{ grid-template-columns: repeat(4, 1fr); }
  .channel-grid{ grid-template-columns: repeat(3, 1fr); }
  .why-grid{ grid-template-columns: repeat(3, 1fr); }
  .brand-grid{ grid-template-columns: repeat(3, 1fr); }
  .brand-strip{ grid-template-columns: repeat(4, 1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
  .pd-grid{ grid-template-columns: 1fr; gap: 32px; }
  .two-col, .two-col.reverse{ grid-template-columns: 1fr; gap: 32px; }
  .contact-grid{ grid-template-columns: 1fr; }
  .cta-row{ grid-template-columns: 1fr; }
  .filter-row{ grid-template-columns: 1fr 1fr; }
  .filter-row > .btn, .filter-row > input[type=submit]{ grid-column: 1 / -1; }
}

@media (max-width: 768px){
  .nav-menu{ display: none; }
  .nav-toggle{ display: flex; }
  .nav-cta .btn-ghost{ display: none; }
  .nav-cta .nav-cta-wa{ display: none; }
  .nav.is-mobile-open .nav-menu{
    display: flex;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 12px;
    border-bottom: 1px solid var(--c-line);
    box-shadow: var(--shadow-2);
  }
  .nav.is-mobile-open .nav-menu a{ padding: 12px 14px; }

  .hero{ padding: 40px 0 56px; }
  .hero-collage{ grid-template-rows: 140px 140px 80px; }
  .section{ padding: 48px 0; }
  .section-head{ margin-bottom: 32px; }

  .product-grid{ grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-grid{ grid-template-columns: repeat(2, 1fr); }
  .channel-grid{ grid-template-columns: 1fr; }
  .why-grid{ grid-template-columns: 1fr 1fr; }
  .brand-grid{ grid-template-columns: repeat(2, 1fr); }
  .brand-strip{ grid-template-columns: repeat(3, 1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .form-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }

  .cta-card{ padding: 32px 24px; }
  .form-card{ padding: 24px; }

  .product-actions{ flex-direction: column; gap: 6px; }

  .filter-row{ grid-template-columns: 1fr; }
}

@media (max-width: 480px){
  .container{ padding: 0 16px; }
  .nav-brand-name{ font-size: 1rem; }
  .nav-brand-sub{ display: none; }
  .product-grid{ grid-template-columns: 1fr; }
  .product-image{ aspect-ratio: 16/10; }
  .hero h1{ font-size: 1.8rem; }
  .hero-trust{ gap: 16px; }
  .why-grid, .brand-grid, .brand-strip, .cat-grid{ grid-template-columns: 1fr 1fr; }
}
