/* =============================================
   ARPC DIRECT — REDESIGNED STYLESHEET
   Dark industrial · Gunmetal · Burnt orange
============================================= */
:root {
  --orange:        #E85D04;
  --orange-dark:   #C44D03;
  --orange-light:  #FF7A2E;
  --orange-glow:   rgba(232, 93, 4, 0.35);
  --steel:         #1C1C1E;
  --steel-mid:     #252528;
  --steel-light:   #2E2E32;
  --steel-border:  #3A3A3E;
  --chrome:        #C0C0C8;
  --white:         #FFFFFF;
  --off-white:     #F5F4F0;
  --light-grey:    #EDECE8;
  --text-muted:    #8A8A90;
  --navy:          #1A2340;
  --success:       #22C55E;
  --r:             12px;
  --r-sm:          8px;
  --shadow-orange: 0 8px 32px rgba(232,93,4,0.3);
  --shadow-dark:   0 12px 48px rgba(0,0,0,0.5);
  --t:             all 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--off-white);
  color: #1a1a1a;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 { line-height: 1.05; }
p { line-height: 1.7; color: #4B5563; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; }
.text-center { text-align: center; }
.mt-48 { margin-top: 48px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 32px;
  border-radius: var(--r-sm);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.btn-fire {
  background: var(--orange);
  color: white;
  box-shadow: 0 4px 16px rgba(232,93,4,0.4);
}
.btn-fire:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-orange);
}
.btn-ghost {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.45);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: white; transform: translateY(-2px); }
.btn-ghost-light {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); }
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: white; transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-white { background: white; color: var(--orange); }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }
/* outline-white — used in info sidebar cards on dark background */
.btn-outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: white; }

/* info-card text visibility fixes */
.info-item-text h4 { color: white !important; }
.info-item-text p  { color: rgba(255,255,255,0.55) !important; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(20, 20, 22, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--t);
}
.navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.5); border-bottom-color: var(--orange); }
.nav-container {
  max-width: 1280px; margin: 0 auto; padding: 0 28px;
  height: 72px; display: flex; align-items: center; gap: 28px;
}
.nav-logo img { height: 50px; width: auto; object-fit: contain; border-radius: 6px; }
.nav-links { display: flex; gap: 2px; margin-left: auto; }
.nav-links a {
  padding: 8px 14px;
  color: rgba(255,255,255,0.65);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 600;
  letter-spacing: 0.8px; text-transform: uppercase;
  border-radius: 6px; transition: var(--t);
}
.nav-links a:hover { color: white; background: rgba(232,93,4,0.15); }
.nav-links a.active { color: var(--orange-light); }
.nav-cta {
  background: var(--orange); color: white;
  padding: 10px 22px; border-radius: var(--r-sm);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.95rem;
  text-transform: uppercase; letter-spacing: 0.8px;
  transition: var(--t); white-space: nowrap;
}
.nav-cta:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: var(--shadow-orange); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: var(--t); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: var(--steel);
}
/* Dark textured metal look */
.hero-texture {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 65% 40%, rgba(232,93,4,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(232,93,4,0.06) 0%, transparent 50%),
    linear-gradient(180deg, #141416 0%, #1C1C1E 40%, #222224 100%);
  opacity: 1;
}
/* Subtle grid lines — industrial feel */
.hero-vignette {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
}
/* Orange diagonal slash accent behind right column */
.hero-slash {
  position: absolute;
  top: -10%; right: 8%;
  width: 3px;
  height: 130%;
  background: linear-gradient(180deg, transparent 0%, var(--orange) 30%, var(--orange) 70%, transparent 100%);
  transform: rotate(8deg);
  opacity: 0.25;
}

.hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 130px 28px 60px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* LEFT — text */
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
  animation: fadeUp 0.7s ease both;
}
.eyebrow-line {
  display: block; width: 40px; height: 2px;
  background: var(--orange);
}
.eyebrow-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--orange-light);
}
.hero-title {
  display: flex; flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.title-line {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 7vw, 7.5rem);
  letter-spacing: 3px;
  line-height: 0.95;
  display: block;
}
.title-white { color: white; }
.title-orange {
  color: var(--orange);
  text-shadow: 0 0 60px rgba(232,93,4,0.4);
}
.title-dot { color: var(--orange); }

