/* =====================================================================
   AUTOMOTIVE ATHEME — Master CSS
   Complete standalone stylesheet for the Automotive Atheme Magento 2 theme
   ===================================================================== */

/* ── GOOGLE FONTS loaded via <link> in head ─────────────────────────── */

/* ── DESIGN TOKENS ───────────────────────────────────────────────────── */
:root {
  --clr-red:        #E53211;
  --clr-red-dark:   #C02500;
  --clr-navy:       #0D1B2A;
  --clr-navy-mid:   #1A2F45;
  --clr-steel:      #2C3E50;
  --clr-silver:     #B0BEC5;
  --clr-light:      #F4F6F8;
  --clr-white:      #FFFFFF;
  --clr-text:       #1C2526;
  --clr-muted:      #6B7A8D;
  --clr-border:     #E2E8F0;
  --clr-gold:       #F6B93B;
  --ff-display:     'Barlow', sans-serif;
  --ff-body:        'Inter', sans-serif;
  --section-gap:    80px;
  --radius-sm:      4px;
  --radius-md:      8px;
  --radius-lg:      16px;
  --radius-pill:    40px;
  --shadow-sm:      0 2px 8px rgba(0,0,0,.08);
  --shadow-md:      0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:      0 16px 48px rgba(0,0,0,.20);
  --container-w:    1280px;
  --trans:          .2s ease;
}

/* ── RESET ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--clr-text);
  background: var(--clr-white);
}
img, video { display: block; max-width: 100%; height: auto; }
a, a:link, a:visited { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: var(--ff-body); cursor: pointer; }
input, select, textarea { font-family: var(--ff-body); }

/* ── UTILITIES ───────────────────────────────────────────────────────── */
.ath-container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 20px;
}
.ath-section          { padding: var(--section-gap) 0; }
.ath-section--gray    { background: var(--clr-light); }

.ath-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
}
.ath-eyebrow {
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--clr-red);
  margin-bottom: 6px;
}
.ath-eyebrow--light { color: var(--clr-red); }
.ath-section-title {
  font-family: var(--ff-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--clr-navy);
  line-height: 1.15;
}
.ath-section-title span { color: var(--clr-red); }
.ath-view-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-red);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--trans);
}
.ath-view-all:hover { gap: 9px; }

/* Buttons */
.ath-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-red);
  color: #fff;
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 10px 30px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--clr-red);
  transition: background var(--trans), transform .15s;
}
.ath-btn-primary:hover {
  background: var(--clr-red-dark);
  border-color: var(--clr-red-dark);
  transform: translateY(-1px);
  color: #fff;
}
.ath-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 10px 30px;
  border-radius: var(--radius-pill);
  border: 2px solid #fff;
  transition: background var(--trans), border-color var(--trans);
}
.ath-btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  color: #fff;
}
.ath-btn-sm {
  display: inline-block;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  background: var(--clr-red);
  color: #fff;
  transition: background var(--trans);
}
.ath-btn-sm:hover { background: var(--clr-red-dark); color: #fff; }
.ath-btn-sm--outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.4);
  color: rgba(255,255,255,.8);
}
.ath-btn-sm--outline:hover { background: rgba(255,255,255,.1); color: #fff; }

/* =====================================================================
   HEADER
   ===================================================================== */
.ath-header {
  z-index: 1000;
  background: var(--clr-white);
  box-shadow: var(--shadow-sm);
}

/* Top bar */
.ath-topbar {
  background: var(--clr-navy);
  padding: 7px 0;
  font-size: 12px;
  color: #fff;
}
.ath-topbar .ath-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ath-topbar-left,
.ath-topbar-right { display: flex; gap: 20px; align-items: center; }
.ath-topbar a { color: #fff; transition: color var(--trans); }
.ath-topbar a:hover { color: #fff; }

/* Middle bar */
.ath-header-mid {  padding: 12px 0; }
.ath-header-mid-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Logo */
.ath-logo { flex-shrink: 0; display: flex; align-items: center; }
.ath-logo-img { height: 90px; width: auto; display: block; }

/* Search */
.ath-search-wrap { flex: 1; }
.ath-search-form { width: 100%; }
.ath-search-inner {
  display: flex;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: var(--clr-white);
}
.ath-search-inner:focus-within { border-color: var(--clr-red); }
.ath-search-input {
  flex: 1;
  border: none !important;
  height: 37px !important;
  padding: 0 18px;
  font-size: 14px;
  line-height: 38px;
  outline: none;
  background: transparent;
  color: var(--clr-text);
  font-family: inherit;
}
.ath-search-input::placeholder { color: var(--clr-muted); }
input.ath-search-input:focus { box-shadow: none; }
input.ath-search-input:hover { background: transparent !important; }
.ath-search-btn {
  height: 38px;
  background: var(--clr-red);
  border: none;
  color: #fff;
  padding: 0 22px;
  display: flex;
  align-items: center;
}
.ath-search-btn:hover,
.ath-search-btn:active { background: var(--clr-red) !important; color: #fff !important; }

/* Header icons */
.ath-header-icons { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.ath-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  font-size: 10px;
  font-weight: 600;
  color: var(--clr-steel);
  background: none;
  border: none;
  transition: background var(--trans), color var(--trans);
}
.ath-icon-btn:hover { background: var(--clr-border); color: var(--clr-red); }
.ath-cart-btn {
  height: 40px;
  background: var(--clr-red);
  color: #fff !important;
  border-radius: var(--radius-pill);
  flex-direction: row;
  font-size: 13px;
  padding: 0 18px;
  gap: 8px;
  line-height: 1;
}
.ath-cart-btn:hover { background: var(--clr-red-dark) !important; }

/* Nav bar */
.ath-nav {
  background: var(--clr-navy);
  border-top: 3px solid var(--clr-red);
  position: relative;
  z-index: 100;
}
.ath-nav .ath-container { position: relative; }
.ath-nav-list {
  display: flex;
  align-items: stretch;
}
.ath-nav-list,
.ath-nav-list ul,
.ath-nav-list li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ath-nav-list > li { position: relative; }
.ath-nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 13px 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .4px;
  white-space: nowrap;
  transition: background var(--trans);
}
.ath-nav-list > li > a:hover,
.ath-nav-list > li:hover > a { background: var(--clr-red); }
.ath-nav-arrow {
  transition: transform var(--trans);
  flex-shrink: 0;
}
.ath-has-mega:hover .ath-nav-arrow { transform: rotate(180deg); }
.ath-nav-highlight > a { color: var(--clr-gold) !important; font-weight: 700; }
.ath-nav-highlight > a:hover { background: var(--clr-red) !important; color: #fff !important; }

/* Reset all ul/li margins inside nav */
.ath-nav ul,
.ath-nav li,
.ath-nav .vmegamenu,
.ath-nav .vmegamenu-item,
.ath-nav .vmegamenu-sub,
.ath-nav .vmegamenu-col,
.ath-nav .vmegamenu-grand,
.ath-nav .vmegamenu-grand li {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Mega menu */
.ath-mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--clr-red);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 28px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
  z-index: 999;
  min-width: 100%;
}
.ath-mega-menu--narrow {
  left: 0;
  right: auto;
  min-width: 560px;
}
.ath-has-mega:hover .ath-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.ath-mega-grid { display: grid; gap: 0 28px; }
.ath-mega-3col { grid-template-columns: repeat(3, 1fr); }
.ath-mega-4col { grid-template-columns: repeat(4, 1fr); }
.ath-mega-5col { grid-template-columns: repeat(5, 1fr); }
.ath-mega-6col { grid-template-columns: repeat(6, 1fr); }
.ath-mega-col h4 {
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--clr-navy);
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--clr-red);
}
.ath-mega-col ul { padding: 0; }
.ath-mega-col ul li a {
  display: block;
  padding: 6px 0;
  color: #555;
  font-size: 13px;
  transition: color var(--trans), padding-left var(--trans);
}
.ath-mega-col ul li a:hover { color: var(--clr-red); padding-left: 6px; }

/* Image-based mega menu */
.ath-mega-menu--images {
  padding: 30px 0;
}
.ath-mega-menu--images .ath-mega-grid {
  gap: 20px;
}
.ath-mega-item {
  text-align: center;
}
.ath-mega-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform var(--trans);
}
.ath-mega-item a:hover {
  transform: translateY(-4px);
}
.ath-mega-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--clr-light);
  margin-bottom: 12px;
  border: 2px solid var(--clr-border);
  transition: border-color var(--trans);
}
.ath-mega-item:hover .ath-mega-img {
  border-color: var(--clr-red);
}
.ath-mega-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans);
}
.ath-mega-item:hover .ath-mega-img img {
  transform: scale(1.05);
}
.ath-mega-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-navy);
  text-align: center;
  line-height: 1.3;
  transition: color var(--trans);
}
.ath-mega-item:hover .ath-mega-label {
  color: var(--clr-red);
}

/* ── VERTICAL MEGA MENU (SHOP BY CATEGORY) ────────────────────── */
.vmegamenu {
  display: flex;
  flex-direction: column;
  background: #fff;
  min-width: 260px;
}
.vmegamenu-item {
  position: relative;
  border-bottom: 1px solid var(--clr-border);
}
.vmegamenu-item:last-child {
  border-bottom: none;
}
.vmegamenu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 18px;
  color: var(--clr-text);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.vmegamenu-link:hover {
  background: var(--clr-light);
  color: var(--clr-red);
}
.vmegamenu-arrow {
  font-size: 18px;
  color: var(--clr-muted);
  margin-left: 10px;
  transition: transform 0.2s, color 0.2s;
}
.vmegamenu-item.parent:hover .vmegamenu-arrow {
  color: var(--clr-red);
}
.vmegamenu-sub {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 900px;
  min-height: 100%;
  background: #fff;
  border: 1px solid var(--clr-border);
  border-left: 3px solid var(--clr-red);
  box-shadow: 4px 4px 20px rgba(0,0,0,0.1);
  z-index: 100;
}
.vmegamenu-item.parent:hover .vmegamenu-sub {
  display: block;
}
.vmegamenu-sub-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 20px;
}
.vmegamenu-col {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 10px 15px;
  box-sizing: border-box;
}
.vmegamenu-col-title {
  display: block;
  font-weight: 700;
  color: var(--clr-navy);
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 8px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--clr-red);
}
.vmegamenu-col-title:hover {
  color: var(--clr-red);
}
.vmegamenu-grand {
  list-style: none;
  padding: 0;
  margin: 0;
}
.vmegamenu-grand li {
  margin-bottom: 4px;
}
.vmegamenu-grand li a {
  color: var(--clr-muted);
  font-size: 13px;
  text-decoration: none;
  display: block;
  padding: 3px 0;
  transition: color 0.2s, padding-left 0.2s;
}
.vmegamenu-grand li a:hover {
  color: var(--clr-red);
  padding-left: 4px;
}

