/* ═══════════════════════════════════════════════════════
   SPRINT DRIVES v8 — 2-Row Header
   Row 1 (hdr-top): logo · search · account · cart  — 68px
   Row 2 (hdr-nav): category links                  — 44px
   Total: 112px → body padding-top: 112px
   Mobile: hdr-top 60px + mobile-search 48px = 108px
═════════════════════════════════════════════════════════ */

/* ── RESET OLD NAV ── */
nav#main-nav { display: none !important; }
body { padding-top: 112px !important; }
@media (max-width: 1100px) {
  body { padding-top: 108px !important; }
}
@media (max-width: 768px) {
  body { padding-top: 104px !important; }
}

/* ── SITE HEADER WRAPPER ── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  background: var(--N5); /* #07081c */
}

/* ═══════════════════
   ROW 1 — hdr-top
═══════════════════ */
.hdr-top {
  background: var(--N5);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  height: 68px;
}
.hdr-top-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

/* Logo */
.hdr-logo {
  display: flex;
  align-items: center;
  height: 100%;
  flex-shrink: 0;
}
.hdr-logo img {
  height: 36px;
  width: auto;
  display: block;
}

/* ── SEARCH BAR — full width, prominent ── */
.hdr-search {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  height: 44px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: box-shadow 0.2s;
}
.hdr-search:focus-within {
  box-shadow: 0 0 0 3px rgba(211,214,58,0.4), 0 2px 8px rgba(0,0,0,0.2);
}
.hdr-search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0 16px;
  font-family: var(--fb);
  font-size: 14px;
  color: var(--INK);
  background: transparent;
  min-width: 0;
}
.hdr-search-input::placeholder { color: #999; }
.hdr-search-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--L);
  color: var(--N4);
  border: none;
  height: 44px;
  padding: 0 20px;
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
  flex-shrink: 0;
}
.hdr-search-btn:hover { background: var(--L2); }
.hdr-search-btn svg {
  width: 16px; height: 16px;
  stroke: currentColor; stroke-width: 2.5; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ── RIGHT ACTIONS ── */
.hdr-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.hdr-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 10px;
  border-radius: 6px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
  position: relative;
}
.hdr-action-btn:hover {
  background: rgba(255,255,255,0.07);
  color: #fff;
}
.hdr-action-btn svg {
  width: 22px; height: 22px;
  stroke: currentColor; stroke-width: 1.8; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}
.hdr-action-label {
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
}
.hdr-cart-badge {
  position: absolute;
  top: 2px; right: 4px;
  min-width: 18px; height: 18px;
  border-radius: 9px;
  background: var(--L);
  color: var(--N4);
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--N5);
}
.hdr-cart-badge.zero { display: none; }

/* Contact CTA button */
.hdr-cta {
  display: inline-flex;
  align-items: center;
  background: var(--L);
  color: var(--N4);
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 5px;
  white-space: nowrap;
  transition: background 0.15s, transform 0.15s;
  margin-left: 8px;
}
.hdr-cta:hover {
  background: var(--L2);
  transform: translateY(-1px);
}

/* Burger — hidden on desktop */
.hdr-burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  cursor: pointer;
  margin-left: 4px;
}
.hdr-burger span {
  display: block;
  width: 20px; height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ═══════════════════
   ROW 2 — hdr-nav (category bar)
═══════════════════ */
.hdr-nav {
  background: var(--N);   /* #1e2276 — the brand blue */
  height: 44px;
  border-bottom: 2px solid var(--L);
}
.hdr-nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
}
.hdr-nav-links {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0;
}
.hdr-nav-links > li {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.hdr-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 100%;
  padding: 0 14px;
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.82);
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px; /* align with bottom border */
}
.hdr-nav-link:hover,
.hdr-has-drop:hover > .hdr-nav-link {
  background: rgba(0,0,0,0.2);
  color: #fff;
  border-bottom-color: var(--L);
}

/* Hot "Best Sellers" badge */
.hdr-nav-link--hot {
  color: var(--L) !important;
  font-weight: 700;
}
.hdr-nav-link--hot svg {
  width: 13px; height: 13px;
  fill: var(--L);
}

