/* ═══════════════════════════════════════════
   TASTE OF NAIJA — style.css
   ═══════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:      #1B4332;
  --green-light:#2D6A4F;
  --green-pale: #E8F5E2;
  --amber:      #D4860B;
  --amber-light:#F0A020;
  --gold:       #F5C842;
  --cream:      #FAF7F2;
  --cream-dark: #F0EBE3;
  --charcoal:   #1C1C1C;
  --mid:        #4A4A4A;
  --muted:      #7A7A7A;
  --white:      #FFFFFF;
  --red:        #C0392B;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.16);
  --radius:     12px;
  --radius-lg:  20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; }

/* ══════════════════════
   NAV
══════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(27,67,50,0.97);
  backdrop-filter: blur(12px);
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 800;
  color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 6px;
}

.nav-logo span { color: var(--gold); }

.nav-right {
  display: flex; align-items: center; gap: 4px;
}

.nav-icon-btn {
  background: transparent; color: var(--white);
  border: none; border-radius: 8px;
  padding: 9px 14px; font-size: 0.88rem; font-weight: 600;
  cursor: pointer; display: flex; align-items: center; gap: 6px;
  transition: background 0.2s; font-family: 'Inter', sans-serif;
  text-decoration: none; white-space: nowrap;
}

.nav-icon-btn:hover { background: rgba(255,255,255,0.12); }

.cart-count {
  background: var(--gold); color: var(--charcoal);
  border-radius: 50%; width: 20px; height: 20px;
  font-size: 0.72rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* Mobile Dropdown Menu */
.mobile-menu {
  position: fixed; top: 68px; left: 0; right: 0; z-index: 99;
  background: rgba(15,42,28,0.99);
  backdrop-filter: blur(16px);
  padding: 8px 0 24px;
  display: none; flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  transform: translateY(-8px);
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0;
}

.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 1rem; font-weight: 500;
  padding: 15px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s, background 0.2s, padding-left 0.2s;
  display: flex; align-items: center; gap: 12px;
}

.mobile-menu a:hover {
  color: var(--gold);
  background: rgba(255,255,255,0.04);
  padding-left: 36px;
}

.mobile-menu a:last-child { border-bottom: none; }

/* ══════════════════════
   HERO
══════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0A1F14 0%, #1B4332 50%, #2D6A4F 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 68px;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 55% at 75% 45%, rgba(212,134,11,0.1) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 15% 85%, rgba(245,200,66,0.06) 0%, transparent 60%);
}

.hero::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 64px;
  background: var(--cream);
  clip-path: polygon(
    0 100%, 100% 100%, 100% 40%,
    98% 55%, 95% 32%, 91% 50%, 88% 26%, 84% 48%,
    80% 18%, 76% 42%, 72% 16%, 68% 36%, 64% 12%,
    60% 34%, 56% 10%, 52% 30%, 48% 8%, 44% 28%,
    40% 6%, 36% 26%, 32% 4%, 28% 22%, 24% 6%,
    20% 26%, 16% 4%, 12% 20%, 8% 2%, 4% 18%, 0 6%
  );
}

.hero-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 80px 32px 130px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,200,66,0.12);
  border: 1px solid rgba(245,200,66,0.28);
  border-radius: 100px; padding: 6px 18px;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800; line-height: 1.12;
  color: var(--white); margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal; color: var(--gold); display: block;
}

.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.72);
  max-width: 460px; margin-bottom: 36px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  background: var(--amber); color: var(--white);
  padding: 15px 30px; border-radius: 10px;
  font-size: 0.98rem; font-weight: 700;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  border: none; cursor: pointer; font-family: 'Inter', sans-serif;
  transition: all 0.22s;
  box-shadow: 0 4px 18px rgba(212,134,11,0.4);
}

.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 26px rgba(212,134,11,0.55);
}

.btn-outline {
  background: transparent; color: var(--white);
  padding: 15px 28px; border-radius: 10px;
  font-size: 0.98rem; font-weight: 600;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.32);
  cursor: pointer; font-family: 'Inter', sans-serif;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

.hero-stats {
  display: flex; gap: 36px; margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700; color: var(--gold);
}

.hero-stat-label {
  font-size: 0.76rem; color: rgba(255,255,255,0.55); font-weight: 500;
}

.hero-visual {
  display: flex; justify-content: center; align-items: center;
}

.hero-img-frame {
  width: 100%; max-width: 400px;
  aspect-ratio: 1;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: linear-gradient(145deg, rgba(212,134,11,0.25), rgba(27,67,50,0.5));
  display: flex; align-items: center; justify-content: center;
  font-size: 7.5rem;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  overflow: hidden;
}

.hero-img-frame::before {
  content: '';
  position: absolute; inset: -20px;
  background: radial-gradient(circle, rgba(212,134,11,0.18), transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.06); }
}

/* ══════════════════════
   TRUST STRIP
══════════════════════ */
.trust-section {
  background: var(--white);
  padding: 56px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.trust-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.trust-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 26px 16px; border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid rgba(27,67,50,0.08);
  transition: transform 0.22s, box-shadow 0.22s;
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.trust-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 14px;
}

