:root {
  --red:        #D90000;
  --red-dark:   #A80000;
  --red-glow:   rgba(217, 0, 0, 0.38);
  --black:      #111111;
  --white:      #ffffff;
  --grey:       #f5f5f5;
  --grey2:      #e0e0e0;
  --text:       #222222;
  --green-wa:   #25D366;
  --green-glow: rgba(37, 211, 102, 0.38);

  /* Glass (used only in dark zones: hero, cart, toast) */
  --g-bg:      rgba(255, 255, 255, 0.08);
  --g-border:  rgba(255, 255, 255, 0.18);
  --g-shadow:  0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.07);
  --blur:      blur(18px);
  --blur-sm:   blur(10px);
  --radius:    14px;
}

/* ── ICONIFY ── */
iconify-icon { vertical-align: middle; display: inline-block; line-height: 1; }
.cat-icon { color: white; }
.s-icon    { color: #aaa; flex-shrink: 0; }
.animate__bounceIn { --animate-duration: 0.4s; }

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background: var(--white); color: var(--text); }

/* ── TOPBAR ── */
.topbar {
  background: var(--black);
  color: var(--white);
  font-size: 0.78rem;
  text-align: center;
  padding: 6px 12px;
  letter-spacing: 0.04em;
}
.topbar a { color: var(--green-wa); text-decoration: none; }

/* ── HEADER ── */
header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  gap: 12px;
}
.logo-area { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.logo-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.logo-icon-fallback {
  background: var(--red);
  color: white;
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.logo-text { line-height: 1.15; }
.logo-text .brand { font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 0.05em; }
.logo-text .tagline { font-size: 0.65rem; color: #999; font-style: italic; }

/* Cart button */
.cart-btn {
  background: var(--red);
  color: white;
  border: none;
  border-radius: 22px;
  padding: 9px 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  display: flex; align-items: center; gap: 7px;
  flex-shrink: 0;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px var(--red-glow);
}
.cart-btn:hover { background: var(--red-dark); box-shadow: 0 6px 22px var(--red-glow); }
.cart-count {
  background: white;
  color: var(--red);
  border-radius: 50%;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
}

/* ── HERO (original dark style) ── */
.hero {
  background: var(--black);
  color: white;
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex; align-items: center; justify-content: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.75) 100%);
  z-index: 1;
}

/* Floating orbs (subtle, on top of photo) */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}
.hero-orb-1 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(217,0,0,0.2), transparent 70%);
  top: -140px; left: -80px;
  animation: orbFloat 12s ease-in-out infinite;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(180,0,0,0.14), transparent 70%);
  bottom: -90px; right: -40px;
  animation: orbFloat 16s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(24px, -16px) scale(1.05); }
  66%       { transform: translate(-16px, 10px) scale(0.97); }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1100px; width: 100%;
  margin: 0 auto;
  padding: 32px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.hero-left  { flex: 1; }