.hero-desc {
  color: rgba(255,255,255,0.72) !important;
  font-size: 1rem; line-height: 1.8;
  max-width: 460px;
  margin-bottom: 36px;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-desc strong { color: rgba(255,255,255,0.9); }

.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeUp 0.7s 0.3s ease both;
}
.hero-badges {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.4s ease both;
}
.badge-item {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.badge-item i { color: var(--orange); font-size: 0.9rem; }
.badge-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--steel-border); }

/* RIGHT — logo + parts image */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeUp 0.7s 0.15s ease both;
}
.hero-logo-frame {
  position: relative;
  background: var(--steel-mid);
  border: 1px solid var(--steel-border);
  border-radius: var(--r);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-logo-frame::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.hero-logo-img {
  max-height: 120px; width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.6));
  position: relative; z-index: 1;
}
.hero-logo-glow {
  position: absolute;
  width: 180px; height: 80px;
  background: radial-gradient(ellipse, rgba(232,93,4,0.2) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.hero-parts-frame {
  position: relative;
  background: var(--steel-mid);
  border: 1px solid var(--steel-border);
  border-radius: var(--r);
  overflow: hidden;
}
.hero-parts-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}
.hero-parts-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.hero-parts-frame:hover .hero-parts-img { transform: scale(1.04); }
.parts-label {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  display: flex; align-items: center; gap: 10px;
  z-index: 2;
}
.parts-label-tag {
  background: var(--orange);
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 4px;
  flex-shrink: 0;
}
.parts-label-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem; font-weight: 700;
  color: white; letter-spacing: 0.5px;
}

/* STATS BAR */
.hero-statsbar {
  position: relative; z-index: 2;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--steel-border);
}
.statsbar-inner {
  display: flex; align-items: center;
  padding: 20px 0;
}
.stat-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: 3px;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; letter-spacing: 2px;
  color: white; line-height: 1;
}
.stat-plus { color: var(--orange); }
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-muted);
}
.stat-divider { width: 1px; height: 40px; background: var(--steel-border); }

/* ===== MARQUEE ===== */
.marquee-wrap {
  background: var(--orange);
  overflow: hidden;
  padding: 13px 0;
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 0.9rem;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: white; padding: 0 20px;
}
.m-dot { color: rgba(255,255,255,0.5) !important; padding: 0 4px !important; font-size: 0.5rem !important; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 64px; }
.sh-eyebrow {
  display: flex; align-items: center;
  justify-content: center; gap: 14px;
  margin-bottom: 16px;
}
.sh-eyebrow span {
  display: block; flex: 0 0 40px; height: 1px;
  background: var(--orange);
}
.sh-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--orange);
}
.sh-eyebrow.light { color: rgba(255,255,255,0.5); }
.sh-eyebrow.light span { background: rgba(255,255,255,0.3); }
.sh-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  letter-spacing: 3px;
  color: var(--navy);
  margin-bottom: 12px;
}
.sh-title span { color: var(--orange); }
.sh-sub { color: var(--text-muted); font-size: 1rem; max-width: 500px; margin: 0 auto; }

/* ===== CATEGORIES ===== */
.cats-section { background: var(--off-white); }
.cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cat-card {
  background: white;
  border: 1px solid var(--light-grey);
  border-radius: var(--r);
  padding: 28px 24px;
  display: flex; align-items: center; gap: 16px;
  position: relative; overflow: hidden;
  transition: var(--t);
}
.cat-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--orange);
  transform: scaleY(0);
  transition: transform 0.3s ease;
  transform-origin: bottom;
}
.cat-card:hover { transform: translateX(6px); box-shadow: -4px 0 0 var(--orange), var(--shadow-dark); border-color: transparent; }
.cat-card:hover::before { transform: scaleY(1); }
.cat-icon-wrap {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(232,93,4,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--orange);
  flex-shrink: 0; transition: var(--t);
}
.cat-card:hover .cat-icon-wrap { background: var(--orange); color: white; }
.cat-info { flex: 1; }
.cat-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem; font-weight: 800;
  color: var(--navy); letter-spacing: 0.3px;
  margin-bottom: 4px;
}
.cat-info p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; }
.cat-arrow {
  color: var(--orange); font-size: 0.85rem;
  opacity: 0; transition: var(--t);
  flex-shrink: 0;
}
.cat-card:hover .cat-arrow { opacity: 1; transform: translateX(4px); }
.cat-number {
  position: absolute; right: 14px; top: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem; letter-spacing: 2px;
  color: rgba(0,0,0,0.04); line-height: 1;
  pointer-events: none;
}

