 .promo-announcement {
   position: absolute;
   width: 100%;
   padding: 10px 60px 10px 20px;
    font-size: 14px;
      color: #fff;
   background: transparent;
   transition: background 0.3s ease, backdrop-filter 0.3s ease;
   display: flex;
   justify-content: center;
   align-items: center;
   background: rgba(0, 0, 0, 0.2);
 }

 .promo-announcement.scrolled {
   background: rgba(0, 0, 0, 0.5);
   backdrop-filter: blur(10px);
   -webkit-backdrop-filter: blur(10px);
 }

 .promo-announcement .close-announcement {
   position: absolute;
   right: 20px;
   background: none;
   border: none;
   color: #fff;
   font-size: 20px;
   cursor: pointer;
 }

 .navbar-wrapper {
   position: relative;
 }

.promo-banner {
  position: relative;
  top: 0;
  width: 100%;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  font-size: 12px;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.promo-text {
  text-align: center;
  flex: 1;
}

.promo-banner.scrolled {
  background: rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(10px);
}

.promo-banner .close-banner {
  position: absolute;
  right: 6px;
  background: none;
  border: none;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
}
.btnMobile,
.btnMobile:focus,
.btnMobile:focus-visible,
.btnMobile:active,
.btnMobile.show {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #ffff !important;
  z-index: 999;
}

.mega-menu .tab-content.thirdCatHover {
  max-height: 300px;
  overflow-y: auto;
  padding-right: 10px;
  scroll-behavior: smooth;
}

.mega-menu .tab-content.thirdCatHover::-webkit-scrollbar {
  width: 6px;
}

.mega-menu .tab-content.thirdCatHover::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.mega-menu .tab-content.thirdCatHover:hover::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.6);
}

.mega-menu .nav-tabs {
  border-bottom: none !important;
}

.material-symbols-outlined.filled {
  font-variation-settings:
    'FILL' 1,
    'wght' 400,
    'GRAD' 0,
    'opsz' 48;
}

.faIcon {
  font-size: 22px;
}

.navDown {
  color: gray;
  text-decoration: none;
  position: relative;
}

.navDown.active {
  color: #ED2124 !important;
}

.firstCatHover {
  padding-bottom: 0.5rem;
  position: relative;
}

.firstCatHover.active {
  background-color: #ffff !important;
  color: black !important;
}

.firstCatHover:hover {
  color: black !important;
}

.firstCatHover.active::after {
  content: '';
  position: absolute;
  height: 50%;
  width: 3px;
  background-color: #dc3545;
  top: 25%;
  left: 0;
}

.navDown.active .topLine {
  width: 88px;
  height: 5px;
  background-color: #ED2124;
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}

.menu-modal {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s ease-in-out;
  z-index: 1000;
}

.menu-content {
  width: 100%;
  background: white;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  padding: 10px;
  text-align: center;
}

.menu-modal.active {
  visibility: visible;
  opacity: 1;
}

.menu-modal.active .menu-content {
  transform: translateY(0);
}

.menu-header {
  text-align: center;
  position: relative;
  padding: 10px;
}

.menu-header span {
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: -10px;
}

.menu-body {
  display: flex;
  justify-content: center;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 10px;
}

.menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ED2124;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

.menu-item:hover {
  transform: scale(1.1);
}

.menu-item i {
  font-size: 24px;
  margin-bottom: 5px;
}

.textMenu {
  color: black;
  font-size: 12px;
}

.mega-menu .nav-tabs .nav-link.active {
  color: white !important;
}

.mega-menu .nav-tabs .nav-link:hover {
  color: white !important;
}

.mega-menu .selected {
  border: 2px solid red !important;
  border-radius: 10px;
  background-color: #f8d7da;
  padding: .3rem;
}

.mega-menu .nav-item.show .nav-link,
.mega-menu .nav-tabs .nav-link.active {
  background-color: #010101;
}

.thirdCatHover-btn:hover {
  border-left: 3px solid #dc3545;
  padding-left: .3rem;
  color: black !important;
  font-weight: bold;
  background-color: transparent !important;
}

.mega-menu .col-md-2 {
  border-right: 2px solid gray;
}

.thirdCatHover-btn {
  padding-bottom: 0.5rem;
  position: relative;
  color: #868686;
  cursor: pointer;
}