.hero-right {
  flex-shrink: 0;
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.hero-flags { margin-bottom: 12px; }
.hero-flags iconify-icon { filter: drop-shadow(0 3px 10px rgba(0,0,0,0.4)); }

.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero h1 span { color: #ff4444; }
.hero p { margin-top: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.5; }

/* Glass badges (in dark hero) */
.hero-badges { display: flex; flex-direction: column; gap: 8px; }
.badge {
  background: var(--g-bg);
  backdrop-filter: var(--blur-sm);
  -webkit-backdrop-filter: var(--blur-sm);
  border: 1px solid var(--g-border);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.72rem; font-weight: 500;
  color: white;
  letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 5px;
  white-space: nowrap;
}

/* Hero CTA */
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green-wa);
  color: white; text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.02em;
  padding: 13px 28px;
  border-radius: 50px;
  transition: all 0.2s;
  box-shadow: 0 4px 22px var(--green-glow);
  white-space: nowrap;
}
.hero-cta:hover { background: #1da851; transform: scale(1.04); box-shadow: 0 6px 32px var(--green-glow); }

@media (max-width: 640px) {
  .hero-content { flex-direction: column; text-align: center; padding: 28px 20px; gap: 20px; }
  .hero-right { align-items: center; width: 100%; }
  .hero-badges { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .hero h1 { font-size: clamp(1.5rem, 6vw, 2rem); }
}

/* ── INFO STRIP (marquee) ── */
.info-strip {
  background: var(--red);
  color: white;
  overflow: hidden;
}
.info-track {
  display: flex;
  will-change: transform;
  animation: marqueeScroll 28s linear infinite;
}
.info-strip:hover .info-track { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
.info-strip-item {
  display: flex; align-items: center; gap: 5px;
  padding: 9px 20px;
  font-size: 0.75rem; font-weight: 700;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* ── DIASPORA FLAGS ── */
.diaspora-strip {
  background: white;
  padding: 24px 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--grey2);
}
.diaspora-label {
  font-size: 0.78rem; font-weight: 600;
  color: #999;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.diaspora-flags {
  display: flex; justify-content: center;
  flex-wrap: nowrap; gap: 0 20px;
  max-width: 1100px; margin: 0 auto;
  overflow-x: auto; padding-bottom: 4px;
}
.flag-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  cursor: default; transition: transform 0.2s;
}
.flag-item:hover { transform: translateY(-3px); }
.flag-item iconify-icon { filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15)); display: block; }
.flag-item span { font-size: 0.65rem; font-weight: 600; color: #666; letter-spacing: 0.03em; white-space: nowrap; }
.diaspora-trust {
  font-size: 0.75rem; font-weight: 700;
  color: var(--red);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-top: 14px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}

/* ── SEARCH ── */
.search-wrap { max-width: 560px; margin: 0 auto; padding: 18px 16px 0; }
.search-box {
  display: flex; align-items: center;
  background: var(--grey);
  border: 2px solid var(--grey2);
  border-radius: 30px;
  padding: 8px 16px; gap: 8px;
  transition: border-color 0.2s;
}
.search-box:focus-within { border-color: var(--red); }
.search-box input {
  flex: 1; border: none;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem; outline: none;
  color: var(--text);
}
.search-box .s-icon { color: #aaa; font-size: 1.1rem; }

/* ── CATEGORY NAV ── */
.cat-nav-wrap {
  padding: 16px 0 0;
}
.cat-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 10px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}
.cat-pill {
  background: rgba(110, 0, 0, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 7px 15px;
  font-size: 0.75rem; font-weight: 600;
  white-space: nowrap; cursor: pointer;
  transition: all 0.2s;
  font-family: 'Poppins', sans-serif;
  color: rgba(255, 255, 255, 0.78);
  display: inline-flex; align-items: center; gap: 5px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.1);
}
.cat-pill.active, .cat-pill:hover {
  background: rgba(217, 0, 0, 0.95);
  border-color: rgba(255, 255, 255, 0.28);
  color: white;
  box-shadow: 0 4px 20px rgba(217,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.18);
  transform: translateY(-1px);
}

/* ── CATALOGUE ── */
.catalogue { max-width: 1100px; margin: 0 auto; padding: 8px 12px 40px; }
.cat-section { margin-bottom: 32px; }
.cat-section.hidden { display: none; }

.cat-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
  padding: 10px 14px;
  background: var(--black);
  border-radius: 10px;
  position: sticky; top: 66px; z-index: 10;
}
.cat-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  color: white; letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cat-emoji { font-size: 1.3rem; }

