/* =================================================================
   TECHNO TRUCK LLC — Storefront Design System
   Brand colors derived from technotruckllc.com (Elementor export):
     Primary  : #FFA500  (orange CTA — used on "Book Now" buttons)
     Dark     : #0B0E11  (headings / dark surfaces)
     Accent   : #637BFF  (links / subtle highlights)
     Surface  : #F5F5F5  (light gray sections)
   Truck-red #c0392b is used as a secondary brand color from the logo.
   ================================================================= */

:root {
  --c-primary: #FFA500;
  --c-primary-600: #F08C00;
  --c-primary-700: #D97900;
  --c-primary-50: #FFF6E5;

  --c-dark: #0B0E11;
  --c-dark-2: #181C21;
  --c-dark-3: #282828;

  --c-truck: #C0392B;
  --c-truck-2: #962d22;

  --c-accent: #637BFF;
  --c-success: #1FA85C;
  --c-warn: #E5A100;
  --c-error: #D94545;

  --c-bg: #ffffff;
  --c-surface: #F5F5F5;
  --c-surface-2: #ECEEF0;
  --c-border: #E2E5E9;
  --c-border-2: #C9CDD2;

  --c-text: #0B0E11;
  --c-text-2: #4A4F55;
  --c-text-3: #7A7F86;
  --c-text-muted: #9CA0A6;
  --c-text-on-dark: #F4F5F7;
  --c-text-on-dark-2: #B7BBC0;

  --shadow-sm: 0 1px 2px rgba(11,14,17,.06), 0 1px 3px rgba(11,14,17,.04);
  --shadow:    0 4px 12px rgba(11,14,17,.07), 0 2px 4px rgba(11,14,17,.04);
  --shadow-md: 0 10px 28px rgba(11,14,17,.10), 0 4px 8px rgba(11,14,17,.05);
  --shadow-lg: 0 20px 48px rgba(11,14,17,.14), 0 8px 16px rgba(11,14,17,.06);

  --radius-sm: 6px;
  --radius:    10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Barlow Condensed', 'Inter', sans-serif;

  --max-w: 1280px;
  --header-h: 78px;
  --announce-h: 36px;

  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--c-text);
  background: var(--c-bg);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 14px; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============== announcement bar ============== */
.announce {
  background: var(--c-dark);
  color: var(--c-text-on-dark);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .02em;
  height: var(--announce-h);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--c-dark-2);
}
.announce__track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  padding-left: 56px;
}
.announce__track span { display: inline-flex; align-items: center; gap: 8px; }
.announce__track span svg { width: 16px; height: 16px; flex-shrink: 0; }
.announce__track span:nth-child(odd) { color: var(--c-primary); }
.announce__track span:nth-child(even) { color: var(--c-text-on-dark-2); }
.announce__track span:nth-child(even) svg { color: var(--c-text-on-dark-2); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============== header ============== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--c-border);
  height: var(--header-h);
}
.header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}
.logo__img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 8px;
  background: white;
  padding: 2px;
}
.logo--light .logo__img { background: rgba(255,255,255,.1); }
.logo__mark {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(140deg, var(--c-primary), var(--c-primary-700));
  color: var(--c-dark);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: .5px;
  box-shadow: 0 4px 10px rgba(255,165,0,.4);
}
.logo__text strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 1.5px;
  color: var(--c-dark);
  line-height: 1;
}
.logo__text small {
  display: block;
  color: var(--c-text-3);
  font-size: 11px;
  margin-top: 2px;
  letter-spacing: .03em;
}
.logo--light .logo__text strong { color: var(--c-text-on-dark); }
.logo--light .logo__text small { color: var(--c-text-on-dark-2); }

.nav {
  display: flex;
  gap: 6px;
  margin-left: 16px;
}
.nav__link {
  padding: 8px 14px;
  font-weight: 500;
  font-size: 14px;
  color: var(--c-text-2);
  border-radius: 8px;
  transition: all .15s var(--ease);
}
.nav__link:hover { color: var(--c-dark); background: var(--c-surface); }
.nav__link.is-active { color: var(--c-dark); background: var(--c-primary-50); }