.thirdCatHover-btn.active {
  content: '';
  position: absolute;
  height: 3px;
  width: 50%;
  background-color: #dc3545;
  bottom: 0;
  left: 0.5rem;
  border-radius: 2px;
}

.class-category {
  position: relative;
  padding-bottom: 3rem;
}

.class-category .see-all {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff !important;
  color: black;
  font-weight: bold;
  cursor: pointer;
}

.famCategory:hover {
  text-decoration: none !important;
}

@media (min-width: 768px) {
  .sectionLang {
    display: block !important;
  }
}

@media (max-width: 768px) {
  header .navbar {
    display: none !important;
  }

  .logoMobile {
    height: 33px !important;
  }

  .btnMobile {
    padding: .5rem !important;
  }

  .sectionLang {
    display: none;
  }
  
  #cartMobile{border-top-right-radius: 25px;
    border-top-left-radius: 25px;
    box-shadow: 0px -2px 35px #0000007a;
    max-height: auto;
  bottom: 62px;}
  #closeCartMobile{position: relative;
    font-size: 20px;
    cursor: pointer;
    right: 20px;}
}

@media (min-width: 768px) and (max-width: 1000px) {
  .rowHeader {
    zoom: 90% !important;
  }
}

.dropdown-toggle-lang::after {
  display: none !important;
}

.no-shadow-dropdown {
  box-shadow: none !important;
}

footer.navFooter {
  padding-bottom: env(safe-area-inset-bottom, 16px);
  background-color: #fff !important;
  z-index: 1031;
}

.offcanvas-bottom {
  height: auto !important;
  max-height: 75vh !important;
  overflow: hidden;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.4);
}

.btn-check:checked+.btn {
  border: 1px solid red !important;
  background-color: #f8d7da !important;
  border-radius: 10px;
  color: rgba(237, 33, 36, 1) !important;
}

hr.mobile-separator {
  height: 10px;
  background-color: grey;
  margin-left: -1.25rem;
  margin-right: -1rem;
}.discount-badge {
  position: absolute;
  top: 10px;
  left: -6px;
  background: #D72C2D;
  color: white;
  font-weight: bold;
  font-size: 12px;
  padding: 5px 7px;
  border-radius: 6px 50px 50px 7px;
  display: flex;
  align-items: center;
  z-index: 1;
}

.discount-badge::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -5px;
  background: #D72C2D;
  width: 6px;
  height: 6px;
  clip-path: polygon(0 0, 100% 100%, 100% 0);
}

.discount-badge::after {
  content: "";
  position: absolute;
  left: 6px;
  bottom: -6px;
  width: 10px;
  height: 7px;
  background: darkred;
  clip-path: polygon(0 100%, 100% 0, 0 0);
}
.offcanvas.offcanvas-top{
  height:120px
}

/* detect font icon material */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  visibility: hidden;
}

.material-symbols-outlined.loaded {
  visibility: visible;
}

#checkoutWrapper .sticky-top1 {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: white;
  padding-top: 150px;
  transition: padding-top 0.3s ease;
}

#checkoutWrapper .btn.active {
  border: 1px solid red !important;
  background-color: #f8d7da !important;
  border-radius: 10px;
  color: rgba(237, 33, 36, 1) !important;
}

#checkoutWrapper .swiper-container {
  padding: 10px 0;
}

#checkoutWrapper .swiper-slide {
  border: 1px solid red !important;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

#checkoutWrapper .swiper-slide:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  background-color: #f8d7da;
  color: rgba(237, 33, 36, 1) !important;
}

#checkoutWrapper .swiper-slide.vehicle-selection.active {
  border: 2px solid #ed2124;
  background-color: #f8d7da;
}

#checkoutWrapper .swiper-button-next:after,
#checkoutWrapper .swiper-button-prev:after {
  content: none !important;
}

#checkoutWrapper .swiper-pagination {
  position: relative;
  margin-top: 10px;
  text-align: center;
}

#checkoutWrapper .swiper-pagination-bullet {
  background-color: #ccc;
  opacity: 1;
  transition: all 0.3s;
}

#checkoutWrapper .swiper-pagination-bullet-active {
  width: 30px;
  background: #ed2124;
  border-radius: 10px;
}

#checkoutWrapper .img-vehicle img {
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}

