/* ===== RESET & ROOT ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0a1f44;
  --navy-dark: #071530;
  --gold: #c9a84c;
  --gold-light: #e8c96d;
  --white: #ffffff;
  --light-bg: #f5f7fa;
  --text: #333333;
  --text-light: #666666;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --navbar-h: 90px;
  --navbar-h-mobile: 68px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: var(--text); background: var(--white); }
h1,h2,h3,h4 { font-family: 'Montserrat', sans-serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.btn-gold { background: var(--gold); color: var(--navy-dark); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.bg-navy { background: var(--navy); }
.center-btn { text-align: center; margin-top: 48px; }
.section-tag { font-size: 0.85rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 12px; }
.section-tag.light { color: var(--gold-light); }
h2 { font-size: 2.2rem; margin-bottom: 16px; color: var(--navy); }
h2.light { color: var(--white); }
.section-sub { color: var(--text-light); font-size: 1.05rem; margin-bottom: 48px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  height: var(--navbar-h);
}
/* Push all fixed-navbar pages down so content never starts underneath it.
   Individual hero/page-hero sections already carry their own large
   top padding, but plain content pages (or any page missing a hero)
   need this fallback spacer. */
body { padding-top: 0; }
.navbar + * { scroll-margin-top: var(--navbar-h); }

.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--navbar-h);
}
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo img { height: 72px; width: 72px; object-fit: contain; border-radius: 50%; }
.nav-logo span { font-family: 'Montserrat', sans-serif; font-size: 1.2rem; color: var(--navy); letter-spacing: 0.5px; white-space: nowrap; }
.nav-logo strong { color: var(--gold); }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--navy); font-family: 'Montserrat', sans-serif; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.5px; transition: color 0.3s; padding: 4px 0; border-bottom: 2px solid transparent; }
.nav-links a:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* Cart icon + hamburger grouped together on the right so they never
   drift apart or overlap on narrow screens (was previously spread
   across the bar by justify-content:space-between with only 3 items
   once .nav-links collapsed on mobile). */
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-cart a { color: var(--navy); font-size: 1.2rem; position: relative; display: inline-flex; }
.cart-count {
  position: absolute; top: -8px; right: -10px;
  background: var(--gold); color: var(--navy-dark);
  font-size: 0.7rem; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; margin: -8px; }
.hamburger span { width: 25px; height: 2px; background: var(--navy); transition: 0.3s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1a3a6e 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; text-align: center; padding: 140px 24px 80px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: url('/images/Block making machine.png') center/cover no-repeat;
  opacity: 0.08;
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-tag { color: var(--gold); font-size: 0.85rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px; }
.hero-content h1 { font-size: 3.5rem; font-weight: 900; color: var(--white); line-height: 1.15; margin-bottom: 24px; }
.hero-content h1 span { color: var(--gold); }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.8); margin-bottom: 40px; line-height: 1.7; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--gold);
  display: flex; justify-content: space-around; flex-wrap: wrap;
  padding: 40px 24px;
}
.stat { text-align: center; padding: 12px 24px; }
.stat h3 { font-size: 2.5rem; font-weight: 900; color: var(--navy-dark); }
.stat p { font-size: 0.9rem; font-weight: 600; color: var(--navy); letter-spacing: 1px; text-transform: uppercase; }

