/* ═══════════════════════════════════════
   CRDEA THEME — MAIN STYLES
   Pan-African design system
═══════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --gold:      #E8A020;
  --gold-lt:   #F5C96A;
  --gold-pale: #FDF3DC;
  --red:       #D63B2F;
  --green:     #2A7A4B;
  --green-lt:  #3AA66B;
  --black:     #1A1007;
  --cream:     #FFFBF2;
  --warm-white:#FFF8EE;
  --sand:      #F2E8D0;
  --sand-dk:   #E8D8B8;
  --text:      #2C1E0F;
  --muted:     #7A6550;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --font-stamp:   'Bebas Neue', sans-serif;
  --radius:    20px;
  --shadow:    0 12px 36px rgba(26,16,7,0.10);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { list-style: none; }

/* ── UTILITY ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 60px; }
.btn {
  display: inline-block;
  padding: 13px 30px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 60px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-gold    { background: var(--gold); color: #fff; }
.btn-black   { background: var(--black); color: #fff; }
.btn-green   { background: var(--green); color: #fff; }
.btn-outline { background: transparent; border: 2.5px solid var(--black); color: var(--black); }
.btn-white   { background: #fff; color: var(--black); }
.btn-gold:hover  { background: #c88a18; }
.btn-green:hover { background: #1e5c38; }

/* ── EYEBROW ── */
.eyebrow {
  font-family: var(--font-stamp);
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 36px; height: 2px; background: var(--green); flex-shrink: 0; }

/* ── SECTION HEADER ── */
.section-hd { text-align: center; margin-bottom: 48px; }
.section-hd h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.15;
}
.section-hd h2 em { font-style: italic; color: var(--gold); }
.section-hd p { color: var(--muted); font-size: 1rem; max-width: 520px; margin: 0 auto; }

/* ── PAN-AFRICAN STRIPE ── */
.pan-stripe {
  height: 6px;
  background: linear-gradient(90deg, var(--red) 33.3%, var(--gold) 33.3% 66.6%, var(--green) 66.6%);
}

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.announcement-bar span { margin: 0 16px; opacity: 0.6; }

/* ── NAV ── */
.site-nav {
  background: var(--cream);
  border-bottom: 2px solid var(--sand);
  position: sticky;
  top: 0;
  z-index: 999;
  height: 72px;
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo img { height: 48px; width: auto; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--black);
  text-decoration: none;
}
.nav-logo-text span { color: var(--gold); }
.nav-menu {
  display: flex;
  gap: 32px;
}
.nav-menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s;
}
.nav-menu a:hover,
.nav-menu a.current-menu-item { color: var(--gold); }
.nav-menu a:hover::after,
.nav-menu a.current-menu-item::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-cart-btn {
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}
.nav-cart-btn:hover { background: #c88a18; color: #fff; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--black);
  transition: all 0.3s;
}

/* ── TICKER ── */
.ticker-bar {
  background: var(--black);
  color: var(--gold);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-block;
  animation: ticker-roll 36s linear infinite;
  font-family: var(--font-stamp);
  font-size: 0.88rem;
  letter-spacing: 0.2em;
}
@keyframes ticker-roll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-sep { margin: 0 24px; color: var(--red); }

