/* ============================================================
   FANAL — assets/css/style.css
   Premium off-road, truck accessories, overlanding lifestyle theme.
   Built dark-first. Mobile-friendly. Single source of truth.
   ============================================================ */

:root {
  --fanal-black:    #0a0a0a;
  --fanal-dark:     #111111;
  --fanal-charcoal: #1a1a1a;
  --fanal-steel:    #2a2a2a;
  --fanal-orange:   #f05a1a;
  --fanal-orange-d: #c24814;
  --fanal-amber:    #e8a020;
  --fanal-white:    #ffffff;
  --fanal-light:    #e8e8e8;
  --fanal-muted:    #888888;
  --fanal-red:      #cc2200;

  --font-head:  'Barlow Condensed', system-ui, sans-serif;
  --font-body:  'Inter', system-ui, sans-serif;

  --container: 1280px;
  --radius:    8px;
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--fanal-black);
  color: var(--fanal-light);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: var(--fanal-orange); text-decoration: none; transition: color .15s; }
a:hover { color: var(--fanal-amber); }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 { font-family: var(--font-head); color: var(--fanal-white); margin: 0 0 .6em; letter-spacing: -.5px; }
h1 { font-weight: 900; }
h2 { font-weight: 800; }
h3 { font-weight: 700; }
p  { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* Section helpers */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .25em;
  color: var(--fanal-orange);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.5px;
  line-height: 1.05;
  color: var(--fanal-white);
  margin-bottom: 32px;
}
.section-title-lg { font-size: 64px; }
.section-title-sm { font-size: 22px; margin-bottom: 0; }
.section-header { margin-bottom: 36px; }
.section-header-sm { margin-bottom: 18px; }
.section-cta { text-align: center; margin-top: 40px; }

.btn-primary {
  display: inline-block;
  background: var(--fanal-orange);
  color: var(--fanal-white);
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--fanal-orange-d);
  color: var(--fanal-white);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(240,90,26,.3);
}
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--fanal-white);
  padding: 14px 28px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.btn-ghost:hover {
  border-color: var(--fanal-orange);
  color: var(--fanal-white);
  background: rgba(240,90,26,.1);
}

/* ============================================================
   HEADER — three-row, smart fixed
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--fanal-black);
  transform: translateY(0);
  transition: transform .25s;
  border-bottom: 1px solid var(--fanal-steel);
}
.site-header.is-hidden { transform: translateY(-100%); }
.site-main { padding-top: 170px; }       /* 30 + 70 + 44 + breathing room */

/* Promo bar */
.header-promo {
  background: var(--fanal-orange);
  color: var(--fanal-white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  text-align: center;
  height: 30px;
  display: flex;
  align-items: center;
}
.promo-inner { position: relative; height: 18px; overflow: hidden; }
.promo-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .5s;
}
.promo-slide.is-active { opacity: 1; }

/* Main bar */
.header-main { background: var(--fanal-black); }
.header-main-inner {
  display: flex; align-items: center; gap: 24px;
  height: 70px;
}
.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
.site-logo svg {
    height: 44px;
    width: auto;
    overflow: visible;
}
.fanal-logo { display: block; }

.header-search {
  flex: 1;
  display: flex;
  background: var(--fanal-charcoal);
  border: 1.5px solid var(--fanal-steel);
  border-radius: var(--radius);
  overflow: hidden;
  height: 42px;
  transition: border-color .2s;
}
.header-search:focus-within { border-color: var(--fanal-orange); }
.header-search-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0 16px;
  color: var(--fanal-white);
  font-family: inherit;
  font-size: 14px;
  outline: none;
}
.header-search-input::placeholder { color: var(--fanal-muted); }
.header-search-submit {
  background: var(--fanal-orange);
  color: var(--fanal-white);
  border: none;
  padding: 0 18px;
  cursor: pointer;
  transition: background .2s;
}
.header-search-submit:hover { background: var(--fanal-orange-d); }

.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-phone {
  display: flex; align-items: center; gap: 8px;
  color: var(--fanal-white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background .15s;
}
.header-phone:hover { background: var(--fanal-charcoal); color: var(--fanal-white); }
.header-account {
  display: flex; align-items: center;
  width: 40px; height: 40px;
  justify-content: center;
  color: var(--fanal-light);
  border-radius: 6px;
  transition: all .15s;
}
.header-account:hover { background: var(--fanal-charcoal); color: var(--fanal-white); }
.header-quote {
  display: flex; align-items: center; gap: 8px;
  background: var(--fanal-orange);
  color: var(--fanal-white);
  border: none;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.header-quote:hover { background: var(--fanal-orange-d); transform: translateY(-1px); }
.quote-count {
  background: var(--fanal-white);
  color: var(--fanal-orange);
  border-radius: 50%;
  width: 20px; height: 20px;
  font-size: 11px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* Category nav */
.header-nav { background: var(--fanal-dark); border-top: 1px solid var(--fanal-steel); }
.header-nav-inner {
  display: flex; align-items: center;
  height: 44px;
  overflow-x: auto;
  scrollbar-width: none;
}
.header-nav-inner::-webkit-scrollbar { display: none; }
.header-nav a {
  position: relative;
  display: block;
  padding: 12px 16px;
  color: var(--fanal-light);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
  text-decoration: none;
  transition: color .15s;
}
.header-nav a:hover { color: var(--fanal-white); }
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 2px;
  background: var(--fanal-orange);
  transform: scaleX(0);
  transition: transform .2s;
}
.header-nav a:hover::after { transform: scaleX(1); }
.header-nav a.nav-deals { color: var(--fanal-amber); font-weight: 700; }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--fanal-black);
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity .8s ease;
  pointer-events: none;
}
.hero-slide.is-active { opacity: 1; pointer-events: auto; z-index: 2; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.2) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 720px;
  padding: 60px 0;
}
.hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--fanal-orange);
  border: 1.5px solid var(--fanal-orange);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: 80px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: .95;
  color: var(--fanal-white);
  margin: 0 0 24px;
}
.hero-title em { color: var(--fanal-orange); font-style: normal; }
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,.85);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.5;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-controls {
  position: absolute;
  bottom: 40px; left: 24px;
  display: flex; gap: 8px;
  z-index: 5;
}
.hero-prev, .hero-next {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  border: 1.5px solid rgba(255,255,255,.3);
  color: var(--fanal-white);
  font-size: 22px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .15s;
}
.hero-prev:hover, .hero-next:hover {
  background: var(--fanal-orange);
  border-color: var(--fanal-orange);
}