.trust-title {
  font-weight: 700; font-size: 0.9rem; color: var(--charcoal); margin-bottom: 5px;
}

.trust-desc { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }

/* ══════════════════════
   SHARED SECTION STYLES
══════════════════════ */
.section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 48px; }

.section-eyebrow {
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: 10px; display: block;
}

.section-title {
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  font-weight: 700; color: var(--charcoal); margin-bottom: 12px;
}

.section-subtitle {
  font-size: 0.98rem; color: var(--muted);
  max-width: 520px; margin: 0 auto;
}

/* ══════════════════════
   CATEGORIES
══════════════════════ */
.categories-section { background: var(--cream); }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.cat-card {
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden; cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s, box-shadow 0.28s;
  border: 1px solid rgba(0,0,0,0.05);
}

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.cat-img {
  height: 120px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--green-pale), #d9f0e3);
}

.cat-info { padding: 14px 16px; }

.cat-name { font-weight: 700; font-size: 0.88rem; color: var(--charcoal); margin-bottom: 3px; }

.cat-sub { font-size: 0.74rem; color: var(--muted); }

/* ══════════════════════
   PRODUCTS
══════════════════════ */
.products-section { background: var(--white); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

.product-card {
  border-radius: var(--radius-lg); background: var(--cream);
  border: 1px solid rgba(0,0,0,0.07);
  overflow: hidden; transition: transform 0.28s, box-shadow 0.28s;
  display: flex; flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-img {
  height: 190px;
  background: linear-gradient(135deg, #ddf0e4, #c8e6d0);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; position: relative;
}

.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--green); color: var(--white);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 4px 10px; border-radius: 100px;
  font-family: 'Inter', sans-serif;
}

.product-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }

.product-name { font-weight: 700; font-size: 0.98rem; color: var(--charcoal); margin-bottom: 3px; }

.product-weight { font-size: 0.78rem; color: var(--muted); margin-bottom: 12px; }

.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem; font-weight: 700; color: var(--green); margin-bottom: 16px;
}

.product-footer { margin-top: auto; display: flex; flex-direction: column; gap: 10px; }

.qty-control {
  display: flex; align-items: center;
  border: 1.5px solid rgba(0,0,0,0.12); border-radius: 8px;
  overflow: hidden; width: fit-content;
}

.qty-btn {
  width: 36px; height: 36px;
  background: var(--cream-dark); border: none;
  font-size: 1.1rem; cursor: pointer; font-weight: 700;
  transition: background 0.15s;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
}

.qty-btn:hover { background: var(--green-pale); }

.qty-num {
  width: 40px; text-align: center; font-weight: 700;
  font-size: 0.95rem; border: none; background: transparent;
  font-family: 'Inter', sans-serif; color: var(--charcoal);
}

.add-cart-btn {
  background: var(--green); color: var(--white); border: none;
  padding: 12px; border-radius: 8px; font-weight: 700;
  font-size: 0.88rem; cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s, transform 0.15s;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}