/* ── HERO ── */
.hero-section {
  background: var(--warm-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
}
.hero-left h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 24px;
}
.hero-left h1 em { font-style: italic; color: var(--gold); }
.hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 44px; margin-top: 48px; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-lbl {
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 4px;
}
.hero-right {
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(232,160,32,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 25% 80%, rgba(42,122,75,0.12) 0%, transparent 50%);
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(232,160,32,0.06) 0,rgba(232,160,32,0.06) 1px,transparent 1px,transparent 22px),
    repeating-linear-gradient(-45deg, rgba(232,160,32,0.06) 0,rgba(232,160,32,0.06) 1px,transparent 1px,transparent 22px);
}
.hero-product-card {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(26,16,7,0.15);
  text-align: center;
  max-width: 300px;
  animation: float-card 4s ease-in-out infinite;
}
@keyframes float-card {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.hero-product-card img {
  width: 200px; height: 200px;
  object-fit: cover;
  border-radius: 16px;
  margin: 0 auto 18px;
}
.hero-card-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.hero-card-price { font-size: 1rem; font-weight: 700; color: var(--gold); margin-bottom: 16px; }
.badge-new {
  position: absolute;
  top: -14px; right: -14px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-stamp);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  padding: 7px 16px;
  border-radius: 40px;
  box-shadow: 0 4px 12px rgba(214,59,47,0.4);
}
.badge-impact {
  position: absolute;
  bottom: -14px; left: -14px;
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 40px;
  box-shadow: 0 4px 12px rgba(42,122,75,0.4);
}

/* ── MISSION STRIP ── */
.mission-strip {
  background: var(--gold);
  padding: 56px 80px;
  display: flex;
  align-items: center;
  gap: 56px;
}
.mission-icon { font-size: 3rem; flex-shrink: 0; }
.mission-strip h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 8px;
}
.mission-strip p { font-size: 0.95rem; color: rgba(26,16,7,0.72); line-height: 1.75; max-width: 640px; }
.mission-pct {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
  flex-shrink: 0;
}
.mission-pct small {
  display: block;
  font-size: 0.82rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: rgba(26,16,7,0.65);
  margin-top: 4px;
}

/* ── COLLECTION CARDS ── */
.collections-section { padding: 80px 80px 100px; }
.collections-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}
.col-card {
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  display: block;
  background: var(--sand);
  position: relative;
}
.col-card:hover .col-img { transform: scale(1.05); }
.col-card.span-2 { grid-row: span 2; }
.col-img-wrap { overflow: hidden; }
.col-img-wrap.tall { height: 500px; }
.col-img-wrap.short { height: 220px; }
.col-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.col-body {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}
.col-lbl {
  font-family: var(--font-stamp);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 5px;
}
.col-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--black);
}
.col-arrow {
  width: 42px; height: 42px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.col-card:hover .col-arrow { background: var(--red); transform: scale(1.1); }

/* ── FEATURED PRODUCTS ── */
.featured-section { background: var(--warm-white); padding: 80px; }
.products-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.pcard {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  border: 2px solid transparent;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
}
.pcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold-lt);
}
.pcard-img-wrap {
  height: 230px;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}