.header__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}
.iconbtn {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--c-text-2);
  display: grid;
  place-items: center;
  position: relative;
  transition: all .15s var(--ease);
}
.iconbtn svg { width: 20px; height: 20px; }
.iconbtn:hover { background: var(--c-surface); color: var(--c-dark); border-color: var(--c-border); }
.iconbtn--phone { color: var(--c-primary-700); }
.cartbtn__count {
  position: absolute;
  top: 4px; right: 4px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: var(--c-primary);
  color: var(--c-dark);
  font-size: 11px;
  font-weight: 800;
  display: grid;
  place-items: center;
  transform: scale(0);
  transition: transform .2s var(--ease);
}
.cartbtn__count.is-visible { transform: scale(1); }

.hamburger {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--c-border);
  border-radius: 10px;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--c-dark);
  border-radius: 2px;
}

.searchbar {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: white;
  border-bottom: 1px solid var(--c-border);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: all .2s var(--ease);
}
.searchbar.is-open { transform: translateY(0); opacity: 1; pointer-events: all; }
.searchbar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.searchbar__inner svg { width: 22px; height: 22px; color: var(--c-text-3); }
.searchbar__inner input {
  flex: 1;
  border: 0;
  outline: 0;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 0;
  background: transparent;
}

/* ============== buttons ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid transparent;
  background: var(--c-surface);
  color: var(--c-text);
  text-decoration: none;
  cursor: pointer;
  transition: all .18s var(--ease);
  white-space: nowrap;
  line-height: 1.2;
}
.btn--primary {
  background: var(--c-primary);
  color: var(--c-dark);
  border-color: var(--c-primary);
  box-shadow: 0 4px 12px rgba(255,165,0,.28);
}
.btn--primary:hover {
  background: var(--c-primary-600);
  border-color: var(--c-primary-600);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255,165,0,.4);
}
.btn--ghost {
  background: transparent;
  color: var(--c-text);
  border-color: var(--c-border-2);
}
.btn--ghost:hover { background: var(--c-surface); border-color: var(--c-text-2); }
.btn--ghost-light {
  background: transparent;
  color: var(--c-text-on-dark);
  border-color: rgba(255,255,255,.3);
}
.btn--ghost-light:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }
.btn--block { width: 100%; }
.btn--lg { padding: 16px 28px; font-size: 15px; }
.btn--sm { padding: 8px 14px; font-size: 13px; }

/* ============== hero ============== */
.hero {
  position: relative;
  background: var(--c-dark);
  color: var(--c-text-on-dark);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(255,165,0,.22), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(99,123,255,.15), transparent 50%),
    linear-gradient(180deg, #0B0E11 0%, #181C21 100%);
  z-index: -1;
}
.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 90px 24px 100px;
  position: relative;
}
.hero__eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,165,0,.12);
  border: 1px solid rgba(255,165,0,.3);
  color: var(--c-primary);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 76px);
  line-height: .98;
  letter-spacing: -.5px;
  margin: 0 0 24px;
  max-width: 900px;
  text-transform: uppercase;
}
.hero__title--accent {
  background: linear-gradient(90deg, var(--c-primary) 0%, #FFC857 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.hero__lede {
  font-size: 17px;
  color: var(--c-text-on-dark-2);
  max-width: 620px;
  margin: 0 0 32px;
  line-height: 1.6;
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero__stats {
  display: flex;
  gap: 48px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  max-width: 600px;
}
.hero__stats > div { display: flex; flex-direction: column; }
.hero__stats strong {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--c-primary);
  line-height: 1;
}
.hero__stats span {
  font-size: 13px;
  color: var(--c-text-on-dark-2);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ============== page intro (no hero) ============== */
.section-head { margin-bottom: 40px; }
.section-head--center { text-align: center; max-width: 700px; margin-left: auto; margin-right: auto; }
.section-head__kicker {
  display: inline-block;
  padding: 5px 12px;
  background: var(--c-primary-50);
  color: var(--c-primary-700);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-head__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -.5px;
  margin: 0 0 12px;
  text-transform: uppercase;
}
.section-head__title--left { text-align: left; }
.section-head__sub {
  color: var(--c-text-2);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}
.section-head__sub--left { text-align: left; max-width: 720px; margin-left: 0; }

/* ============== page intro (replaces hero) ============== */
.pageintro {
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  padding: 18px 0;
}
.pageintro__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.pageintro .breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--c-text-2);
}
.pageintro .breadcrumbs a { color: var(--c-text-2); }
.pageintro .breadcrumbs a:hover { color: var(--c-primary-700); }
.pageintro .breadcrumbs span:last-child { color: var(--c-dark); font-weight: 600; }
.breadcrumbs__sep {
  display: inline-block;
  width: 5px; height: 5px;
  border-right: 1.5px solid var(--c-text-3);
  border-top: 1.5px solid var(--c-text-3);
  transform: rotate(45deg);
  margin: 0 4px;
}
.pageintro__stats {
  display: flex;
  gap: 28px;
}
.pageintro__stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
}
.pageintro__stat strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--c-primary-700);
}
.pageintro__stat span {
  font-size: 11px;
  color: var(--c-text-3);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 2px;
}
@media (max-width: 720px) {
  .pageintro__bar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .pageintro__stat { align-items: flex-start; }
}

