/* ============================================================
   GolfWagen Zimbabwe — Main Stylesheet
   v2.0 — QA fixed, performance optimised, fully responsive
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #e8222a;
  --red-dark:  #b81820;
  --red-glow:  rgba(232,34,42,0.18);
  --gold:      #f5a623;
  --bg:        #0d0d0d;
  --bg-2:      #141414;
  --bg-3:      #1a1a1a;
  --bg-4:      #222;
  --border:    #2a2a2a;
  --border-2:  #333;
  --text:      #e8e8e8;
  --text-dim:  #999;
  --text-muted:#666;
  --white:     #fff;
  --wa:        #25d366;
  --wa-dark:   #128c4e;
  --green:     #2ecc71;
  --amber:     #f39c12;
  --rad:       6px;
  --rad-lg:    12px;
  --shadow:    0 2px 12px rgba(0,0,0,.5);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.7);
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --transition: 0.2s ease;
  /* Header heights — used for sticky offset everywhere */
  --ann-h:     36px;
  --hdr-h:     72px;
  --total-h:   108px; /* ann + header */
}

html {
  scroll-behavior: smooth;
  /* Fix 2: Offset all anchor scroll targets below sticky header */
  scroll-padding-top: var(--total-h);
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* Fix 2: Push body below ann-bar + header on load */
  padding-top: 0;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, button, textarea, select { font-family: inherit; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Fix: scroll-margin on all anchor sections */
#categories,
#products,
#about,
#top {
  scroll-margin-top: var(--total-h);
}

/* ── Announcement Bar ─────────────────────────────────────── */
.ann-bar {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 0 20px;
  height: var(--ann-h);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: .02em;
  gap: 12px;
  flex-wrap: wrap;
  /* Stick to very top */
  position: sticky;
  top: 0;
  z-index: 1001;
}
.ann-bar .sep { opacity: .5; }
.ann-wa {
  color: var(--white);
  background: rgba(0,0,0,.25);
  padding: 3px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background var(--transition);
  text-decoration: none;
}
.ann-wa:hover { background: rgba(0,0,0,.4); }

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  background: var(--bg-2);
  border-bottom: 2px solid var(--red);
  position: sticky;
  top: var(--ann-h); /* Fix 2: sit directly below ann-bar */
  z-index: 1000;
  box-shadow: var(--shadow);
  height: var(--hdr-h);
  display: flex;
  align-items: center;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: var(--rad);
  flex-shrink: 0;
  display: block;
}
.logo-text { display: flex; flex-direction: column; gap: 1px; }
.logo-name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .02em;
  line-height: 1;
}
.logo-sub {
  font-size: 0.68rem;
  color: var(--text-dim);
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1;
}

/* Desktop nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  padding: 8px 14px;
  border-radius: var(--rad);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.nav-active { color: var(--white); background: var(--bg-4); }
.nav-wa {
  background: var(--wa) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-wa:hover { background: var(--wa-dark) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--rad);
  background: transparent;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s ease;
  pointer-events: none;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav — drops below sticky header */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  padding: 10px 20px 16px;
  gap: 2px;
  /* Fix 2: sticky below both ann-bar + header */
  position: sticky;
  top: var(--total-h);
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,.6);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 11px 12px;
  border-radius: var(--rad);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background var(--transition);
  text-decoration: none;
}
.mobile-nav a:hover { background: var(--bg-4); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 80px 0 70px;
  overflow: hidden;
  background: var(--bg-2);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,34,42,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,34,42,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg));
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--red-glow);
  border: 1px solid var(--red);
  color: var(--red);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.01em;
  color: var(--white);
  margin-bottom: 18px;
}
.hero-title em {
  color: var(--red);
  font-style: normal;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 580px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-dim);
  font-weight: 500;
}
.trust-item i { color: var(--green); font-size: .75rem; }