.pcard-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.pcard:hover .pcard-img-wrap img { transform: scale(1.06); }
.pcard-tag {
  position: absolute; top: 12px; left: 12px;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; color: #fff;
}
.tag-gold    { background: var(--gold); }
.tag-green   { background: var(--green); }
.tag-red     { background: var(--red); }
.pcard-body  { padding: 16px 18px 20px; flex-grow: 1; display: flex; flex-direction: column; }
.pcard-cat   { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.pcard-name  { font-family: var(--font-display); font-size: 1rem; font-weight: 700; line-height: 1.3; flex-grow: 1; margin-bottom: 12px; }
.pcard-foot  { display: flex; align-items: center; justify-content: space-between; }
.pcard-price { font-size: 0.95rem; font-weight: 700; color: var(--gold); }
.pcard-add {
  width: 34px; height: 34px;
  background: var(--black);
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; border: none; cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
.pcard-add:hover { background: var(--gold); color: #fff; }

/* ── VIEW ALL CTA CARD ── */
.pcard-cta {
  background: var(--gold);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 32px 20px;
  text-decoration: none;
  min-height: 300px;
  transition: background 0.2s;
}
.pcard-cta:hover { background: #c88a18; }
.pcard-cta-icon { font-size: 2.4rem; }
.pcard-cta h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.pcard-cta p { font-size: 0.82rem; color: rgba(255,255,255,0.8); }

/* ── IMPACT BANNER ── */
.impact-section {
  background: var(--green);
  color: #fff;
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.impact-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 18px;
}
.impact-section h2 em { font-style: italic; color: var(--gold-lt); }
.impact-section p { font-size: 0.97rem; opacity: 0.88; line-height: 1.8; margin-bottom: 28px; }
.impact-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.istat {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}
.istat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--gold-lt);
  line-height: 1;
}
.istat-lbl { font-size: 0.76rem; opacity: 0.78; margin-top: 6px; letter-spacing: 0.05em; }

/* ── INTEL CARDS ── */
.intel-section { padding: 80px; background: var(--cream); }
.intel-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 22px;
  margin-top: 48px;
}
.icard {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  border: 2px solid var(--sand);
  display: flex; flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.icard:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.icard.featured { border-color: var(--gold-lt); }
.icard-img {
  width: 100%; height: 200px;
  object-fit: cover;
  display: block;
  background: var(--sand);
}
.icard.featured .icard-img { height: 260px; }
.icard-placeholder {
  width: 100%; height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.icard-body { padding: 22px 24px 26px; flex-grow: 1; display: flex; flex-direction: column; }
.icard-topic {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green); margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.icard-topic::before { content: ''; width: 16px; height: 2px; background: var(--green); flex-shrink: 0; }
.icard-title {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700;
  color: var(--black); line-height: 1.35;
  margin-bottom: 10px;
}
.icard.featured .icard-title { font-size: 1.35rem; }
.icard-excerpt { font-size: 0.85rem; color: var(--muted); line-height: 1.7; flex-grow: 1; margin-bottom: 16px; }
.icard-read {
  font-size: 0.78rem; font-weight: 600;
  color: var(--gold); display: flex;
  align-items: center; gap: 5px;
}
.icard-read::after { content: '→'; transition: margin 0.2s; }
.icard:hover .icard-read::after { margin-left: 4px; }

/* ── NEWSLETTER ── */
.newsletter-section {
  background: var(--sand);
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.newsletter-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--black); line-height: 1.15;
  margin-bottom: 14px;
}
.newsletter-section h2 em { font-style: italic; color: var(--gold); }
.newsletter-section > div > p { color: var(--muted); line-height: 1.75; }
.nl-perks { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.nl-perks li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text); }
.nl-perks li::before { content: '◆'; color: var(--gold); font-size: 0.55rem; flex-shrink: 0; }
.nl-box { background: #fff; border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.nl-box h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 6px; color: var(--black); }
.nl-box > p { font-size: 0.87rem; color: var(--muted); margin-bottom: 22px; }
.nl-form { display: flex; flex-direction: column; }
.nl-form input[type="email"] {
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  border: 2px solid var(--sand);
  background: var(--cream);
  border-radius: 12px 12px 0 0;
  outline: none; color: var(--text);
  border-bottom: none;
  transition: border-color 0.2s;
}
.nl-form input:focus { border-color: var(--gold); }
.nl-form button {
  padding: 16px;
  background: var(--black);
  color: var(--gold-lt);
  font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: none; border-radius: 0 0 12px 12px;
  cursor: pointer; transition: background 0.2s;
}
.nl-form button:hover { background: var(--green); }
.nl-disclaimer { font-size: 0.73rem; color: var(--muted); margin-top: 12px; line-height: 1.5; }

/* ── FOOTER ── */
.site-footer { background: var(--black); color: #fff; padding: 72px 80px 36px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 36px;
}
.footer-brand img { height: 50px; margin-bottom: 18px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.75; max-width: 270px; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--gold); color: #fff; }
.footer-col h4 {
  font-family: var(--font-stamp);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  text-decoration: none;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.77rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--warm-white);
  padding: 80px 80px 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: attr(data-word);
  position: absolute;
  right: -20px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-stamp);
  font-size: 14rem; line-height: 1;
  color: var(--sand);
  pointer-events: none; user-select: none; z-index: 0;
  letter-spacing: -0.02em;
}
.page-hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end; gap: 40px;
}
.page-hero h1 {
  font-family: var(--font-display) !important;
  font-size: clamp(2.8rem, 5.5vw, 5rem) !important;
  line-height: 0.95 !important;
  color: var(--black) !important;
  margin: 0 0 18px 0 !important;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero-desc { font-size: 1rem; color: var(--muted); max-width: 560px; line-height: 1.75; }
.page-hero-badge {
  background: var(--gold);
  border-radius: var(--radius);
  padding: 26px 30px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(232,160,32,0.3);
  flex-shrink: 0;
}
.page-hero-badge .num {
  font-family: var(--font-display);
  font-size: 2.6rem; font-weight: 900;
  color: #fff; line-height: 1;
}
.page-hero-badge .lbl {
  font-size: 0.7rem; color: rgba(255,255,255,0.85);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 5px;
}
.mission-pill {
  display: inline-flex;
  align-items: center; gap: 8px;
  background: var(--green); color: #fff;
  border-radius: 40px; padding: 9px 18px;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.05em; margin-top: 18px;
}
.mission-pill::before { content: '◆'; font-size: 0.5rem; }

/* ── FILTER BAR ── */
.filter-bar {
  background: var(--cream);
  border-bottom: 2px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar { display: none; }
.filter-tabs { display: flex; gap: 0; }
.filter-tab {
  font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 500;
  color: var(--muted); background: none;
  border: none; cursor: pointer;
  padding: 16px 20px; white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.filter-tab:hover { color: var(--text); }
.filter-tab.active,
.filter-tab.current { color: var(--gold); border-bottom-color: var(--gold); font-weight: 600; }

/* ── WOOCOMMERCE PRODUCT GRID ── */
.shop-section { padding: 56px 80px 100px; background: var(--cream); }

/* Reset WooCommerce defaults */
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none !important; }

.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
  float: none !important;
  width: 100% !important;
  clear: both !important;
}
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  background: #fff !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  border: 2px solid var(--sand) !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
  width: auto !important;
  display: flex !important;
  flex-direction: column !important;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s !important;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--shadow) !important;
  border-color: var(--gold-lt) !important;
}
.woocommerce ul.products li.product a.woocommerce-loop-product__link {
  display: block !important;
  overflow: hidden !important;
  text-decoration: none !important;
}
.woocommerce ul.products li.product img {
  width: 100% !important;
  height: 280px !important;
  object-fit: cover !important;
  border-radius: 0 !important;
  margin: 0 !important;
  transition: transform 0.4s !important;
}
.woocommerce ul.products li.product:hover img { transform: scale(1.05) !important; }
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-display) !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: var(--black) !important;
  line-height: 1.3 !important;
  padding: 16px 20px 8px !important;
  margin: 0 !important;
}
.woocommerce ul.products li.product .price {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--gold) !important;
  padding: 0 20px 8px !important;
  margin: 0 !important;
  display: block !important;
}
.woocommerce ul.products li.product .price del { color: var(--muted) !important; font-weight: 400 !important; font-size: 0.85rem !important; }
.woocommerce ul.products li.product .onsale {
  background: var(--red) !important;
  color: #fff !important;
  border-radius: 20px !important;
  font-family: var(--font-body) !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  padding: 4px 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  min-height: auto !important;
  min-width: auto !important;
  line-height: 1.5 !important;
  top: 12px !important; left: 12px !important;
}
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button {
  display: block !important;
  margin: 8px 20px 20px !important;
  background: var(--black) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 40px !important;
  padding: 12px 20px !important;
  font-family: var(--font-body) !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  text-align: center !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
  text-decoration: none !important;
  box-shadow: none !important;
}
.woocommerce ul.products li.product .button:hover { background: var(--gold) !important; }