/* TikTok link */
.hdr-nav-link--tiktok {
  color: rgba(255,255,255,0.7);
}
.hdr-nav-link--tiktok svg {
  width: 13px; height: 13px;
  fill: currentColor;
}
.hdr-nav-link--tiktok:hover {
  color: #fff;
}

/* Dropdown arrow */
.hdr-drop-arr {
  width: 14px; height: 14px;
  stroke: currentColor; stroke-width: 2; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.hdr-has-drop:hover .hdr-drop-arr {
  transform: rotate(180deg);
}

/* ── DROPDOWN PANEL ── */
.hdr-drop {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 480px;
  background: #fff;
  border: 1px solid var(--BD);
  border-top: 3px solid var(--N);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  z-index: 9100;
  padding: 20px;
}
.hdr-has-drop:hover .hdr-drop {
  display: block;
  animation: dropIn 0.15s ease;
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hdr-drop-cols {
  display: flex;
  gap: 24px;
}
.hdr-drop-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 160px;
}
.hdr-drop-head {
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--N);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--BD);
  margin-bottom: 4px;
}
.hdr-drop-col a {
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 400;
  color: var(--INK2);
  text-decoration: none;
  padding: 3px 0;
  transition: color 0.12s, padding-left 0.12s;
}
.hdr-drop-col a:hover {
  color: var(--N);
  padding-left: 4px;
}

/* Mobile search row below hdr-top */
.hdr-mobile-search {
  display: none;
  background: var(--N5);
  padding: 8px 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.hdr-mobile-search form {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  height: 40px;
  overflow: hidden;
}
.hdr-mobile-search svg:first-child {
  width: 15px; height: 15px;
  stroke: rgba(255,255,255,0.45);
  stroke-width: 2; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
  margin: 0 10px;
  flex-shrink: 0;
}
.hdr-mobile-search input[type="search"] {
  flex: 1; background: transparent; border: none; outline: none;
  color: #fff; font-family: var(--fb); font-size: 14px;
}
.hdr-mobile-search input::placeholder { color: rgba(255,255,255,0.4); }
.hdr-mobile-search button {
  background: var(--N); border: none;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
}
.hdr-mobile-search button svg {
  width: 13px; height: 13px;
  stroke: #fff; stroke-width: 2.5; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ═══════════════════
   RESPONSIVE
═══════════════════ */
@media (max-width: 1100px) {
  /* Hide category nav row and desktop search on tablet/mobile */
  .hdr-nav { display: none; }
  .hdr-search { display: none; }
  .hdr-action-btn.hdr-account { display: none; }
  .hdr-cta { display: none; }
  .hdr-burger { display: flex; }
  .hdr-mobile-search { display: block; }
  .hdr-top { height: 60px; }
  .hdr-top-inner { grid-template-columns: auto 1fr auto; gap: 12px; padding: 0 16px; }
  .hdr-logo img { height: 30px; }
}

@media (max-width: 768px) {
  .hdr-action-label { display: none; }
  .hdr-action-btn { padding: 4px 8px; }
  .hdr-action-btn svg { width: 20px; height: 20px; }
}

/* ═══════════════════
   CAROUSEL FIX — full bleed edge to edge
   The banner images must cover the full width.
   Remove object-fit:contain which was boxing them.
═══════════════════ */
.sd-hero-imgonly {
  /* Remove side padding/margin if any */
  width: 100vw;
  margin-left: 0;
  margin-right: 0;
}
.sd-hero-imgonly .sd-hero-swiper {
  /* Fix desktop height */
  height: clamp(320px, 55vh, 680px);
  max-height: 680px;
}
.sd-slide-fullimg {
  /* COVER — fills entire slide edge to edge, no dark bars */
  object-fit: cover !important;
  object-position: center center !important;
  width: 100% !important;
  height: 100% !important;
  /* Ensure the image itself has no padding */
  padding: 0 !important;
}
/* Remove the white background we added for contain */
.sd-hero-imgonly,
.sd-hero-imgonly .sd-hero-swiper,
.sd-slide-img {
  background: var(--N5) !important;
}

/* Admin bar adjustment */
.admin-bar #site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar #site-header { top: 46px; } }


/* ═══════════════════════════════════════════════════════
   NEW HOMEPAGE SECTIONS — v8
═════════════════════════════════════════════════════════ */

/* ── Brands bar ── */
.sec-brands-v8 {
  background: #f8f8f6;
  padding: 28px 0;
  border-bottom: 1px solid var(--BD);
}
.brands-v8-label {
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--MUT);
  text-align: center;
  margin-bottom: 16px;
}
.brands-v8-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.brand-v8 {
  font-family: var(--fh);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--INK2);
  opacity: 0.5;
  padding: 8px 18px;
  border: 1px solid var(--BD);
  border-radius: 4px;
  transition: opacity 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.brand-v8:hover {
  opacity: 1;
  color: var(--N);
  border-color: rgba(51,52,127,0.25);
}
@media (max-width: 640px) {
  .brands-v8-row { gap: 6px; }
  .brand-v8 { font-size: 0.85rem; padding: 6px 12px; }
}

/* ── Why Sprint Drives ── */
.sec-why {
  background: #fff;
  padding: 72px 0 80px;
}
.why-head {
  text-align: center;
  margin-bottom: 52px;
}
.why-sub {
  font-family: var(--fb);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--INK2);
  max-width: 540px;
  margin: 14px auto 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .why-grid { grid-template-columns: 1fr; gap: 16px; } }