/* ── Stats Bar ────────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 32px;
}
.stat-item .stat-num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.stat-item .stat-lbl {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.stat-divider {
  width: 1px;
  height: 38px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--rad);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 4px 16px var(--red-glow); }
.btn-wa {
  background: var(--wa);
  color: var(--white);
}
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border-2);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--text-dim); background: var(--bg-4); }
.btn-sm { padding: 9px 16px; font-size: 0.82rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-disabled {
  background: var(--bg-4);
  color: var(--text-muted);
  cursor: not-allowed;
  width: 100%;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--rad);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
}
.mt-lg { margin-top: 24px; }

/* ── Categories ───────────────────────────────────────────── */
.categories {
  background: var(--bg);
  padding: 56px 0 40px;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.15;
}
.search-query { color: var(--text-dim); font-weight: 400; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
  margin-top: 20px;
}
.cat-card {
  background: var(--bg-3);
  border: 1.5px solid var(--border);
  border-radius: var(--rad-lg);
  padding: 16px 10px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  font-family: inherit;
  color: var(--text);
}
.cat-card:hover,
.cat-active {
  border-color: var(--red);
  background: var(--bg-4);
  transform: translateY(-2px);
}
.cat-active { box-shadow: 0 0 0 2px var(--red-glow); }
.cat-card i { font-size: 1.3rem; color: var(--red); }
.cat-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .01em;
  line-height: 1.3;
}
.cat-count {
  font-size: 0.68rem;
  color: var(--text-muted);
  background: var(--bg-4);
  padding: 1px 7px;
  border-radius: 10px;
}

/* ── Products Section ─────────────────────────────────────── */
.products-section {
  padding: 48px 0 72px;
  background: var(--bg);
}
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.results-count {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Search */
.search-form { flex-shrink: 0; }
.search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.search-icon {
  position: absolute;
  left: 12px;
  color: var(--text-muted);
  font-size: 0.85rem;
  pointer-events: none;
  z-index: 1;
}
.search-wrap input {
  width: 300px;
  max-width: 100%;
  background: var(--bg-3);
  border: 1.5px solid var(--border-2);
  border-radius: var(--rad) 0 0 var(--rad);
  color: var(--text);
  padding: 10px 14px 10px 36px;
  font-size: 0.88rem;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.search-wrap input:focus { border-color: var(--red); }
.search-wrap input::placeholder { color: var(--text-muted); }
.search-btn {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 10px 18px;
  border-radius: 0 var(--rad) var(--rad) 0;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  height: 40px;
  white-space: nowrap;
}
.search-btn:hover { background: var(--red-dark); }

/* Alert */
.alert {
  padding: 12px 18px;
  border-radius: var(--rad);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}
.alert-warn { background: rgba(243,156,18,.12); border: 1px solid var(--amber); color: var(--amber); }

/* Empty state */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
}
.empty-state i { font-size: 3rem; margin-bottom: 16px; display: block; }
.empty-state p { font-size: 1rem; margin-bottom: 24px; }

/* ── Product Grid ─────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

/* ── Product Card ─────────────────────────────────────────── */
.product-card {
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: var(--rad-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  border-color: var(--border-2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.product-card.oos { opacity: .6; }

/* Card Image */
.card-img-wrap {
  position: relative;
  background: var(--bg-3);
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Shimmer placeholder */
  background: linear-gradient(135deg, var(--bg-3) 25%, var(--bg-4) 50%, var(--bg-3) 75%);
  background-size: 200% 200%;
  animation: shimmer 1.6s infinite linear;
}
.card-img-wrap.loaded { animation: none; background: var(--bg-3); }
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
  position: relative;
  z-index: 1;
}
.card-img.loaded { opacity: 1; }
.card-img-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--border-2);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.3s;
}
.oem-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gold);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: .06em;
  padding: 3px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  z-index: 2;
}
.stock-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: .03em;
  z-index: 2;
}
.stock-badge i { font-size: .45rem; }
.badge-green { background: rgba(46,204,113,.15); color: var(--green); border: 1px solid rgba(46,204,113,.3); }
.badge-amber { background: rgba(243,156,18,.15); color: var(--amber); border: 1px solid rgba(243,156,18,.3); }
.badge-red   { background: rgba(232,34,42,.15);  color: var(--red);   border: 1px solid rgba(232,34,42,.3); }
.badge-grey  { background: var(--bg-4); color: var(--text-muted); border: 1px solid var(--border); }

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Card body */
.card-body {
  padding: 18px 18px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.card-brand {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-glow);
  padding: 2px 8px;
  border-radius: 3px;
}
.card-cat {
  font-size: 0.7rem;
  color: var(--text-muted);
  background: var(--bg-4);
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: .03em;
}
.card-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: .01em;
}
.card-compat {
  font-size: 0.78rem;
  color: var(--gold);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.5;
}
.card-compat i { flex-shrink: 0; margin-top: 3px; }
.card-desc {
  font-size: 0.83rem;
  color: var(--text-dim);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-partno {
  font-size: 0.76rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 4px;
}
.card-partno strong { color: var(--text-dim); }

/* Card footer */
.card-footer {
  padding: 12px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border);
}
.btn-more {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
  transition: color var(--transition);
  text-decoration: none;
}
.btn-more:hover { color: var(--text); }
.btn-more i { font-size: .7rem; }