.add-cart-btn:hover { background: var(--green-light); transform: translateY(-1px); }

/* ══════════════════════
   WHY US
══════════════════════ */
.why-section { background: var(--green); }

.why-section .section-eyebrow { color: var(--gold); }
.why-section .section-title   { color: var(--white); }
.why-section .section-subtitle{ color: rgba(255,255,255,0.65); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--radius-lg); padding: 28px;
  transition: background 0.2s, transform 0.2s;
}

.why-card:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-3px);
}

.why-icon { font-size: 2rem; margin-bottom: 14px; display: block; }

.why-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem; font-weight: 700; color: var(--white); margin-bottom: 8px;
}

.why-desc { font-size: 0.86rem; color: rgba(255,255,255,0.63); line-height: 1.65; }

/* ══════════════════════
   TESTIMONIALS
══════════════════════ */
.testimonials-section { background: var(--cream); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg); padding: 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex; flex-direction: column;
  transition: transform 0.22s, box-shadow 0.22s;
}

.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }

.testi-text {
  font-size: 0.9rem; color: var(--mid); line-height: 1.65;
  margin-bottom: 20px; font-style: italic; flex: 1;
}

.testi-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }

.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800; color: var(--green);
  flex-shrink: 0;
}

.testi-name { font-weight: 700; font-size: 0.88rem; color: var(--charcoal); }
.testi-loc  { font-size: 0.75rem; color: var(--muted); }

/* ══════════════════════
   WHATSAPP
══════════════════════ */
.wa-section {
  background: #075E54;
  padding: 64px 24px; text-align: center;
}

.wa-inner { max-width: 580px; margin: 0 auto; }

.wa-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  color: var(--white); margin-bottom: 12px;
}

.wa-section p {
  color: rgba(255,255,255,0.72); margin-bottom: 28px; font-size: 1rem;
}

.wa-btn {
  background: #25D366; color: var(--white);
  padding: 16px 36px; border-radius: 12px; border: none;
  font-size: 1.02rem; font-weight: 700; cursor: pointer;
  font-family: 'Inter', sans-serif;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 4px 22px rgba(37,211,102,0.42);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(37,211,102,0.58);
}

/* ══════════════════════
   FOOTER
══════════════════════ */
footer { background: var(--charcoal); padding: 64px 24px 32px; }

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 800; color: var(--white); margin-bottom: 12px;
}

.footer-brand-name span { color: var(--gold); }

.footer-desc {
  font-size: 0.84rem; color: rgba(255,255,255,0.48);
  line-height: 1.7; max-width: 260px;
}

.footer-heading {
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.09em;
  text-transform: uppercase; color: rgba(255,255,255,0.38);
  margin-bottom: 16px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  color: rgba(255,255,255,0.58); text-decoration: none;
  font-size: 0.86rem; transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}

.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.32); }

/* ══════════════════════
   CART DRAWER
══════════════════════ */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.52);
  z-index: 200; opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}

.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 400px; max-width: 96vw;
  background: var(--white); z-index: 201;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
  box-shadow: -6px 0 40px rgba(0,0,0,0.14);
}

.cart-drawer.open { transform: translateX(0); }

.cart-header {
  padding: 22px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex; align-items: center; justify-content: space-between;
}

.cart-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700;
}

.close-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--cream); border: none;
  font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}

.close-btn:hover { background: var(--cream-dark); }

.cart-items {
  flex: 1; overflow-y: auto; padding: 18px;
  display: flex; flex-direction: column; gap: 12px;
}

.cart-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px; background: var(--cream); border-radius: var(--radius);
}

