@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,600;0,700;0,800;0,900;1,800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --gold:       #f5a800;
  --gold-light: #ffc93c;
  --gold-dark:  #c88500;
  --navy:       #0f2244;
  --navy-mid:   #1a3460;
  --navy-light: #25509e;
  --charcoal:   #0c0e12;
  --dark:       #111318;
  --dark2:      #1a1d24;
  --cream:      #faf8f4;
  --gray:       #f3f4f6;
  --gray2:      #e5e7eb;
  --text:       #111318;
  --muted:      #6b7280;
  --white:      #ffffff;
  --border:     #e2e5ea;
  --radius:     10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --shadow:     0 2px 16px rgba(0,0,0,.08);
  --shadow-md:  0 8px 40px rgba(0,0,0,.14);
  --shadow-lg:  0 24px 64px rgba(0,0,0,.2);
  --max:        1280px;
}

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

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--navy-light); text-decoration: none; }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }

/* ─── HEADER ───────────────────────────────────────────────────────── */
header {
  background: linear-gradient(180deg, #14305c 0%, var(--navy) 100%);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 6px 30px rgba(0,0,0,.32);
  backdrop-filter: blur(10px);
}
/* Thin gold accent line along the bottom edge */
header::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245,168,0,.45) 25%, var(--gold) 50%, rgba(245,168,0,.45) 75%, transparent);
  opacity: .8;
  pointer-events: none;
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 28px;
  height: 78px;
  position: relative;
}

.logo { display: flex; align-items: center; }
.logo img { height: 46px; transition: transform .25s ease, filter .25s ease; }
.logo:hover img { transform: scale(1.04); filter: drop-shadow(0 2px 12px rgba(245,168,0,.4)); }
.hamburger { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; margin-left: auto; }

/* Search — unified pill with icon */
.nav-search { display: flex; align-items: center; flex: 1; min-width: 0; max-width: 460px; }
.nav-search-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-right: none;
  border-radius: 50px 0 0 50px;
  height: 46px;
  padding-left: 18px;
  overflow: visible;
  transition: background .2s, border-color .2s, box-shadow .2s;
}
.nav-search-wrap::before {
  content: '';
  width: 17px; height: 17px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.3-4.3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  opacity: .5;
}
.nav-search-wrap:focus-within {
  background: rgba(255,255,255,.13);
  border-color: rgba(245,168,0,.45);
  box-shadow: 0 0 0 3px rgba(245,168,0,.12);
}
.nav-search-input { flex: 1; padding: 0 6px; border: none; background: transparent; color: #fff; font-size: 14px; font-family: inherit; outline: none; height: 46px; min-width: 0; }
.nav-search-input::placeholder { color: rgba(255,255,255,.42); }
.nav-search-btn {
  padding: 0 24px; height: 46px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, #e8960a 100%);
  color: #111; border: none;
  border-radius: 0 50px 50px 0;
  cursor: pointer; font-size: 14px; font-weight: 800; font-family: inherit;
  letter-spacing: .3px;
  transition: filter .2s, box-shadow .2s;
}
.nav-search-btn:hover { filter: brightness(1.07); box-shadow: 0 6px 18px rgba(245,168,0,.4); }
.nav-search-btn:active { filter: brightness(.97); }

/* Nav */
#main-nav { flex-shrink: 0; }
.nav-list { list-style: none; display: flex; align-items: center; gap: 6px; flex-wrap: nowrap; }
.nav-list > li > a {
  position: relative;
  color: rgba(255,255,255,.84);
  padding: 10px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: color .2s, background .2s;
}
/* Animated gold underline */
.nav-list > li > a::after {
  content: '';
  position: absolute;
  left: 16px; right: 16px; bottom: 5px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s cubic-bezier(.2,.8,.3,1);
}
.nav-list > li > a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-list > li > a:hover::after { transform: scaleX(1); }
.nav-list > li > a.section-active { color: var(--gold); }
.nav-list > li > a.section-active::after { transform: scaleX(1); }
.has-drop { position: relative; }
.has-drop:hover .dropdown { display: block; }

/* Invisible hover bridge covering the gap between toggle and dropdown,
   so the menu doesn't vanish while the cursor crosses the gap. */
.has-drop::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 0;
  width: 240px;
  height: 12px;
  pointer-events: none;
}
.has-drop:hover::after { pointer-events: auto; }

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;            /* right-align to toggle so it never overflows the viewport */
  left: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(12,22,44,.28), 0 4px 14px rgba(12,22,44,.12);
  width: 300px;                  /* locked to the widest (bold + check) row so it never resizes */
  max-width: calc(100vw - 32px);
  z-index: 2000;
  max-height: 70vh;
  overflow-y: auto;
  overflow-x: hidden;          /* no horizontal scrollbar, no background leak */
  padding: 0 8px 8px;
  animation: dropdown-in .22s cubic-bezier(.2,.8,.3,1);
}
@keyframes dropdown-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Sticky section header inside the menu */
.dropdown::before {
  content: 'Shop by Category';
  display: block;
  position: sticky;
  top: 0;
  background: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 10px 10px;
  margin-bottom: 2px;
  border-bottom: 1px solid var(--gray2);
  z-index: 2;
}