/* ============== fitment finder ============== */
.fitment {
  background: linear-gradient(180deg, var(--c-surface) 0%, white 100%);
  padding: 80px 0;
}
.fitment__card {
  max-width: 880px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.fitment__card::before {
  content: "";
  position: absolute;
  top: -1px; left: 40px;
  width: 80px; height: 3px;
  background: var(--c-primary);
  border-radius: 0 0 3px 3px;
}
.fitment__step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--c-border);
}
.fitment__step[hidden] { display: none; }
.fitment__step:last-of-type { border-bottom: 0; }
.fitment__step-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--c-dark);
  color: var(--c-primary);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
  font-family: var(--font-display);
}
.fitment__step h3 {
  flex-shrink: 0;
  width: 220px;
  margin: 5px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text-2);
}
.fitment__options {
  flex: 1;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chip {
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  color: var(--c-text);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s var(--ease);
}
.chip:hover { border-color: var(--c-primary); color: var(--c-dark); }
.chip.is-active {
  background: var(--c-dark);
  color: var(--c-primary);
  border-color: var(--c-dark);
}
.fitment__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--c-border);
  flex-wrap: wrap;
}
.fitment__summary {
  flex: 1;
  font-size: 13.5px;
  color: var(--c-text-2);
  text-align: right;
}

/* ============== catalog ============== */
.catalog { padding: 80px 0; }
.catalog__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 24px;
  flex-wrap: wrap;
}
.catalog__sort {
  display: flex;
  align-items: center;
  gap: 10px;
}
.catalog__sort label { font-size: 13px; color: var(--c-text-2); font-weight: 500; }
.catalog__sort select {
  padding: 9px 14px;
  border: 1.5px solid var(--c-border);
  border-radius: 8px;
  background: white;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.catalog__body {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 32px;
}
.filters { position: sticky; top: calc(var(--header-h) + 16px); align-self: start; }
.filters__block {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--c-border);
}
.filters__block:last-of-type { border-bottom: 0; }
.filters__block h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: var(--c-text);
}
.filters__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 200px;
  overflow-y: auto;
}
.filters__list label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 6px;
  font-size: 13.5px;
  color: var(--c-text-2);
  cursor: pointer;
  border-radius: 4px;
}
.filters__list label:hover { color: var(--c-text); background: var(--c-surface); }
.filters__list input { accent-color: var(--c-primary); }
.filters__price { display: flex; align-items: center; gap: 8px; }
.filters__price input {
  width: 100%;
  padding: 8px 10px;
  border: 1.5px solid var(--c-border);
  border-radius: 6px;
  font-size: 13px;
}
.checkbox { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--c-text-2); cursor: pointer; }
.checkbox input { accent-color: var(--c-primary); }