.cart-item-icon {
  font-size: 1.8rem; width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.cart-item-name { font-weight: 600; font-size: 0.88rem; margin-bottom: 3px; }

.cart-item-price { font-size: 0.85rem; color: var(--green); font-weight: 700; }

.cart-item-remove {
  margin-left: auto; background: none; border: none;
  color: var(--muted); cursor: pointer; font-size: 0.78rem;
  padding: 4px; transition: color 0.2s; font-family: 'Inter', sans-serif;
  flex-shrink: 0;
}

.cart-item-remove:hover { color: var(--red); }

.cart-footer { padding: 18px 22px; border-top: 1px solid rgba(0,0,0,0.08); }

.cart-fee-row {
  display: flex; justify-content: space-between;
  font-size: 0.87rem; color: var(--mid); padding: 6px 0;
}

.cart-fee-row.locked { opacity: 0.7; }

.cart-fee-row.locked span:last-child::after { content: ' 🔒'; font-size: 0.68rem; }

.cart-total {
  display: flex; justify-content: space-between;
  font-size: 1.08rem; font-weight: 800; color: var(--charcoal);
  padding: 12px 0 16px;
  border-top: 1.5px solid rgba(0,0,0,0.1); margin-top: 4px;
}

.checkout-btn {
  width: 100%; background: var(--green); color: var(--white);
  border: none; padding: 15px; border-radius: 10px;
  font-size: 0.98rem; font-weight: 700; cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}

.checkout-btn:hover { background: var(--green-light); }

.empty-cart { text-align: center; padding: 60px 20px; color: var(--muted); }
.empty-cart .empty-icon { font-size: 3rem; margin-bottom: 12px; }
.empty-cart p { font-size: 0.9rem; line-height: 1.6; }

/* ══════════════════════
   CHECKOUT MODAL
══════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.62);
  z-index: 300; display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}

.modal-overlay.open { display: flex; }

.modal {
  background: var(--white); border-radius: var(--radius-lg);
  max-width: 520px; width: 100%;
  max-height: 92vh; overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.step-progress {
  display: flex; gap: 6px;
  padding: 18px 24px 0;
}

.step-dot {
  height: 4px; border-radius: 2px;
  background: rgba(0,0,0,0.1); flex: 1;
  transition: background 0.3s;
}

.step-dot.active { background: var(--green); }
.step-dot.done   { background: var(--amber); }

.modal-header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex; align-items: center; gap: 14px;
}

.modal-step-badge {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--green); color: var(--white);
  font-weight: 700; font-size: 0.88rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
}

.modal-subtitle { font-size: 0.8rem; color: var(--muted); margin-top: 2px; }

.modal-body { padding: 22px 24px; }

.form-group { margin-bottom: 14px; }

.form-label {
  display: block; font-size: 0.8rem; font-weight: 600;
  color: var(--mid); margin-bottom: 5px; letter-spacing: 0.02em;
}

.form-input {
  width: 100%; padding: 11px 13px; border-radius: 8px;
  border: 1.5px solid rgba(0,0,0,0.13);
  font-size: 0.93rem; font-family: 'Inter', sans-serif;
  background: var(--cream); transition: border-color 0.2s, background 0.2s;
  color: var(--charcoal);
}

.form-input:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
}

.bank-details-box {
  background: var(--green-pale);
  border: 1.5px solid rgba(27,67,50,0.18);
  border-radius: var(--radius); padding: 18px; margin: 14px 0;
}

.bank-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid rgba(27,67,50,0.08);
  font-size: 0.88rem;
}

.bank-row:last-child { border-bottom: none; padding-bottom: 0; }

.bank-label { color: var(--muted); font-size: 0.8rem; }

.bank-value { font-weight: 700; color: var(--charcoal); }

.bank-highlight { color: var(--green); font-size: 1.05rem; }

.instructions-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
  margin: 14px 0;
}

.instructions-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.88rem; color: var(--mid); line-height: 1.55;
}

.instr-num {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--green); color: var(--white);
  font-size: 0.72rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}

.modal-footer {
  padding: 18px 24px;
  border-top: 1px solid rgba(0,0,0,0.07);
  display: flex; gap: 10px;
}

.btn-back {
  background: var(--cream-dark); color: var(--mid); border: none;
  padding: 13px 18px; border-radius: 8px; font-weight: 600;
  cursor: pointer; font-family: 'Inter', sans-serif; font-size: 0.88rem;
  transition: background 0.15s; white-space: nowrap;
}

.btn-back:hover { background: var(--cream); }

.btn-next {
  flex: 1; background: var(--green); color: var(--white);
  border: none; padding: 13px; border-radius: 8px; font-weight: 700;
  cursor: pointer; font-family: 'Inter', sans-serif; font-size: 0.92rem;
  transition: background 0.2s;
}

.btn-next:hover { background: var(--green-light); }

.btn-wa {
  flex: 1; background: #25D366; color: var(--white); border: none;
  padding: 13px; border-radius: 8px; font-weight: 700;
  cursor: pointer; font-family: 'Inter', sans-serif; font-size: 0.92rem;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background 0.2s; text-decoration: none;
}

.btn-wa:hover { background: #20C45A; }

.order-confirm { text-align: center; padding: 16px 0; }
.order-confirm .conf-icon { font-size: 3.2rem; margin-bottom: 14px; }
.order-confirm h3 {
  font-size: 1.35rem; font-weight: 700;
  margin-bottom: 8px; color: var(--green);
}
.order-confirm p { color: var(--muted); font-size: 0.88rem; }

/* ══════════════════════
   STICKY WA BUTTON
══════════════════════ */
.sticky-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 150;
  background: #25D366; color: var(--white);
  width: 56px; height: 56px; border-radius: 50%; border: none;
  font-size: 1.5rem; cursor: pointer;
  box-shadow: 0 4px 18px rgba(37,211,102,0.52);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex; align-items: center; justify-content: center;
}

