/* ============================================================
   PEMBE FLOUR MILLERS — style.css
   Clean version — no duplicates
   ============================================================ */

/* ---- 1. VARIABLES & RESET ---- */
:root {
  --gold:        #D4A017;
  --gold-light:  #F5D66E;
  --green:       #3B6D11;
  --green-mid:   #639922;
  --green-light: #EAF3DE;
  --brown:       #6B3F1A;
  --cream:       #FFFDF5;
  --warm-gray:   #F5F0E8;
  --text:        #2C2416;
  --text-muted:  #7A6A50;
  --text-hint:   #B5A285;
  --border:      #E8DFC8;
  --radius:      12px;
  --radius-sm:   8px;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }


/* ---- 2. HEADER ---- */
.site-header {
  background-color: var(--text);
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

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

.logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--gold);
}

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-size: 18px; font-weight: 700; color: #fff; }
.logo-tagline { font-size: 10px; color: var(--gold-light); letter-spacing: 2px; text-transform: uppercase; }

.nav-links { display: flex; gap: 24px; }

.nav-links a {
  color: #ccc;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover { color: var(--gold-light); }
.nav-links a.active { color: var(--gold-light); border-bottom-color: var(--gold); }

.cart-btn {
  background-color: var(--gold);
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cart-btn:hover { background-color: var(--gold-light); }

.cart-badge {
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}


/* ---- 3. HAMBURGER BUTTON (hidden on desktop) ---- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animate 3 lines into X when open */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ---- 4. BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background-color: var(--gold);
  color: var(--text);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.2s, transform 0.2s;
}
.btn-primary:hover { background-color: var(--gold-light); transform: translateY(-1px); }
.btn-primary.full-width { width: 100%; text-align: center; }

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.4);
  cursor: pointer;
  font-size: 14px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }

.btn-small {
  display: inline-block;
  background-color: var(--text);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 12px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}
.btn-small:hover { background-color: var(--green); color: #fff; }

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px;
  background-color: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color 0.2s;
  margin-top: 8px;
  text-decoration: none;
  text-align: center;
}
.whatsapp-btn:hover { background-color: #1ebe5d; }


/* ---- 5. SPLASH SCREEN ---- */
#splash-screen {
  position: fixed;
  inset: 0;
  background-color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#splash-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.splash-content {
  text-align: center;
  animation: splashEntrance 0.5s ease forwards;
}

