:root {
  --bg: #f5f3ef;
  --surface: #ffffff;
  --ink: #111111;
  --ink-muted: #5a5a5a;
  --accent: #d63b1f;
  --accent-hover: #b82f15;
  --accent-light: #fff0ee;
  --border: #e2ddd8;
  --green: #1a7a4a;
  --card-shadow: 0 2px 16px rgba(0,0,0,0.07);
  --radius: 12px;
  --z-header: 100;
  --z-dropdown: 400;
  --z-mobile-nav: 300;
  --z-notification: 1000;
  --font-display: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
}

/* ─── TOPBAR ─── */
.topbar {
  background: var(--ink);
  color: #fff;
  text-align: center;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 9px 16px;
  position: sticky;
  top: 0;
  z-index: 101;
  overflow: hidden;
}
.topbar-inner {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.topbar span { white-space: nowrap; }
.topbar span::before { content: "✦  "; color: var(--accent); }

/* ─── HEADER ─── */
header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 38px;
  z-index: var(--z-header);
  overflow: visible;
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo-dot { color: var(--accent); }
nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}
nav a {
  display: inline-flex;
  align-items: center;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
nav a:hover, nav a.active { color: var(--ink); background: var(--bg); }
.nav-dropdown { position: relative; z-index: var(--z-dropdown); display: inline-flex; align-items: center; }
.nav-dropdown > a::after { content: " ▾"; font-size: 10px; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  margin-top: 4px;
  left: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 200px;
  box-shadow: var(--card-shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .2s, transform .2s;
  z-index: var(--z-dropdown);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.open .dropdown-menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown-menu a {
  display: block;
  padding: 9px 14px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 13.5px;
}
.dropdown-menu a:hover { background: var(--bg); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 13.5px;
  color: var(--ink-muted);
  cursor: text;
  width: 220px;
  transition: border-color .2s;
}
.search-box:hover { border-color: #bbb; }
.search-box svg { flex-shrink: 0; }
.btn-cta {
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }


/* ─── HERO ─── */
.hero {
  background: var(--ink);
  color: #fff;
  min-height: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
}
.hero-left {
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(214,59,31,.15);
  border: 1px solid rgba(214,59,31,.4);
  color: #ff7b62;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
  width: max-content;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero h1 em { color: var(--accent); font-style: normal; }
.hero p {
  color: rgba(255,255,255,.6);
  font-size: 16px;
  max-width: 440px;
  margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 11px 22px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.07); }
.hero-right {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}
.hero-img-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.hero-laptop-svg {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,.5));
  animation: floatY 5s ease-in-out infinite;
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hero-stats {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: flex;
  gap: 16px;
}
.hero-stat {
  background: rgba(255,255,255,.08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 12px 18px;
  text-align: center;
}
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 22px; font-weight: 800; color: #fff; }
.hero-stat span { font-size: 11px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .05em; }
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ─── TICKER ─── */
.ticker {
  background: var(--accent);
  color: #fff;
  overflow: hidden;
  padding: 11px 0;
}
.ticker-inner {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 22s linear infinite;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
}
.ticker-inner span::before { content: "→  "; }

/* ─── SECTION BASE ─── */
section { padding: 72px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-header { margin-bottom: 40px; }
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.15;
}
.section-sub {
  color: var(--ink-muted);
  font-size: 15px;
  margin-top: 8px;
}
.products-cta {
  background: #fff;
}
.products-cta-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--card-shadow);
  max-width: 720px;
}
.products-cta-card p {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.8;
}
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.view-all {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s;
}
.view-all:hover { color: var(--accent-hover); }

/* ─── CATEGORIES ─── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.cat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 16px 22px;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  transition: transform .2s, border-color .2s, box-shadow .2s;
  cursor: pointer;
  display: block;
}
.cat-card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 8px 28px rgba(214,59,31,.12); }
.cat-icon {
  width: 60px;
  height: 60px;
  background: var(--bg);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: background .2s;
}
.cat-card:hover .cat-icon { background: var(--accent-light); }
.cat-card h3 { font-family: var(--font-display); font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.cat-card span { font-size: 12px; color: var(--ink-muted); }
.cat-arrow { font-size: 11px; color: var(--accent); display: block; margin-top: 10px; font-weight: 700; }

/* ─── PRODUCT CARDS ─── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  cursor: pointer;
  position: relative;
}
.product-card:hover { box-shadow: var(--card-shadow); transform: translateY(-3px); }
.product-img-wrap {
  position: relative;
  background: #f8f7f5;
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.product-img-wrap svg {
  width: 80%;
  max-height: 160px;
  transition: transform .4s;
}
.product-card:hover .product-img-wrap svg { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  letter-spacing: .04em;
}
.product-body { padding: 16px 18px 18px; }
.product-brand { font-size: 11px; font-weight: 600; color: var(--ink-muted); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 4px; }
.product-name { font-family: var(--font-display); font-size: 14.5px; font-weight: 700; line-height: 1.3; margin-bottom: 10px; color: var(--ink); }
.product-specs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.spec-tag {
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 4px;
  color: var(--ink-muted);
}
.product-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; }
.price-sale { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--accent); }
.price-orig { font-size: 12.5px; color: #bbb; text-decoration: line-through; }
.price-save { font-size: 11px; font-weight: 700; color: var(--green); background: #eafaf1; padding: 2px 7px; border-radius: 4px; }
.btn-add {
  width: 100%;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 11px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.btn-add:hover { background: var(--accent); }

/* ─── TRUST BAND ─── */
.trust-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.trust-icon {
  width: 48px;
  height: 48px;
  background: var(--bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.trust-item h4 { font-family: var(--font-display); font-size: 14.5px; font-weight: 700; margin-bottom: 3px; }
.trust-item p { font-size: 12.5px; color: var(--ink-muted); line-height: 1.5; }

/* ─── BRANDS ─── */
.brands-section { background: var(--surface); }
.brands-scroll {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  mask: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}
.brands-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.brand-item {
  width: 160px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
  filter: grayscale(1) opacity(.5);
  transition: filter .2s;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--ink);
}
.brand-item:hover { filter: grayscale(0) opacity(1); }

/* ─── OUT OF STOCK SECTION ─── */
.oos-section {
  background: var(--ink);
  color: #fff;
  padding: 64px 0;
}
.oos-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.oos-left .section-label { color: #ff7b62; }
.oos-left h2 { font-family: var(--font-display); font-size: clamp(28px, 3vw, 40px); font-weight: 800; letter-spacing: -1px; margin-bottom: 16px; }
.oos-left p { color: rgba(255,255,255,.6); font-size: 15px; line-height: 1.7; margin-bottom: 28px; }
.oos-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-wapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s;
}
.btn-wapp:hover { background: #1db954; }
.oos-features { display: flex; flex-direction: column; gap: 16px; }
.oos-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 18px;
}
.oos-feat-icon { font-size: 24px; flex-shrink: 0; }
.oos-feat h4 { font-family: var(--font-display); font-size: 14.5px; font-weight: 700; margin-bottom: 4px; }
.oos-feat p { font-size: 12.5px; color: rgba(255,255,255,.55); line-height: 1.5; }

/* ─── TESTIMONIALS ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
}
.testi-stars { color: #f59e0b; font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text { font-size: 14px; color: var(--ink-muted); line-height: 1.65; margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--accent);
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 13.5px; }
.testi-tag { font-size: 12px; color: var(--ink-muted); }

/* ─── FOOTER ─── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { color: #fff; margin-bottom: 16px; display: flex; }
.footer-brand p { font-size: 13.5px; line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: 14px;
  transition: background .2s, color .2s;
}
.social-btn:hover { background: var(--accent); color: #fff; }
footer h5 { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 18px; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer ul li a { color: rgba(255,255,255,.55); font-size: 13.5px; text-decoration: none; transition: color .2s; }
footer ul li a:hover { color: #fff; }
.newsletter-box input {
  width: 100%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 11px 14px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13.5px;
  outline: none;
  margin-bottom: 10px;
  transition: border-color .2s;
}
.newsletter-box input::placeholder { color: rgba(255,255,255,.3); }
.newsletter-box input:focus { border-color: var(--accent); }
.newsletter-box .btn-cta { width: 100%; justify-content: center; display: flex; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,.35); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12.5px; color: rgba(255,255,255,.35); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,.7); }

/* Consolidated footer utility classes to replace repeated inline styles */
.footer-address { font-size: 13px; color: rgba(255,255,255,.35); margin-bottom: 16px; }
.footer-note { font-size: 13.5px; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.footer-contact { font-size: 12px; color: rgba(255,255,255,.25); margin-top: 12px; }
.text-center { text-align: center; }

/* Reusable keyframe animations (moved out of JS) */
@keyframes slideIn { from { transform: translateX(400px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes slideOut { from { transform: translateX(0); opacity: 1; } to { transform: translateX(400px); opacity: 0; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ─── MOBILE NAV & FORMS ─── */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group input,
.form-group textarea,
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  padding: 14px 16px;
  outline: none;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.55); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

/* Small utility for WhatsApp CTA sizing used across templates */
.btn-wapp--large { font-size: 15px; padding: 13px 28px; }

.btn-outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); }

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  text-decoration: none;
  z-index: 1000;
  transition: transform .2s;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 26px; height: 26px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 260px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .oos-inner { grid-template-columns: 1fr; }
  header .header-inner {
    flex-wrap: wrap;
    align-items: center;
    height: auto;
    padding: 14px 24px;
  }
  nav {
    flex: 1 1 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
  }
  nav a {
    flex: 1 1 auto;
    min-width: 0;
  }
  .header-actions {
    flex: 1 1 100%;
    justify-content: flex-start;
    width: 100%;
    margin-top: 12px;
  }
  .search-box { width: 160px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-left { padding: 48px 24px; }
  .hero-left h1 { font-size: clamp(32px, 6vw, 48px); }
  .hero-btns { width: 100%; gap: 12px; }
  .hero-stats { flex-direction: column; gap: 8px; }
}
@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .search-box { display: none; }
  nav {
    flex-direction: column;
    align-items: stretch;
  }
  nav a {
    width: 100%;
    justify-content: center;
  }
  .header-actions {
    width: 100%;
    justify-content: center;
  }
  .hero-left {
    padding: 28px 18px;
  }
  .hero-img-wrap {
    padding: 20px;
  }
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }
  .btn-cta,
  .btn-outline-white {
    width: 100%;
    justify-content: center;
  }
}


/* ─── PAGE HERO (business & inner pages) ─── */
.page-hero {
  background: #111111;
  color: #fff;
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .section-label { color: #ff7b62; margin-bottom: 14px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
  color: #fff;
}
.page-hero h1 em { color: var(--accent); font-style: normal; }
.page-hero p {
  color: rgba(255,255,255,.6);
  font-size: 16px;
  max-width: 540px;
  line-height: 1.7;
}

/* ─── BREADCRUMB NAV ─── */
nav.breadcrumb {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
nav.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-muted);
}
nav.breadcrumb a {
  color: var(--ink-muted);
  text-decoration: none;
  transition: color .2s;
}
nav.breadcrumb a:hover { color: var(--accent); }
nav.breadcrumb span { color: var(--border); font-size: 14px; }