/* WooCommerce result count & ordering */
.woocommerce-result-count { font-size: 0.85rem !important; color: var(--muted) !important; margin-bottom: 28px !important; }
.woocommerce-ordering { display: none !important; }

/* WooCommerce pagination */
.woocommerce nav.woocommerce-pagination { margin-top: 56px !important; }
.woocommerce nav.woocommerce-pagination ul {
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
  border: none !important;
}
.woocommerce nav.woocommerce-pagination ul li { border: none !important; }
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important; height: 44px !important;
  border-radius: 50% !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  border: 2px solid var(--sand) !important;
  color: var(--text) !important;
  background: #fff !important;
  transition: all 0.2s !important;
  text-decoration: none !important;
}
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--gold) !important;
  color: #fff !important;
  border-color: var(--gold) !important;
}

/* ── BLOG ARCHIVE GRID ── */
.blog-archive-section { padding: 56px 80px 100px; background: var(--cream); }
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.post-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  border: 2px solid var(--sand);
  display: flex; flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post-card-img {
  width: 100%; height: 210px;
  object-fit: cover; display: block;
  background: var(--sand);
}
.post-card-body { padding: 22px 24px 26px; flex-grow: 1; display: flex; flex-direction: column; }
.post-card-cat {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green); margin-bottom: 8px;
  display: flex; align-items: center; gap: 7px;
}
.post-card-cat::before { content: ''; width: 14px; height: 2px; background: var(--green); }
.post-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700;
  color: var(--black); line-height: 1.35;
  margin-bottom: 10px;
}
.post-card-excerpt { font-size: 0.85rem; color: var(--muted); line-height: 1.7; flex-grow: 1; margin-bottom: 16px; }
.post-card-read { font-size: 0.78rem; font-weight: 600; color: var(--gold); display: flex; align-items: center; gap: 5px; }
.post-card-read::after { content: '→'; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 56px; flex-wrap: wrap; }
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  font-size: 0.88rem; font-weight: 600;
  border: 2px solid var(--sand);
  color: var(--text); background: #fff;
  text-decoration: none; transition: all 0.2s;
}
.pagination a:hover, .pagination .current {
  background: var(--gold); color: #fff; border-color: var(--gold);
}