.catalog__main { min-width: 0; }
.catalog__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 8px;
}
.catalog__bar > span { font-size: 14px; color: var(--c-text-2); }
.catalog__active {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.catalog__active .chip { padding: 5px 12px; font-size: 12px; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.empty {
  text-align: center;
  padding: 80px 24px;
  border: 2px dashed var(--c-border);
  border-radius: var(--radius-lg);
  background: var(--c-surface);
}
.empty h3 { margin: 0 0 8px; font-family: var(--font-display); font-size: 24px; }
.empty p { color: var(--c-text-2); margin: 0 0 20px; }

/* ============== product card ============== */
.card {
  background: white;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all .2s var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
}
.card:hover {
  border-color: var(--c-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #ffffff;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 16px;
  border-bottom: 1px solid var(--c-border);
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .35s var(--ease);
}
.card:hover .card__media img { transform: scale(1.06); }
.badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 6px;
  z-index: 2;
}
.badge--premium { background: var(--c-dark); color: var(--c-primary); }
.badge--bestseller { background: var(--c-primary); color: var(--c-dark); }
.badge--stock { background: var(--c-success); color: white; }
.badge--low { background: var(--c-warn); color: white; }
.card__wish {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  border: 0;
  display: grid;
  place-items: center;
  color: var(--c-text-2);
  z-index: 2;
  transition: all .15s var(--ease);
  cursor: pointer;
}
.card__wish:hover { color: var(--c-truck); transform: scale(1.1); }
.card__wish.is-saved { color: var(--c-truck); }
.card__body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.card__cat { font-size: 11px; font-weight: 700; color: var(--c-text-3); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--c-dark);
  margin: 0 0 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}
.card__brand { font-size: 12px; color: var(--c-text-3); margin-bottom: 10px; }
.card__stars { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--c-text-2); margin-bottom: 10px; }
.card__stars .stars { color: var(--c-primary); letter-spacing: 1px; }
.card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 12px;
}
.card__price-now { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--c-dark); }
.card__price-was { font-size: 13px; color: var(--c-text-3); text-decoration: line-through; }
.card__price-save { font-size: 12px; font-weight: 700; color: var(--c-success); background: rgba(31,168,92,.1); padding: 2px 8px; border-radius: 4px; }
.card__add {
  width: 100%;
  padding: 11px;
  background: var(--c-dark);
  color: white;
  border: 0;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13.5px;
  cursor: pointer;
  transition: all .15s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.card__add:hover { background: var(--c-primary); color: var(--c-dark); }
.card__add svg { width: 16px; height: 16px; }

/* ============== bundles ============== */
.bundles {
  padding: 72px 0;
  background: var(--c-surface);
}
.bundles .section-head__kicker { background: var(--c-primary-50); color: var(--c-primary-700); }
.bundle-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.bundle {
  background: white;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  transition: border-color .15s var(--ease);
}
.bundle:hover { border-color: var(--c-primary); }
.bundle__main { min-width: 0; }
.bundle__row1 {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.bundle__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .3px;
  margin: 0;
  color: var(--c-dark);
}
.bundle__save {
  background: var(--c-primary);
  color: var(--c-dark);
  padding: 3px 9px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  white-space: nowrap;
}
.bundle__desc {
  color: var(--c-text-2);
  font-size: 13.5px;
  margin: 0 0 12px;
  line-height: 1.5;
}
.bundle__items {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.bundle__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 4px 10px 4px 4px;
  font-size: 12px;
  color: var(--c-text-2);
}
.bundle__thumb {
  position: relative;
  width: 24px; height: 24px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 10px;
  color: var(--c-dark);
  background: var(--c-primary);
}
.bundle__thumb img { position: absolute; inset: 0; width: 100%; height: 100%; }
.bundle__item span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 220px; }
.bundle__right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.bundle__price {
  text-align: right;
  line-height: 1.1;
}
.bundle__price-now {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--c-dark);
}
.bundle__price-was {
  display: block;
  font-size: 12px;
  color: var(--c-text-3);
  text-decoration: line-through;
  margin-top: 2px;
}
.bundle__add { white-space: nowrap; }
@media (max-width: 720px) {
  .bundle { grid-template-columns: 1fr; padding: 16px; }
  .bundle__right { justify-content: space-between; }
  .bundle__item span { max-width: 140px; }
}