.hero-dots {
  position: absolute;
  bottom: 50px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 5;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: none;
  cursor: pointer;
  transition: all .2s;
  padding: 0;
}
.hero-dot.is-active {
  background: var(--fanal-orange);
  width: 32px;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .hero-title { font-size: 52px; }
  .hero-desc { font-size: 15px; }
  .hero-controls { display: none; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--fanal-dark);
  border-top: 1px solid var(--fanal-steel);
  border-bottom: 1px solid var(--fanal-steel);
  padding: 18px 0;
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}
.trust-item svg {
    flex-shrink: 0;
}
.trust-ico { font-size: 20px; }

/* ============================================================
   CATEGORY GRID (homepage section 3)
   ============================================================ */
.cat-grid-section { padding: 80px 0; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cat-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  border: 1px solid var(--fanal-steel);
}
.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(240,90,26,.25);
  border-color: var(--fanal-orange);
}
.cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.4) 60%, rgba(0,0,0,.1) 100%);
  transition: background .3s;
}
.cat-card:hover .cat-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,.95) 0%, rgba(0,0,0,.5) 65%, rgba(240,90,26,.15) 100%);
}
.cat-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  z-index: 2;
}
.cat-card-name {
  display: block;
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--fanal-white);
  letter-spacing: -.3px;
  margin-bottom: 4px;
}
.cat-card-desc {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-bottom: 10px;
}
.cat-card-cta {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--fanal-orange);
  text-transform: uppercase;
  letter-spacing: .1em;
}

@media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .cat-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FEATURED + PRODUCT CARDS
   ============================================================ */
.featured-section { padding: 80px 0; background: var(--fanal-black); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.products-grid-3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 1024px) { .products-grid, .products-grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .products-grid, .products-grid-3 { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 420px)  { .products-grid, .products-grid-3 { grid-template-columns: 1fr; } }

.product-card {
  background: var(--fanal-dark);
  border: 1px solid var(--fanal-steel);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all .25s;
}
.product-card:hover {
  border-color: var(--fanal-orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(240,90,26,.15);
}
.product-card-image {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--fanal-charcoal);
  padding: 16px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-card-image img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  transition: transform .3s;
}
.product-card:hover .product-card-image img { transform: scale(1.05); }
.product-card-noimg {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.product-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--fanal-orange);
  color: var(--fanal-white);
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 4px;
  z-index: 2;
}
.product-card-badge.is-sale { background: var(--fanal-red); }
.product-card-body {
  padding: 16px 16px 12px;
  flex: 1;
  display: flex; flex-direction: column; gap: 6px;
}
.product-card-brand {
  font-size: 10px;
  font-weight: 800;
  color: var(--fanal-orange);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.product-card-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--fanal-white);
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-title a { color: inherit; text-decoration: none; }
.product-card-title a:hover { color: var(--fanal-orange); }
.product-card-stars { display: flex; align-items: center; gap: 6px; font-size: 12px; }
.product-card-stars > span:first-child { color: var(--fanal-amber); letter-spacing: 1px; }
.product-card-rating { color: var(--fanal-muted); font-size: 11px; }
.product-card-pricing { display: flex; align-items: baseline; gap: 8px; margin-top: 2px; }
.product-card-price {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--fanal-white);
  letter-spacing: -.5px;
}
.product-card-price-sale { color: var(--fanal-orange); }
.product-card-price-was {
  font-size: 14px;
  color: var(--fanal-muted);
  text-decoration: line-through;
}
.product-card-fit {
  font-size: 11px;
  color: var(--fanal-muted);
}
.product-card-footer {
  padding: 0 16px 14px;
  display: flex; gap: 6px;
}
.product-card-buy {
  flex: 1;
  background: var(--fanal-orange);
  color: var(--fanal-white);
  text-align: center;
  padding: 9px 0;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-decoration: none;
  transition: background .2s;
}
.product-card-buy:hover { background: var(--fanal-orange-d); color: var(--fanal-white); }
.product-card-quote {
  width: 92px;
  background: transparent;
  color: var(--fanal-muted);
  border: 1.5px solid var(--fanal-steel);
  padding: 7px 0;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all .15s;
  font-family: inherit;
}
.product-card-quote:hover {
  border-color: var(--fanal-orange);
  color: var(--fanal-white);
}

/* ============================================================
   LIFESTYLE BANNER
   ============================================================ */
.lifestyle-banner {
  position: relative;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
.lifestyle-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.9), rgba(0,0,0,.55) 60%, rgba(0,0,0,.3));
}
.lifestyle-content {
  position: relative; z-index: 2;
  max-width: 640px;
  padding: 60px 24px;
}
.lifestyle-body { font-size: 17px; color: rgba(255,255,255,.85); margin-bottom: 28px; line-height: 1.6; }

/* ============================================================
   WHY FANAL
   ============================================================ */
