@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
:root {
    --st-primary-color: crimson;
    --st-badge-font-weight: 300;
    --st-navbar-active-color: var(--st-primary-color);
    --st-nav-link-hover-color: var(--st-primary-color);
    
    --st-body-bg: #f1f1f1;
    --st-body-text: #777777;
    --st-badge-text: #777777;
    --st-badge-bg: #ece6ff;
    --st-banner-text: #777777;
    --st-form-text: #777777;
    --st-card-title-text: #777777;
    
    --st-border-radius-sm: 4px;
}
body {
  background-color: var(--st-body-bg);
  color: var(--st-body-text);
}
.navbar {
  background-color: #fff;
  text-transform: uppercase;
  
  font-size: 14px;
}

.navbar a {
  /*color: #777 !important;*/
}

.navbar-brand {
  font-size: 1.4em;
}
.navbar-dark .navbar-nav a.nav-link {
  color: #ffffff;
  font-size: 1.1em;
}
.dropdown-menu {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  border: none;
  border-radius: 0;
  padding: 0.7em;
}
.navbar-toggler {
    border: none;
}
@media only screen and (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: flex;
  }
  .dropdown-menu.show {
    display: flex;
  }
}
.dropdown-menu ul {
  list-style: none;
  padding: 0;
}
.dropdown-menu li .dropdown-item {
  color: var(--st-body-text);
  font-size: 1em;
  padding: 0.5em 1em;
}
.dropdown-menu li .dropdown-item:hover {
  background-color: #f1f1f1;
}
.dropdown-menu li:first-child a {
  font-weight: bold;
  font-size: 1.1em;
  text-transform: uppercase;
  color: var(--st-body-text);
}
.dropdown-menu li:first-child a:hover {
  background-color: #f1f1f1;
}
@media only screen and (max-width: 992px) {
  .dropdown-menu.show {
    flex-wrap: wrap;
    max-height: 350px;
    overflow-y: scroll;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1140px) {
  .dropdown:hover .dropdown-menu {
    width: 40vw;
    flex-wrap: wrap;
  }
}

.dropdown-menu {
  border-radius: 0;
  border: none;
  padding: 0.5em;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
}
.dropdown-menu ul {
  list-style: none;
  padding: 0;
}

.dropdown-menu li a {
  color: gray;
  padding: 0.5em 1em;
}
.dropdown-menu li:first-child a {
  font-weight: bold;
  font-size: 1.1em;
  color: var(--st-body-text);
}
@media screen and (min-width: 993px) {
  .dropdown:hover .dropdown-menu {
    display: flex;
  }
  .dropdown-menu.show {
    display: flex;
  }
}
@media screen and (max-width: 992px) {
  .dropdown-menu.show {
    max-height: 60vh;
    overflow-y: scroll;
  }
}
.navbar-light .navbar-toggler {
    border: 0;
}
.swiper {
  width: 100%;
  height: auto;
}

.swiper-wrapper {
  display: flex;
}
/* FIX SWIPER OVERRIDES */
#accessories-swiper .swiper-wrapper {
    display: flex !important;
}

#accessories-swiper .swiper-slide {
    width: auto !important;
    flex-shrink: 0 !important;
}

#accessories-swiper .product-card,
#accessories-swiper .card {
    width: 100% !important;
    max-width: 260px !important; /* or whatever width you want */
    margin: 0 auto;
}

.swiper-slide {
  width: auto;
}
.productBadges {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    position: absolute;
    top: 5px;
    right: 5px;
    gap: 2px;
    place-items: end;
}
.badge {
    padding: 2px 10px;
    display: inline-block;
    border-radius: 40px;
    font-family: var(--st-secondary-font);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: var(--st-badge-font-weight);
    width: max-content;
}
.badge-price:before {
    content: '$';
}
.badge-price {
    background: red;
    color: var(--st-badge-text);
    padding: 2px 10px;
    display: inline-block;
    /*margin-bottom: 10px;*/
    border-radius: 40px;
    /*position: absolute;*/
    /*right: 5px;*/
    /*bottom: 5px;*/
    font-family: var(--st-secondary-font);
    text-transform: uppercase;
    font-size: 1.2rem;
    /* content: '$'; */
    font-weight: 700;
}
.badge-sold {
    background: #d1c1f2;
    color: var(--st-badge-text);
    padding: 5px 10px;
    font-weight: bold;
    display: inline-block;
    /*margin-bottom: 10px;*/
    /*position: absolute;*/
    /*right: 0;*/
    /*top: 50%;*/
    transform: translate(0%, -50%);
    width: 100%;
    overflow: hidden;
    text-align: center;
}
.badge-nwt {
    background: var(--st-badge-bg);
    color: var(--st-badge-text);
}
.badge-new {
    background: var(--st-badge-bg);
    color: var(--st-badge-text);
    
}
.firstGarage {
    background-color: #fff;
    border-top: 3px solid crimson;
    padding: 20px 2px;
}
.form-select, #clear-filters, #filter-search {
    box-shadow: var(--st-box-shadow);
}
.form-select:hover, #clear-filters:hover, #filter-search:hover {
    box-shadow: var(--st-box-shadow-hover);
}
.form-select:active, #clear-filters:active, #filter-search:active {
    box-shadow: var(--st-box-shadow-active);
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: var(--st-navbar-active-color);
}
.nav-link:focus, .nav-link:hover {
    color: var(--st-nav-link-hover-color);
}
.product-item {
    box-shadow: 5px 5px 10px -2px #00000050;
    transition: all .3s ease-in-out;
}
.product-item:hover {
    box-shadow: 5px 5px 10px -3px crimson;
}
.badge-availability, .badge-availability-example {
    background: var(--bs-warning-bg-subtle);
    border: 1px solid var(--bs-warning);
    color: var(--st-body-text);
}
.badge-availability-example {
    position: unset;
}
.cebay {
    display: none;
}
#categoryBanners, #banner-raceview {
    position: relative;
}
.bannerText {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--st-banner-text);
    font-size: 3rem;
    text-transform: uppercase;
    font-family: 'Rogan';
    font-weight: 700;
    text-align: center;
    display: grid;
    grid-template-rows: repeat(3, 35px);
    text-shadow: 0px 0px 19px #000000;
}
.bannerText-sm {
    font-size: 1.5rem;
    padding-top: 18px;
    line-height: 1.2rem;
}
.form-select, .form-control, .btn-danger-custom {
    color: var(--st-form-text);
    border-radius: var(--st-border-radius-sm);
}
input.form-control::placeholder {
    color: var(--st-form-text);
}