/* ==========================================================
   TrSports Custom Design System
   Theme: High-Octane Performance / Powersports
   Primary: #C10020  |  Dark: #0D0D0D  |  Accent: #FF6B00
   ========================================================== */

/* ---------- 0. IMPORTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700;800&display=swap');

/* ---------- 1. ROOT OVERRIDES ---------- */
:root {
  --tr-red:        #C10020;
  --tr-red-hov:    #a0001a;
  --tr-orange:     #FF6B00;
  --tr-black:      #0D0D0D;
  --tr-dark:       #1A1A1A;
  --tr-dark2:      #222222;
  --tr-gray:       #3a3a3a;
  --tr-light-gray: #f4f4f4;
  --tr-white:      #ffffff;
  --tr-text:       #1a1a1a;
  --tr-muted:      #666666;
  --tr-border:     #e8e8e8;
  --bebas:         'Bebas Neue', 'Impact', sans-serif;
  --inter:         'Inter', 'Public Sans', sans-serif;
}

/* ---------- 2. GLOBAL TYPOGRAPHY ---------- */
body {
  font-family: var(--inter) !important;
  font-weight: 400;
  color: var(--tr-text) !important;
  background: var(--tr-white) !important;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--bebas) !important;
  letter-spacing: 0.04em;
}

/* ---------- 3. PRIMARY COLOUR OVERRIDES ---------- */
.text-primary        { color: var(--tr-red) !important; }
.bg-primary          { background-color: var(--tr-red) !important; }
.btn-primary         { background-color: var(--tr-red) !important; border-color: var(--tr-red) !important; }
.btn-primary:hover,
.btn-primary:focus   { background-color: var(--tr-red-hov) !important; border-color: var(--tr-red-hov) !important; }
.border-primary      { border-color: var(--tr-red) !important; }
.hov-text-primary:hover { color: var(--tr-red) !important; }

/* ---------- 4. TOP BAR ---------- */
.top-navbar {
  background: var(--tr-black) !important;
  border-bottom: 1px solid #2a2a2a;
}
.top-navbar .top-text-color-visibility,
.top-navbar a,
.top-navbar span {
  color: #aaaaaa !important;
  font-size: 12px;
  font-family: var(--inter);
}
.top-navbar a:hover { color: var(--tr-red) !important; text-decoration: none; }

/* ---------- 5. MAIN HEADER ---------- */
header.sticky-top,
header {
  background: #ffffff !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06) !important;
}

/* Logo bar */
.logo-bar-area {
  background: #ffffff !important;
  border-bottom: 1px solid #e8e8e8 !important;
  padding: 10px 0;
}