/* ── Pagination ───────────────────────────────────────────── */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.page-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--rad);
  background: var(--bg-3);
  border: 1.5px solid var(--border);
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
}
.page-btn:hover { border-color: var(--red); color: var(--white); }
.page-active { background: var(--red); border-color: var(--red); color: var(--white); }

/* ── About ────────────────────────────────────────────────── */
.about-section {
  background: var(--bg-2);
  padding: 72px 0;
  border-top: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.about-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.about-text p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 14px;
}
.about-stats {
  display: flex;
  gap: 28px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.stat-block { display: flex; flex-direction: column; gap: 2px; }
.stat-num-lg {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.stat-lbl-sm {
  font-size: 0.73rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* About right col */
.about-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.about-logo {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: var(--rad-lg);
  background: var(--bg-3);
  padding: 10px;
}
.about-locations h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.location-list { display: flex; flex-direction: column; }
.location-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-dim);
}
.location-list li:last-child { border-bottom: none; }
.location-list i { color: var(--red); width: 16px; text-align: center; flex-shrink: 0; }
.about-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-3);
  border-top: 2px solid var(--red);
  padding: 56px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 32px;
  padding-bottom: 40px;
}
.footer-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 14px;
  border-radius: var(--rad);
  display: block;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.65;
  margin-bottom: 14px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--wa);
  color: var(--white);
  font-size: 1.1rem;
  transition: background var(--transition);
  text-decoration: none;
}
.footer-social a:hover { background: var(--wa-dark); }
.footer-tags {
  font-size: 0.68rem;
  color: var(--text-muted);
  opacity: .45;
  margin-top: 12px;
  line-height: 1.8;
  word-break: break-word;
}
.footer-links h4,
.footer-links h3,
.footer-contact h4,
.footer-contact h3 {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
  text-decoration: none;
}
.footer-links a:hover { color: var(--text); }
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.footer-contact a { color: var(--text-dim); text-decoration: none; }
.footer-contact a:hover { color: var(--white); }
.footer-contact .fab { color: var(--wa); }
.footer-contact .fa-map-marker-alt,
.footer-contact .fa-clock { color: var(--text-muted); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 20px;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }

/* ── Floating WhatsApp ────────────────────────────────────── */
.fab-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: var(--wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 997;
  transition: all var(--transition);
  text-decoration: none;
}
.fab-wa:hover { background: var(--wa-dark); transform: scale(1.08); }
.fab-tooltip {
  position: absolute;
  right: 68px;
  background: var(--bg-3);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--rad);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  box-shadow: var(--shadow);
}
.fab-wa:hover .fab-tooltip { opacity: 1; }

/* ── Back to top ──────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 40px;
  height: 40px;
  background: var(--bg-4);
  border: 1.5px solid var(--border-2);
  border-radius: 50%;
  color: var(--text-dim);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  cursor: pointer;
  z-index: 996;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--red); border-color: var(--red); color: var(--white); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-ctas .btn { flex: 1; justify-content: center; }
}

@media (max-width: 768px) {
  :root {
    --ann-h:   32px;
    --hdr-h:   64px;
    --total-h: 96px;
  }

  .main-nav { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 44px 0 44px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { gap: 12px; }

  .cat-grid { grid-template-columns: repeat(auto-fill, minmax(88px, 1fr)); gap: 8px; }

  .products-header { flex-direction: column; align-items: flex-start; }
  .search-form { width: 100%; }
  .search-wrap { width: 100%; }
  .search-wrap input { width: 100%; }

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

  .stats-inner { flex-wrap: wrap; }
  .stat-item { padding: 6px 16px; }
  .stat-divider { height: 28px; }

  .footer-inner { grid-template-columns: 1fr; gap: 24px; }

  .fab-wa { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.4rem; }
  .back-to-top { bottom: 82px; right: 20px; }
}

@media (max-width: 480px) {
  :root {
    --ann-h:   28px;
    --hdr-h:   60px;
    --total-h: 88px;
  }
  .ann-bar { font-size: 0.74rem; gap: 8px; }
  .about-ctas { flex-direction: column; }
  .about-ctas .btn { width: 100%; justify-content: center; }
  .products-grid { grid-template-columns: 1fr; }
  .stat-item .stat-num { font-size: 1.15rem; }
}