.sticky-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 26px rgba(37,211,102,0.65);
}

/* ══════════════════════
   TOAST
══════════════════════ */
.toast {
  position: fixed; bottom: 90px; left: 50%;
  transform: translateX(-50%) translateY(14px);
  background: var(--charcoal); color: var(--white);
  padding: 11px 24px; border-radius: 100px;
  font-size: 0.86rem; font-weight: 600;
  z-index: 400; opacity: 0;
  transition: opacity 0.28s, transform 0.28s;
  pointer-events: none; white-space: nowrap;
  max-width: 90vw; text-align: center;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ══════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
══════════════════════ */
@media (max-width: 1024px) {
  .trust-grid       { grid-template-columns: repeat(3, 1fr); }
  .cat-grid         { grid-template-columns: repeat(3, 1fr); }
  .why-grid         { grid-template-columns: repeat(2, 1fr); }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ══════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
══════════════════════ */
@media (max-width: 768px) {
  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 56px 20px 110px;
    gap: 32px;
  }

  .hero h1 em { display: inline; }

  .hero-ctas    { justify-content: center; }
  .hero-stats   { justify-content: center; gap: 24px; }
  .hero-visual  { display: none; }

  .hero-sub {
    margin-left: auto; margin-right: auto;
  }

  /* Trust */
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .trust-card { padding: 18px 12px; }

  /* Categories */
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* Products */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-desc { max-width: 100%; }

  /* Nav logo size */
  .nav-logo { font-size: 1.25rem; }
  .nav-icon-btn { padding: 8px 10px; font-size: 0.82rem; }

  /* Section padding */
  .section { padding: 56px 18px; }
  .section-title { font-size: 1.6rem; }

  /* Modal */
  .modal { max-height: 95vh; border-radius: var(--radius) var(--radius) 0 0; }
  .modal-overlay { align-items: flex-end; padding: 0; }
}

/* ══════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
══════════════════════ */
@media (max-width: 480px) {
  .hero h1       { font-size: 1.85rem; }
  .hero-sub      { font-size: 0.92rem; }
  .hero-stat-num { font-size: 1.45rem; }

  .products-grid { grid-template-columns: 1fr; }

  .trust-grid { grid-template-columns: 1fr 1fr; }

  .cat-grid { grid-template-columns: repeat(2, 1fr); }

  .btn-primary,
  .btn-outline   { padding: 13px 22px; font-size: 0.92rem; }

  .nav-icon-btn  { padding: 7px 8px; font-size: 0.78rem; gap: 4px; }
  .nav-logo      { font-size: 1.1rem; }

  .sticky-wa     { bottom: 16px; right: 16px; width: 50px; height: 50px; }
}