.why-card {
  padding: 28px 24px;
  border: 1px solid var(--BD);
  border-radius: 10px;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.why-card:hover {
  border-color: rgba(51,52,127,0.22);
  box-shadow: 0 8px 32px rgba(51,52,127,0.09);
  transform: translateY(-3px);
}
.why-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(51,52,127,0.07);
  border: 1px solid rgba(51,52,127,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.why-icon svg {
  width: 20px; height: 20px;
  stroke: var(--N); stroke-width: 1.8; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}
.why-title {
  font-family: var(--fh);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--INK);
  margin-bottom: 10px;
}
.why-text {
  font-family: var(--fb);
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--INK2);
  margin: 0;
}

/* ── Promo banner ── */
.sec-promo-banner {
  background: var(--N);
  overflow: hidden;
  position: relative;
}
.promo-banner-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 60px 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .promo-banner-inner { grid-template-columns: 1fr; gap: 24px; padding: 48px 24px; }
  .promo-banner-art { display: none; }
}
.promo-banner-eyebrow {
  display: inline-block;
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--L);
  background: rgba(211,214,58,0.12);
  border: 1px solid rgba(211,214,58,0.25);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.promo-banner-h2 {
  font-family: var(--fh);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
}
.promo-banner-h2 em { font-style: normal; color: var(--L); }
.promo-banner-sub {
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin-bottom: 28px;
}
.promo-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--L);
  color: var(--N4);
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 20px rgba(211,214,58,0.25);
}
.promo-banner-cta:hover {
  background: var(--L2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(211,214,58,0.35);
}
.promo-banner-cta svg {
  width: 13px; height: 13px;
  stroke: currentColor; stroke-width: 2.5; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}
/* Art element */
.promo-banner-art {
  position: relative;
  width: 200px; height: 200px;
  flex-shrink: 0;
}
.promo-art-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(211,214,58,0.15);
}
.promo-art-circle--1 { inset: 0; }
.promo-art-circle--2 { inset: 24px; border-color: rgba(211,214,58,0.25); }
.promo-art-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 2.4rem;
  color: var(--L);
  letter-spacing: 0.02em;
}
.promo-art-label {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-align: center;
  white-space: nowrap;
}

/* ── New arrivals — reuses sec-tools-light styling ── */
.sec-new-arrivals { padding: 56px 0 64px; }
.tool-card-new-badge {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 3;
  background: var(--N);
  color: #fff;
  font-family: var(--fb);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 2px;
}