@keyframes splashEntrance {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

.splash-logo { font-size: 72px; margin-bottom: 16px; }

.splash-name {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.splash-tagline {
  font-size: 14px;
  color: var(--gold-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.splash-bar {
  width: 180px;
  height: 3px;
  background-color: rgba(255,255,255,0.15);
  border-radius: 10px;
  margin: 0 auto;
  overflow: hidden;
}

.splash-fill {
  height: 100%;
  width: 0%;
  background-color: var(--gold);
  border-radius: 10px;
  animation: loadBar 1.8s ease forwards;
}

@keyframes loadBar {
  0%   { width: 0%; }
  60%  { width: 75%; }
  100% { width: 100%; }
}


/* ---- 6. HERO ---- */
.hero {
  background-color: var(--text);
  padding: 70px 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 400px;
}

.hero-content { max-width: 560px; }

.hero-badge {
  display: inline-block;
  background-color: var(--gold);
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.hero h1 { font-size: clamp(32px, 5vw, 52px); color: #fff; line-height: 1.15; margin-bottom: 14px; }
.hero h1 .highlight { color: var(--gold-light); }
.hero p { color: #ccc; font-size: 16px; margin-bottom: 28px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero image — real photo */
.hero-img {
  width: 360px;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 3px solid var(--gold);
}


/* ---- 7. FEATURES STRIP ---- */
.features {
  background-color: var(--warm-gray);
  padding: 24px 2rem;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.feature-item { display: flex; align-items: center; gap: 12px; }
.feature-icon { font-size: 24px; }
.feature-item strong { display: block; font-size: 14px; color: var(--text); }
.feature-item p { font-size: 12px; color: var(--text-muted); margin: 0; }


/* ---- 8. STATS BAR ---- */
.stats-bar {
  background-color: var(--green);
  padding: 28px 2rem;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-item { text-align: center; color: #fff; }

.stat-item strong {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.1;
}

.stat-item span {
  font-size: 13px;
  opacity: 0.85;
  margin-top: 4px;
  display: block;
}


/* ---- 9. SECTION WRAPPER ---- */
.section { padding: 50px 2rem; max-width: 1100px; margin: 0 auto; }
.section-title { font-size: 28px; color: var(--text); margin-bottom: 6px; font-weight: 700; }
.section-sub { font-size: 15px; color: var(--text-muted); margin-bottom: 32px; }
.results-count { font-size: 13px; color: var(--text-hint); margin-bottom: 20px; }
.center-btn { text-align: center; margin-top: 36px; }


/* ---- 10. PRODUCT CARDS ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.product-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44,36,22,0.12);
  border-color: var(--gold);
}

.product-img-placeholder {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
}

.product-img-placeholder.wheat { background-color: #FDF3DC; }
.product-img-placeholder.maize { background-color: #FFF8E1; }
.product-img-placeholder.feed  { background-color: #F1F8E9; }
.product-img-placeholder.bran  { background-color: #FBE9E7; }

.product-img { width: 100%; height: 180px; object-fit: cover; }

.product-info { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.product-category { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green-mid); margin-bottom: 4px; }
.product-info h3 { font-size: 16px; color: var(--text); margin-bottom: 6px; font-weight: 700; }
.product-info p { font-size: 13px; color: var(--text-muted); line-height: 1.5; flex: 1; margin-bottom: 12px; }
.product-price { font-size: 18px; font-weight: 700; color: var(--brown); display: block; margin-bottom: 12px; }
.product-badge { display: inline-block; font-size: 10px; font-weight: 700; background-color: var(--green-light); color: var(--green); padding: 3px 10px; border-radius: 20px; margin-bottom: 10px; }

.qty-row { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.qty-label { font-size: 12px; color: var(--text-muted); min-width: 30px; }
.qty-ctrl { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: 6px; overflow: hidden; }
.qty-ctrl button { background: none; border: none; padding: 4px 10px; font-size: 16px; cursor: pointer; color: var(--text-muted); transition: background-color 0.15s; }
.qty-ctrl button:hover { background-color: var(--warm-gray); }
.qty-ctrl span { font-size: 14px; font-weight: 600; min-width: 28px; text-align: center; color: var(--text); }

.size-select { flex: 1; padding: 5px 10px; border: 1.5px solid var(--border); border-radius: 6px; font-size: 12px; color: var(--text); background: #fff; cursor: pointer; }
.size-select:focus { outline: none; border-color: var(--gold); }

.add-btn { width: 100%; padding: 10px; background-color: var(--text); color: var(--gold-light); border: none; border-radius: var(--radius-sm); font-weight: 700; font-size: 13px; cursor: pointer; transition: background-color 0.2s; letter-spacing: 0.5px; }
.add-btn:hover { background-color: var(--green); color: #fff; }
.add-btn.added { background-color: var(--green); color: #fff; }


/* ---- 11. SEARCH BAR ---- */
.search-bar-section { background-color: var(--warm-gray); padding: 20px 2rem; border-bottom: 1px solid var(--border); }
.search-row { max-width: 900px; margin: 0 auto; display: flex; gap: 10px; flex-wrap: wrap; }
.search-input { flex: 1; min-width: 200px; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; background: #fff; color: var(--text); transition: border-color 0.2s; }
.search-input:focus { outline: none; border-color: var(--gold); }
.filter-select { padding: 10px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 13px; background: #fff; color: var(--text); cursor: pointer; min-width: 140px; }
.filter-select:focus { outline: none; border-color: var(--gold); }


/* ---- 12. CART SIDEBAR ---- */
.cart-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 200; }
.cart-overlay.open { display: block; }

.cart-sidebar {
  position: fixed;
  right: -400px;
  top: 0;
  bottom: 0;
  width: min(380px, 100vw);
  background: #fff;
  z-index: 201;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0,0,0,0.15);
  transition: right 0.3s ease;
}
.cart-sidebar.open { right: 0; }

.cart-head { padding: 20px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.cart-head h3 { font-size: 20px; font-weight: 700; }
.cart-close { background: none; border: none; font-size: 22px; cursor: pointer; color: var(--text-muted); padding: 4px; }
.cart-close:hover { color: var(--text); }

.cart-body { flex: 1; overflow-y: auto; padding: 16px; }
.cart-empty { text-align: center; padding: 50px 20px; color: var(--text-hint); font-size: 40px; }
.cart-empty p { font-size: 14px; margin-top: 8px; color: var(--text-muted); }

.cart-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid #f0ebe0; align-items: flex-start; }
.cart-item-icon { width: 48px; height: 48px; border-radius: 8px; background-color: var(--warm-gray); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 600; color: var(--text); }
.cart-item-size { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.cart-item-price { font-size: 14px; font-weight: 700; color: var(--brown); margin-top: 4px; }
.cart-item-remove { background: none; border: none; color: var(--text-hint); cursor: pointer; font-size: 16px; padding: 4px; transition: color 0.15s; }
.cart-item-remove:hover { color: #e24b4a; }

.cart-foot { padding: 16px; border-top: 1px solid var(--border); background-color: var(--warm-gray); }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; font-size: 16px; font-weight: 700; color: var(--text); }

.checkout-btn { width: 100%; padding: 13px; background-color: var(--green); color: #fff; border: none; border-radius: var(--radius-sm); font-weight: 700; font-size: 14px; cursor: pointer; transition: background-color 0.2s; margin-bottom: 8px; }
.checkout-btn:hover { background-color: var(--green-mid); }


/* ---- 13. PAGE HERO (inner pages) ---- */
.page-hero { background-color: var(--text); padding: 50px 2rem; text-align: center; color: #fff; }
.page-hero h1 { font-size: 36px; font-weight: 700; margin-bottom: 8px; color: var(--gold-light); }
.page-hero p { font-size: 15px; color: #ccc; }


/* ---- 14. ABOUT PAGE ---- */
.about-page { display: flex; flex-direction: column; gap: 60px; }
.about-block { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.about-block.reverse { flex-direction: row-reverse; }

.about-img-placeholder { width: 300px; height: 220px; background-color: var(--warm-gray); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 80px; flex-shrink: 0; border: 1px solid var(--border); }
.about-img { width: 300px; height: 220px; object-fit: cover; border-radius: var(--radius); }
.about-text-block { flex: 1; min-width: 260px; }
.about-text-block h2 { font-size: 26px; color: var(--text); margin-bottom: 14px; }
.about-text-block p { color: var(--text-muted); margin-bottom: 10px; line-height: 1.7; }

.values-section { margin-top: 20px; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-top: 24px; }
.value-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 20px; text-align: center; transition: transform 0.2s; }
.value-card:hover { transform: translateY(-3px); border-color: var(--gold); }
.value-card span { font-size: 32px; display: block; margin-bottom: 10px; }
.value-card h3 { font-size: 15px; margin-bottom: 6px; color: var(--text); }
.value-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }


/* ---- 15. ABOUT STRIP (Homepage) ---- */
.about-strip {
  background-color: var(--warm-gray);
  padding: 60px 2rem;
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-strip .about-text { flex: 1; min-width: 260px; }
.about-strip h2 { font-size: 28px; margin-bottom: 14px; color: var(--text); }
.about-strip p { color: var(--text-muted); margin-bottom: 20px; line-height: 1.7; }
.about-strip .btn-outline { color: var(--text); border-color: var(--text); }
.about-strip .btn-outline:hover { border-color: var(--green); color: var(--green); }

/* About strip image — real photo */
.about-strip .about-img {
  width: 320px;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 3px solid var(--gold);
}


/* ---- 16. TESTIMONIALS ---- */
.testimonials {
  background-color: var(--warm-gray);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.review-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s, border-color 0.2s;
}

.review-card:hover { border-color: var(--gold); transform: translateY(-3px); }

.stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }

.review-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--gold);
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reviewer strong { display: block; font-size: 14px; color: var(--text); }
.reviewer span { font-size: 12px; color: var(--text-hint); }


/* ---- 17. CONTACT PAGE ---- */
.contact-page { display: flex; gap: 50px; flex-wrap: wrap; align-items: flex-start; }
.contact-details { flex: 1; min-width: 260px; }
.contact-details h2 { font-size: 24px; margin-bottom: 24px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-item span { font-size: 22px; margin-top: 2px; }
.contact-item strong { display: block; font-size: 14px; color: var(--text); margin-bottom: 2px; }
.contact-item p { font-size: 13px; color: var(--text-muted); margin: 0; }

.contact-form-wrap { flex: 1; min-width: 280px; }
.contact-form-wrap h2 { font-size: 24px; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.form-group input,
.form-group textarea { padding: 10px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; color: var(--text); background: #fff; font-family: inherit; transition: border-color 0.2s; }
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); }
textarea { resize: vertical; }
.form-success { display: none; margin-top: 14px; padding: 12px 16px; background-color: var(--green-light); border: 1px solid var(--green-mid); border-radius: var(--radius-sm); color: var(--green); font-size: 14px; font-weight: 600; text-align: center; }


/* ---- 18. FOOTER ---- */
.site-footer { background-color: var(--text); color: #ccc; padding: 40px 2rem; display: flex; gap: 40px; flex-wrap: wrap; justify-content: space-between; }
.footer-col { display: flex; flex-direction: column; gap: 8px; min-width: 180px; }
.footer-logo { font-size: 18px; color: #fff; font-weight: 700; }
.footer-col strong { color: var(--gold-light); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.footer-col a { font-size: 13px; color: #999; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-col p { font-size: 13px; color: #999; line-height: 1.6; margin: 0; }
.footer-copy { background-color: #1a1208; text-align: center; padding: 14px 2rem; font-size: 12px; color: #666; }


/* ---- 19. TOAST ---- */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); background-color: var(--green); color: #fff; padding: 10px 20px; border-radius: 20px; font-size: 13px; font-weight: 600; z-index: 999; opacity: 0; transition: opacity 0.3s; pointer-events: none; white-space: nowrap; }
.toast.show { opacity: 1; }


/* ---- 20. SCROLL ANIMATIONS ---- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }


/* ---- 21. BACK TO TOP ---- */
.back-to-top {
  position: fixed;
  bottom: 70px;
  right: 24px;
  width: 44px;
  height: 44px;
  background-color: var(--gold);
  color: var(--text);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  z-index: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background-color: var(--gold-light); }


/* ---- 22. MOBILE RESPONSIVE ---- */
@media (max-width: 768px) {

  /* Show hamburger, hide desktop nav */
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background-color: var(--text);
    padding: 16px 2rem 20px;
    gap: 0;
    z-index: 99;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 15px;
  }

  .nav-links a:last-child { border-bottom: none; }

  .hero { flex-direction: column; text-align: center; padding: 40px 1rem; }
  .hero-buttons { justify-content: center; }
  .hero-img { width: 100%; height: 200px; }

  .about-strip .about-img { width: 100%; height: 200px; }

  .form-row { grid-template-columns: 1fr; }
  .about-block, .about-block.reverse { flex-direction: column; }
  .about-img-placeholder { width: 100%; }
  .contact-page { flex-direction: column; }
  .site-footer { flex-direction: column; }
  .stats-bar { gap: 30px; }
}
/* ---- CART ITEM IMAGE ---- */
.cart-item-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
/* ---- 404 PAGE ---- */
.not-found {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--text);
}

.not-found-content {
  padding: 40px 20px;
}

.not-found-emoji {
  font-size: 80px;
  margin-bottom: 16px;
}

.not-found h1 {
  font-size: 80px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.not-found h2 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 12px;
}

.not-found p {
  font-size: 15px;
  color: #ccc;
  margin-bottom: 28px;
  line-height: 1.7;
}
.product-img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background-color: #fff;
  padding: 10px;
}
/* ---- FLOATING WHATSAPP BUTTON ---- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 52px;
  height: 52px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  z-index: 500;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform 0.2s, background-color 0.2s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe5d;
}