/* ============== trust strip ============== */
.trust { padding: 60px 0; background: var(--c-surface); }
.trust__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.trust__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.trust__item svg {
  width: 28px; height: 28px;
  color: var(--c-primary-700);
  flex-shrink: 0;
  margin-top: 2px;
}
.trust__item strong { display: block; font-size: 14px; font-weight: 700; color: var(--c-dark); margin-bottom: 2px; }
.trust__item span { font-size: 12.5px; color: var(--c-text-2); }

/* ============== footer ============== */
.footer {
  background: var(--c-dark);
  color: var(--c-text-on-dark-2);
  padding: 64px 0 24px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer h5 {
  color: var(--c-text-on-dark);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.footer a {
  display: block;
  color: var(--c-text-on-dark-2);
  font-size: 13.5px;
  margin-bottom: 8px;
  transition: color .15s var(--ease);
}
.footer a:hover { color: var(--c-primary); }
.footer p { margin: 0 0 8px; font-size: 13.5px; }
.footer__contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--c-text-on-dark-2);
  margin: 0 0 8px;
}
.footer__contact-line svg { color: var(--c-primary); flex-shrink: 0; }
.footer__contact-line a { display: inline; margin: 0; }
.footer__hint {
  color: var(--c-text-on-dark-2);
  font-size: 12.5px;
  line-height: 1.5;
  margin: 0 0 14px;
}
.footer__form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.footer__form input,
.footer__form textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--c-text-on-dark);
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-family: inherit;
  outline: 0;
  transition: border-color .15s var(--ease);
  resize: vertical;
}
.footer__form input::placeholder,
.footer__form textarea::placeholder { color: var(--c-text-muted); }
.footer__form input:focus,
.footer__form textarea:focus { border-color: var(--c-primary); background: rgba(255,255,255,.1); }
.footer__form button { align-self: flex-start; }
.footer__form-msg {
  font-size: 12px;
  color: var(--c-text-muted);
  margin: 0;
}
.footer__form-msg.is-sent { color: var(--c-primary); }
.footer__bottom-links a { display: inline-block; margin-left: 0; margin-right: 16px; }
.footer__credit {
  font-size: 12px;
  color: var(--c-text-on-dark-2);
}
.footer__credit a {
  display: inline;
  color: var(--c-primary);
  font-weight: 600;
  margin: 0;
  text-decoration: none;
  border-bottom: 1px dotted var(--c-primary);
}
.footer__credit a:hover { color: white; border-bottom-color: white; }
.footer__about { font-size: 14px; line-height: 1.6; margin-top: 16px; max-width: 360px; }
.footer__social { display: flex; gap: 8px; margin-top: 16px; }
.footer__social a {
  padding: 6px 12px;
  background: rgba(255,255,255,.06);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 0;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom a { display: inline-block; margin-left: 16px; margin-bottom: 0; font-size: 12.5px; }

/* ============== drawer / cart ============== */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}
.drawer.is-open { display: block; }
.drawer__overlay {
  position: absolute; inset: 0;
  background: rgba(11,14,17,.5);
  animation: fadeIn .2s ease;
}
.drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 420px;
  max-width: 100%;
  background: white;
  display: flex;
  flex-direction: column;
  animation: slideInR .25s var(--ease);
  box-shadow: -10px 0 40px rgba(0,0,0,.15);
  z-index: 2;
}
.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--c-border);
}
.drawer__head h3 { margin: 0; font-family: var(--font-display); font-size: 20px; text-transform: uppercase; letter-spacing: .5px; }
.drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 22px;
}
.drawer__foot {
  padding: 20px 22px;
  border-top: 1px solid var(--c-border);
  background: var(--c-surface);
}
.drawer__row { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 16px; }
.drawer__row strong { font-family: var(--font-display); font-size: 22px; }
.drawer__ship { font-size: 12.5px; color: var(--c-text-2); margin: 0 0 14px; }
.drawer__ship.is-met { color: var(--c-success); font-weight: 600; }

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--c-border);
}
.cart-item__img {
  width: 72px; height: 72px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid var(--c-border);
  padding: 4px;
  overflow: hidden;
}
.cart-item__img img { width: 100%; height: 100%; object-fit: contain; }
.cart-item__info { min-width: 0; }
.cart-item__name { font-size: 14px; font-weight: 600; margin: 0 0 4px; line-height: 1.3; }
.cart-item__sku { font-size: 11px; color: var(--c-text-3); margin: 0 0 8px; }
.cart-item__qty { display: inline-flex; align-items: center; border: 1px solid var(--c-border); border-radius: 6px; }
.cart-item__qty button {
  width: 26px; height: 26px;
  background: transparent;
  border: 0;
  color: var(--c-text-2);
  font-size: 14px;
  font-weight: 600;
}
.cart-item__qty button:hover { color: var(--c-dark); }
.cart-item__qty span { min-width: 24px; text-align: center; font-size: 13px; font-weight: 600; }
.cart-item__price { font-family: var(--font-display); font-weight: 700; font-size: 16px; text-align: right; }
.cart-item__remove { display: block; font-size: 11px; color: var(--c-text-3); margin-top: 4px; background: 0; border: 0; padding: 0; cursor: pointer; }
.cart-item__remove:hover { color: var(--c-error); }