/* ===== ALL MAKES BANNER ===== */
.makes-banner {
  position: relative;
  min-height: 480px;
  display: flex; align-items: center;
  overflow: hidden;
}
.makes-img-wrap {
  position: absolute; inset: 0;
}
.makes-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(20%) brightness(0.6);
}
.makes-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(20,20,22,0.92) 0%,
    rgba(20,20,22,0.75) 50%,
    rgba(20,20,22,0.4) 100%);
}
.makes-content {
  position: relative; z-index: 2;
  padding: 80px 0;
}
.makes-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 7vw, 7rem);
  letter-spacing: 4px;
  color: white; line-height: 0.95;
  margin-bottom: 20px;
}
.makes-title span { color: var(--orange); }
.makes-sub {
  color: rgba(255,255,255,0.82) !important;
  font-size: 1.05rem;
  max-width: 420px;
  margin-bottom: 32px;
}

/* ===== FEATURED PARTS ===== */
.featured-section { background: white; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.product-card {
  background: white;
  border: 1px solid var(--light-grey);
  border-radius: var(--r);
  overflow: hidden;
  transition: var(--t);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-dark); border-color: transparent; }
.product-img {
  background: linear-gradient(145deg, #D4D8E2 0%, #B8BEC9 100%);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  position: relative; overflow: hidden;
}
.product-img::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.product-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--orange); color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 4px; z-index: 1;
}
.product-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.product-cat {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange);
}
.product-name { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--navy); line-height: 1.2; }
.product-compat { font-size: 0.78rem; color: var(--text-muted); }
.product-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; letter-spacing: 1px; color: var(--navy);
  margin-top: auto;
}
.product-price span { font-family: 'Barlow', sans-serif; font-size: 0.8rem; color: var(--text-muted); font-weight: 400; }
.product-actions { padding: 0 16px 16px; display: flex; gap: 8px; }
.btn-cart {
  flex: 1; background: var(--navy); color: white;
  padding: 11px 12px; border-radius: var(--r-sm);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem; font-weight: 800;
  letter-spacing: 0.5px; text-transform: uppercase;
  border: none; cursor: pointer; transition: var(--t);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-cart:hover { background: var(--orange); }
.btn-buy {
  background: rgba(232,93,4,0.1); color: var(--orange);
  border: 1.5px solid var(--orange);
  padding: 11px 14px; border-radius: var(--r-sm);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem; font-weight: 800;
  cursor: pointer; transition: var(--t);
}
.btn-buy:hover { background: var(--orange); color: white; }

/* ===== FORD RANGER SPOTLIGHT ===== */
.spotlight-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.spotlight-bg {
  position: absolute; inset: 0;
  background: var(--steel);
}
.spotlight-texture {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 30% 50%, rgba(232,93,4,0.1) 0%, transparent 60%),
    linear-gradient(135deg, #141416 0%, #1C1C1E 100%);
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px),
    radial-gradient(ellipse at 30% 50%, rgba(232,93,4,0.08) 0%, transparent 60%),
    linear-gradient(135deg, #0E0E10 0%, #1C1C1E 100%);
  background-size: 60px 60px, 60px 60px, 100% 100%, 100% 100%;
}
.spotlight-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}
.spotlight-img-frame {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--steel-border);
}
.spotlight-img-frame::before {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  box-shadow: inset 0 0 0 1px rgba(232,93,4,0.3);
  border-radius: var(--r);
  pointer-events: none;
}
.spotlight-img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}
.spotlight-img-frame:hover .spotlight-img { transform: scale(1.03); }
.spotlight-img-accent {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(0deg, rgba(232,93,4,0.12) 0%, transparent 100%);
  pointer-events: none;
}
.spotlight-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  letter-spacing: 4px; color: white; line-height: 0.95;
  margin-bottom: 20px;
}
.spotlight-title span { color: var(--orange); }
.spotlight-desc {
  color: rgba(255,255,255,0.72) !important;
  font-size: 0.98rem; line-height: 1.8;
  margin-bottom: 28px;
}
.spotlight-list {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 36px;
}
.spotlight-list li {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.8);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 600; letter-spacing: 0.3px;
}
.spotlight-list li i { color: var(--orange); width: 16px; flex-shrink: 0; }
.spotlight-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== WHY US ===== */
.why-section { background: var(--off-white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: white;
  border: 1px solid var(--light-grey);
  border-radius: var(--r);
  padding: 36px 28px;
  text-align: center;
  transition: var(--t);
  position: relative; overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--orange);
  transform: scaleX(0); transition: var(--t);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-dark); }