/* Mobile toggle */
.ath-mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.ath-mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* Mobile drawer */
.ath-mobile-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100vh;
  background: var(--clr-navy);
  z-index: 2000;
  overflow-y: auto;
  transition: left .3s ease;
  display: flex;
  flex-direction: column;
}
.ath-mobile-drawer.is-open { left: 0; }
.ath-mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.ath-mobile-logo-img { height: 28px; width: auto; display: block; }
.ath-drawer-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: 20px;
  cursor: pointer;
}
.ath-mobile-nav ul { padding: 10px 0; }
.ath-mobile-nav ul li a {
  display: block;
  padding: 12px 20px;
  color: rgba(255,255,255,.8);
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background var(--trans), color var(--trans);
}
.ath-mobile-nav ul li a:hover { background: rgba(255,255,255,.06); color: #fff; }
.ath-mobile-highlight a { color: var(--clr-gold) !important; }
.ath-mobile-drawer-footer {
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: auto;
  display: flex;
  gap: 10px;
}
.ath-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.ath-overlay.is-active { opacity: 1; visibility: visible; }

/* =====================================================================
   HERO SLIDER
   ===================================================================== */
.ath-hero {
  position: relative;
  overflow: hidden;
  height: 420px;
  background: var(--clr-navy);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
@media (max-width: 640px) {
  .ath-hero { height: 300px; width: 100vw; margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); }
}
@media (max-width: 400px) {
  .ath-hero { height: 260px; }
}
.ath-hero-track {
  display: flex;
  height: 100%;
  transition: transform .65s cubic-bezier(.25,.1,.25,1);
}
.ath-hero-slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-start;
}
.ath-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.ath-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ath-slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,27,42,.55) 0%, rgba(13,27,42,.28) 42%, rgba(13,27,42,.08) 70%, rgba(13,27,42,0) 100%);
  pointer-events: none;
  z-index: 1;
}
.ath-slide-bg .ath-lazy {
  opacity: 0;
  transition: opacity .4s ease;
}
.ath-slide-bg .ath-lazy.loaded {
  opacity: 1;
}
.ath-slide-1 .ath-slide-bg {
  filter: none;
}
.ath-slide-2 .ath-slide-bg {
  filter: none;
  background-color: var(--clr-navy);
}
.ath-slide-3 .ath-slide-bg { background: linear-gradient(135deg, #0a1520 0%, #132436 50%, #0a1520 100%); filter: none; }

.ath-hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -60px;
  width: 520px;
  height: 640px;
  background:
    radial-gradient(circle at 40% 60%, rgba(255,255,255,.03) 0%, transparent 60%),
    radial-gradient(circle at 60% 30%, rgba(229,50,17,.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255,255,255,.04) 0%, transparent 40%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  transform: rotate(-15deg);
}

.ath-hero .ath-container { position: relative; z-index: 2; width: 100%; max-width: none; margin: 0; padding: 0; }
.ath-hero-content {
  max-width: 620px;
  position: relative;
  z-index: 2;
  margin-left: clamp(12px, 2vw, 40px);
  margin-top: clamp(26px, 5vh, 42px);
  padding: 26px 30px 28px;
  background: none;
  border-left: none;
  border-radius: 0;
  text-align: left;
}
.ath-hero-content--flush { margin-left: 0; }

.ath-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-red);
  color: #fff;
  font-family: var(--ff-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.ath-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(24px, 3.8vw, 46px);
  font-weight: 700;
  text-shadow: 0 2px 20px rgba(0,0,0,.7);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
}
.ath-hero-title em { font-style: italic; color: var(--clr-red); }
.ath-hero-sub {
  font-size: 14.5px;
  color: rgba(255,255,255,.85);
  line-height: 1.55;
  margin-bottom: 22px;
  max-width: 520px;
  text-shadow: 0 1px 12px rgba(0,0,0,.6);
}
.ath-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.ath-hero-cta .ath-btn-primary,
.ath-hero-cta .ath-btn-ghost { font-size: 13.5px; padding: 10px 22px; }

/* Hero stats */
.ath-hero-stats {
  background: var(--clr-navy);
  border-top: 3px solid var(--clr-red);
}
.ath-stats-grid {
  display: flex;
  justify-content: space-around;
  padding: 14px 20px;
}
.ath-stat {
  text-align: center;
  padding: 5px 20px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.ath-stat:last-child { border-right: none; }
.ath-stat-num {
  display: block;
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--clr-red);
  line-height: 1;
}
.ath-stat-lbl {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3px;
}

/* Slider controls */
.ath-slider-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.25);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--trans);
  backdrop-filter: blur(4px);
}
.ath-slider-btn:hover { background: var(--clr-red); border-color: var(--clr-red); }
.ath-slider-prev { left: 20px; }
.ath-slider-next { right: 20px; }

.ath-slider-dots {
  position: absolute;
  bottom: 68px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.ath-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none; padding: 0;
  transition: background var(--trans), transform var(--trans);
}
.ath-dot.is-active { background: var(--clr-red); transform: scale(1.4); }

/* =====================================================================
   VEHICLE FINDER
   ===================================================================== */
.ath-vehicle-finder {
  background: var(--clr-navy);
  padding: 22px 0;
}
.ath-vf-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.ath-vf-label {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}
.ath-vf-form { flex: 1; display: flex; gap: 10px; flex-wrap: wrap; }
.ath-vf-selects { display: flex; gap: 10px; flex: 1; flex-wrap: wrap; }
.ath-vf-select {
  flex: 1;
  min-width: 130px;
  height: 44px;
  padding: 0 36px 0 14px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  appearance: none;
  cursor: pointer;
  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='white' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  transition: border-color var(--trans), background var(--trans);
}
.ath-vf-select option { color: var(--clr-navy); background: #fff; }
.ath-vf-select:focus { outline: none; border-color: #fff; background: rgba(255,255,255,.25); }
.ath-vf-select:disabled { opacity: .5; cursor: not-allowed; }
.ath-vf-btn {
  height: 44px;
  padding: 0 28px;
  background: var(--clr-navy);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--trans), transform .15s;
}
.ath-vf-btn:hover { background: #000; transform: translateY(-1px); }

/* =====================================================================
   TRUST STRIP
   ===================================================================== */
.ath-trust-strip {
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
  padding: 20px 0;
}
.ath-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.ath-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 24px;
  border-right: 1px solid var(--clr-border);
}
.ath-trust-item:last-child { border-right: none; }
.ath-trust-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: rgba(229,50,17,.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--clr-red);
}
.ath-trust-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--clr-navy); }
.ath-trust-text span  { font-size: 12px; color: var(--clr-muted); }

/* =====================================================================
   FEATURED CATEGORIES
   ===================================================================== */
.ath-cats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.ath-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 26px 12px 20px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--clr-border);
  background: var(--clr-white);
  text-decoration: none;
  transition: border-color var(--trans), box-shadow var(--trans), transform var(--trans);
}
.ath-cat-card:hover {
  border-color: var(--clr-red);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}


.ath-cat-icon {
  width: 70px; height: 70px;
  border-radius: var(--radius-md);
  background: var(--clr-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  transition: background var(--trans);
}
.ath-cat-card:hover .ath-cat-icon { background: rgba(229,50,17,.1); }
.ath-cat-icon svg { color: var(--clr-navy); transition: color var(--trans); }
.ath-cat-card:hover .ath-cat-icon svg { color: var(--clr-red); }
.ath-cat-name  { font-size: 13px; font-weight: 700; color: var(--clr-navy); line-height: 1.3; margin-bottom: 4px; }
.ath-cat-count { font-size: 11px; color: var(--clr-muted); }

/* =====================================================================
   TOP CATEGORIES (CARiD-style tabs)
   ===================================================================== */
.ath-topcats {
  background: linear-gradient(180deg, #f8fafb 0%, #ffffff 30%);
  border-radius: var(--radius-lg);
  border: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
  overflow: hidden;
}
.ath-topcats-nav {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  border-bottom: 1px solid var(--clr-border);
  background: transparent;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.ath-topcats-nav::-webkit-scrollbar { display: none; }
.ath-topcats-link {
  flex: 0 0 auto;
  padding: 15px 24px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--clr-muted);
  white-space: nowrap;
  cursor: pointer;
  transition: color var(--trans), border-color var(--trans), background var(--trans);
}
.ath-topcats-link:hover { color: var(--clr-navy); }
.ath-topcats-link.is-active {
  color: var(--clr-red);
  border-bottom-color: var(--clr-red);
  background: transparent;
}
.ath-topcats-panels { padding: 24px; }
.ath-topcat-panel { display: none; }
.ath-topcat-panel.is-active { display: block; }

/* Top Categories — card style matched to Trending Products cards */
.ath-top-cats {
  background: var(--clr-white);
  padding: 96px 0;
}
.ath-top-cats .ath-topcats-panels {
  background: transparent;
}
.ath-topcats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ath-topcat-item { min-width: 0; }
.ath-topcat-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  background: var(--clr-white);
  aspect-ratio: 1 / 1;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
  transition: border-color var(--trans), box-shadow var(--trans), transform var(--trans);
}
.ath-topcat-tile:hover {
  border-color: var(--clr-border);
  box-shadow: 0 12px 32px rgba(13,27,42,.12);
  transform: translateY(-4px);
  text-decoration: none;
}
.ath-topcat-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ath-topcat-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: normal;
}
.ath-topcat-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--clr-navy);
  line-height: 1.35;
}

/* =====================================================================
   FEATURED PRODUCTS
   ===================================================================== */
.ath-product-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--clr-border);
  margin-bottom: 28px;
}
.ath-ptab {
  padding: 10px 22px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--clr-muted);
  transition: color var(--trans), border-color var(--trans);
}
.ath-ptab.is-active,
.ath-ptab:hover { color: var(--clr-red); border-bottom-color: var(--clr-red); }

.ath-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ath-product-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.ath-product-card:hover {
  box-shadow: 0 12px 32px rgba(13,27,42,.12);
  transform: translateY(-4px);
}
.ath-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .6px; padding: 4px 10px; border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.ath-badge--sale { background: var(--clr-red); color: #fff; }
.ath-badge--new  { background: var(--clr-navy); color: #fff; }
.ath-badge--hot  { background: var(--clr-gold); color: var(--clr-navy); }
.ath-product-img {
  aspect-ratio: 4/3;
  background: #ffffff;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.ath-product-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(13,27,42,.04) 100%);
  pointer-events: none;
}
.ath-product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ath-product-card:hover .ath-product-img img { transform: scale(1.08); }
.ath-product-img-placeholder {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  color: var(--clr-silver);
}
.ath-product-body { padding: 16px 18px 18px; }
.ath-product-brand {
  font-size: 10px; font-weight: 700; color: var(--clr-red); text-transform: uppercase;
  letter-spacing: 1.2px; margin-bottom: 6px; display: block;
}
.ath-product-name {
  font-size: 14px; font-weight: 600; color: var(--clr-navy); line-height: 1.4; margin-bottom: 8px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  transition: color var(--trans);
}
.ath-product-name:hover { color: var(--clr-red); }
.ath-product-rating { display: flex; align-items: center; gap: 5px; margin-bottom: 12px; }
.ath-stars { color: var(--clr-gold); font-size: 12px; letter-spacing: 1px; }
.ath-rating-ct { font-size: 11px; color: var(--clr-muted); }
.ath-product-price-row {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--clr-border); padding-top: 12px;
}
.ath-price-now { font-weight: 700; font-size: 18px; color: var(--clr-red); display: block; }
.ath-price-old { font-size: 12px; color: var(--clr-muted); text-decoration: line-through; display: block; margin-top: 2px; }
.ath-add-btn {
  height: 38px; border-radius: var(--radius-pill);
  background: var(--clr-red); border: none; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px;
  padding: 0 16px;
  font-family: var(--ff-display); font-size: 12px; font-weight: 700;
  white-space: nowrap;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  flex-shrink: 0; text-decoration: none;
  box-shadow: 0 2px 8px rgba(229,50,17,.3);
}
.ath-add-btn:hover {
  background: var(--clr-red-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(229,50,17,.4);
  text-decoration: none;
}

/* =====================================================================
   SCROLL-REVEAL ANIMATION (homepage sections / cards)
   ===================================================================== */
.ath-reveal {
  opacity: 0;
}
.ath-reveal.in-view {
  animation: athRevealUp 0.7s cubic-bezier(.22,.61,.36,1) forwards;
}
@keyframes athRevealUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ath-reveal-stagger-1 { animation-delay: 0.05s; }
.ath-reveal-stagger-2 { animation-delay: 0.10s; }
.ath-reveal-stagger-3 { animation-delay: 0.15s; }
.ath-reveal-stagger-4 { animation-delay: 0.20s; }
.ath-reveal-stagger-5 { animation-delay: 0.25s; }
.ath-reveal-stagger-6 { animation-delay: 0.30s; }
.ath-reveal-stagger-7 { animation-delay: 0.35s; }
.ath-reveal-stagger-8 { animation-delay: 0.40s; }
.ath-reveal-stagger-1, .ath-reveal-stagger-2, .ath-reveal-stagger-3,
.ath-reveal-stagger-4, .ath-reveal-stagger-5, .ath-reveal-stagger-6,
.ath-reveal-stagger-7, .ath-reveal-stagger-8 { animation-fill-mode: both; }
@media (prefers-reduced-motion: reduce) {
  .ath-reveal { opacity: 1; }
  .ath-reveal.in-view { animation: none; opacity: 1; }
}

/* =====================================================================
   TRENDING PRODUCTS (horizontal carousel)
   ===================================================================== */
.ath-trending-section {
  background: var(--clr-light);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.ath-trending-section::before {
  content: '';
  position: absolute;
  width: 520px; height: 520px;
  top: -160px; right: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,50,17,.18) 0%, transparent 65%);
  pointer-events: none;
}
.ath-trending-section::after {
  content: '';
  position: absolute;
  width: 460px; height: 460px;
  bottom: -180px; left: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40,100,180,.12) 0%, transparent 65%);
  pointer-events: none;
}
.ath-deco {
  position: absolute;
  pointer-events: none;
  color: var(--clr-navy);
}
.ath-deco svg {
  display: block;
}
.ath-deco-tl {
  top: -30px; left: -40px;
  width: 340px; height: 340px;
  opacity: 0.6;
  filter: blur(0.5px);
  z-index: 0;
}
.ath-deco-br {
  bottom: -50px; right: -50px;
  width: 360px; height: 360px;
  opacity: 0.6;
  filter: blur(0.5px);
  z-index: 0;
}
/* Trending section is on a light grey background: navy heading */
.ath-section-header--light .ath-eyebrow { color: var(--clr-red); }
.ath-section-header--light .ath-section-title { color: var(--clr-navy); }
.ath-section-header--light .ath-section-title span { color: var(--clr-red); }