.why-section { padding: 80px 0; background: var(--fanal-dark); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--fanal-charcoal);
  border: 1px solid var(--fanal-steel);
  border-radius: var(--radius);
  padding: 28px;
  transition: all .25s;
}
.why-card:hover {
  border-color: var(--fanal-orange);
  transform: translateY(-3px);
}
.why-icon {
    width: 64px;
    height: 64px;
    background: rgba(240, 90, 26, 0.1);
    border: 1px solid rgba(240, 90, 26, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background 0.2s, border-color 0.2s;
}
.why-card:hover .why-icon {
    background: rgba(240, 90, 26, 0.18);
    border-color: rgba(240, 90, 26, 0.5);
}
.why-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    margin-bottom: 10px;
}
.why-card p {
    font-size: 14px;
    color: #888888;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .why-grid { grid-template-columns: 1fr; } }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: var(--fanal-orange); padding: 40px 0; }
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-n {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 900;
  color: var(--fanal-white);
  line-height: 1;
  letter-spacing: -1px;
}
.stat-l {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
@media (max-width: 720px) { .stats-inner { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   BRAND MARQUEE
   ============================================================ */
.brand-marquee { padding: 60px 0; background: var(--fanal-black); }
.marquee-outer {
  overflow: hidden;
  position: relative;
  margin-top: 18px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee-outer:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--fanal-muted);
  letter-spacing: 2px;
  padding: 10px 44px;
  border-right: 1px solid var(--fanal-steel);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color .2s;
}
.marquee-outer:hover .marquee-item { color: var(--fanal-light); }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial-section { padding: 90px 0; background: var(--fanal-black); }
.testimonial-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-quote {
  font-family: var(--font-head);
  font-size: 120px;
  line-height: 1;
  color: var(--fanal-orange);
  margin-bottom: -20px;
}
.testimonial-inner blockquote {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 600;
  color: var(--fanal-white);
  line-height: 1.4;
  margin: 0 0 28px;
  font-style: italic;
}
.testimonial-inner cite {
  font-style: normal;
  display: block;
}
.testimonial-inner cite strong {
  font-family: var(--font-head);
  font-size: 16px;
  color: var(--fanal-white);
  text-transform: uppercase;
  letter-spacing: .15em;
  display: block;
}
.testimonial-inner cite span {
  font-size: 12px;
  color: var(--fanal-muted);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { padding: 80px 0; background: var(--fanal-dark); border-top: 1px solid var(--fanal-steel); border-bottom: 1px solid var(--fanal-steel); }
.cta-band-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.cta-band-inner p { color: var(--fanal-light); font-size: 16px; margin-bottom: 28px; }
.cta-band-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   NEWSLETTER STRIP
   ============================================================ */
.newsletter-strip { background: var(--fanal-orange); padding: 50px 0; }
.newsletter-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.newsletter-copy h3 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--fanal-white);
  text-transform: uppercase;
  letter-spacing: -.3px;
  margin: 0 0 4px;
}
.newsletter-copy p { color: rgba(255,255,255,.85); margin: 0; }
.newsletter-form { display: flex; gap: 8px; flex-wrap: wrap; }
.newsletter-form input {
  background: var(--fanal-black);
  border: 1.5px solid var(--fanal-black);
  color: var(--fanal-white);
  padding: 12px 16px;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  min-width: 260px;
  outline: none;
}
.newsletter-form input:focus { border-color: var(--fanal-white); }
.newsletter-form button {
  background: var(--fanal-black);
  color: var(--fanal-white);
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 13px;
  cursor: pointer;
  transition: background .15s;
}
.newsletter-form button:hover { background: var(--fanal-charcoal); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--fanal-black); border-top: 1px solid var(--fanal-steel); padding: 64px 0 0; }
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--fanal-steel);
}
.footer-brand .footer-logo { margin-bottom: 16px; display: inline-block; }
.footer-tagline {
  font-family: var(--font-head);
  font-size: 16px;
  color: var(--fanal-light);
  margin-bottom: 18px;
  letter-spacing: -.3px;
}
.footer-contact { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.footer-contact li a, .footer-contact li { color: var(--fanal-muted); font-size: 13px; }
.footer-contact li a:hover { color: var(--fanal-orange); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--fanal-steel);
  border-radius: 50%;
  color: var(--fanal-light);
  transition: all .15s;
}
.footer-social a:hover { background: var(--fanal-orange); border-color: var(--fanal-orange); color: var(--fanal-white); }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  color: var(--fanal-white);
  text-transform: uppercase;
  letter-spacing: .15em;
  margin: 0 0 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  color: var(--fanal-muted);
  font-size: 13px;
  transition: color .15s;
}
.footer-col ul li a:hover { color: var(--fanal-orange); }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 12px;
  color: var(--fanal-muted);
}
.footer-bottom a { color: var(--fanal-muted); }
.footer-bottom a:hover { color: var(--fanal-orange); }

@media (max-width: 900px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-main { grid-template-columns: 1fr; }
}

/* ============================================================
   CATALOG (archive + taxonomy)
   ============================================================ */
.catalog { padding-bottom: 80px; }
.catalog-hero {
  background: var(--fanal-dark);
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--fanal-steel);
  margin-bottom: 48px;
}
.catalog-title {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--fanal-white);
  margin: 0 0 8px;
  letter-spacing: -.5px;
}
.catalog-sub { color: var(--fanal-muted); font-size: 14px; margin: 0; }
.catalog-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  align-items: flex-start;
}
.catalog-sidebar { position: sticky; top: 200px; }
.catalog-sidebar h4 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  color: var(--fanal-white);
  text-transform: uppercase;
  letter-spacing: .15em;
  margin: 0 0 14px;
}
.catalog-sidebar ul { display: flex; flex-direction: column; gap: 4px; }
.catalog-sidebar li a {
  display: flex; align-items: center; justify-content: space-between;
  color: var(--fanal-muted);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all .15s;
}
.catalog-sidebar li a:hover { background: var(--fanal-charcoal); color: var(--fanal-white); }
.catalog-sidebar li a.is-active { background: var(--fanal-orange); color: var(--fanal-white); }
.cat-count {
  font-size: 11px;
  background: rgba(255,255,255,.06);
  padding: 2px 7px;
  border-radius: 10px;
}
.is-active .cat-count { background: rgba(255,255,255,.2); }

.catalog-pagination { margin-top: 40px; text-align: center; }
.catalog-pagination .page-numbers {
  display: inline-block;
  padding: 8px 13px;
  margin: 0 2px;
  border: 1px solid var(--fanal-steel);
  border-radius: 4px;
  color: var(--fanal-light);
  text-decoration: none;
  font-size: 13px;
  transition: all .15s;
}
.catalog-pagination .page-numbers.current,
.catalog-pagination .page-numbers:hover {
  background: var(--fanal-orange);
  border-color: var(--fanal-orange);
  color: var(--fanal-white);
}

.empty-state {
  padding: 60px 20px;
  text-align: center;
  color: var(--fanal-muted);
  font-size: 14px;
}
.empty-state code {
  background: var(--fanal-charcoal);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  color: var(--fanal-light);
}

@media (max-width: 900px) {
  .catalog-layout { grid-template-columns: 1fr; }
  .catalog-sidebar { position: static; }
}

/* ============================================================
   PDP — single product
   ============================================================ */
.pdp { padding: 40px 0 80px; }
.pdp-breadcrumb {
  font-size: 12px;
  color: var(--fanal-muted);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.pdp-breadcrumb a { color: var(--fanal-muted); }
.pdp-breadcrumb a:hover { color: var(--fanal-orange); }

.pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}
@media (max-width: 900px) { .pdp-grid { grid-template-columns: 1fr; gap: 28px; } }

.pdp-images { position: sticky; top: 200px; }
.pdp-main-img {
  position: relative;
  background: var(--fanal-charcoal);
  border: 1px solid var(--fanal-steel);
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
  overflow: hidden;
}
.pdp-main-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.pdp-noimg { color: var(--fanal-steel); }
.pdp-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.pdp-thumb {
  width: 72px; height: 72px;
  object-fit: contain;
  background: var(--fanal-charcoal);
  border: 2px solid var(--fanal-steel);
  border-radius: 6px;
  padding: 6px;
  cursor: pointer;
  transition: border-color .15s;
}
.pdp-thumb:hover, .pdp-thumb.is-active { border-color: var(--fanal-orange); }