.why-card:hover::after { transform: scaleX(1); }
.why-icon {
  width: 60px; height: 60px; border-radius: 14px;
  background: rgba(232,93,4,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--orange);
  margin: 0 auto 20px;
  transition: var(--t);
}
.why-card:hover .why-icon { background: var(--orange); color: white; }
.why-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem; font-weight: 800;
  color: var(--navy); letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.why-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ===== CTA STRIP ===== */
.cta-strip {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}
.cta-strip-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 50%, var(--orange-light) 100%);
}
.cta-strip-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    45deg, transparent, transparent 20px,
    rgba(255,255,255,0.03) 20px, rgba(255,255,255,0.03) 40px
  );
}
.cta-strip-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center;
  justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
}
.cta-strip-logo img {
  height: 64px; width: auto;
  object-fit: contain; border-radius: 8px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.cta-strip-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem; letter-spacing: 2px; color: white;
  margin-bottom: 6px;
}
.cta-strip-text p { color: rgba(255,255,255,0.85) !important; font-size: 0.95rem; }
.cta-strip-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-strip-actions .btn-fire { background: white; color: var(--orange); box-shadow: none; }
.cta-strip-actions .btn-fire:hover { background: var(--off-white); }

/* ===== CART WIDGET ===== */
.cart-widget {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  background: var(--navy); color: white;
  border: none; border-radius: 50px;
  padding: 14px 22px; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 800; letter-spacing: 0.5px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4); transition: var(--t);
  text-transform: uppercase;
}
.cart-widget:hover { background: var(--orange); transform: translateY(-3px); box-shadow: var(--shadow-orange); }
.cart-count {
  background: var(--orange); border-radius: 50%;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
}
.cart-widget:hover .cart-count { background: white; color: var(--orange); }

/* ===== CART DRAWER ===== */
.cart-drawer {
  position: fixed; top: 0; right: -430px; width: 430px;
  height: 100vh; background: white; z-index: 1100;
  box-shadow: -8px 0 60px rgba(0,0,0,0.25);
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
}
.cart-drawer.open { right: 0; }
.cart-header {
  padding: 20px 24px; background: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
}
.cart-header h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase; color: white;
}
.cart-close {
  background: rgba(255,255,255,0.1); border: none;
  font-size: 1.2rem; cursor: pointer; color: white;
  padding: 6px 10px; border-radius: 6px; transition: var(--t);
}
.cart-close:hover { background: rgba(255,255,255,0.2); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 20px; }
.cart-item { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--light-grey); }
.cart-item-icon {
  width: 56px; height: 56px; background: var(--steel);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem; flex-shrink: 0;
}
.cart-item-details { flex: 1; }
.cart-item-details h4 { font-size: 0.9rem; color: var(--navy); font-weight: 700; margin-bottom: 3px; }
.cart-item-details p { font-size: 0.78rem; color: var(--text-muted); }
.cart-item-price { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 1px; color: var(--navy); }
.cart-item-remove { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 0.78rem; margin-top: 4px; padding: 0; transition: var(--t); }
.cart-item-remove:hover { color: red; }
.cart-footer { padding: 20px; border-top: 1px solid var(--light-grey); }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.cart-total span:first-child { font-weight: 600; color: var(--navy); font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.5px; }
.cart-total span:last-child { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: 1px; color: var(--navy); }
.cart-empty { text-align: center; padding: 60px 0; color: var(--text-muted); }
.cart-empty i { font-size: 3rem; margin-bottom: 12px; display: block; color: var(--light-grey); }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 90px; right: 24px;
  background: var(--navy); color: white;
  padding: 13px 22px; border-radius: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: 0.5px;
  z-index: 1200; display: flex; align-items: center; gap: 10px;
  transform: translateY(80px); opacity: 0;
  transition: all 0.3s ease; box-shadow: var(--shadow-dark);
  border-left: 3px solid var(--orange);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast i { color: var(--success); }