.ath-trending-sub {
  color: var(--clr-muted);
  font-size: 14px; max-width: 480px; margin: -24px 0 32px; position: relative; z-index: 1;
}

.ath-trending-scroll {
  position: relative; z-index: 1;
}
.ath-trending-scroll .ath-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 8px 0 20px;
  justify-content: center;
  align-items: stretch;
}
.ath-trending-scroll .ath-product-card {
  background: #fff;
  border: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  border-radius: var(--radius-lg);
  aspect-ratio: 3 / 4;
  box-shadow: 0 4px 14px rgba(13,27,42,.10);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  padding: 0;
}
.ath-trending-scroll .ath-product-card:hover {
  box-shadow: 0 14px 32px rgba(13,27,42,.16);
  transform: translateY(-4px);
}
.ath-trending-scroll .ath-product-card .ath-product-media {
  width: 100%;
  height: 58%;
  aspect-ratio: auto;
  flex-shrink: 0;
  overflow: hidden;
  background: #ffffff;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.ath-trending-scroll .ath-product-card .ath-product-media .ath-product-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 16px;
  background: #ffffff;
}
.ath-trending-scroll .ath-product-card .ath-product-media .ath-product-img picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.ath-trending-scroll .ath-product-card .ath-product-media .ath-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ath-trending-scroll .ath-product-card .ath-badge {
  top: 12px;
  left: 12px;
  transform: none;
  z-index: 4;
  font-size: 9px;
  padding: 4px 10px;
}
.ath-trending-scroll .ath-product-card .ath-product-body {
  flex: 1 1 0;
  width: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 14px 16px 16px;
  overflow: hidden;
}
.ath-trending-scroll .ath-product-card .ath-product-name {
  min-height: 0;
  font-size: 13px;
  line-height: 1.3;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ath-trending-scroll .ath-product-card .ath-product-rating {
  justify-content: flex-start;
  margin-bottom: 6px;
  gap: 5px;
}
.ath-trending-scroll .ath-product-card .ath-product-price-row {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 8px;
}
.ath-trending-scroll .ath-product-card .ath-add-btn-wrap {
  margin-top: auto;
  display: flex;
  justify-content: center;
  width: 100%;
}
.ath-trending-scroll .ath-product-card .ath-add-btn {
  height: 32px;
  font-size: 11px;
  padding: 0 12px;
  color: #fff !important;
}
.ath-product-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #ffffff;
}
.ath-tint-red   { background: #ffffff; }
.ath-tint-navy  { background: #ffffff; }
.ath-tint-gold  { background: #ffffff; }
.ath-tint-green { background: #ffffff; }
.ath-product-media .ath-product-img {
  aspect-ratio: 4/3;
  background: #ffffff;
  display: flex; align-items: center; justify-content: center;
  padding: 22px;
}
.ath-product-media .ath-product-img::after { display: none; }
.ath-product-media .ath-product-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: none;
}

.ath-trending-section .ath-product-body {
  background: #fff;
}
.ath-trending-section .ath-product-name {
  min-height: 40px;
}

/* Trending layout: full-width product grid (top products column removed) */
.ath-trending-layout {
  display: block;
  position: relative; z-index: 1;
}

.ath-promo-banners { padding: var(--section-gap) 0; background: var(--clr-white); }
.ath-promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ath-promo-card {
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.ath-promo-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.07) 0%, transparent 60%);
}
.ath-promo-navy  { background: linear-gradient(135deg, var(--clr-navy) 0%, var(--clr-navy-mid) 100%); }
.ath-promo-red   { background: linear-gradient(135deg, #5a6067 0%, #8a919a 100%); }
.ath-promo-green { background: linear-gradient(135deg, #a55304 0%, #f5700a 100%); }
.ath-promo-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.6); margin-bottom: 8px; position: relative; z-index: 1;
}
.ath-promo-title {
  font-family: var(--ff-display); font-size: 22px; font-weight: 800;
  color: #fff; line-height: 1.15; margin-bottom: 16px; position: relative; z-index: 1;
}
.ath-promo-title em { font-style: italic; color: var(--clr-gold); }
.ath-promo-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: #fff;
  border-bottom: 1.5px solid rgba(255,255,255,.5);
  padding-bottom: 2px;
  position: relative; z-index: 1;
  transition: border-color var(--trans);
}
.ath-promo-link:hover { border-color: #fff; color: #fff; }

/* =====================================================================
   MY CAR PARTS SHOWCASE (above Shop by Brand)
   Faithful rendition: hero + features bar + cover-image grid + props bar.
   ===================================================================== */
.ath-mcp-showcase {
  width: 100%;
  max-width: 1280px;
  background-color: #111111;
  border: 2px solid #222;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
  color: #fff;
}

.ath-mcp-section {
  padding: 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background: #ffffff;
}
.ath-mcp-container { max-width: none; padding: 0; }
.ath-mcp-container .ath-mcp-showcase,
.ath-mcp-section .ath-mcp-showcase {
  max-width: none;
  border: none;
  border-radius: 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

/* --- Hero --- */
.mcp-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  background: linear-gradient(135deg, #151515 0%, #080808 100%);
  border-bottom: 2px solid #262626;
}
.mcp-hero-left {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.mcp-brand {
  font-size: 1.75rem; font-weight: 900; letter-spacing: 3px; color: #fff;
  margin-bottom: 22px; font-style: italic;
  display: flex; flex-direction: column; line-height: 1.1;
}
.mcp-brand span {
  color: #ff5500; font-style: normal; font-weight: 700; font-size: .82rem; letter-spacing: 7px; margin-top: 3px;
}
.mcp-hero-title {
  font-size: 3.9rem; font-weight: 900; line-height: 1;
  text-transform: uppercase; margin-bottom: 14px; letter-spacing: -1.5px; color: #fff;
}
.mcp-hero-title span { color: #ff5500; }
.mcp-hero-subtitle {
  font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; color: #cfcfcf; margin-top: 12px;
}
.mcp-hero-card {
  position: relative; overflow: hidden;
  border-left: 1px solid #262626;
  min-height: 240px;
  display: flex; align-items: flex-end; padding: 20px;
  background-size: cover; background-position: center;
  text-decoration: none; color: #fff;
}
.mcp-hero-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%);
  z-index: 1;
}
.mcp-card-content {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.15rem; letter-spacing: .5px; text-transform: uppercase; color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9);
}
.mcp-card-content .fa-solid, .mcp-card-content i { color: #ff5500; font-size: 1.3rem; }

/* --- Features Bar --- */
.mcp-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.6fr;
  background-color: #080808; border-bottom: 2px solid #262626;
  padding: 15px 20px; gap: 15px; align-items: center;
}
.mcp-feature { display: flex; align-items: center; gap: 12px; }
.mcp-feature-icon {
  width: 38px; height: 38px;
  background-color: #151515; border: 1px solid #333; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #ff5500; font-size: .95rem; flex-shrink: 0;
}
.mcp-feature-text h4 { font-size: .95rem; text-transform: uppercase; font-weight: 800; letter-spacing: .5px; color: #fff; margin: 0; }
.mcp-feature-text p { font-size: .85rem; color: #9a9a9a; margin: 3px 0 0; letter-spacing: .2px; }
.mcp-shipping {
  background-color: #141414; border: 1px solid #2a2a2a;
  padding: 10px 15px; border-radius: 4px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.mcp-shipping > span { font-size: .92rem; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; color: #fff; }
.mcp-flags { display: flex; gap: 6px; }
.mcp-flag {
  width: 24px; height: 16px; border-radius: 2px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: bold; box-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.mcp-flag-us { background-color: #b22234; color: #fff; border: 1px solid #d32f2f; }
.mcp-flag-ca { background-color: #d32f2f; color: #fff; border: 1px solid #e53935; }

/* --- Category Grid (cover images) --- */
.mcp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px; background-color: #262626;
}
.mcp-grid-card {
  position: relative; min-height: 220px;
  display: flex; align-items: flex-end; padding: 20px;
  background-size: cover; background-position: center;
  overflow: hidden; text-decoration: none; color: #fff;
}
.mcp-grid-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.1) 70%);
  z-index: 1;
}
.mcp-grid-content {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.15rem; letter-spacing: .5px; text-transform: uppercase; color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9);
}
.mcp-grid-content .fa-solid, .mcp-grid-content i { color: #ff5500; font-size: 1.2rem; }

/* --- Bottom Props Bar --- */
.mcp-props {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background-color: var(--clr-red, #E53211); color: #000;
  padding: 16px 20px; gap: 15px;
}
.mcp-prop { display: flex; align-items: center; gap: 10px; }
.mcp-prop-icon {
  width: 34px; height: 34px;
  background-color: rgba(0,0,0,0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: .95rem; flex-shrink: 0;
}
.mcp-prop-text h4 { font-size: .92rem; text-transform: uppercase; font-weight: 900; line-height: 1.15; letter-spacing: .5px; margin: 0; color: #000; }
.mcp-prop-text p { font-size: .82rem; font-weight: 600; opacity: .8; letter-spacing: .2px; margin: 2px 0 0; color: #000; }

@media (max-width: 1024px) {
  .mcp-hero { grid-template-columns: 1fr; }
  .mcp-features { grid-template-columns: 1fr 1fr; }
  .mcp-grid { grid-template-columns: repeat(2, 1fr); }
  .mcp-props { grid-template-columns: repeat(2, 1fr); }
}

/* =====================================================================
   FREE SHIPPING CARD (golden, animated)
   ===================================================================== */
.ath-ship-wrap { padding: var(--section-gap) 0 0; background: var(--clr-white); }
.ath-ship-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 28px 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #0D1B2A 0%, #12253C 100%);
  box-shadow: 0 14px 40px rgba(13, 27, 42, .28);
  border: 1px solid rgba(40, 100, 180, .35);
}
.ath-ship-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 10%, rgba(255,255,255,.35) 0%, transparent 45%);
  pointer-events: none;
}
.ath-ship-card::after {
  content: '';
  position: absolute; inset: -1px;
  border-radius: inherit;
  background: linear-gradient(110deg, rgba(255,255,255,0) 38%, rgba(255,255,255,.30) 50%, rgba(255,255,255,0) 62%);
  background-size: 250% 100%;
  animation: athShipShine 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes athShipShine {
  0%, 55% { background-position: 120% 0; }
  85%, 100% { background-position: -120% 0; }
}

.ath-ship-anim { position: relative; width: 340px; height: 150px; flex-shrink: 0; z-index: 1; }
.ath-ship-truck {
  position: absolute;
  left: 8px; top: 16px;
  width: 210px; height: 84px;
  z-index: 2;
}
.ath-ship-body { position: absolute; inset: 0 auto 20px 0; width: 210px; height: 56px; }
.ath-ship-cargo {
  position: absolute; left: 0; top: 0;
  width: 140px; height: 56px;
  background: linear-gradient(180deg, #ff9747 0%, #e06810 100%);
  border-radius: 6px 6px 2px 2px;
  box-shadow: inset 0 -8px 0 rgba(0,0,0,.14), 0 10px 18px rgba(0,0,0,.22);
}
.ath-ship-cargo::after {
  content: '';
  position: absolute; top: 8px; bottom: 8px; right: 8px;
  width: 3px;
  background: rgba(255,255,255,.35);
  border-radius: 2px;
}
.ath-ship-cab {
  position: absolute; right: 0; top: 0;
  width: 62px; height: 56px;
  background: linear-gradient(180deg, #24405c 0%, #10233a 100%);
  border-radius: 10px 14px 2px 2px;
}
.ath-ship-cab::before {
  content: '';
  position: absolute; right: 6px; top: 7px;
  width: 22px; height: 20px;
  background: linear-gradient(135deg, #d7ecff 0%, #4a87b8 100%);
  border-radius: 5px;
}
.ath-ship-cab::after {
  content: '';
  position: absolute; left: 0; top: 32px;
  width: 100%; height: 24px;
  background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(255,255,255,.12) 100%);
}
.ath-ship-package {
  position: absolute; left: 30px; top: -16px;
  width: 28px; height: 22px;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 5px 8px rgba(0,0,0,.28);
  z-index: 3;
  animation: athShipBob 1.1s ease-in-out infinite;
}
.ath-ship-package::before,
.ath-ship-package::after {
  content: '';
  position: absolute;
  background: var(--clr-red);
}
.ath-ship-package::before { left: 50%; top: 0; bottom: 0; width: 4px; margin-left: -2px; }
.ath-ship-package::after { top: 50%; left: 0; right: 0; height: 4px; margin-top: -2px; }
@keyframes athShipBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.ath-ship-wheel {
  position: absolute; bottom: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #20262c;
  border: 5px solid #39434d;
  background-image: repeating-conic-gradient(#20262c 0deg 90deg, #3b444f 90deg 180deg);
  animation: athShipSpin .6s linear infinite;
  z-index: 3;
}
.ath-ship-wheel--f { left: 32px; }
.ath-ship-wheel--r { right: 12px; }
@keyframes athShipSpin { to { transform: rotate(360deg); } }

.ath-ship-road {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 24px;
  border-radius: 12px 12px 4px 4px;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.95) 0 28px, transparent 28px 58px) 0 50% / 58px 8px no-repeat,
    linear-gradient(180deg, #4a5868 0%, #232d38 100%);
  animation: athShipRoad 1.4s linear infinite;
  z-index: 1;
}
@keyframes athShipRoad {
  from { background-position: 0 50%, 0 0; }
  to   { background-position: 58px 50%, 0 0; }
}
.ath-ship-cloud {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  filter: blur(3px);
  z-index: 1;
}
.ath-ship-cloud--1 { width: 34px; height: 12px; top: 8px; left: 70px; animation: athShipCloud 9s linear infinite; }
.ath-ship-cloud--2 { width: 48px; height: 16px; top: 64px; left: 250px; animation: athShipCloud 12s linear infinite; }
@keyframes athShipCloud {
  from { transform: translateX(0); opacity: .5; }
  to   { transform: translateX(90px); opacity: 0; }
}

.ath-ship-info { flex: 1; min-width: 0; position: relative; z-index: 1; }
.ath-ship-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--clr-gold);
  background: rgba(255,255,255,.12);
  border: 1px dashed rgba(246,185,59,.55);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}
.ath-ship-title {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 8px;
}
.ath-ship-sub {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255,255,255,.72);
  max-width: 520px;
}
.ath-ship-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; position: relative; z-index: 1; }
.ath-ship-badges { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.ath-ship-badge {
  font-size: 11px; font-weight: 700; letter-spacing: .6px;
  color: #fff;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.35);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.ath-ship-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-display);
  font-size: 14px; font-weight: 800; letter-spacing: .4px;
  color: #fff;
  background: var(--clr-red);
  padding: 12px 26px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 20px rgba(13,27,42,.3);
  transition: transform var(--trans), box-shadow var(--trans), background var(--trans);
}
.ath-ship-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 26px rgba(13,27,42,.38); background: #c42a0e; color: #fff; }

@media (max-width: 900px) {
  .ath-ship-card { flex-direction: column; text-align: center; padding: 30px 22px; gap: 24px; }
  .ath-ship-title { max-width: 100%; }
  .ath-ship-sub { margin: 0 auto; }
  .ath-ship-actions { align-items: center; }
  .ath-ship-badges { justify-content: center; }
  .ath-ship-anim { width: 300px; height: 132px; }
  .ath-ship-truck { transform: scale(.9); transform-origin: left top; }
}
@media (max-width: 640px) {
  .ath-ship-card { padding: 24px 16px; }
  .ath-ship-anim { width: 250px; height: 116px; }
  .ath-ship-badges { flex-direction: column; align-items: center; }
}

/* =====================================================================
   TOP BRANDS
   ===================================================================== */
.ath-brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.ath-brand-card {
  background: var(--clr-white);
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 22px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: border-color var(--trans), box-shadow var(--trans), transform var(--trans);
}
.ath-brand-card:hover {
  border-color: var(--clr-red);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.ath-brand-logo {
  width: 80px;
  height: 80px;
  display: flex; align-items: center; justify-content: center;
}
.ath-brand-logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
}
.ath-brand-text {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}
.ath-brand-count {
  font-size: 14px;
  color: var(--clr-navy);
  font-weight: 800;
  letter-spacing: 0.2px;
}

/* =====================================================================
   BRAND PROMO HERO ANIMATION (below Shop by Brand)
   ===================================================================== */
.ath-brand-video { padding: 0 0 96px; }
.ath-hero-anim { --anim-ink:#0f1a2b; --anim-ink2:#152238; --anim-steel:#2e4160; --anim-ember:#e2622a; --anim-paper:#eeece5; --anim-mist:#93a3bd; }

.ath-anim-hero {
  position: relative;
  width: 100%;
  min-height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(ellipse 900px 600px at 78% 45%, rgba(226,98,42,.10), transparent 60%),
    radial-gradient(ellipse 1200px 800px at 20% 80%, rgba(46,65,96,.35), transparent 60%),
    linear-gradient(180deg, var(--anim-ink) 0%, #0b1420 100%);
  box-shadow: 0 16px 48px rgba(0,0,0,.18);
}

/* ---------- GEAR RIG ---------- */
.ath-anim-rig {
  position: absolute;
  right: -6%;
  top: 50%;
  transform: translateY(-50%);
  width: min(58vw, 640px);
  height: min(58vw, 640px);
  opacity: .9;
}
.ath-anim-rig svg { width: 100%; height: 100%; display: block; }

.ath-anim-gb { transform-origin: 340px 300px; animation: ath-spin 26s linear infinite; }
.ath-anim-gm { transform-origin: 150px 460px; animation: ath-spin-rev 18s linear infinite; }
.ath-anim-gs { transform-origin: 470px 130px; animation: ath-spin 12s linear infinite; }

@keyframes ath-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes ath-spin-rev { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

/* ---------- EMBER PARTICLES ---------- */
.ath-anim-embers { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.ath-anim-ember {
  position: absolute;
  bottom: -10px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--anim-ember);
  box-shadow: 0 0 8px 2px rgba(226,98,42,.7);
  opacity: 0;
  animation: ath-rise linear infinite;
}
@keyframes ath-rise {
  0% { transform: translate(0,0) scale(1); opacity: 0; }
  8% { opacity: 1; }
  90% { opacity: .6; }
  100% { transform: translate(var(--ath-drift), -92vh) scale(.3); opacity: 0; }
}

/* ---------- CONTENT ---------- */
.ath-anim-content {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 7%;
  max-width: 780px;
}
.ath-anim-tag {
  color: var(--anim-ember);
  font-family: var(--ff-display);
  font-size: 14px;
  letter-spacing: .06em;
  margin-bottom: 20px;
  opacity: 0;
  animation: ath-fadeUp .7s ease forwards;
  animation-delay: .2s;
}
.ath-anim-headline {
  font-family: var(--ff-display);
  font-weight: 800;
  color: var(--anim-paper);
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 1.02;
  letter-spacing: .01em;
  text-transform: none;
}
.ath-anim-headline .ath-anim-line { display: block; overflow: hidden; }
.ath-anim-headline .ath-anim-line span {
  display: block;
  transform: translateY(110%);
  animation: ath-slideUp .8s cubic-bezier(.2,.8,.2,1) forwards;
}
.ath-anim-headline .ath-anim-line:nth-child(1) span { animation-delay: .35s; }
.ath-anim-headline .ath-anim-line:nth-child(2) span { animation-delay: .5s; color: var(--anim-ember); }

.ath-anim-rule {
  width: 0;
  height: 3px;
  background: var(--anim-ember);
  margin: 28px 0;
  animation: ath-growRule 1s ease forwards;
  animation-delay: 1.1s;
}
.ath-anim-sub {
  color: var(--anim-mist);
  font-size: 17px;
  max-width: 44ch;
  opacity: 0;
  animation: ath-fadeUp .7s ease forwards;
  animation-delay: 1.3s;
  font-family: var(--ff-body);
}
.ath-anim-cta {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: -moz-fit-content;
  width: fit-content;
  background: var(--anim-ember);
  color: var(--anim-ink);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .02em;
  padding: 15px 26px;
  text-decoration: none;
  opacity: 0;
  animation: ath-fadeUp .7s ease forwards;
  animation-delay: 1.5s;
}
.ath-anim-cta svg { width: 16px; height: 16px; }

@keyframes ath-fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ath-slideUp { to { transform: translateY(0); } }
@keyframes ath-growRule { to { width: 64px; } }

@media (max-width: 760px) {
  .ath-anim-rig { opacity: .35; width: 90vw; height: 90vw; right: -20%; }
  .ath-anim-content { padding: 0 6%; max-width: 100%; }
}
@media (max-width: 640px) {
  .ath-brand-video { padding: 0 0 48px; }
  .ath-anim-content { min-height: 440px; padding-top: 48px; padding-bottom: 48px; }
  .ath-anim-hero { min-height: 440px; }
  .ath-anim-headline { font-size: clamp(34px, 11vw, 52px); }
}

@media (prefers-reduced-motion: reduce) {
  .ath-anim-gb, .ath-anim-gm, .ath-anim-gs, .ath-anim-ember { animation: none !important; }
  .ath-anim-headline .ath-anim-line span { animation: none !important; transform: none; }
  .ath-anim-tag, .ath-anim-sub, .ath-anim-cta { animation: none !important; opacity: 1 !important; }
  .ath-anim-rule { animation: none !important; width: 64px; }
}
.ath-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ath-why-visual {
  background: linear-gradient(135deg, var(--clr-navy) 0%, var(--clr-navy-mid) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 5/4;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.ath-why-visual-inner { text-align: center; padding: 40px; }
.ath-why-stat {
  font-family: var(--ff-display);
  font-size: 68px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.ath-why-stat span { color: var(--clr-red); }
.ath-why-caption { font-size: 16px; color: rgba(255,255,255,.7); margin-top: 12px; }
.ath-why-content .ath-section-title { margin-bottom: 28px; }
.ath-why-points { display: grid; gap: 22px; }
.ath-why-point  { display: flex; gap: 18px; align-items: flex-start; }
.ath-why-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: rgba(229,50,17,.1);
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 26px;
}
.ath-why-icon--check   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%23E53211' stroke-width='2'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E"); }
.ath-why-icon--truck   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%23E53211' stroke-width='2'%3E%3Crect x='1' y='3' width='15' height='13'/%3E%3Cpolygon points='16 8 20 8 23 11 23 16 16 16 16 8'/%3E%3Ccircle cx='5.5' cy='18.5' r='2.5'/%3E%3Ccircle cx='18.5' cy='18.5' r='2.5'/%3E%3C/svg%3E"); }
.ath-why-icon--support { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%23E53211' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3'/%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'/%3E%3C/svg%3E"); }
.ath-why-icon--refresh { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%23E53211' stroke-width='2'%3E%3Cpolyline points='23 4 23 10 17 10'/%3E%3Cpolyline points='1 20 1 14 7 14'/%3E%3Cpath d='M3.51 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0 0 20.49 15'/%3E%3C/svg%3E"); }
.ath-why-point strong { display: block; font-size: 15px; font-weight: 700; color: var(--clr-navy); margin-bottom: 4px; }
.ath-why-point p      { font-size: 14px; color: var(--clr-muted); line-height: 1.6; }

/* =====================================================================
   BLOG SECTION — Carousel
   ===================================================================== */
.ath-blog-carousel {
  position: relative;
  overflow: hidden;
}
.ath-blog-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform .4s ease;
}
.ath-blog-carousel-card {
  flex: 0 0 calc(25% - 15px);
  min-width: 0;
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  transition: box-shadow var(--trans), transform var(--trans);
}
.ath-blog-carousel-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.ath-blog-card-img {
  position: relative;
  overflow: hidden;
  height: 180px;
}
.ath-blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ath-blog-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e0e7ef 0%, #edf2f7 100%);
}
.ath-blog-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--clr-red); color: #fff;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 10px; border-radius: var(--radius-pill);
}
.ath-blog-card-body { padding: 18px; }
.ath-blog-date { font-size: 11px; color: var(--clr-muted); font-weight: 600; display: block; margin-bottom: 6px; }
.ath-blog-card-title {
  font-size: 15px; font-weight: 700; color: var(--clr-navy); line-height: 1.35; margin-bottom: 8px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ath-blog-card-title a { color: inherit; }
.ath-blog-card-title a:hover { color: var(--clr-red); }
.ath-blog-card-excerpt {
  font-size: 12px; color: var(--clr-muted); line-height: 1.55; margin-bottom: 12px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.ath-blog-read {
  font-size: 12px; font-weight: 700; color: var(--clr-red);
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap var(--trans);
}
.ath-blog-read:hover { gap: 8px; color: var(--clr-red); }

.ath-blog-carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--clr-white); border: 1px solid var(--clr-border);
  color: var(--clr-navy); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); cursor: pointer; transition: all var(--trans);
}
.ath-blog-carousel-btn:hover { background: var(--clr-navy); color: var(--clr-white); border-color: var(--clr-navy); }
.ath-blog-carousel-prev { left: 6px; }
.ath-blog-carousel-next { right: 6px; }

/* =====================================================================
   REVIEWS
   ===================================================================== */
.ath-reviews-summary {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  background: var(--clr-navy);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.ath-score-box { text-align: center; flex-shrink: 0; }
.ath-score-num {
  display: block;
  font-family: var(--ff-display); font-size: 64px; font-weight: 900;
  color: #fff; line-height: 1;
}
.ath-score-stars { color: var(--clr-gold); font-size: 24px; margin: 6px 0; }
.ath-score-lbl   { font-size: 12px; color: rgba(255,255,255,.6); }
.ath-rating-bars { flex: 1; min-width: 200px; }
.ath-rbar-row { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.ath-rbar-lbl   { font-size: 12px; color: rgba(255,255,255,.7); width: 36px; }
.ath-rbar-track { flex: 1; height: 8px; background: rgba(255,255,255,.15); border-radius: 4px; overflow: hidden; }
.ath-rbar-fill  { height: 100%; background: var(--clr-gold); border-radius: 4px; }
.ath-rbar-pct   { font-size: 11px; color: rgba(255,255,255,.6); width: 32px; text-align: right; }
.ath-review-highlights {
  flex: 1; min-width: 160px;
  display: flex; flex-direction: column; gap: 8px;
}
.ath-review-highlights li {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
  font-size: 12px; font-weight: 600;
  padding: 6px 12px; border-radius: var(--radius-pill);
}
.ath-review-highlights li::before { content: '✓'; color: var(--clr-gold); }

.ath-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ath-review-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow var(--trans);
}
.ath-review-card:hover { box-shadow: var(--shadow-md); }
.ath-review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.ath-reviewer { display: flex; align-items: center; gap: 12px; }
.ath-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--ff-display); font-weight: 800; font-size: 15px;
}
.ath-reviewer-name    { font-size: 14px; font-weight: 700; color: var(--clr-navy); }
.ath-reviewer-vehicle { font-size: 11px; color: var(--clr-muted); margin-top: 2px; }
.ath-review-date      { font-size: 11px; color: var(--clr-muted); }
.ath-review-stars     { color: var(--clr-gold); font-size: 14px; margin-bottom: 8px; }
.ath-review-product   { font-size: 11px; font-weight: 700; color: var(--clr-red); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
.ath-review-text      { font-size: 14px; color: var(--clr-muted); line-height: 1.6; }
.ath-review-verified  { display: inline-flex; align-items: center; gap: 4px; font-size: 10px; font-weight: 700; color: #2ecc71; text-transform: uppercase; margin-top: 12px; }

/* =====================================================================
   SITE TOUR VIDEO (below reviews)
   ===================================================================== */
.ath-site-reel {
  background: linear-gradient(180deg, #0D1B2A 0%, #12253C 100%);
  position: relative;
  overflow: hidden;
}
.ath-site-reel::before {
  content: '';
  position: absolute;
  width: 560px; height: 560px;
  bottom: -220px; right: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246,185,59,.14) 0%, transparent 65%);
  pointer-events: none;
}
.ath-site-reel::after {
  content: '';
  position: absolute;
  width: 520px; height: 520px;
  top: -200px; left: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,50,17,.12) 0%, transparent 65%);
  pointer-events: none;
}
.ath-site-reel .ath-section-header--light .ath-eyebrow { color: var(--clr-red); }
.ath-site-reel .ath-section-header--light .ath-section-title { color: #fff; }
.ath-site-reel .ath-section-header--light .ath-section-title span { color: var(--clr-red); }
.ath-site-reel-sub { color: rgba(255,255,255,.6); font-size: 14px; margin: -24px 0 32px; max-width: 480px; position: relative; z-index: 1; }
.ath-site-reel-frame {
  position: relative; z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.12);
  background: #000;
}
.ath-site-reel-frame video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}
.ath-site-reel-dur {
  position: absolute;
  right: 14px; bottom: 14px;
  font-size: 11px; font-weight: 700; letter-spacing: .6px;
  color: #fff;
  background: rgba(13,27,42,.85);
  border: 1px solid rgba(255,255,255,.25);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  pointer-events: none;
}

/* =====================================================================
   FAQ (accordion)
   ===================================================================== */
.ath-faq-section {
  background: var(--clr-light);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.ath-faq-section::before {
  content: '';
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  top: -140px; right: -140px;
  background: radial-gradient(circle, rgba(232,106,42,.08) 0%, transparent 65%);
  pointer-events: none;
}
.ath-faq-section::after {
  content: '';
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  bottom: -160px; left: -120px;
  background: radial-gradient(circle, rgba(74,110,150,.10) 0%, transparent 65%);
  pointer-events: none;
}
.ath-faq-section .wrap { max-width: 860px; margin: 0 auto; position: relative; z-index: 1; }
.ath-faq-section .ath-section-header { text-align: left; align-items: flex-start; }
.ath-faq-section .ath-faq-sub {
  color: var(--clr-muted);
  font-size: 15px; line-height: 1.6; max-width: 640px;
  margin: -20px 0 28px; position: relative; z-index: 1;
}

.ath-faq-section .acc-item {
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  margin-bottom: 12px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
  transition: box-shadow var(--trans, .2s), border-color var(--trans, .2s), transform var(--trans, .2s);
}
.ath-faq-section .acc-item:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.18); }
.ath-faq-section .acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.ath-faq-section .acc-trigger h4 {
  font-family: var(--ff-display, 'Barlow');
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-navy, #0D1B2A);
  margin: 0;
  line-height: 1.3;
  transition: color var(--trans, .2s);
}
.ath-faq-section .acc-trigger:hover h4 { color: var(--clr-red, #E53211); }
.ath-faq-section .acc-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid #E2E8F0;
  position: relative;
  transition: background var(--trans, .2s), border-color var(--trans, .2s), transform var(--trans, .2s);
}
.ath-faq-section .acc-icon::before,
.ath-faq-section .acc-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--clr-navy, #0D1B2A);
  transition: background var(--trans, .2s);
}
.ath-faq-section .acc-icon::before { width: 12px; height: 2px; }
.ath-faq-section .acc-icon::after  { width: 2px; height: 12px; }
.ath-faq-section .acc-item:nth-child(1).open .acc-icon { background: #E53211; border-color: #E53211; }
.ath-faq-section .acc-item:nth-child(2).open .acc-icon { background: #3a5a78; border-color: #3a5a78; }
.ath-faq-section .acc-item:nth-child(3).open .acc-icon { background: #F6B93B; border-color: #F6B93B; }
.ath-faq-section .acc-item:nth-child(4).open .acc-icon { background: #2e4a63; border-color: #2e4a63; }
.ath-faq-section .acc-item:nth-child(5).open .acc-icon { background: #d9531c; border-color: #d9531c; }
.ath-faq-section .acc-item:nth-child(6).open .acc-icon { background: #4a6e96; border-color: #4a6e96; }
.ath-faq-section .acc-item:nth-child(7).open .acc-icon { background: #e86a2a; border-color: #e86a2a; }
.ath-faq-section .acc-item.open .acc-icon { transform: rotate(180deg); }
.ath-faq-section .acc-item.open .acc-icon::before,
.ath-faq-section .acc-item.open .acc-icon::after { background: #fff; }
.ath-faq-section .acc-item.open .acc-icon::after { transform: translate(-50%, -50%) scaleY(0); }

.ath-faq-section .acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.ath-faq-section .acc-item.open .acc-panel { max-height: 600px; }
.ath-faq-section .acc-item.open .acc-trigger h4 { color: #E53211; }
.ath-faq-section .acc-panel-inner { padding: 0 22px 20px; }
.ath-faq-section .acc-panel-inner p { color: #556184; font-size: 14px; line-height: 1.7; margin: 0; }
.ath-faq-section .acc-panel-inner p + p { margin-top: 10px; }

@media (max-width: 640px) {
  .ath-faq-section .acc-trigger { padding: 16px; }
  .ath-faq-section .acc-panel-inner { padding: 0 16px 16px; }
}

/* =====================================================================
   CTA BANNER
   ===================================================================== */
.ath-cta-banner {
  background: linear-gradient(135deg, var(--clr-navy) 0%, var(--clr-navy-mid) 50%, #0a1520 100%);
  padding: var(--section-gap) 0;
  position: relative;
  overflow: hidden;
}
.ath-cta-banner::before {
  content: '';
  position: absolute; right: -100px; top: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(229,50,17,.18) 0%, transparent 70%);
  pointer-events: none;
}
.ath-cta-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.ath-cta-title {
  font-family: var(--ff-display);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 12px;
}
.ath-cta-sub { font-size: 15px; color: rgba(255,255,255,.65); max-width: 480px; }
.ath-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* =====================================================================
   NEWSLETTER
   ===================================================================== */
.ath-newsletter-section {
  background: var(--clr-navy);
  padding: 24px 0;
  margin-bottom: 0;
}
.cms-index-index .page-bottom,
.cms-index-index .sections .section {
  margin: 0 !important;
  padding: 0 !important;
}
.cms-index-index .page-wrapper > .page-bottom {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.cms-index-index .ath-newsletter-section + * {
  margin-top: 0 !important;
}
.cms-index-index .page-main,
.cms-index-index #maincontent,
.cms-index-index .columns,
.cms-index-index .column.main {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.cms-index-index .page-main .chat-button,
.cms-index-index .page-main .chat-container,
.cms-index-index .page-main .chat-container.hidden {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}
.ath-nl-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.ath-nl-text strong { font-family: var(--ff-display); font-size: 22px; font-weight: 800; color: #fff; display: block; margin-bottom: 4px; }
.ath-nl-text span   { font-size: 14px; color: #fff; }
.ath-nl-form {
  display: flex;
  max-width: 440px;
  flex: 1;
}
.ath-nl-form input {
  flex: 1;
  padding: 0 20px;
  height: 48px;
  border: none;
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  font-size: 14px;
  outline: none;
}
.ath-nl-form button {
  background: var(--clr-navy);
  border: none;
  color: #fff;
  padding: 0 24px;
  height: 48px;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: background var(--trans);
}
.ath-nl-form button:hover { background: #000; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.ath-footer { background: #1a2535; color: #fff; }

.ath-footer-trust {
  background: #141e2d;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.ath-trust-badges {
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 14px;
}
.ath-trust-badges li {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.7);
}
.ath-trust-badges svg { color: var(--clr-red); flex-shrink: 0; }

.ath-footer-main { padding: 25px 0; }
.ath-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 36px;
}
.ath-footer-logo-img { height: 36px; width: auto; display: block; margin-bottom: 12px; }
.ath-footer-brand p { font-size: 13px; color: #fff; line-height: 1.7; margin-bottom: 20px; }
.ath-footer-social { display: flex; gap: 10px; }
.ath-social-link {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background var(--trans), color var(--trans);
}
.ath-social-link:hover { background: var(--clr-red); color: #fff; }
.ath-footer-col-title {
  font-size: 12px; font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 16px; font-family: var(--ff-display);
}
.ath-footer-links { display: flex; flex-direction: column; gap: 8px; }
.ath-footer-links a { font-size: 13px; color: #fff; transition: color var(--trans); }
.ath-footer-links a:hover { color: var(--clr-red); }
.ath-footer-contact { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.ath-footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: #fff; }
.ath-footer-contact svg { flex-shrink: 0; margin-top: 2px; color: var(--clr-red); }
.ath-footer-contact a { color: #fff; transition: color var(--trans); }
.ath-footer-contact a:hover { color: var(--clr-red); }
.ath-footer-newsletter .ath-footer-nl-inner { display: flex; }
.ath-footer-newsletter input {
  flex: 1; padding: 10px 14px; height: 40px;
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08); color: #fff; font-size: 13px; outline: none;
}
.ath-footer-newsletter input::placeholder { color: rgba(255,255,255,.35); }
.ath-footer-newsletter button {
  background: var(--clr-red); border: none; color: #fff;
  padding: 0 14px; height: 40px;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  font-size: 13px; font-weight: 700; white-space: nowrap;
  transition: background var(--trans);
}
.ath-footer-newsletter button:hover { background: var(--clr-red-dark); }

.ath-footer-bottom {
  background: #0d141f;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 16px 0;
}
.ath-footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.ath-copyright { font-size: 12px; font-style: normal; color: rgba(255,255,255,.4); }
.ath-back-top {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.55); border-radius: var(--radius-pill);
  padding: 6px 14px; font-size: 12px; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  opacity: 0; transition: opacity var(--trans), background var(--trans), color var(--trans);
}
.ath-back-top.is-visible { opacity: 1; }
.ath-back-top:hover { background: var(--clr-red); color: #fff; border-color: var(--clr-red); }
.ath-payment-badges { display: flex; gap: 6px; align-items: center; }
.ath-payment-badges span {
  background: rgba(255,255,255,.1); border-radius: 3px;
  padding: 3px 8px; font-size: 11px; font-weight: 700; color: rgba(255,255,255,.5);
}

/* =====================================================================
   PRODUCT DETAIL PAGE
   ===================================================================== */
.ath-pdp {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 32px 20px 60px;
}
.ath-pdp-main {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 48px;
   margin-bottom: 48px;
 }
 .ath-pdp-gallery {
   order: 1;
 }
 .ath-pdp-info {
   order: 2;
 }

/* Gallery */
.ath-pdp-gallery .product.media {
  width: auto;
  float: none;
}
.ath-pdp-gallery .fotorama__stage {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
}
.ath-pdp-gallery .fotorama__nav--thumbs .fotorama__thumb {
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: border-color var(--trans);
}
.ath-pdp-gallery .fotorama__nav--thumbs .fotorama__thumb.fotorama__active {
  border-color: var(--clr-red);
}
.ath-pdp-gallery .fotorama__thumb-border {
  display: none;
}
.ath-pdp-gallery .product.media .gallery-placeholder .fotorama-item .fotorama__nav-wrap {
  margin-top: 12px;
}
.ath-pdp-gallery .product.media .fotorama__nav--thumbs {
  padding: 0;
}
.ath-pdp-gallery .magnifier-preview {
  border-radius: var(--radius-lg);
  border: 2px solid var(--clr-border);
  box-shadow: var(--shadow-lg);
  z-index: 100;
}

/* Product name */
.ath-pdp-name .value {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--clr-navy);
  line-height: 1.25;
  margin: 0 0 0;
}
.ath-pdp-name {
  margin: 0;
}

/* Info column */
.ath-pdp-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ath-pdp-info .product-reviews-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.ath-pdp-info .rating-summary {
  display: flex;
  align-items: center;
}
.ath-pdp-info .rating-summary .rating-result {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  width: 88px;
  height: 16px;
}
.ath-pdp-info .rating-summary .rating-result:before {
  content: '\2605\2605\2605\2605\2605';
  font-size: 16px;
  color: var(--clr-border);
  letter-spacing: 2px;
  line-height: 1;
}
.ath-pdp-info .rating-summary .rating-result > span {
  overflow: hidden;
  display: block;
  position: absolute;
  top: 0; left: 0;
  height: 16px;
}
.ath-pdp-info .rating-summary .rating-result > span:before {
  content: '\2605\2605\2605\2605\2605';
  font-size: 16px;
  color: var(--clr-gold);
  letter-spacing: 2px;
  line-height: 1;
  position: absolute;
  top: 0; left: 0;
}
.ath-pdp-info .reviews-actions {
  font-size: 13px;
  color: var(--clr-muted);
}
.ath-pdp-info .reviews-actions a {
  color: var(--clr-red);
  font-weight: 600;
}
.ath-pdp-info .reviews-actions a:hover { text-decoration: underline; }

/* Price row */
.ath-pdp-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.ath-pdp-price-row .price-box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ath-pdp-price-row .price-box .price {
  font-family: var(--ff-display);
  font-size: 32px;
  font-weight: 900;
  color: var(--clr-red);
  line-height: 1;
}
.ath-pdp-price-row .price-box .old-price .price {
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-muted);
  text-decoration: line-through;
}
.ath-pdp-price-row .price-box .special-price {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ath-pdp-price-row .price-box .special-price .price-label {
  display: none;
}
.ath-pdp-price-row .price-box .special-price .price {
  color: var(--clr-red);
}
.ath-pdp-price-row .price-box .old-price .price-label {
  display: none;
}
.ath-pdp-price-row .price-box .old-price .price {
  color: var(--clr-muted);
  font-size: 16px;
}
.ath-pdp-price-row .price-box .price-from .price,
.ath-pdp-price-row .price-box .price-to .price {
  font-size: 22px;
}

/* SKU + social actions row */
.ath-pdp-sku-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ath-pdp-sku-actions .ath-pdp-social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ath-pdp-sku-actions .ath-pdp-social .action {
  margin: 0;
}

/* SKU / Stock */
.ath-pdp-sku-stock {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
}
.ath-pdp-sku-stock .product.attribute.sku {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--clr-muted);
  font-weight: 500;
  margin: 0;
}
.ath-pdp-sku-stock .product.attribute.sku .type {
  font-weight: 700;
  color: var(--clr-text);
}
.ath-pdp-sku-stock .product.attribute.sku .value {
  font-weight: 600;
  color: var(--clr-text);
}
.ath-pdp-sku-stock .stock {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}
.ath-pdp-sku-stock .stock.available {
  color: #fff;
  background: #16a34a;
}
.ath-pdp-sku-stock .stock.unavailable {
  color: #fff;
  background: var(--clr-muted);
}

/* Product title */
.ath-pdp-info .page-title-wrapper.product {
  margin: 0;
}
.ath-pdp-info .page-title-wrapper.product h1 {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--clr-navy);
  line-height: 1.25;
  margin: 0 0 8px;
}

/* Add to cart */
.ath-pdp-info .product-add-form {
  margin: 0;
}
.ath-pdp-info .box-tocart {
  margin: 0;
}
.ath-pdp-info .box-tocart .field.qty {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin-right: 10px;
}
.ath-pdp-info .box-tocart .field.qty label {
  display: none;
}
.ath-pdp-info .box-tocart .field.qty .control {
  display: flex;
  align-items: center;
}
.ath-pdp-info .box-tocart .field.qty input {
  width: 52px;
  text-align: center;
  border: none;
  padding: 12px 4px;
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-navy);
  outline: none;
  background: transparent;
  -moz-appearance: textfield;
}
.ath-pdp-info .box-tocart .field.qty input::-webkit-outer-spin-button,
.ath-pdp-info .box-tocart .field.qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.ath-pdp-info .box-tocart .field.qty .qty-changer {
  display: flex;
}
.ath-pdp-info .box-tocart .field.qty .qty-changer button {
  width: 40px;
  height: 44px;
  background: var(--clr-light);
  border: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-navy);
  cursor: pointer;
  transition: background var(--trans), color var(--trans);
}
.ath-pdp-info .box-tocart .field.qty .qty-changer button:hover {
  background: var(--clr-red);
  color: #fff;
}
.ath-pdp-info .box-tocart .actions {
  display: inline-flex;
  gap: 8px;
  vertical-align: top;
}
.ath-pdp-info .action.tocart.primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  background: var(--clr-red);
  color: #fff;
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--clr-red);
  transition: background var(--trans), transform 0.15s;
}
.ath-pdp-info .action.tocart.primary:hover {
  background: var(--clr-red-dark);
  border-color: var(--clr-red-dark);
  transform: translateY(-1px);
  color: #fff;
}
.ath-pdp-info .action.tocart.primary:before {
  content: '';
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

/* Catalog search + category listing — add to cart matches the PDP add-to-cart button */
.catalogsearch-result-index .action.tocart.primary,
.catalog-category-view .action.tocart.primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  background: var(--clr-red);
  color: #fff;
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--clr-red);
  transition: background var(--trans), transform 0.15s;
}
.catalogsearch-result-index .action.tocart.primary:hover,
.catalog-category-view .action.tocart.primary:hover {
  background: var(--clr-red-dark);
  border-color: var(--clr-red-dark);
  transform: translateY(-1px);
  color: #fff;
}
.catalogsearch-result-index .action.tocart.primary:before,
.catalog-category-view .action.tocart.primary:before {
  content: '';
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
.catalogsearch-result-index .action.tocart.primary:disabled,
.catalog-category-view .action.tocart.primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.catalogsearch-result-index .action.tocart.primary > span,
.catalog-category-view .action.tocart.primary > span {
  color: #fff;
}

/* Extra info */
.ath-pdp-extras {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
  border-top: 1px solid var(--clr-border);
}
.ath-pdp-extras .product.attribute.overview {
  font-size: 14px;
  line-height: 1.7;
  color: var(--clr-muted);
  margin: 0;
}
.ath-pdp-extras .product.attribute.overview .value {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ath-pdp-social {
  display: flex;
  gap: 8px;
}
.ath-pdp-social .action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--clr-border);
  font-size: 12px;
  font-weight: 600;
  color: var(--clr-muted);
  background: var(--clr-white);
  transition: border-color var(--trans), color var(--trans), background var(--trans);
}
.ath-pdp-social .action:hover {
  border-color: var(--clr-red);
  color: var(--clr-red);
  background: rgba(229,50,17,.04);
  text-decoration: none;
}
.ath-pdp-social .action.towishlist:before {
  content: '\2661';
  font-size: 16px;
  line-height: 1;
}
.ath-pdp-social .action.tocompare:before {
  content: '\21C4';
  font-size: 14px;
  font-weight: 400;
}
.ath-pdp-social .action.mailto.friend:before {
  content: '\2709';
  font-size: 14px;
}

/* Tabs */
.ath-pdp-tabs {
  margin-top: 0;
  margin-bottom: 48px;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--clr-white);
}
.ath-tabs-nav {
  display: flex;
  border-bottom: 2px solid var(--clr-border);
  background: var(--clr-light);
  overflow-x: auto;
  gap: 0;
}
.ath-tab-btn {
  flex-shrink: 0;
  padding: 16px 28px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--clr-muted);
  cursor: pointer;
  transition: color var(--trans), border-color var(--trans), background var(--trans);
}
.ath-tab-btn:hover {
  color: var(--clr-navy);
  background: rgba(0,0,0,.02);
}
.ath-tab-btn.is-active {
  color: var(--clr-red);
  border-bottom-color: var(--clr-red);
  background: var(--clr-white);
}
.ath-tab-panel {
  display: none;
  padding: 32px 36px;
  animation: athFadeIn 0.3s ease;
}
.ath-tab-panel.is-active { display: block; }
@keyframes athFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ath-tab-panel .product.attribute.description {
  margin: 0;
}
.ath-tab-panel .product.attribute.description .value {
  font-size: 15px;
  line-height: 1.75;
  color: var(--clr-text);
}
.ath-tab-panel .product.attribute.description .value p {
  margin-bottom: 16px;
}
.ath-tab-panel .product.attribute.description .value p:last-child {
  margin-bottom: 0;
}
.ath-tab-panel .product.attribute.description .value ul,
.ath-tab-panel .product.attribute.description .value ol {
  padding-left: 20px;
  margin-bottom: 16px;
}
.ath-tab-panel .product.attribute.description .value li {
  margin-bottom: 6px;
}
.ath-tab-panel .product.attribute.description .value img {
  border-radius: var(--radius-md);
  margin: 16px 0;
}
.ath-tab-panel .additional-attributes-wrapper {
  margin: 0;
}
.ath-tab-panel .additional-attributes-wrapper table {
  width: 100%;
  border-collapse: collapse;
}
.ath-tab-panel .additional-attributes-wrapper th,
.ath-tab-panel .additional-attributes-wrapper td {
  padding: 12px 16px;
  font-size: 14px;
  text-align: left;
  border-bottom: 1px solid var(--clr-border);
}
.ath-tab-panel .additional-attributes-wrapper th {
  font-weight: 700;
  color: var(--clr-navy);
  width: 40%;
  background: var(--clr-light);
}
.ath-tab-panel .additional-attributes-wrapper td {
  color: var(--clr-text);
}

/* Product Slider */
.ath-pdp-slider-section {
  margin-top: 0;
  margin-bottom: 48px;
}
.ath-slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.ath-slider-title {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--clr-navy);
  line-height: 1.15;
}
.ath-slider-arrows {
  display: flex;
  gap: 8px;
}
.ath-slider-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--clr-border);
  background: var(--clr-white);
  color: var(--clr-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--trans), border-color var(--trans), color var(--trans);
}
.ath-slider-arrow:hover {
  background: var(--clr-red);
  border-color: var(--clr-red);
  color: #fff;
}
.ath-slider-track-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.ath-slider-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 4px 8px;
  scroll-behavior: smooth;
}
.ath-slider-track::-webkit-scrollbar { display: none; }
.ath-slide-item {
  flex: 0 0 calc(25% - 15px);
  min-width: 220px;
  scroll-snap-align: start;
}
.ath-slide-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--trans), transform var(--trans);
}
.ath-slide-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.ath-slide-img {
  display: block;
  aspect-ratio: 1;
  background: var(--clr-light);
  overflow: hidden;
}
.ath-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.3s ease;
}
.ath-slide-card:hover .ath-slide-img img {
  transform: scale(1.05);
}
.ath-slide-body {
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ath-slide-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-navy);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--trans);
}
.ath-slide-name:hover { color: var(--clr-red); text-decoration: none; }
.ath-slide-price .price-box {
  display: flex;
  align-items: center;
  gap: 6px;
}
.ath-slide-price .price {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--clr-red);
}
.ath-slide-price .old-price .price {
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-muted);
  text-decoration: line-through;
}
.ath-slide-price .old-price .price-label,
.ath-slide-price .special-price .price-label {
  display: none;
}
.ath-slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--clr-navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--clr-border);
  transition: color var(--trans), gap var(--trans);
}
.ath-slide-btn:hover {
  color: var(--clr-red);
  gap: 10px;
  text-decoration: none;
}