.pdp-info { padding-top: 4px; }
.pdp-brand {
  font-size: 11px;
  font-weight: 800;
  color: var(--fanal-orange);
  text-transform: uppercase;
  letter-spacing: .2em;
  margin-bottom: 10px;
}
.pdp-title {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--fanal-white);
  line-height: 1.1;
  letter-spacing: -.5px;
  margin: 0 0 12px;
}
.pdp-stars {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.pdp-stars > span:first-child { color: var(--fanal-amber); font-size: 16px; letter-spacing: 2px; }
.pdp-review-count { color: var(--fanal-muted); font-size: 12px; }
.pdp-sku { font-size: 12px; color: var(--fanal-muted); margin-bottom: 22px; font-family: monospace; }

.pdp-price-block { margin-bottom: 18px; }
.pdp-price-row { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.pdp-price {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 900;
  color: var(--fanal-white);
  letter-spacing: -1px;
}
.pdp-price-was {
  font-size: 18px;
  color: var(--fanal-muted);
  text-decoration: line-through;
}
.pdp-price-tag {
  background: var(--fanal-red);
  color: var(--fanal-white);
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  border-radius: 4px;
}

.pdp-fitment {
  display: inline-block;
  background: rgba(240,90,26,.12);
  color: var(--fanal-orange);
  border: 1px solid rgba(240,90,26,.35);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}
.pdp-short {
  color: var(--fanal-light);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.pdp-bulk-notice {
  background: var(--fanal-charcoal);
  border-left: 3px solid var(--fanal-orange);
  padding: 10px 14px;
  font-size: 13px;
  color: var(--fanal-light);
  border-radius: 4px;
  margin-bottom: 24px;
}
.pdp-actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.pdp-buy-btn {
  width: 100%;
  background: var(--fanal-orange);
  color: var(--fanal-white);
  border: none;
  padding: 18px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  cursor: pointer;
  transition: all .2s;
}
.pdp-buy-btn:hover { background: var(--fanal-orange-d); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(240,90,26,.3); }
.pdp-quote-btn {
  width: 100%;
  background: transparent;
  color: var(--fanal-white);
  border: 2px solid var(--fanal-steel);
  padding: 16px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
  transition: all .2s;
}
.pdp-quote-btn:hover { border-color: var(--fanal-orange); color: var(--fanal-white); background: rgba(240,90,26,.06); }

.pdp-trust {
  display: flex; gap: 18px;
  font-size: 12px;
  color: var(--fanal-muted);
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 6px;
}

.pdp-bottom { margin-top: 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 900px) { .pdp-bottom { grid-template-columns: 1fr; } }
.pdp-h2 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--fanal-white);
  margin: 0 0 18px;
  letter-spacing: -.3px;
  border-bottom: 1px solid var(--fanal-steel);
  padding-bottom: 12px;
}
.pdp-features ul { display: flex; flex-direction: column; gap: 8px; }
.pdp-features li {
  position: relative;
  padding: 6px 0 6px 24px;
  font-size: 14px;
  color: var(--fanal-light);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.pdp-features li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--fanal-orange);
  font-weight: 700;
}
.pdp-specs-table { width: 100%; border-collapse: collapse; }
.pdp-specs-table th, .pdp-specs-table td {
  padding: 10px 12px;
  font-size: 13px;
  border-bottom: 1px solid var(--fanal-steel);
  text-align: left;
  vertical-align: top;
}
.pdp-specs-table th { color: var(--fanal-muted); width: 40%; font-weight: 600; }
.pdp-specs-table td { color: var(--fanal-light); font-weight: 500; }

/* ============================================================
   BUY MODAL
   ============================================================ */
.buy-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.75);
  z-index: 99999;
  display: flex;
  align-items: center; justify-content: center;
  padding: 20px;
}
.buy-modal {
  background: var(--fanal-dark);
  border: 1px solid var(--fanal-steel);
  border-radius: 12px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.buy-modal-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none;
  font-size: 26px;
  color: var(--fanal-muted);
  line-height: 1;
  cursor: pointer;
  transition: color .15s;
}
.buy-modal-close:hover { color: var(--fanal-white); }
.buy-modal-title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--fanal-white);
  margin: 0 0 16px;
  letter-spacing: -.3px;
}
.buy-modal-product {
  background: var(--fanal-charcoal);
  border: 1px solid var(--fanal-steel);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 22px;
}
.buy-modal-product strong { font-size: 14px; color: var(--fanal-white); display: block; }
.buy-modal-price { font-size: 22px; font-weight: 800; color: var(--fanal-orange); font-family: var(--font-head); }
.buy-form-row { margin-bottom: 13px; }
.buy-form-row label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: var(--fanal-light);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.buy-form-row .optional { color: var(--fanal-muted); font-weight: 500; }
.buy-form-row input,
.buy-form-row textarea {
  width: 100%;
  padding: 10px 14px;
  background: var(--fanal-charcoal);
  border: 1.5px solid var(--fanal-steel);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  color: var(--fanal-white);
  outline: none;
  transition: border-color .15s;
  box-sizing: border-box;
}
.buy-form-row input:focus,
.buy-form-row textarea:focus { border-color: var(--fanal-orange); }
.buy-form-row textarea { resize: vertical; min-height: 80px; }
.buy-form-qty input { max-width: 100px; }
.buy-modal-submit {
  width: 100%;
  background: var(--fanal-orange);
  color: var(--fanal-white);
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  cursor: pointer;
  transition: background .2s;
  margin-top: 8px;
}
.buy-modal-submit:hover { background: var(--fanal-orange-d); }
.buy-modal-note {
  font-size: 12px;
  color: var(--fanal-muted);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}
.buy-modal-success { text-align: center; padding: 20px 0; }
.buy-success-icon {
  width: 64px; height: 64px;
  background: #22c55e;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  color: var(--fanal-white);
  margin: 0 auto 16px;
  font-weight: 800;
}
.buy-modal-success h3 { font-family: var(--font-head); font-size: 22px; color: var(--fanal-white); margin: 0 0 8px; }
.buy-modal-success p  { color: var(--fanal-light); font-size: 14px; }

/* ============================================================
   QUOTE DRAWER
   ============================================================ */
