/* ============================================================
   WAHID CASH & CARRY — style.css
   Brand Colors: Deep Red #9b1c1c | Green #1a6b2e | Black #111
   ============================================================ */

:root {
  --red:         #9b1c1c;
  --red-dark:    #7a1515;
  --red-light:   #c0392b;
  --green:       #1a6b2e;
  --green-light: #22883b;
  --black:       #111111;
  --black-soft:  #1e1e1e;
  --dark:        #222222;
  --grey:        #555555;
  --grey-light:  #888888;
  --bg-light:    #f8f5f0;
  --bg-cream:    #faf7f2;
  --white:       #ffffff;
  --border:      #e5e0d8;
  --gold:        #c9a84c;
  --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:      6px;
  --radius-lg:   12px;
  --transition:  all 0.3s ease;
  --font-head:   'Oswald', sans-serif;
  --font-body:   'Open Sans', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--black);
  padding: 8px 0;
  font-size: 12.5px;
  color: #aaa;
  z-index: 200;
  position: relative;
}
.topbar-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-left { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar-left span { display: flex; align-items: center; gap: 6px; }
.topbar-left i { color: var(--red-light); font-size: 11px; }
.topbar-right { display: flex; align-items: center; gap: 14px; }
.topbar-right a { color: #aaa; transition: var(--transition); }
.topbar-right a:hover { color: var(--red-light); }
.topbar-btn {
  background: var(--red);
  color: var(--white) !important;
  padding: 4px 12px;
  border-radius: 3px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.topbar-btn:hover { background: var(--red-light) !important; }

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  padding: 4px 11px;
  border-radius: 3px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
}
.lang-switcher:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.45);
}
#langFlag { font-size: 13px; line-height: 1; }

/* ============================================================
   HEADER
   ============================================================ */