/* Hide default Magento tab styles */
.product.info.detailed {
  display: none;
}

/* =====================================================================
   RESPONSIVE — TABLET (≤ 900px)
   ===================================================================== */
@media (max-width: 1100px) {
  .ath-cats-grid    { grid-template-columns: repeat(4, 1fr); }
  .ath-topcats-grid { grid-template-columns: repeat(4, 1fr); }
  .ath-brands-grid  { grid-template-columns: repeat(4, 1fr); }
  .ath-products-grid { grid-template-columns: repeat(3, 1fr); }
  .ath-trending-scroll .ath-products-grid { grid-template-columns: repeat(3, 1fr); }
  .ath-footer-grid  { grid-template-columns: 1fr 1fr 1fr; }
  .ath-blog-carousel-card { flex: 0 0 calc(33.33% - 14px); }
  .ath-pdp-main { gap: 32px; }
  .ath-slide-item { flex: 0 0 calc(33.33% - 14px); }
}

/* =====================================================================
   RESPONSIVE — SMALL TABLET (≤ 900px)
   ===================================================================== */
@media (max-width: 900px) {
  .ath-topbar-left span { display: none; }

  .ath-nav-list { display: none; }
  .ath-mobile-menu-toggle { display: flex; }
  .ath-logo-img { height: 54px; }
  .ath-header-mid { padding: 8px 0; }
  .ath-header-mid-inner { gap: 10px; }
  .ath-header-icons { gap: 2px; }
  .ath-icon-btn { padding: 6px 8px; font-size: 9px; }
  .ath-cart-btn { padding: 6px 14px; font-size: 12px; }
  .ath-reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .ath-why-grid  { grid-template-columns: 1fr; }
  .ath-products-grid { grid-template-columns: repeat(2, 1fr); }
  .ath-trending-scroll .ath-products-grid { grid-template-columns: repeat(3, 1fr); }
  .ath-promo-grid { grid-template-columns: 1fr; }
  .ath-pdp-main { grid-template-columns: 1fr; gap: 24px; }
  .ath-pdp { padding: 20px 16px 40px; }
  .ath-pdp-info .page-title-wrapper.product h1 { font-size: 22px; }
  .ath-pdp-price-row .price-box .price { font-size: 26px; }
  .ath-tab-panel { padding: 24px 20px; }
  .ath-tab-btn { padding: 14px 18px; font-size: 12px; }
  .ath-slide-item { flex: 0 0 calc(50% - 10px); }
  .ath-hero { height: 360px; }
  .ath-hero-content { max-width: 460px; }
  .ath-hero-title { font-size: clamp(26px, 5vw, 42px); }
  .ath-hero-sub { font-size: 14px; }
  .ath-hero-cta { flex-direction: column; align-items: flex-start; }
  .ath-btn-primary, .ath-btn-ghost { font-size: 13px; padding: 9px 24px; }
  .ath-stat-num { font-size: 18px; }
  .ath-stat-lbl { font-size: 10px; }
}