/* ── SINGLE POST ── */
.single-post-hero {
  background: var(--warm-white);
  padding: 72px 80px 60px;
}
.post-meta { font-size: 0.8rem; color: var(--muted); margin-bottom: 18px; display: flex; gap: 16px; flex-wrap: wrap; }
.post-cat-tag {
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px;
}
.single-post-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--black); line-height: 1.2;
  max-width: 800px; margin-bottom: 20px;
}
.single-post-hero .post-excerpt { font-size: 1.05rem; color: var(--muted); line-height: 1.75; max-width: 720px; }
.post-featured-img {
  width: 100%; max-height: 500px;
  object-fit: cover; display: block;
}
.post-content-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 56px 80px 80px;
}
.post-content-wrap .entry-content {
  font-size: 1rem; line-height: 1.85; color: var(--text);
}
.post-content-wrap .entry-content h2,
.post-content-wrap .entry-content h3 {
  font-family: var(--font-display);
  color: var(--black); margin: 36px 0 16px;
}
.post-content-wrap .entry-content p { margin-bottom: 20px; }
.post-content-wrap .entry-content a { color: var(--gold); text-decoration: underline; }
.post-content-wrap .entry-content blockquote {
  border-left: 4px solid var(--gold);
  padding-left: 24px; margin: 28px 0;
  font-style: italic; color: var(--muted);
}