/* ===== FOOTER ===== */
.footer-top { background: #0E0E10; padding: 72px 0 48px; }
.footer-bottom {
  background: #080809; padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom .container {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { color: rgba(255,255,255,0.25); font-size: 0.82rem; }
.footer-bottom strong { color: rgba(255,255,255,0.4); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; margin-bottom: 0;
}
.footer-logo { height: 60px; width: auto; border-radius: 8px; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.55) !important; font-size: 0.88rem; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; display: flex;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); font-size: 0.9rem;
  transition: var(--t);
}
.social-links a:hover { background: var(--orange); border-color: var(--orange); color: white; }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { color: rgba(255,255,255,0.5); font-size: 0.88rem; transition: var(--t); }
.footer-col ul li a:hover { color: var(--orange-light); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,0.5); font-size: 0.86rem; padding: 3px 0; line-height: 1.5; }
.footer-contact li i { color: var(--orange); width: 14px; flex-shrink: 0; margin-top: 2px; }
.footer-contact li a { color: rgba(255,255,255,0.5); transition: var(--t); }
.footer-contact li a:hover { color: var(--orange-light); }
.footer-contact li span { color: rgba(255,255,255,0.5); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--steel);
  padding: 140px 28px 70px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
              linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 6rem);
  letter-spacing: 4px; color: white;
  position: relative; z-index: 1;
}
.page-hero h1 span { color: var(--orange); }
.page-hero p { color: rgba(255,255,255,0.55); max-width: 480px; margin: 12px auto 0; position: relative; z-index: 1; }

/* ===== SHOP PAGE ===== */
.shop-section { padding: 60px 0; }
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
.sidebar { background: white; border-radius: var(--r); padding: 24px; border: 1px solid var(--light-grey); position: sticky; top: 90px; }
.sidebar h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--navy); margin-bottom: 14px; }
.filter-group { margin-bottom: 26px; padding-bottom: 26px; border-bottom: 1px solid var(--light-grey); }
.filter-group:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.filter-group label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; font-family: 'Barlow Condensed', sans-serif; }
.filter-group select, .filter-group input {
  width: 100%; padding: 10px 12px; border: 1.5px solid var(--light-grey);
  border-radius: var(--r-sm); font-family: 'Barlow', sans-serif;
  font-size: 0.88rem; color: var(--navy); background: var(--off-white); transition: var(--t);
}
.filter-group select:focus, .filter-group input:focus { outline: none; border-color: var(--orange); }
.cat-filter-list { display: flex; flex-direction: column; gap: 4px; }
.cat-filter-btn {
  padding: 9px 12px; border-radius: var(--r-sm);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem; font-weight: 600; color: var(--text-muted);
  background: none; border: none; cursor: pointer; text-align: left; transition: var(--t);
}
.cat-filter-btn:hover, .cat-filter-btn.active { background: rgba(232,93,4,0.08); color: var(--orange); }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; gap: 16px; flex-wrap: wrap; }
.shop-results { font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem; color: var(--text-muted); letter-spacing: 0.5px; }
.shop-sort select { padding: 8px 12px; border: 1.5px solid var(--light-grey); border-radius: var(--r-sm); font-family: 'Barlow', sans-serif; font-size: 0.88rem; }

/* ===== ENQUIRY / FORMS ===== */
.enquiry-section, .contact-section { padding: 60px 0; }
.enquiry-layout, .contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.form-card { background: white; border-radius: var(--r); padding: 40px; border: 1px solid var(--light-grey); box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
.form-card h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; letter-spacing: 2px; color: var(--navy); margin-bottom: 6px; }
.form-card > p { margin-bottom: 28px; font-size: 0.9rem; color: #6B7280; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--light-grey); border-radius: var(--r-sm);
  font-family: 'Barlow', sans-serif; font-size: 0.93rem;
  color: var(--navy); background: var(--off-white); transition: var(--t);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--orange); background: white; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 5px; }