/* Prevent horizontal scroll from full-bleed sections */
.cms-index-index .page-wrapper { overflow-x: hidden; }

/* Full-bleed homepage sections */
.cms-index-index .ath-hero-stats,
.cms-index-index .ath-vehicle-finder,
.cms-index-index .ath-cta-banner,
.cms-index-index .ath-newsletter-section,
.cms-index-index .ath-top-brands,
.cms-index-index .ath-featured-products,
.cms-index-index .ath-trending-section,
.cms-index-index .ath-top-cats,
.cms-index-index .ath-faq-section,
.cms-index-index .ath-blog-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

/* =====================================================================
   RESPONSIVE — MOBILE (≤ 640px)
   ===================================================================== */
@media (max-width: 640px) {
  :root { --section-gap: 48px; }
  .ath-container { padding: 0 14px; }
  .ath-deco { opacity: 0.35; }
  .ath-deco-tl { width: 220px; height: 220px; top: -20px; left: -30px; }
  .ath-deco-br { width: 240px; height: 240px; bottom: -30px; right: -30px; }
  .ath-hero { height: 300px; }
  .ath-hero-stats { display: none; }
  .ath-hero-content { padding: 20px 18px 22px; margin-left: 0; margin-top: 18px; max-width: 100%; border-radius: 0 12px 12px 0; }
  .ath-hero-title { font-size: clamp(22px, 6vw, 32px); }
  .ath-hero-sub { font-size: 13px; margin-bottom: 18px; max-width: 100%; }
  .ath-hero-cta { flex-direction: column; align-items: flex-start; gap: 10px; }
  .ath-hero-cta .ath-btn-primary,
  .ath-hero-cta .ath-btn-ghost { width: auto; justify-content: center; font-size: 12.5px; padding: 9px 18px; }
  .ath-btn-primary, .ath-btn-ghost { font-size: 12px; padding: 8px 20px; width: 100%; justify-content: center; }
  .ath-slider-btn { width: 36px; height: 36px; }
  .ath-slider-prev { left: 8px; }
  .ath-slider-next { right: 8px; }
  .ath-slider-dots { bottom: 14px; }
  .ath-trust-grid { grid-template-columns: 1fr 1fr; }
  .ath-trust-item:nth-child(2n) { border-right: none; }
  .ath-trust-item { border-bottom: 1px solid var(--clr-border); }
  .ath-cats-grid  { grid-template-columns: repeat(2, 1fr); }
  .ath-topcats-grid { grid-template-columns: repeat(3, 1fr); }
  .ath-topcats-panels { padding: 16px; }
  .ath-brands-grid { grid-template-columns: repeat(3, 1fr); }
  .ath-products-grid { grid-template-columns: 1fr 1fr; }
  .ath-trending-scroll .ath-products-grid { grid-template-columns: 1fr 1fr; }
  .ath-trending-scroll .ath-product-body .ath-price-now { font-size: 16px; }
  .ath-reviews-grid { grid-template-columns: 1fr; }
  .ath-reviews-summary { flex-direction: column; }
  .ath-cta-inner { flex-direction: column; }
  .ath-nl-inner  { flex-direction: column; }
  .ath-footer-grid { grid-template-columns: 1fr 1fr; }
  .ath-footer-brand { grid-column: span 2; }
  .ath-topbar { display: none; }
  .ath-header-icons .ath-icon-btn:not(.ath-cart-btn) { display: none; }
  .ath-search-input { font-size: 13px; }
  .ath-search-btn { padding: 0 16px; }
  .ath-logo-img { height: 42px; }
  .ath-vf-selects { flex-direction: column; }
  .ath-blog-carousel-card { flex: 0 0 calc(50% - 10px); }
  .ath-footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .ath-pdp-info .box-tocart .actions { margin-top: 10px; display: block; }
  .ath-pdp-info .action.tocart.primary { width: 100%; justify-content: center; }
  .ath-pdp-info .box-tocart .field.qty { width: 100%; }
  .ath-pdp-info .box-tocart .field.qty input { flex: 1; }
  .ath-pdp-price-row { flex-direction: column; align-items: flex-start; }
  .ath-slide-item { flex: 0 0 80%; min-width: 180px; }
  .ath-tabs-nav { overflow-x: auto; }
  .ath-tab-btn { padding: 12px 14px; font-size: 11px; white-space: nowrap; }
  .ath-stat { padding: 4px 10px; }
  .ath-stat-num { font-size: 16px; }
  .ath-stat-lbl { font-size: 9px; letter-spacing: 0.5px; }
  .ath-mobile-drawer { width: 280px; }
  .ath-mobile-nav ul li a { padding: 14px 18px; font-size: 15px; }
}