.vehicle-selection .img-vehicle {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.customCheckoutPrev,
.customCheckoutNext {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background-color: rgba(237, 33, 36, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s;
}

.customCheckoutPrev:hover,
.customCheckoutNext:hover {
  background-color: rgba(237, 33, 36, 1);
}

.customCheckoutPrev i,
.customCheckoutNext i {
  font-size: 16px;
  color: #fff;
}

#checkoutWrapper a:hover {
  text-decoration: underline !important;
}

/* MOBILE */
#checkoutWrapper .mobile-col {
  padding: 0 1rem;
}

.cart-item-container {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 14px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.cart-item-container:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cart-item-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 1rem;
}

.cart-item-details {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-title {
  font-weight: bold;
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 1.3;
}

.cart-item-variant {
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
}

.cart-item-price {
  font-weight: bold;
  font-size: 14px;
}

.cart-item-discount {
  display: inline-block;
  background-color: #dc3545;
  color: white;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
}

.cart-item-original-price {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-item-garage-btn {
  width: 100%;
  background-color: rgba(237, 33, 36, 1) !important;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.cart-item-garage-btn:hover {
  background-color: #c82333;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-item-quantity-controls {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.cart-item-qty-btn {
  background-color: white;
  border: none;
  color: #dc3545;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s;
}

.cart-item-qty-btn:hover {
  background-color: #f8f9fa;
}

.cart-item-qty-input {
  width: 40px;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
}

.cart-item-delete-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #dc3545;
  background-color: white;
  color: #dc3545;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: auto;
  transition: all 0.2s;
}

.cart-item-delete-btn:hover {
  background-color: #dc3545;
  color: white;
}

@media (min-width: 768px) {
  .cart-item-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cart-item-details {
    margin-bottom: 0;
    width: 100%;
  }

  .cart-item-actions {
    width: 30%;
  }
}

.custom-checkbox {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Crect x='5' y='5' width='10' height='10' fill='%23fff'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
  width: 30px;
  height: 100px;
  border-radius: 8px !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  background-color: #ff7f7f !important;
  border: 0;
  margin: 0;
}

.custom-checkbox:checked {
background-image: url("data: image/svg+xml, %3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' %3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6' /%3e%3c/svg%3e");
  background-color: rgba(237, 33, 36, 1) !important;
}
.col-product .rounded-top {
  width: calc(100% + 2px);
  top: -1px;
  left: -1px;
}
.forYourBike {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: right;
}

.forYourBike span {
  color: #fff;
  background: #c59400;
  padding: 5px 15px;
  display: inline-block;
  border-radius: 10px 0 0;
  font-size: x-small;
}
.bg-gold{
  background-color: #c59400 !important;
color: #fff !important;}
.star-rating {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  direction: ltr;
}

.star-base i {
  color: #b0b0b2ff;
}

.star-overlay {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  overflow: hidden;
  width: var(--rating);
  color: #ffc107;
  pointer-events: none;
}

.star-base,
.star-overlay {
  display: flex;
}

.grayscale {
  filter: grayscale(100%)
}

.grayscale .outOfStock {
  z-index: 1;
  bottom: 5px;
  top: auto;
  height: fit-content;
  width: auto;
  left: 5px;
  background: #999;
  color: #fff;
  position: absolute;
  padding: 3px 10px;
  font-size: 12px;
  border-radius: 5px;
}

#didYouMean,
#didYouMeanMobile {
  position: absolute;
  width: 98%;
  z-index: 100;
  margin-top: 36px;
  padding-left: .6rem;
  padding-bottom: 0px !important;
  font-size: 12px;
  color: #555;
  cursor: pointer;
  margin-left: .1rem;
  background-color: #f8f9fa;
}

.did-you-mean {
  margin-top: 5px;
  font-style: italic;
}

.did-you-mean b {
  color: #1673ff;
}

@media (max-width: 768px) {
  .ui-to-top {
    bottom: 85px;
    width: 32px;
    height: 32px;
    font-size: 15px;
  }

  a#ui-to-top.ui-to-top.fa.fa-angle-up.active::before {
    position: relative;
    bottom: 5px !important;
  }

#didYouMeanMobile {
  position: relative;
  max-width: 100%;
  padding-top: .6rem;
  padding-bottom: 0px !important;
  margin: 0px;
}
}

    @media (max-width: 408px) {
      .outOfStock.has-for-your-bike {
        margin-bottom: 1.3rem
      }
    }