.brands-drop { columns: 2; min-width: 400px; }
.dropdown li { list-style: none; }
.dropdown li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 18px;
  color: var(--text);
  font-size: 13.5px;
  font-weight: 500;
  white-space: nowrap;
  border-radius: 10px;
  border-left: 3px solid transparent;
  transition: background .2s, color .2s, border-color .2s, transform .2s cubic-bezier(.2,.8,.3,1), font-weight .15s;
}

/* Hover — gold-tinted row with a left accent bar */
.dropdown li a:hover {
  background: linear-gradient(90deg, rgba(245,168,0,.16), rgba(245,168,0,.03));
  color: var(--navy);
  border-left-color: var(--gold);
  font-weight: 700;
  transform: translateX(2px);
}

/* Active — "you are here" state */
.dropdown li a.active {
  background: linear-gradient(90deg, rgba(245,168,0,.2), rgba(245,168,0,.05));
  color: var(--gold-dark);
  border-left-color: var(--gold);
  font-weight: 700;
}
.dropdown li a.active::after {
  content: '✓';
  margin-left: auto;
  padding-left: 12px;
  color: var(--gold);
  font-weight: 900;
  font-size: 13px;
}

/* Loading — spinner while the destination page loads */
.dropdown li a.is-loading {
  pointer-events: none;
  color: var(--gold-dark);
  border-left-color: var(--gold);
  background: rgba(245,168,0,.1);
}
.dropdown li a.is-loading::after {
  content: '';
  width: 15px;
  height: 15px;
  margin-left: auto;
  border: 2px solid rgba(245,168,0,.3);
  border-top-color: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: dropdown-spin .6s linear infinite;
}
@keyframes dropdown-spin { to { transform: rotate(360deg); } }

/* Active parent toggle indicator */
.nav-list > li.has-drop > a.section-active { color: var(--gold); }

/* ─── PAGE HERO (inner pages) ───────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  padding: 56px 28px 52px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,168,0,.12) 0%, transparent 65%);
  top: -150px;
  right: -100px;
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
}
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 10px;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p { font-size: 16px; opacity: .72; max-width: 560px; margin: 0; }

/* ─── POLICY PAGE CONTENT ───────────────────────────────── */
.policy-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 28px 80px;
}
.policy-body h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.5px;
  color: var(--navy);
  margin: 48px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
}
.policy-body h2:first-child { margin-top: 0; }
.policy-body p { font-size: 15.5px; line-height: 1.85; color: #444; margin-bottom: 14px; }
.policy-rule {
  padding: 14px 18px;
  background: var(--gray);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}
.policy-rules { display: flex; flex-direction: column; gap: 10px; list-style: none; padding: 0; }
.policy-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.policy-step-num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  font-family: 'Barlow Condensed', sans-serif;
}
.policy-step strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.policy-step span { font-size: 14px; color: var(--muted); line-height: 1.6; }
.policy-steps { display: flex; flex-direction: column; gap: 12px; }

/* Policy CTA band */
.policy-cta {
  background: var(--navy);
  color: #fff;
  padding: 56px 28px;
  text-align: center;
}
.policy-cta h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 10px;
}
.policy-cta p { opacity: .75; font-size: 16px; margin-bottom: 28px; }
.policy-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Breadcrumb */
.breadcrumb { background: var(--gray); border-bottom: 1px solid var(--border); padding: 10px 0; font-size: 13px; }
.breadcrumb-inner { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.breadcrumb a { color: var(--navy-light); font-weight: 500; }
.breadcrumb span { color: var(--muted); }

/* ─── HERO ─────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;

  /* 📸 PHOTO: Replace with your hero image:
     background-image: url('assets/images/hero-bg.jpg');
     Ideal: dramatic workshop or store exterior, 1920×1080px */
  background: var(--charcoal);
}

/* Layered background shapes */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15,34,68,.98) 0%, rgba(26,52,96,.9) 40%, rgba(15,34,68,.85) 100%);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,168,0,.15) 0%, transparent 65%);
  top: -200px;
  right: -200px;
}

.hero-bg::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,80,158,.4) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
}

/* Diagonal grid accent */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  z-index: 0;
}