@media (max-width: 400px) {
  .ath-products-grid { grid-template-columns: 1fr; }
  .ath-trending-scroll .ath-products-grid { grid-template-columns: 1fr; }
  .ath-trending-sub { font-size: 13px; }
  .ath-brands-grid   { grid-template-columns: repeat(2, 1fr); }
  .ath-footer-grid   { grid-template-columns: 1fr; }
  .ath-footer-brand  { grid-column: span 1; }
  .ath-logo-img { height: 34px; }
  .ath-hero { height: 260px; }
  .ath-hero-title { font-size: 20px; }
  .ath-blog-carousel-card { flex: 0 0 100%; }
  .ath-icon-btn { padding: 4px 6px; }
  .ath-cart-btn { padding: 4px 10px; font-size: 11px; }
}

/* =====================================================================
   PRINT
   ===================================================================== */
/* =====================================================================
   404 PAGE
   ===================================================================== */
.ath-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 60px 20px 80px;
}
.ath-404-inner {
  text-align: center;
  max-width: 560px;
}
.ath-404-image svg {
  width: 240px;
  height: auto;
  margin-bottom: 24px;
}
.ath-404-title {
  font-family: var(--ff-display);
  font-size: 32px;
  font-weight: 900;
  color: var(--clr-navy);
  margin-bottom: 12px;
}
.ath-404-sub {
  font-size: 15px;
  color: var(--clr-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}
.ath-404-search {
  margin-bottom: 32px;
}
.ath-404-search-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-pill);
  overflow: hidden;
  transition: border-color var(--trans);
}
.ath-404-search-form:focus-within {
  border-color: var(--clr-red);
}
.ath-404-search-input {
  flex: 1;
  border: none;
  padding: 12px 20px;
  font-size: 14px;
  outline: none;
  background: transparent;
  color: var(--clr-text);
}
.ath-404-search-btn {
  background: var(--clr-red);
  border: none;
  color: #fff;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--trans);
}
.ath-404-search-btn:hover {
  background: var(--clr-red-dark);
}
.ath-404-links {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.ath-404-links .ath-btn-ghost {
  color: var(--clr-navy);
  border-color: var(--clr-navy);
  background: transparent;
}
.ath-404-links .ath-btn-ghost:hover {
  background: #fff;
  border-color: var(--clr-red);
  color: var(--clr-red);
}

/* SEO H1 (visually hidden, for SEO) */
.ath-seo-h1 {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Homepage SEO content section */
.ath-seo-content { background: #fff; border-top: 1px solid var(--clr-line, #E2E8F0); }
.ath-seo-content .ath-container { max-width: 960px; }
.ath-seo-content-title {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 800;
  color: var(--clr-navy);
  line-height: 1.25;
  margin-bottom: 20px;
  text-align: center;
}
.ath-seo-content-body p {
  font-size: 15px;
  line-height: 1.8;
  color: #44526a;
  margin-bottom: 16px;
}
.ath-seo-content-body p:last-child { margin-bottom: 0; }
.ath-seo-content-body a {
  color: var(--clr-red);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ath-seo-content-body a:hover { color: #c02500; }

/* =====================================================================
   TRACK ORDER PAGE
   ===================================================================== */
.ath-track-order { }
.ath-track-hero {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}
.ath-track-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--clr-navy) 0%, var(--clr-navy-mid) 100%);
}
.ath-track-hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(229,50,17,.15) 0%, transparent 60%);
}
.ath-track-hero-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.ath-track-hero-content { flex: 1; max-width: 520px; }
.ath-track-badge {
  display: inline-block;
  background: rgba(255,255,255,.1); color: var(--clr-silver);
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  padding: 6px 14px; border-radius: var(--radius-pill); margin-bottom: 16px;
}
.ath-track-title {
  font-family: var(--ff-display); font-size: 40px; font-weight: 800;
  color: var(--clr-white); line-height: 1.15; margin-bottom: 16px;
}
.ath-track-subtitle {
  font-size: 15px; color: var(--clr-silver); line-height: 1.6; max-width: 420px;
}
.ath-track-hero-visual { flex-shrink: 0; }