/* ── PRODUCT GRID ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 12px;
}

.product-card {
  background: white;
  border: 1.5px solid var(--grey2);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
  position: relative;
}
.product-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); border-color: var(--red); }
.product-card.in-cart { border-color: var(--red); }
.product-card.in-cart::after {
  content: '✓';
  position: absolute; top: 7px; right: 7px;
  background: var(--red); color: white;
  width: 20px; height: 20px; border-radius: 50%;
  font-size: 0.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.product-img-wrap {
  width: 100%; aspect-ratio: 1 / 1;
  background: var(--grey);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 10px;
}
.product-img-wrap img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.25s; }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-emoji { font-size: 3rem; line-height: 1; }

.product-info {
  padding: 9px 10px 10px;
  flex: 1; display: flex; flex-direction: column; gap: 4px;
}
.product-name  { font-size: 0.78rem; font-weight: 600; line-height: 1.3; color: var(--text); }
.product-meta  { font-size: 0.68rem; color: #999; }
.product-price {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--red); margin-top: auto; padding-top: 4px;
  letter-spacing: 0.02em;
}

.add-btn {
  width: 100%; background: var(--red); color: white; border: none;
  padding: 9px 0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.04em; cursor: pointer;
  transition: background 0.15s;
}
.add-btn:hover { background: var(--red-dark); }
.add-btn.added { background: var(--black); }

/* qty controls */
.qty-ctrl {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--black); border: none; padding: 0;
}
.qty-ctrl button {
  background: none; border: none; color: white; font-size: 1.2rem;
  width: 36px; height: 34px; cursor: pointer;
  font-family: 'Oswald', sans-serif; line-height: 1;
}
.qty-ctrl button:hover { background: var(--red); }
.qty-ctrl .qty-num { color: white; font-family: 'Oswald', sans-serif; font-size: 0.95rem; min-width: 20px; text-align: center; }

/* ── CART PANEL ── */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none; opacity: 0;
  transition: opacity 0.25s;
}
.cart-overlay.open    { display: flex; }
.cart-overlay.visible { opacity: 1; }

.cart-panel {
  position: fixed;
  right: 0; top: 0; bottom: 0;
  width: min(400px, 100vw);
  background: var(--white);
  border-left: 1px solid var(--grey2);
  z-index: 2001;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
}
.cart-panel.open { transform: translateX(0); }

.cart-top {
  background: var(--red);
  border-bottom: none;
  color: white; padding: 16px 18px;
  display: flex; align-items: center; justify-content: space-between;
}
.cart-top h2 { font-family: 'Oswald', sans-serif; font-size: 1.2rem; letter-spacing: 0.05em; color: white; }
.cart-close { background: none; border: none; color: rgba(255,255,255,0.7); font-size: 1.5rem; cursor: pointer; line-height: 1; }
.cart-close:hover { color: white; }