.quote-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
  z-index: 9998;
}
.quote-overlay.is-open { opacity: 1; pointer-events: auto; }
.quote-drawer {
  position: fixed; top: 0; right: 0;
  width: 400px; max-width: 90vw;
  height: 100vh;
  background: var(--fanal-black);
  border-left: 1px solid var(--fanal-steel);
  transform: translateX(100%);
  transition: transform .3s ease;
  z-index: 9999;
  display: flex; flex-direction: column;
}
.quote-drawer.is-open { transform: translateX(0); }
.quote-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--fanal-steel);
}
.quote-drawer-header h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--fanal-white);
  margin: 0;
  letter-spacing: .03em;
}
.quote-drawer-close {
  background: none;
  border: none;
  color: var(--fanal-muted);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: color .15s;
}
.quote-drawer-close:hover { color: var(--fanal-white); }
.quote-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 18px;
}
.quote-empty {
  text-align: center;
  color: var(--fanal-muted);
  padding: 40px 20px;
  font-size: 14px;
  line-height: 1.6;
}
.quote-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--fanal-steel);
  align-items: center;
}
.quote-item-img {
  width: 60px; height: 60px;
  object-fit: contain;
  background: var(--fanal-charcoal);
  border-radius: 4px;
  padding: 4px;
  border: 1px solid var(--fanal-steel);
}
.quote-item-img-empty { display: flex; align-items: center; justify-content: center; color: var(--fanal-muted); }
.quote-item-brand {
  font-size: 10px;
  font-weight: 800;
  color: var(--fanal-orange);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 2px;
}
.quote-item-title {
  font-size: 13px;
  color: var(--fanal-white);
  line-height: 1.3;
  margin-bottom: 6px;
}
.quote-item-qty {
  display: flex; align-items: center; gap: 8px;
}
.quote-item-qty label {
  font-size: 10px;
  color: var(--fanal-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.quote-item-qty input {
  width: 56px;
  background: var(--fanal-charcoal);
  border: 1px solid var(--fanal-steel);
  border-radius: 4px;
  padding: 4px 6px;
  color: var(--fanal-white);
  font-family: inherit;
  font-size: 13px;
  text-align: center;
  outline: none;
}
.quote-item-qty input:focus { border-color: var(--fanal-orange); }
.quote-item-remove {
  background: none;
  border: none;
  color: var(--fanal-muted);
  font-size: 22px;
  line-height: 1;
  width: 30px; height: 30px;
  border-radius: 4px;
  cursor: pointer;
  transition: all .15s;
}
.quote-item-remove:hover { color: var(--fanal-red); background: rgba(204,34,0,.1); }
.quote-drawer-footer {
  border-top: 1px solid var(--fanal-steel);
  padding: 18px 24px;
}
.quote-drawer-footer .btn-primary { display: block; text-align: center; }

/* ============================================================
   PAGE HERO (about / contact / build / 404)
   ============================================================ */
.page-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 100px 0 80px;
  border-bottom: 1px solid var(--fanal-steel);
}
.page-hero-sm { padding: 70px 0 50px; background: var(--fanal-dark); }
.page-hero-tall { padding: 140px 0 100px; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.9), rgba(0,0,0,.55) 60%, rgba(0,0,0,.3));
}
.page-hero .container, .page-hero-sm .container { position: relative; z-index: 2; }
.page-hero-title {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1;
  color: var(--fanal-white);
  margin: 0 0 18px;
}
.page-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,.85);
  max-width: 600px;
  margin: 0 0 24px;
  line-height: 1.6;
}

.content-section { padding: 70px 0; }
.content-narrow { max-width: 780px; }
.content-narrow .section-title { font-size: 32px; margin: 32px 0 14px; }
.content-section p { color: var(--fanal-light); font-size: 16px; line-height: 1.8; }

/* Build-your-rig steps */
.how-it-works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}
.how-step {
  background: var(--fanal-dark);
  border: 1px solid var(--fanal-steel);
  border-radius: var(--radius);
  padding: 32px;
  transition: all .25s;
}
.how-step:hover { border-color: var(--fanal-orange); transform: translateY(-3px); }
.how-num {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 900;
  color: var(--fanal-orange);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -2px;
}
.how-step h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--fanal-white);
  margin: 0 0 10px;
  letter-spacing: -.3px;
}
.how-step p { color: var(--fanal-muted); font-size: 14px; line-height: 1.6; margin: 0; }
@media (max-width: 900px) { .how-it-works { grid-template-columns: 1fr; } }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 70px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: flex-start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info p { color: var(--fanal-light); font-size: 15px; }
.contact-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.contact-list li {
  display: flex; flex-direction: column;
  padding: 12px 0;
  border-bottom: 1px solid var(--fanal-steel);
}
.contact-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--fanal-orange);
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 4px;
}
.contact-list li a { color: var(--fanal-white); font-size: 16px; font-weight: 600; }
.contact-list li a:hover { color: var(--fanal-orange); }
.contact-social { display: flex; gap: 16px; }
.contact-social a {
  color: var(--fanal-muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
}
.contact-social a:hover { color: var(--fanal-orange); }

.contact-form-card {
  background: var(--fanal-dark);
  border: 1px solid var(--fanal-steel);
  border-radius: 12px;
  padding: 32px;
}
.contact-form-card h3 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--fanal-white);
  margin: 0 0 22px;
}
.form-row { margin-bottom: 14px; }
.form-row label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: var(--fanal-light);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.form-row .optional { color: var(--fanal-muted); font-weight: 500; }
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 11px 14px;
  background: var(--fanal-charcoal);
  border: 1.5px solid var(--fanal-steel);
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  color: var(--fanal-white);
  outline: none;
  transition: border-color .15s;
  box-sizing: border-box;
}
.form-row input:focus,
.form-row textarea:focus { border-color: var(--fanal-orange); }
.form-row textarea { resize: vertical; min-height: 120px; }

.quote-success {
  background: var(--fanal-dark);
  border: 1px solid rgba(34,197,94,.4);
  border-radius: 12px;
  padding: 36px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.quote-success-icon {
  width: 64px; height: 64px;
  background: #22c55e;
  color: var(--fanal-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  font-weight: 800;
  margin: 0 auto 16px;
}
.quote-success h2 { font-size: 28px; margin: 0 0 8px; }
.quote-success p { color: var(--fanal-light); margin: 0 0 20px; }

/* ============================================================
   404
   ============================================================ */
.four-oh-four { padding: 120px 0; text-align: center; }
.four-oh-four-num {
  font-family: var(--font-head);
  font-size: 180px;
  font-weight: 900;
  color: var(--fanal-orange);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -6px;
}
.four-oh-four-title {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--fanal-white);
  margin: 0 0 14px;
}
.four-oh-four-sub { font-size: 16px; color: var(--fanal-light); margin: 0 0 32px; }
.four-oh-four-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   GENERIC ARCHIVE / POSTS
   ============================================================ */
.archive-page { padding: 60px 0 80px; }
.archive-header { margin-bottom: 32px; }
.archive-title {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--fanal-white);
}
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.post-card {
  background: var(--fanal-dark);
  border: 1px solid var(--fanal-steel);
  border-radius: var(--radius);
  padding: 24px;
}
.post-card-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--fanal-white);
  margin: 0 0 8px;
}
.post-card-excerpt { color: var(--fanal-muted); font-size: 14px; }
@media (max-width: 800px) { .post-grid { grid-template-columns: 1fr; } }

/* ============================================================
   UTILITY
   ============================================================ */