.ath-track-form-section { padding: 0 0 var(--section-gap); }
.ath-track-form-card {
  max-width: 560px; margin: -40px auto 0; position: relative; z-index: 2;
  background: var(--clr-white); border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border); padding: 36px 36px 32px;
  box-shadow: var(--shadow-md); text-align: center;
}
.ath-track-form-icon { margin-bottom: 12px; }
.ath-track-form-title {
  font-family: var(--ff-display); font-size: 22px; font-weight: 700;
  color: var(--clr-navy); margin-bottom: 24px;
}
.ath-track-form { text-align: left; }
.ath-track-field { margin-bottom: 18px; }
.ath-track-label {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--clr-text); margin-bottom: 6px;
}
.ath-track-input {
  width: 100%; padding: 12px 16px; font-size: 14px;
  border: 2px solid var(--clr-border); border-radius: var(--radius-sm);
  transition: border-color var(--trans); background: var(--clr-light); color: var(--clr-text);
}
.ath-track-input:focus { outline: none; border-color: var(--clr-red); background: var(--clr-white); }
.ath-track-input::placeholder { color: var(--clr-silver); }
.ath-track-submit {
  width: 100%; justify-content: center; margin-top: 6px;
  font-size: 15px; padding: 14px 24px;
}
.ath-track-submit svg { margin-right: 6px; }