/* Diagonal bottom cut */
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 100px;
  background: #fff;
  clip-path: polygon(0 60%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 28px 160px;
  max-width: 900px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,168,0,.15);
  border: 1px solid rgba(245,168,0,.4);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(56px, 10vw, 110px);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 em {
  display: block;
  font-style: italic;
  color: var(--gold);
  -webkit-text-stroke: 0;
}

.hero h1 .outline {
  -webkit-text-stroke: 2px rgba(255,255,255,.3);
  color: transparent;
}

.hero p {
  font-size: clamp(16px, 2vw, 20px);
  opacity: .75;
  max-width: 520px;
  margin: 0 auto 40px;
  font-weight: 400;
  line-height: 1.7;
}

.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero-stat {
  display: inline-flex;
  gap: 0;
  margin-top: 64px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.stat-box {
  text-align: center;
  padding: 22px 40px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-box:last-child { border-right: none; }
.stat-box .num { font-family: 'Barlow Condensed', sans-serif; font-size: 44px; font-weight: 900; color: var(--gold); line-height: 1; }
.stat-box .lbl { font-size: 11px; opacity: .55; margin-top: 4px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }

/* ─── TRUST STRIP ───────────────────────────────────────────────────── */
.trust-strip {
  background: var(--navy);
  padding: 0;
  overflow: hidden;
}

.trust-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 28px;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background .2s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(255,255,255,.04); }

.trust-icon {
  width: 44px;
  height: 44px;
  background: rgba(245,168,0,.15);
  border: 1px solid rgba(245,168,0,.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.trust-text strong { display: block; font-size: 14px; font-weight: 700; color: #fff; }
.trust-text span { font-size: 12px; color: rgba(255,255,255,.45); }

/* ─── SECTIONS ──────────────────────────────────────────────────────── */
.section { max-width: var(--max); margin: 0 auto; padding: 80px 28px; }

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 6px;
}

.section-title em { font-style: italic; color: var(--gold); }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 16px;
  flex-wrap: wrap;
}

.section-subtitle { color: var(--muted); font-size: 15px; margin-top: 6px; }

.view-all-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  padding: 8px 18px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: all .2s;
}
.view-all-link:hover { background: var(--navy); color: #fff; }

/* ─── CATEGORY GRID ─────────────────────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* First card spans 2 cols for visual variety */
.cat-grid .cat-card:first-child {
  grid-column: span 2;
  height: 340px;
}

.cat-card {
  position: relative;
  overflow: hidden;
  height: 240px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: flex-end;
  background: var(--dark2) center/cover no-repeat;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform .4s cubic-bezier(.2,.8,.3,1), box-shadow .4s;
}

.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.3) 45%, rgba(0,0,0,.05) 100%);
  transition: opacity .3s;
}

/* Gold border reveal on hover */
.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 2.5px solid transparent;
  background: linear-gradient(var(--dark2), var(--dark2)) padding-box,
              linear-gradient(135deg, var(--gold), transparent 60%) border-box;
  opacity: 0;
  transition: opacity .3s;
}

.cat-card:hover { transform: translateY(-6px) scale(1.015); box-shadow: var(--shadow-lg); }
.cat-card:hover::after { opacity: 1; }

.cat-card-body {
  position: relative;
  z-index: 1;
  padding: 24px;
  width: 100%;
}

.cat-card h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
  margin: 0 0 4px;
}

.cat-card .count { display: block; font-size: 12px; color: rgba(255,255,255,.55); font-weight: 600; }
.cat-icon { display: none; }

/* ─── WHY LMC SPLIT SECTION ─────────────────────────────────────────── */
.why-section {
  background: var(--cream);
  padding: 0;
  overflow: hidden;
}

.why-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.why-photo {
  background: var(--navy-mid) center/cover no-repeat;
  background-image: url('../images/why-lmc-bg.png');
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.why-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,.35);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  padding: 40px;
}

.why-photo-placeholder svg {
  width: 64px;
  height: 64px;
  opacity: .3;
}

/* Diagonal clip on the right edge */
.why-photo::after {
  content: '';
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  width: 80px;
  background: var(--cream);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.why-content {
  padding: 72px 64px 72px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-content .section-title { margin-bottom: 20px; }

.why-content p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}

.why-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M16.7 5.3l-9 9-4.4-4.4 1.4-1.4 3 3 7.6-7.6 1.4 1.4z' fill='%23111'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ─── BANNER STRIP (mid-page full bleed) ────────────────────────────── */
.banner-strip {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;

  /* 📸 PHOTO: Perfect spot for a dramatic workshop or products-in-use photo
     background-image: url('assets/images/workshop-banner.jpg');
     background-size: cover; background-position: center 40%; */
  background: var(--charcoal);
}

.banner-strip-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 60%);
}

.banner-strip-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,.015) 40px,
    rgba(255,255,255,.015) 80px
  );
}