/* ===== ABOUT SNIPPET ===== */
.about-snippet { background: var(--light-bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-text h2 { color: var(--navy); }
.about-text p { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.about-image img { border-radius: 8px; box-shadow: var(--shadow); width: 100%; height: 400px; object-fit: cover; }

/* ===== PRODUCTS GRID ===== */
.featured { background: var(--white); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px; }
.product-card {
  background: var(--white); border-radius: 8px;
  box-shadow: var(--shadow); overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #eee;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.15); }
.product-card img { width: 100%; height: 220px; object-fit: contain; padding: 14px; background: var(--light-bg); }
.product-info { padding: 20px; }
.product-info h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.product-info .price { color: var(--gold); font-weight: 700; font-size: 1.1rem; margin-bottom: 16px; }
.product-info .btn { width: 100%; text-align: center; padding: 10px; font-size: 0.85rem; }

/* ===== SERVICES SNIPPET ===== */
.services-snippet { padding: 80px 0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 28px; }
.service-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px; padding: 36px 28px; text-align: center;
  transition: background 0.3s;
}
.service-card:hover { background: rgba(201,168,76,0.1); }
.service-card i { font-size: 2.5rem; color: var(--gold); margin-bottom: 20px; }
.service-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 12px; }
.service-card p { color: rgba(255,255,255,0.7); line-height: 1.7; font-size: 0.95rem; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, #a8873a 100%);
  padding: 80px 24px; text-align: center;
}
.cta-banner h2 { color: var(--navy-dark); font-size: 2rem; margin-bottom: 16px; }
.cta-banner p { color: var(--navy); margin-bottom: 32px; font-size: 1.05rem; }
.cta-banner .btn-gold { background: var(--navy); color: var(--white); }
.cta-banner .btn-gold:hover { background: var(--navy-dark); }

/* ===== FOOTER ===== */
.footer { background: var(--white); border-top: 3px solid var(--gold); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand img { height: 72px; width: 72px; object-fit: contain; border-radius: 50%; margin-bottom: 16px; }
.footer-brand p { color: var(--text-light); line-height: 1.7; font-size: 0.9rem; }
.footer-links h4, .footer-contact h4 { color: var(--navy); font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links a { color: var(--text-light); font-size: 0.9rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.footer-contact i { color: var(--gold); }
.footer-bottom { border-top: 1px solid #eee; padding: 20px 24px; text-align: center; }
.footer-bottom p { color: var(--text-light); font-size: 0.85rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  :root { --navbar-h: var(--navbar-h-mobile); }
  .nav-container { height: var(--navbar-h-mobile); padding: 0 16px; }
  .nav-logo img { height: 44px; width: 44px; }
  .nav-logo span { font-size: 0.95rem; }
  .nav-right { gap: 14px; }
  .nav-links {
    display: none; flex-direction: column;
    position: fixed; top: var(--navbar-h-mobile); left: 0; right: 0;
    background: var(--white); padding: 20px 24px; gap: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    max-height: calc(100vh - var(--navbar-h-mobile));
    overflow-y: auto;
    z-index: 999;
  }
  .nav-links.active { display: flex; }
  .hamburger { display: flex; }
  .hero-content h1 { font-size: 2.2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats-strip { gap: 16px; }
}
/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 160px 24px 80px;
  text-align: center;
}
.page-hero-content { max-width: 700px; margin: 0 auto; }
.page-hero-content h1 { font-size: 2.8rem; font-weight: 900; color: var(--white); margin-bottom: 16px; }
.page-hero-content p { color: rgba(255,255,255,0.8); font-size: 1.1rem; line-height: 1.7; }

/* ===== BG LIGHT ===== */
.bg-light { background: var(--light-bg); }

/* ===== VALUES GRID ===== */
.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 28px; margin-top: 40px; }
.value-card { background: var(--white); border-radius: 8px; padding: 36px 28px; text-align: center; box-shadow: var(--shadow); border-top: 4px solid var(--gold); }
.value-card i { font-size: 2.5rem; color: var(--gold); margin-bottom: 16px; }
.value-card h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 12px; }
.value-card p { color: var(--text-light); line-height: 1.7; font-size: 0.95rem; }

/* ===== WHY GRID ===== */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; margin-top: 40px; }
.why-item { display: flex; gap: 20px; align-items: flex-start; padding: 24px; background: var(--light-bg); border-radius: 8px; }
.why-item i { font-size: 1.8rem; color: var(--gold); margin-top: 4px; flex-shrink: 0; }
.why-item h4 { color: var(--navy); margin-bottom: 8px; font-size: 1rem; }
.why-item p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

/* ===== SERVICES FULL GRID ===== */
.services-full-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; margin-top: 40px; }
.service-full-card { display: flex; gap: 20px; background: var(--white); border-radius: 8px; padding: 28px; box-shadow: var(--shadow); border-left: 4px solid var(--gold); align-items: flex-start; }
.service-icon { font-size: 2rem; color: var(--gold); flex-shrink: 0; margin-top: 4px; }
.service-body h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.1rem; }
.service-body p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; margin-bottom: 12px; }
.service-list { list-style: none; }
.service-list li { color: var(--text-light); font-size: 0.88rem; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.service-list i { color: var(--gold); font-size: 0.75rem; }

/* ===== PROCESS GRID ===== */
.process-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 28px; margin-top: 40px; }
.process-step { text-align: center; padding: 36px 24px; background: var(--white); border-radius: 8px; box-shadow: var(--shadow); }
.step-num { font-size: 3rem; font-weight: 900; color: var(--gold); font-family: 'Montserrat', sans-serif; margin-bottom: 12px; opacity: 0.6; }
.process-step h4 { color: var(--navy); margin-bottom: 10px; font-size: 1.1rem; }
.process-step p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-item { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.contact-icon { width: 44px; height: 44px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--navy-dark); font-size: 1rem; flex-shrink: 0; }
.contact-item h4 { color: var(--navy); margin-bottom: 4px; font-size: 0.95rem; }
.contact-item p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }
.contact-form-box { background: var(--light-bg); padding: 40px; border-radius: 8px; }
.contact-form-box h2 { margin-bottom: 8px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; font-family: 'Montserrat', sans-serif; }
.form-group input, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid #ddd; border-radius: 4px; font-size: 0.95rem; font-family: 'Open Sans', sans-serif; transition: border 0.3s; outline: none; background: var(--white); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; }