/* ── SINGLE PRODUCT ── */
.product-single-section {
  padding: 60px 80px 100px;
  background: var(--cream);
}
.product-single-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.product-images img { border-radius: var(--radius); }
.product-info h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--black); margin-bottom: 12px; line-height: 1.2;
}
.woocommerce div.product .price {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: var(--gold) !important;
  margin-bottom: 20px !important;
}
.woocommerce div.product .woocommerce-product-details__short-description {
  font-size: 0.97rem !important;
  color: var(--muted) !important;
  line-height: 1.8 !important;
  margin-bottom: 24px !important;
}
.woocommerce div.product form.cart .button {
  background: var(--gold) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 60px !important;
  padding: 15px 36px !important;
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
}
.woocommerce div.product form.cart .button:hover { background: #c88a18 !important; }
.product-impact-note {
  background: var(--gold-pale);
  border: 2px solid var(--gold-lt);
  border-radius: 14px;
  padding: 18px 20px;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
  margin-top: 20px;
  display: flex; gap: 12px; align-items: flex-start;
}
.product-impact-note::before { content: '🌍'; font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }

/* ── AFRICA FIRST SPECIFIC ── */
.af-section { padding: 80px; }
.af-section-alt { padding: 80px; background: var(--warm-white); }
.af-section-sand { padding: 80px; background: var(--sand); }
.section-hd-left {
  display: flex; align-items: flex-start; gap: 18px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--sand);
}
.section-num {
  font-family: var(--font-stamp);
  font-size: 4.5rem; color: var(--sand-dk);
  line-height: 1; flex-shrink: 0; margin-top: -4px;
}
.section-hd-left .section-eyebrow { font-size: 0.75rem; color: var(--green); letter-spacing: 0.22em; margin-bottom: 6px; font-family: var(--font-stamp); display: block; }
.section-hd-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  color: var(--black); line-height: 1.15;
}
.section-hd-left h2 .gold { color: var(--gold); }
.section-hd-left h2 .red  { color: var(--red); }
.manifesto { max-width: 760px; }
.manifesto p { font-size: 0.97rem; line-height: 1.88; color: var(--muted); margin-bottom: 22px; }
.manifesto p strong { color: var(--text); font-weight: 600; }
.manifesto p em { color: var(--green); font-style: normal; font-weight: 500; }
.timeline-item {
  display: grid; grid-template-columns: 96px 1fr;
  gap: 28px; padding: 36px 0;
  border-bottom: 2px solid var(--sand);
  align-items: start;
}
.timeline-item:first-child { border-top: 2px solid var(--sand); }
.timeline-year { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--gold); line-height: 1; padding-top: 4px; }
.timeline-tag {
  display: inline-block;
  background: var(--gold-pale); color: var(--gold);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 12px; border-radius: 20px; margin-bottom: 8px;
}
.timeline-body h4 { font-family: var(--font-display); font-size: 1.12rem; font-weight: 700; color: var(--black); margin-bottom: 10px; line-height: 1.3; }
.timeline-body p { font-size: 0.9rem; line-height: 1.8; color: var(--muted); }
.barriers-grid, .pillars-grid, .supply-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.barrier-card, .pillar-card, .supply-card {
  background: #fff; border-radius: var(--radius);
  padding: 32px 28px;
  border: 2px solid var(--sand);
  transition: border-color 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
}
.barrier-card:hover { border-color: var(--red); box-shadow: 0 12px 32px rgba(214,59,47,0.08); }
.pillar-card:hover  { border-color: var(--green); }
.supply-card { text-decoration: none; color: var(--text); display: flex; flex-direction: column; }
.supply-card:hover { border-color: var(--gold); box-shadow: 0 12px 36px rgba(232,160,32,0.12); }
.barrier-num {
  position: absolute; top: 12px; right: 16px;
  font-family: var(--font-stamp); font-size: 4.5rem;
  color: var(--sand); line-height: 1; user-select: none;
}
.barrier-tag {
  display: inline-block;
  background: rgba(214,59,47,0.1); color: var(--red);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 12px; border-radius: 20px; margin-bottom: 12px;
}
.barrier-card h3, .pillar-card h3, .supply-card h3 {
  font-family: var(--font-display);
  font-size: 1.12rem; font-weight: 700;
  color: var(--black); margin-bottom: 12px; line-height: 1.3;
}
.barrier-card p, .pillar-card p, .supply-card p { font-size: 0.87rem; line-height: 1.8; color: var(--muted); margin-bottom: 16px; }
.pillar-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.supply-cat { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.supply-card blockquote { font-style: italic; font-size: 0.85rem; color: var(--muted); border-left: 3px solid var(--sand); padding-left: 14px; margin-bottom: 20px; flex-grow: 1; }
.af-cta-block {
  background: var(--black); padding: 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.af-cta-block h2 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 0.95; color: #fff; margin-bottom: 28px;
}
.af-cta-block h2 em { font-style: italic; color: var(--gold-lt); display: block; }
.af-cta-block h2 .red-w { color: var(--red); }
.cta-action-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cta-action-card {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 28px 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color 0.25s, background 0.25s;
}
.cta-action-card:hover { border-color: var(--gold); background: rgba(232,160,32,0.05); }
.cta-action-tag { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); font-weight: 600; }
.cta-action-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: #fff; line-height: 1.2; }
.cta-action-card p { font-size: 0.83rem; color: rgba(255,255,255,0.5); line-height: 1.7; flex-grow: 1; }
.cta-action-card a { font-size: 0.78rem; font-weight: 600; color: var(--gold-lt); text-decoration: none; display: flex; align-items: center; gap: 5px; }
.cta-action-card a:hover { color: #fff; }
.cta-action-card a::after { content: '→'; }
.af-quote-section { background: var(--gold); padding: 72px 80px; text-align: center; }
.af-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: var(--black); max-width: 840px;
  margin: 0 auto; line-height: 1.6;
}
.af-quote strong { font-style: normal; color: #fff; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  position: fixed; inset: 0;
  background: var(--cream);
  z-index: 9999;
  flex-direction: column;
  padding: 80px 40px 40px;
  gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700;
  color: var(--black); text-decoration: none;
  padding: 10px 0;
  border-bottom: 2px solid var(--sand);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; font-size: 1.8rem;
  cursor: pointer; color: var(--text);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .container { padding: 0 32px; }
  .hero-section { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { display: none; }
  .hero-left { padding: 72px 40px; }
  .site-nav .container { padding: 0 24px; }
  .nav-menu { display: none; }
  .nav-hamburger { display: flex; }
  .mission-strip { flex-direction: column; padding: 48px 40px; gap: 28px; }
  .collections-section { padding: 60px 32px 80px; }
  .collections-grid { grid-template-columns: 1fr; }
  .col-card.span-2 { grid-row: span 1; }
  .col-img-wrap.tall, .col-img-wrap.short { height: 260px; }
  .featured-section { padding: 60px 32px; }
  .products-4col { grid-template-columns: 1fr 1fr; }
  .impact-section { grid-template-columns: 1fr; padding: 60px 40px; }
  .intel-section { padding: 60px 32px; }
  .intel-grid { grid-template-columns: 1fr; }
  .newsletter-section { grid-template-columns: 1fr; padding: 60px 32px; gap: 40px; }
  .site-footer { padding: 56px 32px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .page-hero { padding: 60px 32px 48px; }
  .page-hero::after { display: none; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-badge { display: none; }
  .filter-bar { padding: 0 32px; }
  .shop-section, .blog-archive-section { padding: 40px 32px 72px; }
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .af-section, .af-section-alt, .af-section-sand { padding: 60px 32px; }
  .af-cta-block { grid-template-columns: 1fr; padding: 60px 32px; }
  .cta-action-cards { grid-template-columns: 1fr; }
  .af-quote-section { padding: 56px 32px; }
  .barriers-grid, .pillars-grid, .supply-cards { grid-template-columns: 1fr; }
  .single-post-hero { padding: 56px 32px 48px; }
  .post-content-wrap { padding: 40px 32px 64px; }
  .product-single-section { padding: 40px 32px 72px; }
  .product-single-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .products-4col { grid-template-columns: 1fr; }
  .woocommerce ul.products { grid-template-columns: 1fr !important; }
  .posts-grid { grid-template-columns: 1fr; }
  .impact-stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-footer { padding: 48px 20px 28px; }
  .filter-bar { padding: 0 20px; }
  .shop-section, .blog-archive-section { padding: 32px 20px 60px; }
}