/* Large decorative number */
.banner-strip-bg::after {
  content: '100+';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 380px;
  font-weight: 900;
  color: rgba(255,255,255,.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.banner-strip-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 60px 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.banner-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.banner-text h2 span { color: var(--gold); }

.banner-text p {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  max-width: 480px;
}

/* Brand count pills */
.banner-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.banner-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 12px 20px;
  white-space: nowrap;
}

.banner-pill-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.banner-pill-label {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  font-weight: 600;
}

/* ─── PRODUCTS BAND ─────────────────────────────────────────────────── */
.products-band {
  background: var(--gray);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}

.products-band-inner { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

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

.product-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all .3s cubic-bezier(.2,.8,.3,1);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.14);
}

.card-img-wrap { background: #fff; height: 200px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.card-img { width: 100%; height: 200px; object-fit: contain; padding: 16px; transition: transform .4s cubic-bezier(.2,.8,.3,1); }
.product-card:hover .card-img { transform: scale(1.08); }
.no-img { background: var(--gray2); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 12px; width: 100%; height: 200px; }
.card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.card-brand { font-size: 10px; color: var(--navy-light); font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card-title { font-size: 14px; font-weight: 700; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-title a { color: var(--text); }
.card-title a:hover { color: var(--navy); }
.card-sku { font-size: 11px; color: var(--muted); font-family: monospace; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card-body .btn-sm { margin-top: auto; padding-top: 10px; align-self: stretch; }

/* ─── BRAND LOGOS ───────────────────────────────────────────────────── */
.brand-logo-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 16px;
  text-align: center;
  transition: all .3s;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.brand-logo-card:hover { border-color: var(--gold); transform: translateY(-5px); box-shadow: 0 12px 36px rgba(245,168,0,.18); }
.brand-logo-img { width: 130px; height: 60px; object-fit: contain; display: block; margin: 0 auto; filter: grayscale(30%) opacity(.85); transition: filter .3s; }
.brand-logo-card:hover .brand-logo-img { filter: grayscale(0%) opacity(1); }
.brand-logo-name { font-size: 12px; font-weight: 700; color: var(--text); margin-top: 4px; }
.brand-logo-card .count { font-size: 11px; color: var(--muted); }
.brand-logo-hero { max-height: 80px; object-fit: contain; margin: 0 auto 16px; display: block; }

/* ─── CTA BAND ──────────────────────────────────────────────────────── */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 100px 28px;
  text-align: center;
  color: #fff;

  /* 📸 PHOTO: Store frontage, team, or customer-facing shot.
     background-image: url('assets/images/cta-bg.jpg');
     background-size: cover; background-position: center; */
  background: var(--navy);
}

/* Diagonal top cut */
.cta-band::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: #fff; /* matches whatever section is above */
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  z-index: 0;
}

.cta-band-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-band-decor::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(245,168,0,.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta-band-decor::after {
  content: '';
  position: absolute;
  width: 1000px;
  height: 1000px;
  border-radius: 50%;
  border: 1px solid rgba(245,168,0,.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta-band-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }

.cta-band h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 16px;
}

.cta-band h2 span { color: var(--gold); }
.cta-band p { opacity: .7; font-size: 17px; margin-bottom: 40px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── BUTTONS ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all .25s cubic-bezier(.2,.8,.3,1);
  text-align: center;
  border: none;
  font-family: inherit;
  letter-spacing: .4px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background .2s;
  border-radius: inherit;
}
.btn:hover::after { background: rgba(255,255,255,.08); }
.btn:active { transform: scale(.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(15,34,68,.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(15,34,68,.45);
  transform: translateY(-1px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #1aab54 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,211,102,.3);
}
.btn-whatsapp:hover {
  background: linear-gradient(135deg, #2ee876 0%, #25d366 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,.42);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.2);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover { background: rgba(255,255,255,.2); color: #fff; transform: translateY(-1px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, #e8960a 100%);
  color: #111;
  box-shadow: 0 4px 14px rgba(245,168,0,.35);
  font-weight: 800;
}
.btn-gold:hover {
  background: linear-gradient(135deg, #ffd84d 0%, var(--gold-light) 60%, var(--gold) 100%);
  color: #111;
  box-shadow: 0 8px 24px rgba(245,168,0,.5);
  transform: translateY(-1px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: #fff; transform: translateY(-1px); }

.btn-sm {
  padding: 9px 20px;
  font-size: 12.5px;
  font-weight: 700;
  width: 100%;
  text-align: center;
  border-radius: 50px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366 0%, #1aab54 100%);
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  margin-top: 8px;
  box-shadow: 0 4px 14px rgba(37,211,102,.3);
  transition: all .25s cubic-bezier(.2,.8,.3,1);
}
.whatsapp-btn:hover {
  background: linear-gradient(135deg, #2ee876 0%, #25d366 100%);
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(37,211,102,.42);
  transform: translateY(-2px);
}

/* ─── FOOTER ────────────────────────────────────────────────────────── */
/* ─── SCROLL TO TOP BUTTON ──────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 50px;
  height: 50px;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, #e8960a 100%);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(245,168,0,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(.9);
  transition: opacity .25s, transform .25s cubic-bezier(.2,.8,.3,1), visibility .25s, box-shadow .2s;
  z-index: 900;
}
.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.scroll-top:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 12px 30px rgba(245,168,0,.55); }
.scroll-top:active { transform: translateY(0) scale(.96); }
.scroll-top svg { width: 22px; height: 22px; }
@media(max-width: 600px) {
  .scroll-top { bottom: 18px; right: 18px; width: 46px; height: 46px; }
}

footer {
  background: var(--charcoal);
  color: #ccc;
  padding: 72px 28px 28px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #1e2128;
}

.footer-col img { filter: brightness(0) invert(1); }
.footer-col h4 { color: #fff; font-size: 11px; font-weight: 700; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 2px; }
.footer-col p { font-size: 14px; color: #666; margin-bottom: 10px; line-height: 1.7; }
.footer-note {
  font-size: 12.5px !important;
  font-style: italic;
  color: #7d828b !important;
  line-height: 1.6;
  margin-top: 14px;
  padding-left: 12px;
  border-left: 2px solid var(--gold);
}
.footer-col a { font-size: 14px; color: #666; margin-bottom: 10px; display: block; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }

.footer-bottom {
  max-width: var(--max);
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: #444;
}
.footer-bottom a { color: #444; transition: color .2s; }
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ─── PRODUCT PAGE ──────────────────────────────────────────────────── */
.product-page { max-width: var(--max); margin: 0 auto; padding: 40px 28px 80px; }

.product-layout {
  display: grid;
  grid-template-columns: 48% 1fr;
  gap: 64px;
  align-items: start;
}
@media(max-width:900px){ .product-layout { grid-template-columns: 1fr; gap: 32px; } }

/* Gallery */
.product-gallery { position: sticky; top: 88px; }

.gallery-main {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: box-shadow .3s;
}
.gallery-main:hover { box-shadow: var(--shadow-lg); }
.gallery-main img { max-width: 100%; max-height: 400px; object-fit: contain; padding: 28px; }

.gallery-thumbs { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }

.thumb {
  width: 76px;
  height: 76px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  object-fit: contain;
  background: #fff;
  padding: 6px;
  transition: border-color .2s, box-shadow .2s;
}
.thumb:hover { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245,168,0,.15); }
.thumb.active { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245,168,0,.2); }

/* Product info */
.product-vendor {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.product-vendor::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.product-vendor a { color: inherit !important; }

.product-info h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -.5px;
}

.product-sku {
  display: inline-block;
  font-size: 12px;
  color: var(--muted);
  font-family: monospace;
  background: var(--gray);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.product-desc {
  font-size: 15px;
  line-height: 1.85;
  color: #444;
  margin: 20px 0;
  padding: 20px;
  background: var(--gray);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.product-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 24px; }

.tag-pill {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  transition: all .2s;
}
.tag-pill:hover { border-color: var(--navy); color: var(--navy); }

/* Enquiry box — bare container, no background */
.enquiry-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 8px;
  padding: 0 0 24px;
  background: none;
  border: none;
  box-shadow: none;
}

.enquiry-box::before,
.enquiry-box::after { display: none; }

@media(max-width:480px){ .enquiry-box { grid-template-columns: 1fr; } }

/* Request Quote — outlined gold, gold content, fills gold w/ navy content on hover */
.enquiry-box .btn-primary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  box-shadow: none;
  font-weight: 700;
  padding: 14px 20px;
  font-size: 14px;
}

.enquiry-box .btn-primary:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(245,168,0,.35);
  transform: translateY(-2px);
}

/* Email icon — gold by default, switches to navy on hover */
.enquiry-box .btn-primary::before {
  content: '';
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23f5a800'%3E%3Cpath d='M2.003 5.884L10 9.882l7.997-3.998A2 2 0 0016 4H4a2 2 0 00-1.997 1.884z'/%3E%3Cpath d='M18 8.118l-8 4-8-4V14a2 2 0 002 2h12a2 2 0 002-2V8.118z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  display: inline-block;
  transition: background-image .15s;
}

.enquiry-box .btn-primary:hover::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%230f2244'%3E%3Cpath d='M2.003 5.884L10 9.882l7.997-3.998A2 2 0 0016 4H4a2 2 0 00-1.997 1.884z'/%3E%3Cpath d='M18 8.118l-8 4-8-4V14a2 2 0 002 2h12a2 2 0 002-2V8.118z'/%3E%3C/svg%3E");
}

/* WhatsApp — clean solid green, clear and intuitive */
.enquiry-box .btn-whatsapp {
  background: #25d366;
  color: #fff;
  border: 2px solid #25d366;
  box-shadow: 0 4px 16px rgba(37,211,102,.25);
  font-weight: 700;
  padding: 14px 20px;
  font-size: 14px;
}

.enquiry-box .btn-whatsapp:hover {
  background: #1daa54;
  border-color: #1daa54;
  color: #fff;
  box-shadow: 0 8px 28px rgba(37,211,102,.4);
  transform: translateY(-2px);
}

.enquiry-box .btn-whatsapp:active {
  transform: translateY(0) scale(.97);
}

/* WhatsApp icon */
.enquiry-box .btn-whatsapp::before {
  content: '';
  width: 17px;
  height: 17px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347z'/%3E%3Cpath d='M12 0C5.373 0 0 5.373 0 12c0 2.123.554 4.118 1.524 5.847L.057 23.516a.5.5 0 00.609.61l5.805-1.523A11.943 11.943 0 0012 24c6.627 0 12-5.373 12-12S18.627 0 12 0zm0 21.818a9.8 9.8 0 01-5.031-1.386l-.36-.214-3.733.979.994-3.649-.235-.374A9.816 9.816 0 012.182 12C2.182 6.57 6.57 2.182 12 2.182S21.818 6.57 21.818 12 17.43 21.818 12 21.818z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  display: inline-block;
}

/* Specs table */
.product-info table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
}

.product-info table thead { display: none; } /* hide the empty header row */

.product-info table tbody tr {
  display: grid;
  grid-template-columns: 40% 1fr;
  border-bottom: 1px solid var(--border) !important;
}
.product-info table tbody tr:last-child { border-bottom: none !important; }
.product-info table tbody tr:nth-child(even) { background: var(--gray) !important; }
.product-info table tbody tr:hover { background: #fff8e0 !important; }

.product-info table tbody td {
  padding: 12px 16px !important;
  font-size: 13.5px !important;
  border: none !important;
  background: transparent !important;
}
.product-info table tbody td:first-child {
  font-weight: 700 !important;
  color: var(--navy) !important;
  font-size: 11px !important;
  text-transform: uppercase;
  letter-spacing: .5px;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--border) !important;
}
.product-info table tbody td:last-child { color: var(--text) !important; }

/* Related products section */
.product-page .section {
  border-top: 1px solid var(--border);
  padding: 48px 0 0;
  margin-top: 64px;
}

.product-page .section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.5px;
  color: var(--navy);
  margin-bottom: 28px;
}

/* Brand/Cat page headers */
.brand-header { background: linear-gradient(135deg, var(--navy), var(--charcoal)); color: #fff; padding: 56px 28px; text-align: center; margin-bottom: 32px; }
.brand-header h1 { font-family: 'Barlow Condensed', sans-serif; font-size: 48px; font-weight: 900; text-transform: uppercase; letter-spacing: -1px; }
.brand-header p { opacity: .75; margin-top: 10px; font-size: 16px; }
.cat-header { background: var(--navy) center/cover no-repeat; position: relative; color: #fff; padding: 72px 28px; margin-bottom: 32px; overflow: hidden; }
/* 📸 PHOTO: Each category page — add background-image to .cat-header */
.cat-header::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,34,68,.9), rgba(26,52,96,.75)); }
.cat-header > * { position: relative; z-index: 1; }
.cat-header h1 { font-family: 'Barlow Condensed', sans-serif; font-size: 42px; font-weight: 900; text-transform: uppercase; letter-spacing: -1px; }
.cat-header p { opacity: .85; margin-top: 10px; font-size: 16px; }

/* Subcats */
.subcat-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.subcat-pill { background: #fff; border: 1.5px solid var(--border); border-radius: 20px; padding: 7px 18px; font-size: 13.5px; font-weight: 600; color: var(--text); transition: all .2s; }
.subcat-pill:hover { background: var(--navy); border-color: var(--navy); color: #fff; }

/* Sitemap */
.sitemap-section { margin-bottom: 40px; }
.sitemap-section h2 { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--gold); }
.sitemap-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 8px; }
.sitemap-grid a { display: block; padding: 4px 0; font-size: 14px; }

/* Results */
.results-info { font-size: 14px; color: var(--muted); margin-bottom: 16px; }

/* Product page related section */
.product-page .section { padding-top: 40px; margin-top: 40px; }
.product-page .section-title { font-size: 28px; }

/* Cookie */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: var(--dark); color: #ccc; border-top: 3px solid var(--gold); padding: 18px 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; box-shadow: 0 -8px 32px rgba(0,0,0,.4); transform: translateY(0); transition: transform .4s ease; }
.cookie-banner.hidden { transform: translateY(110%); }
.cookie-banner p { font-size: 13px; line-height: 1.6; max-width: 700px; margin: 0; }
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept { background: var(--gold); color: #111; border: none; padding: 9px 24px; font-weight: 700; font-size: 13px; border-radius: var(--radius); cursor: pointer; font-family: inherit; }
.btn-cookie-accept:hover { background: var(--gold-dark); }
.btn-cookie-decline { background: transparent; color: #aaa; border: 1px solid #333; padding: 9px 24px; font-weight: 600; font-size: 13px; border-radius: var(--radius); cursor: pointer; font-family: inherit; }
.btn-cookie-decline:hover { border-color: #777; color: #fff; }

/* Lightbox */
.lightbox-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.94); z-index: 9999; align-items: center; justify-content: center; cursor: zoom-out; padding: 16px; }
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 4px; }
.lightbox-close { position: absolute; top: 20px; right: 28px; color: #fff; font-size: 40px; line-height: 1; cursor: pointer; font-weight: 300; opacity: .7; }
.lightbox-close:hover { opacity: 1; }
#gallery-main-img { cursor: zoom-in; }

/* ─── RESPONSIVE: TABLET ────────────────────────────────────────────── */
@media(max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid .cat-card:first-child { grid-column: span 2; }
  .why-inner { grid-template-columns: 1fr; }
  .why-photo { min-height: 320px; }
  .why-photo::after { display: none; }
  .why-content { padding: 56px 28px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-bottom: 1px solid rgba(255,255,255,.06); }
}

@media(max-width: 900px) {
  /* Header: logo + hamburger on row 1, full-width search on row 2 */
  .hamburger { display: block; order: 2; margin-left: 0; }
  .header-inner { flex-wrap: wrap; height: auto; min-height: 60px; gap: 10px 12px; padding: 10px 16px; }
  .logo { margin-right: auto; }
  .logo img { height: 36px; }
  .nav-search { order: 3; width: 100%; max-width: 100%; flex: unset; min-width: 0; }
  .nav-search-wrap { height: 42px; padding-left: 14px; background: rgba(255,255,255,.12); min-width: 0; }
  .nav-search-input { height: 42px; min-width: 0; text-overflow: ellipsis; }
  .nav-search-btn { height: 42px; padding: 0 18px; flex-shrink: 0; }
  #main-nav { display: none; order: 4; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); padding: 8px 16px 14px; z-index: 999; max-height: 80vh; overflow-y: auto; box-shadow: 0 14px 28px rgba(0,0,0,.45); }
  #main-nav.open { display: block; }
  .nav-list { flex-direction: column; gap: 0; }
  .nav-list > li > a { padding: 13px 16px; border-radius: 0; font-size: 15px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-list > li > a::after { display: none; }
  /* Nested submenu — inset card with a gold accent line */
  .dropdown {
    position: static; width: auto;
    box-shadow: none;
    border: none;
    border-left: 2px solid rgba(245,168,0,.45);
    background: rgba(0,0,0,.22);
    max-height: none; columns: unset !important;
    border-radius: 0 10px 10px 0;
    padding: 6px;
    margin: 4px 4px 10px 6px;
    animation: none;
  }
  /* Small "Categories" label above the list */
  .dropdown::before {
    display: block;
    content: 'Categories';
    position: static;
    background: transparent;
    color: rgba(255,255,255,.42);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    padding: 7px 12px 7px;
    margin: 0;
    border-bottom: none;
  }
  .dropdown li a {
    color: rgba(255,255,255,.82);
    padding: 11px 14px;
    border-left: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transform: none;
  }
  .dropdown li a:hover, .dropdown li a:active {
    background: rgba(245,168,0,.14);
    color: var(--gold);
    transform: none;
  }
  .dropdown li a.active {
    background: rgba(245,168,0,.16);
    color: var(--gold);
  }
  .dropdown li a.active::after { content: '✓'; margin-left: auto; color: var(--gold); font-weight: 900; }
  .brands-drop { min-width: unset; width: 100%; }
  .has-drop > a { pointer-events: none; }

  .hero-content { padding: 72px 16px 100px; }
  .hero h1 { font-size: 60px; letter-spacing: -1px; }
  .hero-stat { margin-top: 44px; }
  .stat-box { padding: 18px 24px; }
  .stat-box .num { font-size: 36px; }

  .section { padding: 52px 16px; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
  .banner-strip-inner { grid-template-columns: 1fr; gap: 24px; padding: 44px 16px; }
  .banner-strip { min-height: 0; }
  .banner-pills { flex-direction: row; flex-wrap: wrap; }
  .why-content { padding: 48px 18px; }
  .cta-band { padding: 72px 18px; }

  /* Inner-page hero + policy spacing */
  .page-hero { padding: 40px 16px 36px; }
  .policy-body { padding: 44px 18px 56px; }

  /* Product page: stack and unstick the gallery */
  .product-page { padding: 24px 16px 56px; }
  .product-gallery { position: static; top: auto; }
  .gallery-main { height: 320px; }
  .gallery-main img { max-height: 280px; padding: 18px; }

  .breadcrumb-inner { padding: 0 16px; }
}

@media(max-width: 600px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cat-grid .cat-card:first-child { grid-column: span 2; height: 220px; }
  .cat-card { height: 160px; }

  /* Trust strip — tighter stacked rows */
  .trust-strip-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none; padding: 16px 18px; }

  .section { padding: 44px 16px; }
  .section-header { margin-bottom: 28px; }

  .hero-content { padding: 64px 16px 90px; }
  .hero h1 { font-size: 46px; }
  /* Hero stats as a clean 2×2 grid instead of wrapping unevenly */
  .hero-stat { display: grid; grid-template-columns: 1fr 1fr; margin-top: 36px; border-radius: var(--radius-lg); width: 100%; }
  .stat-box { padding: 16px 12px; border-right: 1px solid rgba(255,255,255,.08); }
  .stat-box:nth-child(2n) { border-right: none; }
  .stat-box:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat-box .num { font-size: 30px; }
  .hero-btns { flex-direction: column; align-items: stretch; }

  /* Hide the oversized decorative background number on the banner strip */
  .banner-strip-bg::after { display: none; }
  .banner-text h2 { font-size: 34px; }

  .product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .card-img-wrap, .card-img { height: 150px; }
  /* Compact "View Product" button so it fits the narrow mobile cards */
  .card-body { padding: 14px; gap: 5px; }
  /* Tighter title on narrow cards — clamp to 2 lines, slightly smaller */
  .card-title { font-size: 13px; line-height: 1.3; }
  .card-body .btn-sm {
    font-size: 11px;
    padding: 9px 10px;
    letter-spacing: .2px;
    box-shadow: 0 3px 10px rgba(245,168,0,.25);
  }

  /* Product page text */
  .product-info h1 { font-size: 26px; }
  .product-desc { padding: 16px; font-size: 14.5px; }

  footer { padding: 48px 18px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 26px; padding-bottom: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .cookie-banner { padding: 12px 16px; }
  .cookie-banner p { font-size: 12px; }
  .cookie-actions { width: 100%; }
  .btn-cookie-accept, .btn-cookie-decline { flex: 1; }
}

@media(max-width: 400px) {
  .hero h1 { font-size: 38px; }
  .hero p { font-size: 15px; }
  .section-title { font-size: 30px; }
  .stat-box .num { font-size: 26px; }
  .stat-box .lbl { font-size: 10px; }
  .nav-search-btn { padding: 0 14px; font-size: 13px; }
  .nav-search-wrap { padding-left: 12px; gap: 6px; }
  .nav-search-input { font-size: 13px; }
  .product-grid { gap: 8px; }
  .card-img-wrap, .card-img { height: 130px; }
  .card-title { font-size: 12.5px; }
  .cta-band h2 { font-size: 36px; }
}

/* SEARCH SUGGESTIONS DROPDOWN */
.nav-search { position: relative; }
.search-suggestions {
  display:none; position:absolute; top:calc(100% + 6px); left:0; right:0;
  background:#fff; border:1px solid var(--border); border-radius:var(--radius);
  box-shadow:0 8px 28px rgba(0,0,0,.18); z-index:8000; max-height:400px;
  overflow-y:auto; list-style:none; margin:0; padding:0;
}
.search-suggestions.open { display:block; }
.search-suggestions li a {
  display:flex; align-items:center; gap:12px; padding:10px 14px;
  text-decoration:none; color:var(--text); font-size:13.5px;
  transition:background .12s;
}
.search-suggestions li a:hover,
.search-suggestions li.active a { background:var(--gray); }
.search-suggestions li a img {
  width:38px; height:38px; object-fit:contain; flex-shrink:0;
  border-radius:4px; border:1px solid var(--border); background:#f8f8f8;
}
.search-suggestions li a .sug-text { flex:1; min-width:0; }
.search-suggestions li a .sug-title {
  font-weight:600; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.search-suggestions li a .sug-brand {
  font-size:11.5px; color:var(--muted); margin-top:1px;
}
.search-suggestions li a mark {
  background:rgba(240,168,0,.3); color:inherit; padding:0 1px; border-radius:2px;
}
.sug-view-all {
  display:block; padding:10px 14px; font-size:13px; font-weight:700;
  color:var(--gold); text-align:center; border-top:1px solid var(--border);
  cursor:pointer; background:#fff;
}
.sug-view-all:hover { background:var(--gray); }