/* ===== MAP ===== */
.map-section { border-top: 3px solid var(--gold); }

/* ===== SHOP FILTER ===== */
.shop-filter-bar { background: var(--light-bg); padding: 24px 0; border-bottom: 1px solid #eee; }
.shop-filter-bar .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.filter-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-btn { padding: 8px 20px; border: 2px solid var(--navy); background: transparent; color: var(--navy); border-radius: 4px; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.85rem; cursor: pointer; transition: all 0.3s; }
.filter-btn.active, .filter-btn:hover { background: var(--navy); color: var(--white); }
.search-box { display: flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid #ddd; border-radius: 4px; padding: 8px 16px; }
.search-box i { color: var(--text-light); }
.search-box input { border: none; outline: none; font-size: 0.95rem; font-family: 'Open Sans', sans-serif; width: 220px; }
.product-cat { font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 6px; }

/* ===== CART SIDEBAR ===== */
.cart-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1100; }
.cart-overlay.open { display: block; }
.cart-sidebar { position: fixed; top: 0; right: -420px; width: 400px; max-width: 95vw; height: 100vh; background: var(--white); z-index: 1200; transition: right 0.3s ease; display: flex; flex-direction: column; box-shadow: -4px 0 20px rgba(0,0,0,0.15); }
.cart-sidebar.open { right: 0; }
.cart-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 2px solid var(--gold); }
.cart-header h3 { color: var(--navy); font-size: 1.1rem; }
.cart-header button { background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--text-light); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-item { display: flex; gap: 14px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #eee; }
.cart-item img { width: 70px; height: 70px; object-fit: contain; background: var(--light-bg); border-radius: 4px; padding: 4px; }
.cart-item-info h4 { font-size: 0.9rem; color: var(--navy); margin-bottom: 4px; }
.cart-item-info p { color: var(--gold); font-weight: 700; font-size: 0.9rem; margin-bottom: 8px; }
.qty-controls { display: flex; align-items: center; gap: 8px; }
.qty-controls button { width: 32px; height: 32px; border: 1px solid #ddd; background: var(--white); border-radius: 4px; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; }
.qty-controls span { font-weight: 700; min-width: 20px; text-align: center; }
.remove-btn { color: #e74c3c !important; border-color: #e74c3c !important; }
.cart-footer { padding: 20px 24px; border-top: 1px solid #eee; padding-bottom: max(20px, env(safe-area-inset-bottom)); }
.cart-total { display: flex; justify-content: space-between; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--navy); }

/* ===== CART TOAST ===== */
.cart-toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); background: var(--navy); color: var(--white); padding: 12px 24px; border-radius: 4px; font-size: 0.9rem; z-index: 2000; display: flex; align-items: center; gap: 10px; box-shadow: 0 4px 16px rgba(0,0,0,0.2); animation: fadeInUp 0.3s ease; max-width: calc(100vw - 32px); text-align: center; }
.cart-toast i { color: var(--gold); }
@keyframes fadeInUp { from { opacity:0; transform: translateX(-50%) translateY(20px); } to { opacity:1; transform: translateX(-50%) translateY(0); } }

/* ===== FOOTER SOCIALS ===== */
.footer-socials { display: flex; gap: 12px; margin-top: 16px; }
.footer-socials a { width: 36px; height: 36px; background: var(--gold); color: var(--navy-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; transition: background 0.3s; }
.footer-socials a:hover { background: var(--navy); color: var(--white); }

/* ===== BTN OUTLINE DARK ===== */
.btn-outline-dark { background: transparent; color: var(--navy-dark); border: 2px solid var(--navy-dark); }
.btn-outline-dark:hover { background: var(--navy-dark); color: var(--white); }

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .page-hero { padding: calc(var(--navbar-h-mobile) + 48px) 20px 56px; }
  .page-hero-content h1 { font-size: 2rem; }

  /* Shop filter bar: stack and go full-width so the search box and
     filter pills never collide with each other or the fixed navbar. */
  .shop-filter-bar { padding: 16px 0; }
  .shop-filter-bar .container { flex-direction: column; align-items: stretch; gap: 12px; }
  .filter-btns { justify-content: center; }
  .filter-btn { flex: 1 1 auto; padding: 10px 14px; font-size: 0.8rem; text-align: center; }
  .search-box { width: 100%; }
  .search-box input { width: 100%; }

  /* Cart sidebar: full-width on phones, header respects navbar height
     so its close (X) button is never covered by the fixed navbar. */
  .cart-sidebar { width: 100vw; max-width: 100vw; right: -100vw; }
  .cart-sidebar.open { right: 0; }
  .cart-header { padding-top: max(20px, env(safe-area-inset-top)); }

  /* Product modal: keep clear of the fixed navbar and stack the
     Add to Cart / WhatsApp buttons full-width and tap-friendly. */
  .modal-overlay { padding-top: calc(var(--navbar-h-mobile) + 12px); align-items: flex-start; }
  .modal-box { max-height: calc(100vh - var(--navbar-h-mobile) - 24px); }
  .modal-actions { flex-direction: column; }
  .modal-cart-btn, .modal-wa-btn { padding: 14px; font-size: 0.95rem; }
}

@media (max-width: 420px) {
  /* Was previously "display: none" here, which hid the brand name
     entirely on small phones — it now shrinks instead, so the header
     always shows the logo + "MWAMBA Engineering" text, matching desktop. */
  .nav-logo img { height: 36px; width: 36px; }
  .nav-logo span { font-size: 0.72rem; letter-spacing: 0.2px; }
  .nav-container { padding: 0 12px; }
  .nav-right { gap: 8px; }
}

/* =====================================================
   NEPTUNE-INSPIRED HOMEPAGE ADD-ONS
   (promo banner tiles, best-seller badges, whole-image
   product thumbnails on belts + focus grid)
   ===================================================== */

/* ---- Promo Banner Row (mirrors Neptune's 2-tile home banners) ---- */
.promo-banner-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 48px 0 8px;
}
.promo-banner-tile {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 260px;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.promo-banner-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.promo-banner-tile:hover img { transform: scale(1.06); }
.promo-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(7,21,48,0.82) 0%, rgba(7,21,48,0.35) 45%, rgba(7,21,48,0.05) 75%);
  display: flex; flex-direction: column; justify-content: center;
  padding: 36px;
}
.promo-banner-overlay span.tag {
  color: var(--gold-light);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 8px;
}
.promo-banner-overlay h3 {
  color: var(--white); font-size: 1.5rem; font-weight: 900; max-width: 260px; line-height: 1.25; margin-bottom: 14px;
}
.promo-banner-overlay .btn { align-self: flex-start; padding: 10px 22px; font-size: 0.8rem; }

@media (max-width: 768px) {
  .promo-banner-row { grid-template-columns: 1fr; }
  .promo-banner-tile { height: 220px; }
}

/* ---- Secondary Showcase strip (Plastic Cabro Mould range, 3-tile) ---- */
.secondary-showcase { padding: 8px 0 64px; }
.secondary-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.secondary-tile {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 190px;
  cursor: pointer;
}
.secondary-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.secondary-tile:hover img { transform: scale(1.08); }

@media (max-width: 768px) {
  .secondary-showcase-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .secondary-showcase-grid { grid-template-columns: 1fr; }
}

/* ===== FIXED NAVBAR CLEARANCE FOR NEW HOMEPAGE HERO ===== */
/* .hero-section sits directly after the navbar on index.html with no
   built-in top padding (unlike .page-hero on inner pages), so it would
   render hidden under the fixed navbar without this offset. */
.hero-section {
  margin-top: calc(var(--navbar-h) + 24px);
}
@media (max-width: 768px) {
  .hero-section {
    margin-top: calc(var(--navbar-h-mobile) + 20px);
  }
}