@media (max-width: 768px) {
  .header-search { display: none; }
  .header-phone span { display: none; }
  .site-main { padding-top: 144px; }
  .section-title { font-size: 32px; }
  .section-title-lg { font-size: 42px; }
  .featured-section, .cat-grid-section, .why-section, .cta-band { padding: 50px 0; }
}


/* ═══════════════════════════════════
   PDP V2 — RUGGED OFF-ROAD STYLE
═══════════════════════════════════ */
.pdp-wrap { background: #0a0a0a; min-height: 80vh; padding-bottom: 80px; }

.pdp-breadcrumb-bar { background: #0f0f0f; border-bottom: 1px solid #1a1a1a; padding: 12px 0; }
.pdp-breadcrumb { display:flex; align-items:center; gap:8px; font-size:12px; color:#555; flex-wrap:wrap; }
.pdp-breadcrumb a { color:#555; text-decoration:none; transition:color 0.15s; }
.pdp-breadcrumb a:hover { color:#f05a1a; }
.pdp-breadcrumb span:last-child { color:#888; }
.bc-sep { color:#333; }

.pdp-grid { display:grid; grid-template-columns: 1fr 1fr; gap:60px; padding:48px 0 40px; align-items:flex-start; }
@media(max-width:900px){ .pdp-grid{ grid-template-columns:1fr; gap:32px; } }

/* Image column */
.pdp-images-col { position:sticky; top:90px; }
.pdp-main-img-wrap {
  background:#111; border:1px solid #1e1e1e; border-radius:4px;
  aspect-ratio:1/1; display:flex; align-items:center; justify-content:center;
  overflow:hidden; position:relative;
}
.pdp-main-img { width:100%; height:100%; object-fit:contain; padding:24px; box-sizing:border-box; }
.pdp-no-img { display:flex; flex-direction:column; align-items:center; gap:12px; color:#333; font-size:13px; }
.pdp-badge-flag {
  background:#f05a1a; color:#fff; font-size:11px; font-weight:800;
  letter-spacing:0.1em; text-transform:uppercase; padding:6px 16px;
  margin-bottom:12px; display:inline-block; clip-path:polygon(0 0,100% 0,95% 100%,0 100%);
}
.pdp-img-trust {
  display:flex; justify-content:space-between; margin-top:16px;
  padding:14px 16px; background:#111; border:1px solid #1e1e1e; border-radius:4px;
}
.pdp-img-trust-item { display:flex; align-items:center; gap:6px; font-size:11px; color:#666; font-weight:600; }

/* Info column */
.pdp-info-col { padding-top:0; }
.pdp-meta-top { display:flex; align-items:center; gap:10px; margin-bottom:12px; }
.pdp-brand-tag {
  font-size:10px; font-weight:800; letter-spacing:0.15em;
  color:#f05a1a; padding:4px 10px; border:1px solid rgba(240,90,26,0.3);
  border-radius:2px;
}
.pdp-cat-tag { font-size:10px; color:#555; font-weight:600; letter-spacing:0.08em; }

.pdp-title {
  font-family:'Barlow Condensed', sans-serif;
  font-size:40px; font-weight:800; text-transform:uppercase;
  color:#fff; line-height:1.05; letter-spacing:-0.5px; margin-bottom:16px;
}

.pdp-rating-row { display:flex; align-items:center; gap:10px; margin-bottom:14px; }
.pdp-stars { display:flex; gap:2px; }
.pdp-rating-text { font-size:13px; color:#888; }
.pdp-review-count { color:#f05a1a; }

.pdp-sku-fit-row { display:flex; align-items:center; gap:12px; margin-bottom:20px; flex-wrap:wrap; }
.pdp-sku-tag { font-size:11px; color:#555; font-family:monospace; }
.pdp-fitment-tag {
  display:flex; align-items:center; gap:5px; font-size:12px; font-weight:700;
  color:#fff; background:#1a1a1a; border:1px solid #2a2a2a;
  padding:5px 12px; border-radius:2px;
}

.pdp-divider { height:1px; background:linear-gradient(90deg,#f05a1a22,#2a2a2a,transparent); margin:20px 0; }

.pdp-price-section { margin-bottom:20px; }
.pdp-price-label { font-size:10px; color:#555; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; margin-bottom:4px; }
.pdp-price-value { font-family:'Barlow Condensed',sans-serif; font-size:48px; font-weight:900; color:#fff; letter-spacing:-1px; line-height:1; margin-bottom:12px; }
.pdp-bulk-alert {
  display:flex; align-items:center; gap:8px;
  background:#111; border-left:3px solid #f05a1a;
  padding:10px 14px; font-size:12px; color:#888; border-radius:0 2px 2px 0;
}
.pdp-bulk-alert strong { color:#f05a1a; }

.pdp-short-desc { font-size:14px; color:#666; line-height:1.7; margin-bottom:24px; }

/* Action buttons */
.pdp-actions { display:flex; flex-direction:column; gap:12px; margin-bottom:24px; }
.pdp-buy-btn {
  display:flex; align-items:center; justify-content:center; gap:10px;
  background:#f05a1a; color:#fff; border:none; padding:18px;
  font-family:'Barlow Condensed',sans-serif; font-size:16px; font-weight:800;
  letter-spacing:0.1em; text-transform:uppercase; cursor:pointer;
  border-radius:2px; transition:background 0.15s, transform 0.1s;
  clip-path:polygon(0 0,100% 0,98% 100%,0 100%);
}
.pdp-buy-btn:hover { background:#d4490f; transform:translateY(-1px); }
.pdp-quote-btn {
  display:flex; align-items:center; justify-content:center; gap:10px;
  background:transparent; color:#fff; border:1px solid #2a2a2a;
  padding:16px; font-family:'Barlow Condensed',sans-serif; font-size:14px;
  font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
  cursor:pointer; border-radius:2px; transition:all 0.15s;
}
.pdp-quote-btn:hover { border-color:#f05a1a; color:#f05a1a; }

/* Quick specs grid */
.pdp-quick-specs { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.pdp-qs-item {
  display:flex; align-items:flex-start; gap:10px;
  background:#111; border:1px solid #1a1a1a; padding:12px 14px; border-radius:2px;
}
.pdp-qs-item div { display:flex; flex-direction:column; gap:2px; }
.pdp-qs-item span { font-size:10px; color:#555; text-transform:uppercase; letter-spacing:0.08em; }
.pdp-qs-item strong { font-size:12px; color:#ccc; font-weight:600; }

/* Tabs section */
.pdp-tabs-section { border-top:1px solid #1a1a1a; margin-top:40px; padding-top:0; }
.pdp-tabs-nav { display:flex; border-bottom:1px solid #1a1a1a; gap:0; }
.pdp-tab-btn {
  background:transparent; border:none; color:#555; font-family:'Barlow Condensed',sans-serif;
  font-size:14px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
  padding:16px 28px; cursor:pointer; position:relative; transition:color 0.15s;
  border-bottom:2px solid transparent; margin-bottom:-1px;
}
.pdp-tab-btn:hover { color:#ccc; }
.pdp-tab-btn.active { color:#f05a1a; border-bottom-color:#f05a1a; }
.pdp-tab-panel { display:none; padding:32px 0; }
.pdp-tab-panel.active { display:block; }

/* Specs table */
.pdp-specs-table { width:100%; border-collapse:collapse; }
.pdp-specs-table tr { border-bottom:1px solid #141414; }
.pdp-specs-table tr:last-child { border-bottom:none; }
.pdp-specs-table td { padding:13px 16px; font-size:13px; }
.pdp-specs-table td:first-child { color:#555; font-weight:600; width:35%; text-transform:uppercase; font-size:11px; letter-spacing:0.06em; }
.pdp-specs-table td:last-child { color:#ccc; }
.pdp-specs-table tr:hover td { background:#111; }

/* Features list */
.pdp-features-list { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:12px; }
.pdp-features-list li {
  display:flex; align-items:flex-start; gap:12px;
  font-size:14px; color:#888; line-height:1.6;
  padding:14px 16px; background:#111; border:1px solid #1a1a1a; border-radius:2px;
}
.pdp-features-list li svg { flex-shrink:0; margin-top:2px; }

/* Fitment tab */
.pdp-fitment-block {
  display:flex; align-items:flex-start; gap:24px;
  background:#111; border:1px solid #1a1a1a; padding:28px; border-radius:2px; margin-bottom:32px;
}
.pdp-fitment-icon { flex-shrink:0; }
.pdp-fitment-info h3 { font-family:'Barlow Condensed',sans-serif; font-size:20px; font-weight:700; text-transform:uppercase; color:#fff; margin-bottom:8px; }
.pdp-fitment-value { font-size:15px; color:#f05a1a; font-weight:700; margin-bottom:8px; }
.pdp-fitment-note { font-size:12px; color:#555; line-height:1.6; }
.pdp-install-steps h4 {
  font-family:'Barlow Condensed',sans-serif; font-size:16px; font-weight:700;
  text-transform:uppercase; color:#fff; letter-spacing:0.06em; margin-bottom:16px;
}
.pdp-install-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
@media(max-width:900px){ .pdp-install-grid{ grid-template-columns:repeat(2,1fr); } }
.pdp-install-step {
  background:#111; border:1px solid #1a1a1a; padding:20px 16px;
  border-radius:2px; position:relative;
}
.step-num {
  display:block; font-family:'Barlow Condensed',sans-serif; font-size:32px;
  font-weight:900; color:#1e1e1e; line-height:1; margin-bottom:8px;
}
.pdp-install-step strong { display:block; font-size:13px; color:#ccc; font-weight:700; margin-bottom:6px; }
.pdp-install-step p { font-size:12px; color:#555; line-height:1.5; margin:0; }

/* Buy Now Modal */
.buy-modal-overlay {
  position:fixed; inset:0; background:rgba(0,0,0,0.85);
  z-index:99999; display:flex; align-items:center; justify-content:center; padding:20px;
}
.buy-modal {
  background:#111; border:1px solid #2a2a2a; border-top:3px solid #f05a1a;
  border-radius:2px; width:100%; max-width:520px; max-height:90vh;
  overflow-y:auto; padding:36px; position:relative;
}
.buy-modal-close {
  position:absolute; top:16px; right:16px; background:none; border:none;
  color:#555; cursor:pointer; transition:color 0.15s;
}
.buy-modal-close:hover { color:#fff; }
.buy-modal-header { display:flex; align-items:center; gap:12px; margin-bottom:20px; }
.buy-modal-header h2 { font-family:'Barlow Condensed',sans-serif; font-size:24px; font-weight:800; text-transform:uppercase; color:#fff; }
.buy-modal-product { background:#0a0a0a; border:1px solid #1a1a1a; padding:14px 16px; margin-bottom:24px; border-radius:2px; }
.buy-modal-product strong { display:block; font-size:13px; color:#ccc; margin-bottom:4px; }
.buy-modal-price { font-family:'Barlow Condensed',sans-serif; font-size:28px; font-weight:900; color:#f05a1a; }
.buy-form-row { margin-bottom:14px; }
.buy-form-row label { display:block; font-size:10px; font-weight:700; color:#555; margin-bottom:5px; text-transform:uppercase; letter-spacing:0.08em; }
.buy-form-row input, .buy-form-row textarea {
  width:100%; padding:11px 14px; background:#0a0a0a; border:1px solid #2a2a2a;
  color:#ccc; font-size:13px; font-family:inherit; border-radius:2px;
  outline:none; transition:border-color 0.15s; box-sizing:border-box;
}
.buy-form-row input:focus, .buy-form-row textarea:focus { border-color:#f05a1a; }
.buy-form-row textarea { resize:vertical; min-height:80px; }
.buy-modal-submit {
  width:100%; background:#f05a1a; color:#fff; border:none; padding:16px;
  font-family:'Barlow Condensed',sans-serif; font-size:15px; font-weight:800;
  letter-spacing:0.1em; text-transform:uppercase; cursor:pointer;
  border-radius:2px; transition:background 0.15s; margin-top:6px;
}
.buy-modal-submit:hover { background:#d4490f; }
.buy-modal-note { font-size:11px; color:#555; text-align:center; margin-top:10px; line-height:1.6; }
.buy-modal-success { text-align:center; padding:20px 0; }
.buy-modal-success svg { display:block; margin:0 auto 16px; }
.buy-modal-success h3 { font-family:'Barlow Condensed',sans-serif; font-size:22px; font-weight:800; text-transform:uppercase; color:#fff; margin-bottom:8px; }
.buy-modal-success p { font-size:13px; color:#666; line-height:1.6; }


/* ═══ INNER PAGES ═══ */
.page-main { background:#0a0a0a; min-height:80vh; }
.page-eyebrow { display:block; font-size:10px; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; color:#f05a1a; margin-bottom:12px; }
.page-hero-title { font-family:'Barlow Condensed',sans-serif; font-size:56px; font-weight:900; text-transform:uppercase; color:#fff; line-height:1.0; margin-bottom:16px; }
.page-hero-title em { color:#f05a1a; font-style:normal; }
.page-hero-sub { font-size:16px; color:#666; max-width:560px; line-height:1.7; }
.page-content-wrap { padding:60px 0 80px; }

.btn-orange { display:inline-flex; align-items:center; gap:8px; background:#f05a1a; color:#fff; padding:14px 28px; font-family:'Barlow Condensed',sans-serif; font-size:14px; font-weight:800; letter-spacing:0.1em; text-transform:uppercase; text-decoration:none; border-radius:2px; border:none; cursor:pointer; transition:background 0.15s; }
.btn-orange:hover { background:#d4490f; color:#fff; }

/* About page */
.about-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-bottom:60px; }
@media(max-width:900px){ .about-grid{ grid-template-columns:repeat(2,1fr); } }
.about-block { background:#111; border:1px solid #1a1a1a; padding:28px 24px; border-radius:2px; }
.about-block-icon { width:52px; height:52px; background:rgba(240,90,26,0.1); border:1px solid rgba(240,90,26,0.2); border-radius:2px; display:flex; align-items:center; justify-content:center; margin-bottom:16px; }
.about-block h3 { font-family:'Barlow Condensed',sans-serif; font-size:17px; font-weight:700; text-transform:uppercase; color:#fff; margin-bottom:10px; }
.about-block p { font-size:13px; color:#666; line-height:1.6; margin:0; }
.about-mission { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
@media(max-width:900px){ .about-mission{ grid-template-columns:1fr; } }
.about-mission-text h2 { font-family:'Barlow Condensed',sans-serif; font-size:36px; font-weight:800; text-transform:uppercase; color:#fff; margin-bottom:16px; }
.about-mission-text p { font-size:14px; color:#666; line-height:1.7; margin-bottom:12px; }
.about-mission-text .btn-orange { margin-top:8px; }
.about-mission-stats { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.mission-stat { background:#111; border:1px solid #1a1a1a; padding:24px; text-align:center; }
.stat-num { display:block; font-family:'Barlow Condensed',sans-serif; font-size:40px; font-weight:900; color:#f05a1a; line-height:1; }
.stat-label { display:block; font-size:11px; color:#555; font-weight:600; letter-spacing:0.08em; text-transform:uppercase; margin-top:4px; }

/* Contact page */
.contact-grid { display:grid; grid-template-columns:1fr 1.4fr; gap:60px; }
@media(max-width:900px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-info h2,.contact-form-wrap h2 { font-family:'Barlow Condensed',sans-serif; font-size:28px; font-weight:800; text-transform:uppercase; color:#fff; margin-bottom:24px; }
.contact-items { display:flex; flex-direction:column; gap:20px; }
.contact-item { display:flex; align-items:flex-start; gap:14px; }
.contact-item div { display:flex; flex-direction:column; gap:3px; }
.contact-item strong { font-size:11px; font-weight:700; color:#555; text-transform:uppercase; letter-spacing:0.08em; }
.contact-item span { font-size:14px; color:#ccc; }
.contact-form { display:flex; flex-direction:column; gap:0; }
.cf-row { margin-bottom:16px; }
.cf-row label { display:block; font-size:10px; font-weight:700; color:#555; margin-bottom:5px; text-transform:uppercase; letter-spacing:0.08em; }
.cf-row input,.cf-row textarea,.cf-row select { width:100%; padding:11px 14px; background:#111; border:1px solid #1e1e1e; color:#ccc; font-size:13px; font-family:inherit; border-radius:2px; outline:none; transition:border-color 0.15s; box-sizing:border-box; }
.cf-row input:focus,.cf-row textarea:focus,.cf-row select:focus { border-color:#f05a1a; }
.cf-row select { appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; }
.cf-submit { align-self:flex-start; }
.cf-success { display:flex; align-items:center; gap:10px; color:#f05a1a; font-size:14px; font-weight:600; margin-top:12px; }

/* Build Your Rig page */
.rig-build-intro { margin-bottom:40px; }
.rig-build-intro h2 { font-family:'Barlow Condensed',sans-serif; font-size:36px; font-weight:800; text-transform:uppercase; color:#fff; margin-bottom:8px; }
.rig-build-intro p { font-size:14px; color:#666; }
.rig-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-bottom:60px; }
@media(max-width:900px){ .rig-cards{ grid-template-columns:repeat(2,1fr); } }
.rig-card { background:#111; border:1px solid #1a1a1a; padding:28px 24px; border-radius:2px; text-decoration:none; display:flex; flex-direction:column; gap:12px; transition:border-color 0.2s,transform 0.15s; }
.rig-card:hover { border-color:#f05a1a; transform:translateY(-2px); }
.rig-card-icon { width:60px; height:60px; background:rgba(240,90,26,0.08); border:1px solid rgba(240,90,26,0.15); border-radius:2px; display:flex; align-items:center; justify-content:center; }
.rig-card h3 { font-family:'Barlow Condensed',sans-serif; font-size:20px; font-weight:800; text-transform:uppercase; color:#fff; margin:0; }
.rig-card p { font-size:13px; color:#666; line-height:1.6; margin:0; flex:1; }
.rig-card-cta { font-size:12px; font-weight:700; color:#f05a1a; letter-spacing:0.05em; }
.build-cta-banner { display:flex; align-items:center; justify-content:space-between; gap:24px; background:#111; border:1px solid #1a1a1a; border-left:4px solid #f05a1a; padding:28px 32px; border-radius:2px; flex-wrap:wrap; }
.build-cta-banner h3 { font-family:'Barlow Condensed',sans-serif; font-size:22px; font-weight:800; text-transform:uppercase; color:#fff; margin-bottom:4px; }
.build-cta-banner p { font-size:13px; color:#666; margin:0; }

/* Policy pages */
.policy-wrap { max-width:760px; }
.policy-block { margin-bottom:40px; padding-bottom:40px; border-bottom:1px solid #141414; }
.policy-block:last-child { border-bottom:none; }
.policy-block h2 { font-family:'Barlow Condensed',sans-serif; font-size:24px; font-weight:800; text-transform:uppercase; color:#fff; margin-bottom:14px; }
.policy-block p { font-size:14px; color:#666; line-height:1.8; }
.policy-block a { color:#f05a1a; text-decoration:none; }
.policy-block a:hover { text-decoration:underline; }
.policy-steps { padding-left:20px; display:flex; flex-direction:column; gap:10px; }
.policy-steps li { font-size:14px; color:#666; line-height:1.7; }
.policy-date { font-size:12px; color:#444; font-style:italic; }
.policy-table { border:1px solid #1a1a1a; border-radius:2px; overflow:hidden; }
.pt-row { display:grid; grid-template-columns:1fr 1fr 1fr; }
.pt-row span { padding:12px 16px; font-size:13px; color:#666; border-bottom:1px solid #141414; }
.pt-row.header span { font-size:10px; font-weight:700; color:#555; text-transform:uppercase; letter-spacing:0.08em; background:#111; }
.pt-row:last-child span { border-bottom:none; }