/* Search input */
.search-input-box {
  position: relative;
  flex: 1;
}
.search-input-box input.form-control {
  background: #f4f4f4 !important;
  border: 1.5px solid #e8e8e8 !important;
  border-radius: 0 !important;
  color: #111111 !important;
  font-family: var(--inter) !important;
  font-size: 14px;
  height: 46px;
  padding-right: 50px;
  transition: border-color 0.2s;
}
.search-input-box input.form-control::placeholder { color: #888; }
.search-input-box input.form-control:focus {
  border-color: var(--tr-red) !important;
  box-shadow: 0 0 0 3px rgba(193,0,32,0.1) !important;
}
.search-input-box svg {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.search-input-box svg path { fill: #888; }

/* Search submit button */
.front-header-search form button,
.search-input-box + button {
  background: var(--tr-red);
  border: none;
  color: #fff;
  height: 46px;
  padding: 0 20px;
  font-family: var(--bebas);
  font-size: 16px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s;
}
.front-header-search form button:hover { background: var(--tr-red-hov); }

/* Nav user text */
.middle-text-color-visibility,
.nav-user-info a { color: #ccc !important; }
.nav-user-info a:hover { color: var(--tr-red) !important; }

/* ---------- 6. BOTTOM NAV BAR (category/menu bar) ---------- */
.bottom-header,
.aiz-bottom-nav,
.bottom-nav-bar {
  background: var(--tr-red) !important;
}

/* ---------- 7. MEGA CATEGORY MENU ---------- */
.category-nav-element > a,
.category-sidebar a {
  color: #ccc !important;
  font-family: var(--inter);
  font-size: 13px;
}
.category-nav-element:hover > a { color: var(--tr-red) !important; }

/* ---------- 8. HERO / BANNER AREA ---------- */
.home-banner-area {
  background: var(--tr-black);
  padding: 0 !important;
  margin-bottom: 0 !important;
}
.home-banner-area .container { max-width: 100% !important; padding: 0; }
.home-slider { position: relative; }
.home-slider img {
  width: 100%;
  object-fit: cover;
  max-height: 520px;
}

/* Slick/carousel dots & arrows in hero */
.aiz-carousel .slick-dots li button:before { color: var(--tr-red); }
.aiz-carousel .slick-dots li.slick-active button:before { color: var(--tr-red); }

/* ---------- 9. SECTION HEADINGS ---------- */
.trs-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e8e8e8;
}
.trs-section-title {
  font-family: var(--bebas) !important;
  font-size: 28px !important;
  letter-spacing: 0.06em;
  color: #111111 !important;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.trs-section-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 28px;
  background: var(--tr-red);
  border-radius: 2px;
}
.trs-view-all {
  font-family: var(--inter);
  font-size: 12px;
  font-weight: 700;
  color: var(--tr-red) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1.5px solid var(--tr-red);
  padding: 5px 14px;
  transition: all 0.2s;
  text-decoration: none !important;
}
.trs-view-all:hover {
  background: var(--tr-red);
  color: #fff !important;
}

/* Override existing section heading styles */
section h3.fs-16, section h3.fs-md-20 {
  font-family: var(--bebas) !important;
  font-size: 26px !important;
  letter-spacing: 0.05em;
  color: #111111 !important;
}
section h3.fs-16::before,
section h3.fs-md-20::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 22px;
  background: var(--tr-red);
  border-radius: 2px;
  margin-right: 10px;
  vertical-align: middle;
}

/* ---------- 10. PRODUCT CARDS ---------- */
.aiz-card-box {
  background: var(--tr-white) !important;
  border: 1px solid #e8e8e8 !important;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}
.aiz-card-box:hover {
  border-color: var(--tr-red);
  box-shadow: 0 8px 30px rgba(193,0,32,0.08);
  transform: translateY(-3px);
}

/* Product image container */
.aiz-card-box .position-relative {
  background: #f7f7f7 !important;
  overflow: hidden;
}

/* Discount badge */
.aiz-card-box .absolute-top-left span.bg-primary {
  background: var(--tr-red) !important;
  font-family: var(--bebas) !important;
  font-size: 13px !important;
  letter-spacing: 0.05em;
  padding: 4px 8px !important;
  border-radius: 0 !important;
}

/* Cart hover button */
.cart-btn {
  background: var(--tr-red) !important;
  color: #fff !important;
  font-family: var(--bebas) !important;
  font-size: 15px !important;
  letter-spacing: 0.08em;
  transition: background 0.2s !important;
}
.cart-btn:hover { background: var(--tr-red-hov) !important; }

/* Product name */
.aiz-card-box h3 a {
  font-family: var(--inter);
  font-size: 13px;
  font-weight: 500;
  color: var(--tr-text) !important;
  transition: color 0.15s;
}
.aiz-card-box h3 a:hover { color: var(--tr-red) !important; }

/* Price */
.aiz-card-box .fw-700.text-primary {
  font-family: var(--inter) !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  color: var(--tr-red) !important;
}
.aiz-card-box del { color: #999 !important; font-size: 12px !important; }

/* Wishlist / compare icons */
.aiz-p-hov-icon {
  opacity: 0;
  transition: opacity 0.2s;
}
.aiz-card-box:hover .aiz-p-hov-icon { opacity: 1; }
.aiz-p-hov-icon a {
  background: rgba(255,255,255,0.92);
  margin: 2px;
  padding: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  transition: background 0.15s;
}
.aiz-p-hov-icon a:hover { background: var(--tr-red); }
.aiz-p-hov-icon a:hover svg path { fill: #fff !important; }

/* ---------- 11. FLASH DEAL SECTION ---------- */
#flash_deal {
  background: linear-gradient(135deg, #0D0D0D 0%, #1a0008 100%);
  border: none;
  padding: 24px 0;
  margin: 0 !important;
}
#flash_deal h3 { color: #fff !important; }
#flash_deal h3::before { background: var(--tr-red); }
#flash_deal .text-primary { color: var(--tr-red) !important; }
#flash_deal .flash-deal-item { background: #1a1a1a; border-color: #333 !important; }
#flash_deal .flash-deal-item:hover { background: #222; }
#flash_deal .flash-deal-price .text-primary { color: var(--tr-orange) !important; }
#flash_deal a.has-transition { color: #aaa !important; }
#flash_deal a.has-transition:hover { color: var(--tr-red) !important; }
#flash_deal .aiz-count-down-circle { background: var(--tr-red) !important; }

/* Flash deal countdown text */
.mobile-countdown-simple {
  background: rgba(193,0,32,0.1);
  border: 1px solid rgba(193,0,32,0.3);
  border-radius: 0;
  padding: 8px 16px;
  color: #fff;
  font-family: var(--inter);
}

/* ---------- 12. FEATURED CATEGORIES ---------- */
.mobile-category-slider {
  border-color: var(--tr-border) !important;
}
.category-slide {
  border-color: #222 !important;
  transition: background 0.2s;
  background: var(--tr-dark) !important;
}
.category-slide:hover { background: #202020 !important; }
.category-slide h6 a {
  font-family: var(--inter) !important;
  font-weight: 700;
  font-size: 14px;
  color: #fff !important;
}
.category-slide h6 a:hover { color: var(--tr-red) !important; }
.category-children-container a {
  color: var(--tr-muted) !important;
  font-size: 13px;
}
.category-children-container a:hover { color: var(--tr-red) !important; }

/* ---------- 13. TOP SELLERS ---------- */
.hov-animate-outline:hover {
  border-color: var(--tr-red) !important;
  box-shadow: 0 4px 20px rgba(193,0,32,0.12);
}

/* ---------- 14. COUPON SECTION ---------- */
.btn.hov-bg-white.hov-text-dark {
  border-color: rgba(255,255,255,0.5) !important;
  font-family: var(--bebas);
  letter-spacing: 0.08em;
  font-size: 16px;
}

/* ---------- 15. POLICY STRIP (footer top) ---------- */
.policy-file a {
  transition: background 0.2s, color 0.2s;
}
.policy-file a:hover {
  background: #fff5f5;
}
.policy-file h4 { font-family: var(--inter) !important; font-weight: 700; font-size: 13px !important; }

/* ---------- 16. FOOTER ---------- */
.footer-widget {
  background: #111111 !important;
}
footer {
  background: #0A0A0A !important;
  border-top: 1px solid #222;
}
.footer-widget h4,
.footer-widget h5 {
  font-family: var(--bebas) !important;
  letter-spacing: 0.06em;
  font-size: 16px !important;
  color: #ccc !important;
  font-weight: 400 !important;
}
.footer-widget a {
  color: #888 !important;
  font-size: 13px;
  transition: color 0.15s;
  font-family: var(--inter);
}
.footer-widget a:hover { color: var(--tr-red) !important; }
.footer-widget .text-secondary-base { color: var(--tr-orange) !important; }
.footer-widget input.form-control {
  background: #1a1a1a !important;
  border-color: #333 !important;
  color: #fff !important;
  border-radius: 0;
}
.footer-widget input.form-control:focus { border-color: var(--tr-red) !important; box-shadow: none !important; }

/* Social icons */
.social.colored a { border-radius: 50%; transition: transform 0.2s; }
.social.colored a:hover { transform: translateY(-2px); }
.social.colored .facebook { background: #1877f2 !important; }
.social.colored .twitter  { background: #1da1f2 !important; }
.social.colored .instagram { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888) !important; }
.social.colored .youtube  { background: #ff0000 !important; }
.social.colored .linkedin { background: #0077b5 !important; }

/* ---------- 17. MOBILE BOTTOM NAV ---------- */
.aiz-mobile-bottom-nav {
  background: rgba(13,13,13,0.97) !important;
  border-color: #2a2a2a !important;
}
.aiz-mobile-bottom-nav svg path { fill: #888 !important; }
.aiz-mobile-bottom-nav .text-primary { color: var(--tr-red) !important; }

/* ---------- 18. BUTTONS ---------- */
.btn-primary { border-radius: 0 !important; font-family: var(--bebas) !important; letter-spacing: 0.08em; }
.btn-outline-primary {
  border-color: var(--tr-red) !important;
  color: var(--tr-red) !important;
  border-radius: 0 !important;
  font-family: var(--bebas) !important;
  letter-spacing: 0.08em;
}
.btn-outline-primary:hover {
  background: var(--tr-red) !important;
  color: #fff !important;
}

/* ---------- 19. BADGES ---------- */
.badge-primary { background: var(--tr-red) !important; border-radius: 0 !important; }
.badge-soft-primary { background: rgba(193,0,32,0.12) !important; color: var(--tr-red) !important; }

/* ---------- 20. PAGINATION ---------- */
.pagination .page-item.active .page-link {
  background: var(--tr-red) !important;
  border-color: var(--tr-red) !important;
}
.pagination .page-link:hover { color: var(--tr-red) !important; }

/* ---------- 21. PRODUCT LISTING PAGE ---------- */
.aiz-sidebar-wrap { border: 1px solid var(--tr-border); }
.aiz-sidebar-wrap .card { border: none; border-radius: 0; }
.filter-block h4 { font-family: var(--bebas) !important; letter-spacing: 0.05em; }

/* ---------- 22. TYPED SEARCH BOX ---------- */
.typed-search-box {
  border-radius: 0 !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15) !important;
  border: 1px solid var(--tr-border) !important;
}
.typed-search-box .search-nothing { font-family: var(--inter); color: var(--tr-muted); }

/* ---------- 23. TOAST / NOTIFY ---------- */
.aiz-notify { border-radius: 0 !important; }

/* ---------- 24. VEHICLE FINDER WIDGET (if added) ---------- */
.vehicle-finder {
  background: var(--tr-black);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.vehicle-finder label {
  font-family: var(--bebas);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #aaa;
  display: block;
  margin-bottom: 4px;
}
.vehicle-finder select {
  background: #1a1a1a;
  border: 1.5px solid #333;
  color: #fff;
  padding: 10px 14px;
  font-family: var(--inter);
  font-size: 13px;
  appearance: none;
  min-width: 140px;
  cursor: pointer;
}
.vehicle-finder select:focus { outline: none; border-color: var(--tr-red); }
.vehicle-finder .find-btn {
  background: var(--tr-red);
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-family: var(--bebas);
  font-size: 18px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-end;
}
.vehicle-finder .find-btn:hover { background: var(--tr-red-hov); }
.vehicle-finder-title {
  font-family: var(--bebas);
  font-size: 24px;
  color: #fff;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  white-space: nowrap;
}
.vehicle-finder-sub {
  font-family: var(--inter);
  font-size: 12px;
  color: #666;
  white-space: nowrap;
}

/* ---------- 25. HERO SLIDER OVERLAY TEXT ---------- */
.home-slider .carousel-box { position: relative; }
.home-banner-area .row { margin: 0; }

/* ---------- 26. CATEGORY SIDEBAR (desktop left) ---------- */
.position-static.d-none.d-xl-block {
  background: #fff;
  border-right: 1px solid var(--tr-border);
  min-width: 220px;
}

/* ---------- 27. BREADCRUMB ---------- */
.breadcrumb { background: transparent !important; padding: 0 !important; }
.breadcrumb-item a { color: var(--tr-red) !important; font-size: 13px; }
.breadcrumb-item.active { color: var(--tr-muted) !important; font-size: 13px; }
.breadcrumb-item + .breadcrumb-item::before { color: var(--tr-muted); }

/* ---------- 28. PRODUCT DETAIL PAGE ---------- */
.aiz-p-details-brand { font-family: var(--bebas); letter-spacing: 0.05em; }
.product-price { font-family: var(--inter); font-weight: 800; color: var(--tr-red) !important; }

/* ---------- 29. CART / CHECKOUT ---------- */
.table th { font-family: var(--bebas); letter-spacing: 0.04em; font-size: 15px; }

/* ---------- 30. LOADER / REFRESH ---------- */
.aiz-refresh { background: rgba(13,13,13,0.85) !important; }
.aiz-refresh-content div { background: var(--tr-red) !important; }

/* ---------- 31. HOME CATEGORY GRID (lazy-loaded sections) ---------- */
#section_home_categories h3,
#section_featured h3,
#section_best_selling h3,
#section_newest h3 {
  font-family: var(--bebas) !important;
  font-size: 26px !important;
  letter-spacing: 0.05em;
}

/* ---------- 32. ADS / BANNERS ---------- */
.hov-scale-img img { transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); }
.hov-scale-img:hover img { transform: scale(1.04); }

/* ---------- 33. SCROLL BEHAVIOUR ---------- */
html { scroll-behavior: smooth; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb { background: var(--tr-red); border-radius: 3px; }

/* ---------- 34. ANIMATIONS ---------- */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.aiz-card-box { animation: fadeSlideUp 0.3s ease both; }

/* ---------- 35. RESPONSIVE ADJUSTMENTS ---------- */
@media (max-width: 991px) {
  .home-slider img { max-height: 300px; }
  .trs-section-title { font-size: 22px !important; }
}
@media (max-width: 767px) {
  section h3.fs-16 { font-size: 20px !important; }
  .vehicle-finder { padding: 16px; gap: 10px; }
  .vehicle-finder select { min-width: 100%; }
}

/* ---------- 36. ADDITIONAL LIGHT THEME OVERRIDES ---------- */
.aiz-main-wrapper {
  background-color: var(--tr-white) !important;
  color: var(--tr-text) !important;
}
.bg-white {
  background-color: var(--tr-white) !important;
  color: var(--tr-text) !important;
}
.text-dark {
  color: #111111 !important;
}
.text-reset {
  color: #111111 !important;
}
.text-muted {
  color: #666666 !important;
}
.border, .border-top, .border-bottom, .border-left, .border-right {
  border-color: #e8e8e8 !important;
}
.category-slide {
  border-color: #e8e8e8 !important;
}
.policy-file a {
  background-color: #fcfcfc !important;
  border-color: #e8e8e8 !important;
}
.policy-file a:hover {
  background-color: #fff5f5 !important;
}
.policy-file h4 {
  color: #111111 !important;
}
.footer-desc-container, .footer-desc-container * {
  color: #aaaaaa !important;
}
.footer-widget a {
  color: #aaaaaa !important;
}
.footer-widget a:hover {
  color: var(--tr-red) !important;
}
.form-control, select, textarea {
  background-color: #ffffff !important;
  border: 1px solid #cccccc !important;
  color: #111111 !important;
}
.form-control:focus, select:focus, textarea:focus {
  border-color: var(--tr-red) !important;
  box-shadow: 0 0 0 2px rgba(193,0,32,0.1) !important;
}
.category-sidebar {
  background-color: #ffffff !important;
  border-color: #e8e8e8 !important;
}
.category-sidebar a {
  color: #111111 !important;
}
.aiz-bottom-nav, .bottom-header {
  background-color: var(--tr-red) !important;
}
.aiz-mobile-bottom-nav a span {
  color: #888888 !important;
}
.aiz-mobile-bottom-nav a.svg-active span,
.aiz-mobile-bottom-nav a:hover span {
  color: var(--tr-red) !important;
}
.aiz-mobile-bottom-nav a.svg-active svg path,
.aiz-mobile-bottom-nav a:hover svg path {
  fill: var(--tr-red) !important;
}

/* Category menu & Dropdown styling */
.aiz-category-menu {
  background-color: #ffffff !important;
  border-color: #e8e8e8 !important;
}
.category-nav-element {
  background-color: #ffffff !important;
  border-color: #e8e8e8 !important;
}
.category-nav-element:hover {
  background-color: #f4f4f4 !important;
}
.category-nav-element a {
  color: #111111 !important;
}
.category-nav-element a:hover {
  color: var(--tr-red) !important;
}
.sub-cat-menu {
  background-color: #ffffff !important;
  border-color: #e8e8e8 !important;
  color: #111111 !important;
}
.dropdown-menu {
  background-color: #ffffff !important;
  border-color: #dddddd !important;
}
.dropdown-item {
  color: #333333 !important;
}
.dropdown-item:hover, .dropdown-item:focus {
  background-color: var(--tr-red) !important;
  color: #ffffff !important;
}
.dropdown-item.active, .dropdown-item:active {
  background-color: var(--tr-red) !important;
  color: #ffffff !important;
}
.collapse-sidebar {
  background-color: #ffffff !important;
  color: #111111 !important;
}
.collapse-sidebar h4,
.collapse-sidebar .header_menu_links {
  color: #111111 !important;
}
.collapse-sidebar .header_menu_links:hover {
  color: var(--tr-red) !important;
}
.collapse-sidebar hr {
  border-top: 1px solid #e8e8e8 !important;
}

/* ===================================================
   NEW SECTIONS: Find Parts Strip, Trust Strip,
   Shop By Vehicle, Category Cards
   =================================================== */

/* ---- FIND PARTS STRIP ---- */
.find-parts-strip {
  background: #fbfbfb;
  border-top: 3px solid var(--tr-red);
  border-bottom: 1px solid #e8e8e8;
  padding: 14px 0;
}
.find-parts-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(193,0,32,0.06);
  border: 1.5px solid rgba(193,0,32,0.2);
  border-radius: 50%;
  color: var(--tr-red);
  flex-shrink: 0;
}
.find-parts-label {
  font-family: var(--bebas);
  font-size: 18px;
  letter-spacing: 0.08em;
  color: #111;
}
.find-parts-select-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--tr-red);
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-family: var(--bebas);
  font-size: 15px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s;
}
.find-parts-select-btn:hover { background: var(--tr-red-hov); }

/* ---- TRUST STRIP ---- */
.trust-strip {
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  padding: 28px 0;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 20px 12px 0;
  border-right: 1px solid #e8e8e8;
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(193,0,32,0.05);
  border: 1.5px solid rgba(193,0,32,0.15);
  border-radius: 10px;
  color: var(--tr-red);
  flex-shrink: 0;
}
.trust-title {
  font-family: var(--bebas);
  font-size: 15px;
  letter-spacing: 0.07em;
  color: #111;
  margin-bottom: 3px;
}
.trust-sub {
  font-family: var(--inter);
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .trust-item { border-right: none; border-bottom: 1px solid #e8e8e8; padding: 14px 8px; }
  .trust-item:last-child { border-bottom: none; }
  .find-parts-label { font-size: 14px; }
}

/* ---- SHOP BY VEHICLE ---- */
.sbv-section {
  padding: 40px 0;
  background: #ffffff;
}
.sbv-card {
  background: #fcfcfc;
  border: 1px solid #e8e8e8;
  border-top: 3px solid var(--tr-red);
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
}
.sbv-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 300px;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(193,0,32,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.sbv-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.sbv-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(193,0,32,0.06);
  border: 2px solid rgba(193,0,32,0.15);
  border-radius: 14px;
  color: var(--tr-red);
  flex-shrink: 0;
}
.sbv-eyebrow {
  font-family: var(--bebas);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--tr-red);
  margin-bottom: 4px;
}
.sbv-title {
  font-family: var(--bebas) !important;
  font-size: 32px !important;
  letter-spacing: 0.06em;
  color: #111 !important;
  margin: 0 0 4px;
  line-height: 1;
}
.sbv-desc {
  font-family: var(--inter);
  font-size: 14px;
  color: #666;
  margin: 0;
}
.sbv-form {
  display: flex;
  gap: 12px;
  align-items: stretch;
  flex-wrap: wrap;
}
.sbv-selects {
  display: flex;
  gap: 12px;
  flex: 1;
  flex-wrap: wrap;
}
.sbv-select-group { flex: 1; min-width: 160px; }
.sbv-select {
  width: 100%;
  background: #ffffff !important;
  border: 1.5px solid #cccccc !important;
  color: #333 !important;
  padding: 14px 18px;
  font-family: var(--inter) !important;
  font-size: 14px;
  height: 52px;
  appearance: none;
  -webkit-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='%23333' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  padding-right: 40px !important;
  transition: border-color: 0.2s;
}
.sbv-select:focus {
  outline: none;
  border-color: var(--tr-red) !important;
  box-shadow: 0 0 0 3px rgba(193,0,32,0.08) !important;
}
.sbv-find-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--tr-red);
  color: #fff;
  border: none;
  padding: 0 32px;
  height: 52px;
  font-family: var(--bebas);
  font-size: 18px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.sbv-find-btn:hover {
  background: var(--tr-red-hov);
  transform: translateY(-1px);
}
@media (max-width: 767px) {
  .sbv-card { padding: 24px 20px; }
  .sbv-select-group { min-width: 100%; }
  .sbv-find-btn { width: 100%; justify-content: center; }
}

/* ---- CATEGORY CARDS GRID ---- */
.trs-cat-section {
  padding: 50px 0;
  background: #ffffff;
}
.trs-section-eyebrow {
  font-family: var(--bebas);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--tr-red);
  margin-bottom: 4px;
  text-transform: uppercase;
}
.trs-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
/* First card takes full row width (wide) */
.trs-cat-card--wide {
  grid-column: span 3;
}
.trs-cat-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  min-height: 220px;
  text-decoration: none !important;
  background: #f4f4f4;
  cursor: pointer;
}
.trs-cat-card--wide { min-height: 280px; }
.trs-cat-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.trs-cat-card:hover .trs-cat-card__img { transform: scale(1.07); }
.trs-cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
  transition: background 0.3s;
}
.trs-cat-card:hover .trs-cat-card__overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.trs-cat-card__body {
  position: absolute;
  bottom: 0; left: 0;
  padding: 20px 24px;
  z-index: 2;
}
.trs-cat-card__name {
  font-family: var(--bebas) !important;
  font-size: 22px !important;
  letter-spacing: 0.06em;
  color: #fff !important;
  margin: 0 0 4px;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.trs-cat-card--wide .trs-cat-card__name { font-size: 30px !important; }
.trs-cat-card__count {
  font-family: var(--inter);
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.trs-cat-card__arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 2;
  width: 36px;
  height: 36px;
  background: var(--tr-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s, transform 0.2s;
}
.trs-cat-card:hover .trs-cat-card__arrow {
  background: var(--tr-red-hov);
  transform: translateX(3px);
}
@media (max-width: 991px) {
  .trs-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .trs-cat-card--wide { grid-column: span 2; }
}
@media (max-width: 575px) {
  .trs-cat-grid { grid-template-columns: 1fr; }
  .trs-cat-card--wide { grid-column: span 1; }
  .trs-cat-card { min-height: 180px; }
}

/* ===================================================
   TRSPORTS CINEMATIC OVERHAUL (REACT PORT)
   =================================================== */

/* ---- CINEMATIC HERO SLIDER ---- */
.hero-cinematic {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 520px;
    background: #000;
    overflow: hidden;
}
.hero-slides-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}
.hero-slide-item {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.7s;
    z-index: 1;
}
.hero-slide-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}
.hero-slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s cubic-bezier(0.1, 0, 0.3, 1);
}
.hero-slide-item.active .hero-slide-img {
    transform: scale(1.08);
}
.hero-slide-scrim {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at bottom right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 35%, transparent 65%);
    z-index: 2;
    pointer-events: none;
}
.hero-slide-text-container {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 40px 60px;
    z-index: 3;
    pointer-events: none;
}
.hero-slide-text-content {
    max-width: 500px;
    text-align: right;
    pointer-events: auto;
    opacity: 0;
    transform: translateY(15px);
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.7s;
    transition-delay: 0.2s;
}
.hero-slide-item.active .hero-slide-text-content {
    opacity: 1;
    transform: translateY(0);
}
.hero-slide-badge {
    display: inline-block;
    background: var(--tr-red);
    color: #fff;
    font-family: var(--bebas);
    font-size: 11px;
    letter-spacing: 0.2em;
    padding: 4px 12px;
    margin-bottom: 12px;
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.hero-slide-eyebrow {
    color: var(--tr-red);
    font-family: var(--bebas);
    font-size: 14px;
    letter-spacing: 0.25em;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}
.hero-slide-title {
    color: #fff !important;
    font-family: var(--bebas) !important;
    font-size: 56px !important;
    line-height: 0.95 !important;
    letter-spacing: normal;
    text-transform: uppercase;
    text-shadow: 0 3px 18px rgba(0,0,0,0.8);
    margin-bottom: 15px;
}
.hero-slide-blurb {
    color: rgba(255,255,255,0.95);
    font-family: var(--inter);
    font-size: 14px;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
    margin-bottom: 24px;
}
.hero-slide-cta {
    display: inline-flex;
    align-items: center;
    background: var(--tr-red);
    color: #fff !important;
    font-family: var(--bebas);
    font-size: 14px;
    letter-spacing: 0.15em;
    padding: 12px 28px;
    border-radius: 2px;
    text-decoration: none !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    transition: background 0.2s, transform 0.15s;
}
.hero-slide-cta:hover {
    background: var(--tr-red-hov);
    transform: translateY(-1px);
}
.hero-slide-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.hero-dot-btn {
    border: none;
    outline: none;
    height: 6px;
    width: 20px;
    border-radius: 3px;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}
.hero-dot-btn.active {
    width: 40px;
    background: var(--tr-red);
}

/* ---- HERO STATS STRIP ---- */
.hero-stats {
    background: #f8f9fa;
    border-bottom: 1px solid #e8e8e8;
    padding: 35px 0;
    position: relative;
}
.hero-stats__grid {
    background-image:
        linear-gradient(to right, rgba(0,0,0,0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, #000 60%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 60%, transparent 100%);
}
.hero-stats__list {
    display: flex;
    flex-wrap: wrap;
}
.hero-stats__col {
    position: relative;
}
.hero-stats__item {
    padding: 10px 15px;
    text-align: center;
    transition: transform 0.3s, filter 0.3s;
}
.hero-stats__item:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 8px 16px rgba(193,0,32,0.08));
}
.hero-stats__value {
    font-family: var(--bebas) !important;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem) !important;
    line-height: 1;
    color: var(--tr-red) !important;
    letter-spacing: 0.02em;
    font-weight: bold;
}
.hero-stats__label {
    margin-top: 8px;
    font-family: var(--inter);
    font-size: 11px;
    font-weight: 600;
    color: #666;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}
.hero-stats__divider {
    position: absolute;
    left: 0;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.05) 20%, rgba(193,0,32,0.2) 50%, rgba(0,0,0,0.05) 80%, transparent);
}