.main-header {
  background: var(--white);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 150;
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid var(--red);
  transition: var(--transition);
}
.main-header.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}
.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Logo */
.logo-wrap a { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-img { height: 64px; width: auto; object-fit: contain; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.logo-sub {
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Search */
.header-search { flex: 1; max-width: 520px; }
.search-form { display: flex; border: 2px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.search-form:focus-within { border-color: var(--red); box-shadow: 0 0 0 3px rgba(155,28,28,0.1); }
.search-cat {
  border: none;
  border-right: 1px solid var(--border);
  padding: 0 12px;
  background: var(--bg-light);
  font-size: 12px;
  font-family: var(--font-body);
  color: var(--grey);
  min-width: 130px;
  cursor: pointer;
  outline: none;
}
.search-form input {
  flex: 1;
  border: none;
  padding: 0 14px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--dark);
  outline: none;
}
.search-form button {
  background: var(--red);
  color: var(--white);
  padding: 0 20px;
  font-size: 15px;
  transition: var(--transition);
}
.search-form button:hover { background: var(--red-dark); }

/* Actions */
.header-actions { display: flex; gap: 6px; }
.action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 11px;
  color: var(--dark);
  transition: var(--transition);
  position: relative;
}
.action-btn:hover { background: var(--bg-light); color: var(--red); }
.action-btn i { font-size: 18px; }
.cart-btn { background: var(--red); color: var(--white); }
.cart-btn:hover { background: var(--red-dark); color: var(--white); }
.cart-count {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--green);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   MAIN NAV
   ============================================================ */
.main-nav {
  background: var(--black-soft);
  position: relative;
  z-index: 100;
}
.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}
.nav-menu {
  display: flex;
  align-items: stretch;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-item:hover > .nav-link { color: var(--red-light); }
.nav-arrow { font-size: 10px; transition: var(--transition); }
.nav-item:hover .nav-arrow { transform: rotate(180deg); }

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 680px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--red);
  display: none;
  padding: 30px;
  gap: 30px;
  z-index: 200;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-col h4 {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.mega-col ul li { margin-bottom: 8px; }
.mega-col ul li a {
  color: var(--dark);
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.mega-col ul li a:hover { color: var(--red); padding-left: 4px; }
.mega-col ul li a img { border-radius: 2px; }

.mega-banner { background: none; }
.mega-promo {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: var(--white);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mega-promo h3 { font-family: var(--font-head); font-size: 22px; margin-bottom: 10px; }
.mega-promo p { font-size: 13px; opacity: 0.88; margin-bottom: 16px; }
.btn-small {
  display: inline-block;
  background: var(--white);
  color: var(--red);
  padding: 7px 18px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 12px;
  transition: var(--transition);
}
.btn-small:hover { background: var(--gold); color: var(--white); }

/* ============================================================
   HERO SLIDER — image-based banners
   ============================================================ */
.hero-slider {
  position: relative;
  width: 100%;
  background: var(--black);
  overflow: hidden;
  /* height is driven by the image aspect ratio */
}
.slider-track { position: relative; width: 100%; }

/* Each slide is absolutely stacked; the active one drives height */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.75s ease;
  z-index: 0;
  display: flex;
  flex-direction: column;
}
.slide.active { opacity: 1; z-index: 1; position: relative; }

/* The actual banner image — fills full width, height auto */
.slide-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* CTA strip that sits below (or floats over) the image */
.slide-cta-strip {
  position: absolute;
  bottom: 28px;
  right: 40px;
  display: flex;
  gap: 12px;
  z-index: 5;
}

/* Prev / Next controls */
.slider-prev, .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(4px);
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 16px;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer;
}
.slider-prev { left: 20px; }
.slider-next { right: 20px; }
.slider-prev:hover, .slider-next:hover { background: var(--red); }

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.dot.active, .dot:hover { background: var(--red); transform: scale(1.3); }

/* Responsive: on mobile stack the CTA or hide */
@media (max-width: 600px) {
  .slide-cta-strip { bottom: 14px; right: 14px; gap: 8px; }
  .btn-hero-primary, .btn-hero-outline { padding: 9px 16px; font-size: 12px; }
  .slider-prev { left: 8px; }
  .slider-next { right: 8px; }
}

/* ── Hero button styles (kept outside slider block so they cascade) ── */
.btn-hero-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
  text-transform: uppercase;
  white-space: nowrap;
}
.btn-hero-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(155,28,28,0.45); }
.btn-hero-outline {
  display: inline-block;
  background: rgba(0,0,0,0.45);
  color: var(--white);
  padding: 11px 26px;
  border: 2px solid rgba(255,255,255,0.75);
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(3px);
}
.btn-hero-outline:hover { background: var(--white); color: var(--red); border-color: var(--white); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--green);
  padding: 18px 0;
}
.trust-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}
.trust-item i {
  font-size: 28px;
  color: rgba(255,255,255,0.7);
}
.trust-item strong { display: block; font-size: 14px; font-weight: 700; line-height: 1.2; }
.trust-item span { font-size: 12px; opacity: 0.8; }

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.section-header p { font-size: 15.5px; color: var(--grey); max-width: 560px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.section-tag-light {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}
.section-tag-dark {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 10px;
}
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.75); }

/* ============================================================
   CATEGORIES
   ============================================================ */
.categories-section { padding: 72px 0; background: var(--white); }
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cat-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.cat-img {
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.5s ease;
}
.cat-card:hover .cat-img { transform: scale(1.04); }
.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
  transition: var(--transition);
}
.cat-flag { font-size: 28px; margin-bottom: 8px; }
.cat-overlay h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}
.cat-overlay p { font-size: 13px; opacity: 0.82; margin-bottom: 14px; }
.cat-btn {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 7px 18px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  width: fit-content;
}
.cat-btn:hover { background: var(--red-light); }