.ath-track-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 56px;
}
.ath-track-step {
  text-align: center; padding: 28px 16px;
  background: var(--clr-white); border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border); transition: box-shadow var(--trans), transform var(--trans);
}
.ath-track-step:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.ath-track-step-icon {
  width: 56px; height: 56px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--clr-light); color: var(--clr-red);
}
.ath-track-step h4 { font-size: 15px; font-weight: 700; color: var(--clr-navy); margin-bottom: 8px; }
.ath-track-step p { font-size: 12px; color: var(--clr-muted); line-height: 1.55; }

.ath-track-cta {
  margin-top: 56px; background: var(--clr-navy);
  border-radius: var(--radius-lg); padding: 40px; text-align: center;
}
.ath-track-cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  flex-wrap: wrap;
}
.ath-track-cta-text { flex: 1; text-align: left; }
.ath-track-cta-text h3 { font-size: 24px; font-weight: 700; color: var(--clr-white); margin-bottom: 8px; }
.ath-track-cta-text p { font-size: 14px; color: var(--clr-silver); max-width: 480px; }
.ath-track-cta-btns { display: flex; gap: 12px; flex-shrink: 0; }
.ath-track-cta-btns .ath-btn-ghost {
  border-color: rgba(255,255,255,.3); color: var(--clr-white);
}
.ath-track-cta-btns .ath-btn-ghost:hover {
  background: var(--clr-white); color: var(--clr-navy); border-color: var(--clr-white);
}
.ath-track-cta-support {
  margin-top: 20px; font-size: 13px; color: var(--clr-silver);
}
.ath-track-cta-support a { color: var(--clr-white); text-decoration: underline; }
.ath-track-cta-support a:hover { color: var(--clr-red); }

@media (max-width: 900px) {
  .ath-track-hero-inner { flex-direction: column; text-align: center; }
  .ath-track-hero-content { max-width: 100%; }
  .ath-track-subtitle { max-width: 100%; }
  .ath-track-hero-visual { display: none; }
  .ath-track-steps { grid-template-columns: repeat(2, 1fr); }
  .ath-track-cta-inner { flex-direction: column; text-align: center; }
  .ath-track-cta-text { text-align: center; }
  .ath-track-cta-text p { max-width: 100%; }
}

@media (max-width: 640px) {
  .ath-track-title { font-size: 28px; }
  .ath-track-form-card { padding: 24px 18px; margin: -30px 10px 0; }
  .ath-track-steps { grid-template-columns: 1fr; }
  .ath-track-cta { padding: 28px 18px; }
  .ath-track-cta-btns { flex-direction: column; width: 100%; }
  .ath-track-cta-btns .ath-btn-primary,
  .ath-track-cta-btns .ath-btn-ghost { width: 100%; justify-content: center; }
}

@media print {
  .ath-header, .ath-footer, .ath-hero-stats,
  .ath-slider-btn, .ath-slider-dots, .ath-cta-banner,
  .ath-newsletter-section { display: none !important; }
}

/* ── GARAGE POPUP ─────────────────────────────────────────────────────── */
.ath-garage-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(13, 27, 42, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.ath-garage-overlay[hidden] { display: none; }
.ath-garage-popup {
  position: relative;
  width: 100%;
  max-width: 420px;
  max-height: 80vh;
  overflow-y: auto;
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}
.ath-garage-title {
  margin: 0 0 4px;
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--clr-navy);
}
.ath-garage-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  color: var(--clr-muted);
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.ath-garage-close:hover { color: var(--clr-red); background: var(--clr-light); }
.ath-garage-list { margin-top: 16px; }
.ath-garage-vehicle {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  background: var(--clr-light);
}
.ath-garage-vehicle-icon { flex: 0 0 34px; color: var(--clr-red); display: flex; }
.ath-garage-vehicle-title { font-size: 15px; font-weight: 600; color: var(--clr-text); }
.ath-garage-vehicle-engine { font-size: 13px; color: var(--clr-muted); margin-top: 2px; }
.ath-garage-delete {
  margin-left: auto;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--clr-red);
  background: var(--clr-white);
  border-radius: var(--radius-md);
  color: var(--clr-red);
  cursor: pointer;
  transition: var(--trans);
  box-shadow: var(--shadow-sm);
}
.ath-garage-delete:hover {
  color: #fff;
  background: var(--clr-red);
  border-color: var(--clr-red);
  box-shadow: var(--shadow-md);
}
.ath-garage-delete:active { transform: scale(.92); }
.ath-garage-delete:disabled { opacity: .4; cursor: default; transform: none; }
.ath-garage-vehicle-removing { opacity: .5; pointer-events: none; }
.ath-garage-empty { color: var(--clr-muted); font-size: 14px; text-align: center; padding: 18px 0; }
.ath-garage-add {
  display: inline-block;
  margin-top: 8px;
  color: var(--clr-red);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.ath-garage-add:hover { text-decoration: underline; }

/* ── PRODUCT LISTINGS — TYPOGRAPHY (category + search) ────────────────── */
.catalog-category-view .product.name.product-item-name,
.catalogsearch-result-index .product.name.product-item-name {
  margin: 10px 0 6px;
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--clr-navy);
  min-height: 2.7em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.catalog-category-view .product-item-name .product-item-link,
.catalogsearch-result-index .product-item-name .product-item-link {
  font-size: 17px;
  font-weight: 700;
  color: var(--clr-navy);
  transition: color var(--trans);
}
.catalog-category-view .product-item-name .product-item-link:hover,
.catalogsearch-result-index .product-item-name .product-item-link:hover {
  color: var(--clr-red);
}

.catalog-category-view .product-item-details .price-box,
.catalogsearch-result-index .product-item-details .price-box {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin: 6px 0;
}
.catalog-category-view .price-box .price,
.catalogsearch-result-index .price-box .price {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--clr-red);
  line-height: 1.2;
}
.catalog-category-view .price-box .price-label,
.catalogsearch-result-index .price-box .price-label {
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--clr-muted);
}
.catalog-category-view .price-box .old-price .price,
.catalogsearch-result-index .price-box .old-price .price {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-muted);
  text-decoration: line-through;
}
.catalog-category-view .price-box .special-price .price,
.catalogsearch-result-index .price-box .special-price .price {
  color: var(--clr-red);
}