/* ---- FILTER ITEMS SECTION ---- */
.filter-items-section {
    background: #ffffff;
    padding: 60px 0;
}
.filter-tab-btn {
    background: transparent;
    border: 1px solid #ddd;
    color: #444;
    font-family: var(--bebas);
    font-size: 12px;
    letter-spacing: 0.15em;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.25s ease;
}
.filter-tab-btn:hover {
    border-color: var(--tr-red);
    color: var(--tr-red);
}
.filter-tab-btn.active {
    background: var(--tr-red);
    border-color: var(--tr-red);
    color: #fff;
    box-shadow: 0 4px 12px rgba(193,0,32,0.2);
}
.filter-items-scroller-outer {
    position: relative;
    width: 100%;
    margin-top: 25px;
}
.filter-items-scroller {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 15px 5px;
}
.filter-product-item-wrap {
    transition: all 0.4s ease;
}

/* ---- POPULAR BRANDS STYLING ---- */
.trs-brands-section {
    padding: 60px 0;
    background: #ffffff;
}
.trs-brands-eyebrow {
    font-family: var(--bebas);
    font-size: 13px;
    letter-spacing: 0.3em;
    color: var(--tr-red);
    margin-bottom: 4px;
}
.trs-brands-title {
    font-family: var(--bebas);
    font-size: 36px !important;
    color: #111;
    margin: 0;
    letter-spacing: 0.04em;
}
.trs-brand-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1.5px solid rgba(193,0,32,0.18);
    padding: 20px 24px;
    height: 110px;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none !important;
    box-shadow: 0 2px 12px rgba(193,0,32,0.07), 0 1px 4px rgba(0,0,0,0.04);
    z-index: 1;
}
/* Animated gradient border — visible at rest, speeds up on hover */
.trs-brand-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1.5px;
    background: linear-gradient(
        135deg,
        rgba(193,0,32,0.55),
        rgba(255,120,120,0.25),
        rgba(255,200,200,0.1),
        rgba(255,120,120,0.25),
        rgba(193,0,32,0.55)
    );
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 1;
    animation: brandBorderSweep 4s ease-in-out infinite;
}
/* Hover state */
.trs-brand-card:hover {
    transform: translateY(-5px) scale(1.03);
    border-color: rgba(193,0,32,0.4);
    box-shadow:
        0 0 18px rgba(193,0,32,0.2),
        0 0 36px rgba(193,0,32,0.08),
        0 10px 28px rgba(0,0,0,0.08);
}
.trs-brand-card:hover::before {
    animation: brandBorderSweep 1.5s ease-in-out infinite;
    background: linear-gradient(
        135deg,
        rgba(193,0,32,0.9),
        rgba(255,100,100,0.5),
        rgba(255,150,150,0.2),
        rgba(255,100,100,0.5),
        rgba(193,0,32,0.9)
    );
    background-size: 300% 300%;
}
.trs-brand-img {
    height: 48px;
    width: auto;
    max-width: 90%;
    object-fit: contain;
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: none;
    opacity: 1;
}
.trs-brand-card:hover .trs-brand-img {
    transform: scale(1.07);
}

@keyframes brandBorderSweep {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
    .hero-cinematic { height: 60vh; min-height: 400px; }
    .hero-slide-title { font-size: 40px !important; }
    .hero-slide-text-container { padding: 30px 40px; }
    .hero-slide-text-content { max-width: 420px; }
    .hero-stats__divider { display: none; }
}
@media (max-width: 767px) {
    .hero-cinematic { height: 50vh; min-height: 350px; }
    .hero-slide-title { font-size: 32px !important; }
    .hero-slide-blurb { display: none; }
    .hero-slide-text-container { padding: 20px; justify-content: center; }
    .hero-slide-text-content { text-align: center; max-width: 100%; }
    .hero-slide-badge { margin-bottom: 8px; }
    .hero-stats { padding: 25px 0; }
    .hero-stats__value { font-size: 2.2rem !important; }
}