.section-divider {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange); margin: 28px 0 18px;
  display: flex; align-items: center; gap: 12px;
}
.section-divider::after { content: ''; flex: 1; height: 1.5px; background: rgba(232,93,4,0.2); }
.info-card { background: var(--steel); border-radius: var(--r); padding: 32px; position: sticky; top: 90px; border: 1px solid var(--steel-border); }
.info-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: white !important; margin-bottom: 24px; }
.info-card p { color: rgba(255,255,255,0.6) !important; }
.info-card a { color: rgba(255,255,255,0.75) !important; }
.info-card a:hover { color: var(--orange) !important; }
.info-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.info-item-icon { width: 40px; height: 40px; background: rgba(232,93,4,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1rem; flex-shrink: 0; }
.info-item-text h4 { color: white !important; font-size: 0.9rem; margin-bottom: 3px; font-weight: 600; }
.info-item-text p { color: rgba(255,255,255,0.55) !important; font-size: 0.82rem; }

/* ===== ABOUT PAGE ===== */
.about-section { padding: 60px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 72px; }
.about-img img { border-radius: var(--r); box-shadow: var(--shadow-dark); }
.about-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; letter-spacing: 3px; color: var(--navy); margin-bottom: 20px; }
.about-text p { margin-bottom: 14px; color: var(--text-muted); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { background: white; border-radius: var(--r); padding: 28px; text-align: center; border: 1px solid var(--light-grey); }
.value-icon { width: 56px; height: 56px; background: rgba(232,93,4,0.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--orange); margin: 0 auto 16px; }
.value-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.15rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ===== GALLERY ===== */
.gallery-section { padding: 60px 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { border-radius: var(--r); overflow: hidden; aspect-ratio: 4/3; background: var(--steel); position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(232,93,4,0.75); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--t); color: white; font-size: 2rem; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===== CONTACT PAGE ===== */
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card { background: white; border-radius: var(--r); padding: 24px; border: 1px solid var(--light-grey); display: flex; gap: 18px; align-items: flex-start; }
.contact-card-icon { width: 46px; height: 46px; background: rgba(232,93,4,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1.1rem; flex-shrink: 0; }
.contact-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 800; letter-spacing: 0.5px; color: var(--navy); margin-bottom: 4px; }
.contact-card p, .contact-card a { color: #6B7280; font-size: 0.88rem; }
.contact-card a:hover { color: var(--orange); }

/* ===== MODAL ===== */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 24px; }
.modal-overlay.active { display: flex; }
.modal { background: white; border-radius: var(--r); padding: 48px 40px; max-width: 460px; width: 100%; text-align: center; animation: scaleIn 0.3s ease; border-top: 4px solid var(--orange); }
.modal-icon { width: 72px; height: 72px; background: rgba(34,197,94,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 2rem; color: var(--success); }
.modal h3 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 2px; color: var(--navy); margin-bottom: 12px; }
.modal p { margin-bottom: 28px; font-size: 0.92rem; color: #6B7280; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: scale(1); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; max-width: 640px; }
  .hero-visual { display: grid; grid-template-columns: 1fr 1fr; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .spotlight-grid { grid-template-columns: 1fr; }
  .spotlight-img-col { max-width: 520px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .shop-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .enquiry-layout, .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--steel); padding: 16px; gap: 4px; border-bottom: 1px solid var(--steel-border); }
  .hero-visual { grid-template-columns: 1fr; }
  .hero-statsbar .statsbar-inner { flex-wrap: wrap; gap: 0; }
  .stat-item { min-width: 50%; padding: 12px 0; }
  .stat-divider { display: none; }
  .cats-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .cta-strip-logo { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .cart-drawer { width: 100%; right: -100%; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-badges { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ===== PRODUCT CARD HOVER DETAIL HINT ===== */
.product-card .product-img .product-img-hover-hint { opacity: 0; transition: opacity .25s; }
.product-card:hover .product-img .product-img-hover-hint { opacity: 1; }
.product-card .product-body { transition: background .2s; }
.product-card:hover .product-body { background: #FAFAF8; }

/* ── Shop Pagination ─────────────────────────────────────────────────────── */
.pagi-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: var(--r-sm);
  font-family: 'Barlow Condensed', sans-serif; font-size: .88rem;
  font-weight: 800; letter-spacing: .5px; text-transform: uppercase;
  background: white; color: var(--navy);
  border: 1.5px solid var(--light-grey); cursor: pointer;
  transition: all .2s; white-space: nowrap;
}
.pagi-btn:hover:not(:disabled) { background: var(--navy); color: white; border-color: var(--navy); }
.pagi-btn:disabled { opacity: .38; cursor: not-allowed; }
.pagi-btn.pagi-active { background: var(--orange); color: white; border-color: var(--orange); }
.pagi-ellipsis { padding: 8px 4px; color: var(--text-muted); font-size: .9rem; }
.pagi-info { padding: 8px 12px; font-size: .78rem; color: var(--text-muted); font-family: 'Barlow Condensed', sans-serif; letter-spacing: .5px; }