.cart-empty { text-align: center; padding: 60px 0; color: var(--c-text-2); }
.cart-empty h4 { margin: 0 0 6px; color: var(--c-dark); font-family: var(--font-display); font-size: 20px; text-transform: uppercase; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInR { from { transform: translateX(100%); } to { transform: translateX(0); } }

/* ============== toast ============== */
.toast {
  position: fixed;
  bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(60px);
  background: var(--c-dark);
  color: var(--c-text-on-dark);
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: all .25s var(--ease);
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast.is-visible { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast::before {
  content: "";
  width: 22px; height: 22px;
  background: var(--c-primary);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/14px no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/14px no-repeat;
  border-radius: 50%;
}

/* ============== responsive ============== */
@media (max-width: 1024px) {
  .nav { display: none; }
  .catalog__body { grid-template-columns: 1fr; }
  .filters {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    background: var(--c-surface);
    border-radius: var(--radius-md);
    padding: 20px;
  }
  .filters__block { margin: 0; padding: 0; border: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .header__inner { gap: 12px; }
  .logo__text small { display: none; }
  .iconbtn--phone { display: none; }
  .hero__inner { padding: 60px 20px 70px; }
  .hero__stats { gap: 24px; flex-wrap: wrap; }
  .fitment__card { padding: 24px 20px; }
  .fitment__step { flex-direction: column; gap: 8px; }
  .fitment__step h3 { width: auto; }
  .fitment__bar { flex-direction: column; align-items: stretch; }
  .fitment__summary { text-align: left; }
  .catalog { padding: 60px 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__bottom a { margin-left: 0; margin-right: 16px; }
}