.cat-promo {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
}
.cat-promo-inner {
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  color: var(--white);
  text-align: center;
}
.cat-promo-inner i { font-size: 42px; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
.cat-promo-inner h3 { font-family: var(--font-head); font-size: 26px; margin-bottom: 10px; }
.cat-promo-inner p { font-size: 13.5px; opacity: 0.85; margin-bottom: 20px; }
.cat-btn-dark {
  display: inline-block;
  background: var(--white);
  color: var(--red);
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 13px;
  transition: var(--transition);
}
.cat-btn-dark:hover { background: var(--black); color: var(--white); }

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products-section { padding: 64px 0; }
.products-section.bg-light { background: var(--bg-light); }
.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}
.products-header h2 {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 4px;
}
.view-all-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-size: 13.5px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  padding-bottom: 4px;
}
.view-all-link:hover { color: var(--red-dark); gap: 10px; }

/* Product Carousel */
.product-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-carousel {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth;
  flex: 1;
}
.carousel-prev, .carousel-next {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--white);
  color: var(--dark);
  border: 2px solid var(--border);
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  z-index: 5;
}
.carousel-prev:hover, .carousel-next:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

/* Product Card */
.product-card {
  flex: 0 0 calc(16.66% - 17px);
  min-width: 190px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.product-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.product-badges {
  position: absolute;
  top: 10px; left: 10px;
  display: flex; gap: 6px;
}
.badge-new {
  background: var(--green);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.badge-sale {
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.product-actions {
  position: absolute;
  top: 10px; right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
}
.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
.product-actions button {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--white);
  color: var(--dark);
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.product-actions button:hover { background: var(--red); color: var(--white); }
.product-info { padding: 14px 14px 16px; }
.product-info h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 5px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-meta { margin-bottom: 8px; }
.brand {
  font-size: 11px;
  color: var(--grey-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-price { display: flex; flex-direction: column; gap: 2px; }
.price-trade {
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
}
.price-rrp {
  font-size: 11px;
  color: var(--grey-light);
  text-decoration: line-through;
}

/* ============================================================
   PROMO BANNER
   ============================================================ */
.promo-banner { margin: 0; overflow: hidden; }
.promo-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
}
.promo-text {
  background: var(--black-soft);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
}
.promo-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.promo-text h2 { font-family: var(--font-head); font-size: 34px; margin-bottom: 14px; line-height: 1.2; }
.promo-text p { font-size: 15px; opacity: 0.78; margin-bottom: 28px; line-height: 1.65; }
.btn-promo {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 14px 34px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
  text-transform: uppercase;
  width: fit-content;
}
.btn-promo:hover { background: var(--red-light); transform: translateY(-2px); }
.promo-img {
  background-size: cover;
  background-position: center;
  min-height: 340px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { padding: 84px 0; background: var(--bg-cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  width: 100%;
  height: 420px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-small {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 210px; height: 170px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--white);
  overflow: hidden;
}
.about-badge {
  position: absolute;
  inset: 0;
  background: rgba(155,28,28,0.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.about-badge strong { font-family: var(--font-head); font-size: 40px; font-weight: 700; line-height: 1; }
.about-badge span { font-size: 11px; letter-spacing: 1px; text-align: center; opacity: 0.85; margin-top: 4px; }

.about-content { padding-left: 20px; }
.about-content h2 { font-family: var(--font-head); font-size: 38px; font-weight: 700; color: var(--dark); margin-bottom: 16px; line-height: 1.2; }
.about-lead { font-size: 17px; color: var(--dark); font-weight: 500; margin-bottom: 16px; line-height: 1.7; }
.about-content p { color: var(--grey); font-size: 15px; margin-bottom: 30px; line-height: 1.8; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.stat-item { text-align: center; }
.stat-item strong { display: block; font-family: var(--font-head); font-size: 26px; font-weight: 700; color: var(--red); }
.stat-item span { font-size: 12px; color: var(--grey); font-weight: 500; }

.btn-about {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  padding: 13px 30px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
  text-transform: uppercase;
}
.btn-about:hover { background: var(--green-light); transform: translateY(-2px); }

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { position: relative; }
.services-bg { position: relative; padding: 84px 0; }
.services-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0.88);
}
.services-bg .section-container { position: relative; z-index: 2; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 10px;
}
.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  color: var(--white);
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.service-card:hover {
  background: rgba(155,28,28,0.2);
  border-color: var(--red);
  transform: translateY(-4px);
}
.service-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--green); transform: scale(1.1); }
.service-card h3 { font-family: var(--font-head); font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.service-card p { font-size: 14px; opacity: 0.78; line-height: 1.75; }

/* ============================================================
   BULK CTA
   ============================================================ */
.bulk-cta {
  padding: 80px 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.bulk-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.bulk-content h2 { font-family: var(--font-head); font-size: 36px; font-weight: 700; color: var(--dark); margin-bottom: 14px; line-height: 1.2; }
.bulk-content p { font-size: 15px; color: var(--grey); margin-bottom: 30px; line-height: 1.8; }
.bulk-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-bulk-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  padding: 12px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
}
.btn-bulk-primary:hover { background: var(--red-dark); }
.btn-bulk-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--dark);
  padding: 11px 24px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
}
.btn-bulk-outline:hover { border-color: var(--green); color: var(--green); }
.bulk-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bulk-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--dark);
  font-weight: 500;
}
.bulk-feat i { color: var(--green); font-size: 16px; }

/* ============================================================
   BRANDS TICKER
   ============================================================ */
.brands-section { padding: 60px 0; background: var(--white); overflow: hidden; }
.brands-ticker { overflow: hidden; padding: 20px 0; }
.brands-track {
  display: flex;
  gap: 0;
  animation: tickerScroll 28s linear infinite;
  width: max-content;
}
.brands-track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--grey-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-right: 1px solid var(--border);
  transition: var(--transition);
  white-space: nowrap;
}
.brands-track span:hover { color: var(--red); }
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { padding: 84px 0; background: var(--bg-cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  margin-bottom: 50px;
}

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.info-card {
  display: flex;
  gap: 18px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--red);
  transition: var(--transition);
}
.info-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.info-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.info-card h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--grey); margin-bottom: 6px; }
.info-card p { font-size: 14px; color: var(--dark); line-height: 1.7; }
.info-card a { color: var(--red); }
.info-card a:hover { text-decoration: underline; }
.info-note { font-size: 12px; color: var(--grey-light); margin-top: 2px; }