.cart-items { flex: 1; overflow-y: auto; padding: 14px; background: var(--white); }
.cart-empty { text-align: center; padding: 60px 20px; color: #bbb; }
.cart-empty .big { font-size: 3rem; margin-bottom: 10px; opacity: 0.3; }

.cart-item {
  display: flex; gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--grey2);
  align-items: center;
}
.ci-thumb {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 8px; overflow: hidden;
  background: var(--grey); border: 1px solid var(--grey2);
}
.ci-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ci-thumb-emoji {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.ci-info  { flex: 1; min-width: 0; }
.ci-name  { font-size: 0.85rem; font-weight: 700; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ci-meta  { font-size: 0.72rem; color: #999; }
.ci-price { font-family: 'Oswald', sans-serif; font-size: 1rem; color: var(--red); white-space: nowrap; }
.ci-qty   { display: flex; align-items: center; gap: 6px; }
.ci-qty button {
  background: var(--grey);
  border: 1px solid var(--grey2);
  width: 26px; height: 26px; border-radius: 50%;
  cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--text); transition: background 0.15s, color 0.15s;
}
.ci-qty button:hover { background: var(--red); border-color: var(--red); color: white; }
.ci-qty .n { font-weight: 700; font-size: 0.9rem; min-width: 16px; text-align: center; color: var(--text); }

/* ── CART BANKING ── */
.cart-banking {
  margin: 16px 0 0;
  background: #fff8f8;
  border: 1px solid rgba(217,0,0,0.15);
  border-radius: 10px; padding: 12px 14px;
  font-size: 0.75rem;
}
.cb-title {
  font-family: 'Oswald', sans-serif; font-size: 0.8rem; font-weight: 600;
  color: var(--red); letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 8px;
  display: flex; align-items: center; gap: 5px;
}
.cb-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 8px; padding: 4px 0;
  border-bottom: 1px dotted var(--grey2);
  line-height: 1.4;
}
.cb-row:last-child { border-bottom: none; }
.cb-row span   { color: #888; white-space: nowrap; }
.cb-row strong { color: var(--text); text-align: right; font-weight: 600; }
.cb-proof {
  margin-top: 10px;
  background: #f0faf4;
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: 6px; padding: 7px 10px;
  font-size: 0.72rem; color: #555;
  display: flex; align-items: flex-start; gap: 5px; line-height: 1.5;
}

.cart-footer {
  padding: 14px;
  border-top: 1px solid var(--grey2);
  background: var(--grey);
}
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.cart-total .label  { font-weight: 700; font-size: 0.95rem; color: #666; }
.cart-total .amount { font-family: 'Oswald', sans-serif; font-size: 1.3rem; color: var(--red); }

.whatsapp-order-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--green-wa); color: white; border: none;
  width: 100%; padding: 14px; border-radius: 30px;
  font-family: 'Oswald', sans-serif; font-size: 1.1rem;
  letter-spacing: 0.05em; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px var(--green-glow);
}
.whatsapp-order-btn:hover { background: #1da851; transform: scale(1.02); }

.clear-cart-btn {
  width: 100%; background: none;
  border: 1.5px solid var(--grey2);
  border-radius: 30px; padding: 9px; margin-top: 8px;
  font-family: 'Poppins', sans-serif; font-size: 0.82rem;
  color: #aaa; cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.clear-cart-btn:hover { border-color: var(--red); color: var(--red); }

/* ── INFO STRIP (marquee duplicate removed — see above) ── */

/* ── HOW IT WORKS ── */
.how { background: var(--grey); padding: 32px 20px; text-align: center; }
.how h2 {
  font-family: 'Oswald', sans-serif; font-size: 1.4rem;
  letter-spacing: 0.06em; margin-bottom: 24px;
  color: var(--black); text-transform: uppercase;
}
.how-steps { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; max-width: 700px; margin: 0 auto; }
.how-step {
  flex: 1; min-width: 140px; max-width: 200px;
  background: white; border-radius: var(--radius);
  padding: 20px 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.step-num {
  width: 36px; height: 36px;
  background: var(--red); color: white; border-radius: 50%;
  font-family: 'Oswald', sans-serif; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
}
.how-step h3 { font-size: 0.85rem; font-weight: 700; margin-bottom: 5px; }
.how-step p  { font-size: 0.75rem; color: #888; }

/* ── FOOTER ── */
footer { background: var(--black); color: #ccc; padding: 28px 20px; text-align: center; }
footer .f-brand { font-family: 'Oswald', sans-serif; font-size: 1.2rem; color: white; letter-spacing: 0.06em; margin-bottom: 10px; }
footer .f-contact { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 14px; }
footer .f-contact a { color: var(--green-wa); text-decoration: none; font-size: 0.9rem; display: flex; align-items: center; gap: 5px; }
footer .f-address { font-size: 0.8rem; color: #777; margin-bottom: 14px; }
footer .f-copy    { font-size: 0.72rem; color: #555; }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: rgba(14,14,18,0.96);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  color: white; padding: 10px 22px; border-radius: 30px;
  font-size: 0.85rem; font-weight: 700;
  z-index: 9999;
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 4px solid var(--red);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transition: transform 0.3s;
  white-space: nowrap; pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── BACK TO TOP ── */
.back-top {
  position: fixed; bottom: 24px; right: 16px;
  background: var(--red); color: white;
  border: none; width: 42px; height: 42px; border-radius: 50%;
  font-size: 1.2rem; cursor: pointer; z-index: 500;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
  box-shadow: 0 4px 16px var(--red-glow);
  display: flex; align-items: center; justify-content: center;
}
.back-top.visible { opacity: 1; pointer-events: auto; }

/* ── HEADER BUTTONS ── */
.header-wa-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-wa); color: white; text-decoration: none;
  font-family: 'Poppins', sans-serif; font-size: 0.8rem; font-weight: 600;
  white-space: nowrap; padding: 8px 14px; border-radius: 22px;
  transition: background 0.2s, transform 0.15s; flex-shrink: 0;
}
.header-wa-btn:hover { background: #1da851; transform: scale(1.03); }

.header-fb-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: #1877F2; color: white; text-decoration: none;
  font-family: 'Poppins', sans-serif; font-size: 0.8rem; font-weight: 600;
  white-space: nowrap; padding: 8px 14px; border-radius: 22px;
  transition: background 0.2s, transform 0.15s; flex-shrink: 0;
}
.header-fb-btn:hover { background: #0d6efd; transform: scale(1.03); }

.header-tt-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: #010101;
  color: white; text-decoration: none;
  font-family: 'Poppins', sans-serif; font-size: 0.8rem; font-weight: 600;
  white-space: nowrap; padding: 8px 14px; border-radius: 22px;
  transition: background 0.2s, transform 0.15s; flex-shrink: 0;
}
.header-tt-btn:hover { background: #333; transform: scale(1.03); }

@media (max-width: 540px) { .header-wa-btn { display: none; } .header-fb-btn { display: none; } .header-tt-btn { display: none; } }

/* ── DIASPORA TRUST ── */
.diaspora-trust {
  font-size: 0.75rem; font-weight: 700; color: var(--red);
  text-transform: uppercase; letter-spacing: 0.08em; margin-top: 14px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}

/* ── DELIVERY SECTION ── */
.delivery-section {
  background: #fff8f8; border: 1.5px solid rgba(217,0,0,0.15);
  border-radius: 8px; padding: 10px 12px; margin-bottom: 10px; font-size: 0.82rem;
}
.delivery-toggle-row { display: flex; align-items: center; }
.delivery-toggle-label { display: flex; align-items: center; gap: 8px; cursor: pointer; font-weight: 600; color: var(--text); }
.delivery-toggle-label input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--red); cursor: pointer; }
.delivery-choices { margin-top: 10px; display: flex; flex-direction: column; gap: 8px; }
.delivery-choice {
  display: flex; align-items: center; gap: 8px; cursor: pointer;
  padding: 8px 10px;
  border: 1.5px solid var(--grey2);
  border-radius: 8px;
  background: var(--white);
  transition: border-color 0.15s;
}
.delivery-choice:hover { border-color: var(--red); }
.delivery-choice input[type="radio"] { accent-color: var(--red); flex-shrink: 0; }
.delivery-choice span   { flex: 1; font-size: 0.82rem; color: var(--text); }
.delivery-choice strong { font-family: 'Oswald', sans-serif; color: var(--red); font-size: 0.95rem; white-space: nowrap; }
.cart-delivery-fee { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; padding: 0 2px; }
.cart-delivery-fee .label  { font-weight: 600; font-size: 0.88rem; color: #666; }
.cart-delivery-fee .amount { font-family: 'Oswald', sans-serif; font-size: 1rem; color: var(--text); }

/* ── FAQ ── */
.faq { background: var(--grey); padding: 36px 20px 40px; }
.faq h2 {
  font-family: 'Oswald', sans-serif; font-size: 1.4rem;
  letter-spacing: 0.06em; margin-bottom: 24px;
  color: var(--black); text-transform: uppercase; text-align: center;
}
.faq-list {
  max-width: 760px; margin: 0 auto;
  border: 1.5px solid var(--grey2); border-radius: 12px; overflow: hidden;
  background: white;
}
.faq-item { border-bottom: 1px solid var(--grey2); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; background: white; border: none;
  padding: 14px 18px; text-align: left;
  font-family: 'Poppins', sans-serif; font-size: 0.88rem; font-weight: 600;
  color: var(--text); cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transition: background 0.15s;
}
.faq-q:hover { background: var(--grey); }
.faq-item.open .faq-q { background: var(--red); color: white; }
.faq-chevron { flex-shrink: 0; transition: transform 0.25s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 18px; font-size: 0.83rem; line-height: 1.75;
  color: #555; background: #fafafa;
}
.faq-item.open .faq-a { max-height: 300px; padding: 14px 18px; }

/* ── OUT OF STOCK ── */
.product-card.out-of-stock { opacity: 0.6; }
.product-card.out-of-stock .product-img-wrap { position: relative; }
.oos-badge {
  position: absolute; top: 8px; left: 8px;
  background: #111; color: white;
  font-size: 0.65rem; font-weight: 700;
  padding: 3px 8px; border-radius: 10px;
  letter-spacing: 0.05em; text-transform: uppercase;
  z-index: 2; pointer-events: none;
}
.add-btn.oos-btn { background: #ccc; color: #888; cursor: not-allowed; }
.add-btn.oos-btn:hover { background: #ccc; }

/* ── NO RESULTS ── */
.no-results { text-align: center; padding: 40px; color: #aaa; display: none; }
.no-results.show { display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .cat-header { top: 60px; }
}
@media (min-width: 700px)  { .product-grid { grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); } }
@media (min-width: 1000px) { .product-grid { grid-template-columns: repeat(auto-fill, minmax(185px, 1fr)); } }

/* ═══════════════════════════════════════
   MOBILE  (≤ 640px)
═══════════════════════════════════════ */
@media (max-width: 640px) {
  .topbar { font-size: 0.7rem; padding: 5px 10px; }
  .header-inner { padding: 8px 12px; gap: 8px; }
  .logo-icon { width: 38px; height: 38px; }
  .logo-text .brand { font-size: 0.9rem; }
  .logo-text .tagline { font-size: 0.6rem; }
  .cart-btn { padding: 8px 12px; font-size: 0.82rem; }
  .hero { min-height: 220px; }
  .hero-content { padding: 22px 16px; gap: 16px; }
  .hero h1 { font-size: clamp(1.35rem, 5.5vw, 1.8rem); }
  .hero p { font-size: 0.82rem; margin-top: 8px; }
  .hero-cta { padding: 11px 22px; font-size: 0.88rem; }
  .badge { font-size: 0.68rem; padding: 4px 11px; }
  .diaspora-strip { padding: 16px 12px 14px; }
  .diaspora-flags { gap: 0 14px; }
  .flag-item span { font-size: 0.6rem; }
  .search-wrap { padding: 14px 12px 0; }
  .search-box input { font-size: 0.85rem; }
  .catalogue { padding: 6px 8px 28px; }
  .cat-section { margin-bottom: 24px; }
  .cat-header { padding: 8px 12px; }
  .cat-header h2 { font-size: 0.85rem; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .product-name { font-size: 0.74rem; }
  .product-price { font-size: 1rem; }
  .add-btn { padding: 10px 0; font-size: 0.74rem; }
  .qty-ctrl button { width: 38px; height: 38px; font-size: 1.3rem; }
  .how { padding: 24px 14px; }
  .how-steps { gap: 10px; }
  .how-step { min-width: calc(50% - 5px); max-width: calc(50% - 5px); padding: 16px 10px; }
  .step-num { width: 32px; height: 32px; font-size: 1rem; }
  .how-step h3 { font-size: 0.8rem; }
  .how-step p  { font-size: 0.7rem; }
  .cart-panel { width: 100vw; }
  .cart-top { padding: 13px 14px; }
  .cart-items { padding: 10px 12px; }
  .ci-name { font-size: 0.82rem; }
  .ci-qty button { width: 28px; height: 28px; }
  .cart-footer { padding: 10px 12px; }
  .cart-total .label  { font-size: 0.88rem; }
  .cart-total .amount { font-size: 1.15rem; }
  .whatsapp-order-btn { padding: 13px; font-size: 1rem; }
  .delivery-choice { padding: 11px 10px; }
  .delivery-toggle-label { font-size: 0.82rem; }
  .cart-banking { font-size: 0.72rem; }
  .cb-row { font-size: 0.72rem; }
  .faq { padding: 24px 12px 32px; }
  .faq h2 { font-size: 1.2rem; margin-bottom: 18px; }
  .faq-q { padding: 15px 14px; font-size: 0.83rem; }
  .faq-a { font-size: 0.8rem; }
  .faq-item.open .faq-a { padding: 12px 14px; }
  footer { padding: 22px 14px; }
  footer .f-brand { font-size: 1rem; }
  footer .f-contact { flex-direction: column; align-items: center; gap: 8px; }
  footer .f-contact a { font-size: 0.82rem; }
  footer .f-address { font-size: 0.74rem; margin-bottom: 10px; }
  .toast { font-size: 0.78rem; padding: 9px 18px; max-width: calc(100vw - 32px); white-space: normal; text-align: center; }
  .back-top { bottom: 16px; right: 12px; width: 38px; height: 38px; }
}

/* ═══════════════════════════════════════
   TABLET  (641px – 900px)
═══════════════════════════════════════ */
@media (min-width: 641px) and (max-width: 900px) {
  .header-inner { padding: 9px 14px; gap: 10px; }
  .logo-icon { width: 40px; height: 40px; }
  .logo-text .brand { font-size: 1rem; }
  .logo-text .tagline { font-size: 0.62rem; }
  .cart-btn { padding: 9px 14px; font-size: 0.85rem; }

  .hero { min-height: 240px; }
  .hero-content { padding: 26px 20px; gap: 20px; }
  .hero h1 { font-size: clamp(1.5rem, 4vw, 2rem); }
  .hero p { font-size: 0.85rem; }
  .hero-cta { padding: 12px 24px; font-size: 0.9rem; }
  .badge { font-size: 0.7rem; padding: 5px 12px; }
  .hero-right { flex-shrink: 0; }

  .diaspora-strip { padding: 18px 16px 16px; }

  .search-wrap { padding: 16px 14px 0; }
  .catalogue { padding: 8px 12px 32px; }
  .cat-header h2 { font-size: 0.9rem; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }

  .how { padding: 28px 20px; }
  .how-step { min-width: 130px; max-width: 185px; }

  .cart-panel { width: min(380px, 100vw); }
  .cart-footer { padding: 12px 14px; }

  .faq { padding: 28px 16px 36px; }
  .faq h2 { font-size: 1.4rem; }

  footer { padding: 26px 16px; }
}

/* ═══════════════════════════════════════
   ENHANCEMENTS
═══════════════════════════════════════ */

/* 2 — WhatsApp CTA pulse ring */
.hero-cta { position: relative; }
.hero-cta::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 55px;
  border: 2px solid var(--green-wa);
  opacity: 0;
  animation: ctaRipple 2.8s ease-out 1.2s infinite;
  pointer-events: none;
}
@keyframes ctaRipple {
  0%   { transform: scale(1);    opacity: 0.55; }
  100% { transform: scale(1.22); opacity: 0; }
}

/* 3 — Category pills edge fade (removed — pills now wrap) */

/* 4 — Product badges */
.prod-badge {
  position: absolute;
  top: 8px; left: 8px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  pointer-events: none;
}
.prod-badge-popular { background: var(--red); color: white; }
.prod-badge-new     { background: #1a7a3c;    color: white; }

/* 5 — How-it-works connecting line */
.how-steps { position: relative; }
@media (min-width: 580px) {
  .how-steps::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 14%;
    right: 14%;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(217,0,0,0.2) 20%, rgba(217,0,0,0.2) 80%, transparent);
    z-index: 0;
  }
  .how-step { position: relative; z-index: 1; }
  .step-num { box-shadow: 0 0 0 4px white, 0 4px 14px var(--red-glow); }
}

/* 6 — Cart button pulse on add */
@keyframes cartBtnPulse {
  0%   { transform: scale(1); }
  25%  { transform: scale(1.14); }
  55%  { transform: scale(0.96); }
  80%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}
.cart-btn.pulsing {
  animation: cartBtnPulse 0.5s ease-out;
  transition: none;
}