.hours-table { width: 100%; font-size: 13px; }
.hours-table td { padding: 3px 0; }
.hours-table td:first-child { color: var(--grey); font-weight: 500; padding-right: 16px; }
.hours-table td:last-child { color: var(--dark); font-weight: 600; }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; font-weight: 700; color: var(--grey); letter-spacing: 0.5px; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--bg-light);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(155,28,28,0.08);
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  padding: 13px 30px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  align-self: flex-start;
}
.btn-submit:hover { background: var(--red-dark); transform: translateY(-2px); }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.map-wrap iframe { display: block; }

/* Map CTA Bar */
.map-cta-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--black-soft);
  flex-wrap: wrap;
}
.map-address-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
}
.map-address-pill i { color: var(--red-light); font-size: 15px; }
.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--red);
  color: var(--white);
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-directions:hover { background: var(--red-dark); }
.btn-call-map {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green);
  color: var(--white);
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-call-map:hover { background: var(--green-light); }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
  padding: 60px 0;
}
.newsletter-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.newsletter-content i { font-size: 36px; color: var(--red-light); margin-bottom: 16px; display: block; }
.newsletter-content h2 { font-family: var(--font-head); font-size: 30px; color: var(--white); margin-bottom: 10px; }
.newsletter-content p { font-size: 14.5px; color: rgba(255,255,255,0.65); line-height: 1.75; }
.nl-form {
  display: flex;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 12px;
}
.nl-form input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: none;
  padding: 14px 18px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--white);
  outline: none;
}
.nl-form input::placeholder { color: rgba(255,255,255,0.4); }
.nl-form button {
  background: var(--red);
  color: var(--white);
  padding: 14px 28px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.nl-form button:hover { background: var(--red-dark); }
.nl-note { font-size: 12px; color: rgba(255,255,255,0.4); display: flex; align-items: center; gap: 6px; }

/* ============================================================
   FOOTER
   ============================================================ */
.main-footer { background: var(--black); color: #bbb; }
.footer-top { padding: 64px 0 40px; }
.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1.8fr;
  gap: 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo img { height: 52px; width: auto; filter: brightness(1.1); }
.footer-logo-name { display: block; font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--white); letter-spacing: 2px; text-transform: uppercase; line-height: 1; }
.footer-logo-sub { display: block; font-size: 10px; color: var(--green-light); letter-spacing: 3px; text-transform: uppercase; }
.footer-brand p { font-size: 13.5px; line-height: 1.8; color: #888; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  color: #888;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--red); color: var(--white); }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13.5px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--red-light); padding-left: 4px; }
.footer-col ul li a i { font-size: 10px; color: var(--red); }

.footer-contact-col .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13.5px;
  color: #888;
}
.footer-contact-col .footer-contact-item i { color: var(--red-light); font-size: 15px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-col .footer-contact-item a { color: #888; }
.footer-contact-col .footer-contact-item a:hover { color: var(--red-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 18px 0;
}
.footer-bottom-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: #555;
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(155,28,28,0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: var(--transition);
}
.back-to-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-to-top:hover { background: var(--red-dark); transform: translateY(-3px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-img-small { right: -14px; }
}

@media (max-width: 900px) {
  /* Header */
  .header-search { display: none; }
  .header-actions { gap: 4px; }
  .action-btn span { display: none; }
  .action-btn { padding: 8px 10px; }
  .hamburger { display: flex; }

  /* Nav */
  .main-nav { border-top: 1px solid rgba(255,255,255,0.08); }
  .nav-menu {
    display: none;
    flex-direction: column;
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-menu.open { display: flex; }
  .nav-link { padding: 12px 20px; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .mega-menu {
    position: static;
    display: none !important;
    box-shadow: none;
    padding: 10px 20px;
    grid-template-columns: 1fr;
    border: none;
    background: rgba(255,255,255,0.03);
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav-item.open .mega-menu { display: grid !important; }

  /* Hero prev/next on tablet */
  .slider-prev { left: 12px; }
  .slider-next { right: 12px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-img-small { right: -10px; }
  .about-content { padding-left: 0; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }

  /* Services */
  .services-grid { grid-template-columns: 1fr 1fr; }

  /* Promo */
  .promo-banner-inner { grid-template-columns: 1fr; }
  .promo-img { height: 240px; }

  /* Bulk */
  .bulk-inner { grid-template-columns: 1fr; gap: 40px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* Newsletter */
  .newsletter-inner { grid-template-columns: 1fr; gap: 30px; }

  /* Product Card */
  .product-card { flex: 0 0 calc(33.33% - 14px); }
}

@media (max-width: 600px) {
  /* Topbar */
  .topbar-left span:not(:first-child) { display: none; }

  /* Logo text */
  .logo-name { font-size: 20px; }
  .logo-sub { font-size: 9px; }
  .logo-img { height: 48px; }

  /* CTA strip on small screens */
  .slide-cta-strip { display: none; }

  /* Trust bar */
  .trust-item { flex: 1 1 calc(50% - 8px); }

  /* Categories */
  .category-grid { grid-template-columns: 1fr; }

  /* Products */
  .product-card { flex: 0 0 calc(50% - 10px); }
  .products-header { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* About stats */
  .about-stats { grid-template-columns: repeat(2, 1fr); }

  /* Bulk features */
  .bulk-features { grid-template-columns: 1fr; }

  /* Contact form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 22px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  /* Section headers */
  .section-header h2 { font-size: 28px; }
  .about-content h2 { font-size: 28px; }

  /* Promo */
  .promo-text { padding: 36px 24px; }
  .promo-text h2 { font-size: 24px; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.bg-light { background: var(--bg-light) !important; }

[data-aos] { transition-duration: 600ms; }
