:root {
  --primary-color: #ea1d20;
  --secondary-color: #fafafa;

  --bs-primary-rgb: 234, 29, 32;
  --dark: #121212;
  --light: #ffffff;
  --font-60: 60px;
  --font-31: 31px;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  border: 1px solid black;
  background-color: unset;
  color: black;
}

* {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  margin: 0;
}

.ts-dropdown {
  background: white !important;
}

.navbar {
  position: absolute;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.navbar-brand img {
  max-width: 100px;
  width: 100%;
  height: auto;
}

.nav-link {
  color: var(--secondary-color);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--primary-color);
}


.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  height: 250px;
  z-index: 1000;
  color: var(--dark);
}

.mega-menu>.row {
  height: 100%;
}

.mega-menu>.row>div:not(:last-child) {
  border-right: 1px solid #e5e5e5;
  height: 100%;
}

.navbar-nav ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.navbar span {
  font-size: 18px;
  font-weight: 600;
}


.brand,
.type,
.motorcycle {
  cursor: pointer;
  padding: 4px 0;
}

.brand:hover,
.type:hover,
.motorcycle:hover {
  color: var(--primary-color);
  font-weight: 600;
}

.brand.active,
.type.active,
.motorcycle.active {
  color: var(--primary-color);
}

#motorcycle-preview {
  max-height: 120px;
  object-fit: contain;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 0px 20px;
}

.hero {
  max-height: 100vh;
}

.user-hero {
  min-height: 250px;
  display: flex;
  align-items: flex-end;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(180deg,
      rgba(28, 0, 0, 1) -10%,
      rgba(255, 255, 255, 0) 20%);
}

.hero video {
  height: 100vh;
  width: 100%;
}

.bike-card {
  max-height: 600px;
  height: 100%;
}

.bike-card img {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
}



.product-main {
  padding: 100px 15px 100px;
  background-color: #f4f4f4;
}

.product-section {
  text-align: center;
  padding: 10px 15px;
}

.product-title {
  font-size: 2rem;
  font-weight: bold;
  color: #000000;
}

.product-subtitle {
  font-size: 1rem;
  color: #fafafa;
  margin-bottom: 40px;
}

.main-image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  /* max-height: 900px; */
  max-height: 500px;
  object-fit: contain;
}

.thumbs img {
  width: 100px;
  margin: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 5px;
  transition: all 0.3s ease;
  object-fit: contain;
}



.product-specs {
  margin-top: -45px;
}

.b-black {
  background-color: var(--dark);
  color: var(--light);
}

.buy-now {
  background-color: var(--dark);
  color: var(--light);
  border: 1px solid var(--dark);
  border-radius: 28px;
  padding: 12px 24px;
  transition: all 0.3s ease;
}

.buy-now:hover {
  color: var(--dark);
  background-color: var(--light);
}

.accordion-button {
  background: none;
  box-shadow: none;
  padding: 1rem 0;
  font-weight: 600;
  border-bottom: 1px solid #ddd;
}

.accordion-button:not(.collapsed) {
  color: var(--dark);
  background-color: transparent !important;
}

.accordion-button:not(.collapsed) {
  box-shadow: none !important;
  outline: none !important;
}

.accordion-button::after {
  content: '+';
  font-size: 20px;
  transform: none !important;
  background: none !important;
}

.accordion-button:not(.collapsed)::after {
  content: '×';

}

.accordion-button.no-after::after {
  display: none !important;
}

.accordion-item {
  border: none;

}

.accordion-body {
  padding: 1rem 0;
}


.specs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
}

.specs-row p {
  margin: 0;
  font-size: 14px;
}

.specs-label {
  font-weight: 600;
  color: #444;
}

.accordion-button:focus,
.accordion-button:not(.collapsed) {
  box-shadow: none !important;
  outline: none !important;
}

@media (max-width: 768px) {
  .specs-row {
    grid-template-columns: 1fr;

  }
}



.collection-page {
  padding: 0px 0px 50px;

}

.product-list {
  padding: 20px 0px 50px;
}

.shop-sidebar {
  background: var(--light);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.shop-sidebar h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 8px;
  color: var(--primary-color);
}

.shop-sidebar label,
.list-unstyled li a {
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
  color: var(--dark);
  text-decoration: none;
}

.list-unstyled li a:hover {
  text-decoration: underline;
}


.motorcycle-card img {
  height: 200px;
  object-fit: cover;
}

.product-card {
  background: var(--light);
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease-in-out;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 100%;
  padding: 15px;
  object-fit: contain;
  height: 200px;
}

.product-card .card-body {
  padding: 15px;
  text-align: center;
}

.product-card h6 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.product-card .btn {
  font-size: 14px;
  padding: 5px 12px;
  border-radius: 20px;
}

.btn-primary {
  background-color: var(--dark);
  border: 1px solid var(--dark);
}

.btn-primary:hover {
  background-color: var(--light);
  color: var(--dark);
  border: 1px solid var(--dark);

}

.btn-outline-secondary {
  border-color: var(--dark);
  color: var(--dark);
}

.btn-outline-secondary:hover {
  background-color: var(--dark);
  color: var(--light);
}


.shop-search {
  background: var(--light);
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.shop-search input {
  border-radius: 20px;
  border: 1px solid #ccc;
}

.shop-search button {
  border-radius: 20px;
  background: var(--dark);
  border: none;
}

.shop-search button:hover {
  background: #000;
}


.pagination .page-link {
  border-radius: 50% !important;
  margin: 0 4px;
  color: var(--dark);
}

.pagination .page-item.active .page-link {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--light);
}


input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: black;

  border-radius: 50%;
  cursor: pointer;
}


input[type=range]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: black;

  border-radius: 50%;
  cursor: pointer;
}


input[type=range]::-ms-thumb {
  width: 16px;
  height: 16px;
  background: black;

  border-radius: 50%;
  cursor: pointer;
}

/** ==============================
   Checkout Page
   ============================== */
.checkout-main {
  padding: 20px 0px 50px;
}


.order-summary {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.order-summary h5 {
  font-weight: bold;
}

.order-summary img {
  max-width: 50px;
  height: auto;
  margin-right: 10px;
}

.order-summary .text-muted {
  font-size: 12px;
}


input:focus,
select:focus {
  border-color: #ccc !important;
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.1) !important;
}

input,
select {
  background-color: #f9f9f9;
  border: 1px solid #ccc;
}

@media (max-width: 767px) {
  .order-summary {
    margin-top: 30px;
  }
}


.order-sucess {
  padding: 120px 0px;
}

.order-card {
  background: var(--light);
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  border: 1px solid #0002;
  overflow: hidden;
}

.order-header {
  text-align: center;
  padding: 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.order-header img {
  max-width: 120px;
  height: auto;
}

.order-header h2 {
  margin-top: 1rem;
  font-weight: bold;
}

.info-box {
  border-top: 1px solid #e9ecef;
  padding: 1rem;
}

.info-title {
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.summary-total {
  font-weight: bold;
  color: var(--dark);
}

.items-shipped th {
  background-color: #f1f3f5;
  font-weight: bold;
  font-size: 0.9rem;
}

.items-shipped td {
  vertical-align: middle;
  font-size: 0.9rem;
}

.items-shipped img {
  height: 60px;
  width: auto;
  border: 1px solid #ddd;
  border-radius: 6px;
}


.brand-product {
  padding: 50px 0px;
}


.brand-product .product-main img {
  width: 100%;
  /* max-height: 420px; */
  height: 420px;
  object-fit: contain;
  border-radius: 10px;
  background: #fafafa;
  padding: 10px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.single-product .product-main img {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.brand-product .product-main img.fade-out,
.single-product .product-main img.fade-out {
  opacity: 0;
  transform: scale(0.95);
}

.brand-product .product-main img.fade-in,
.single-product .product-main img.fade-in {
  opacity: 1;
  transform: scale(1);
}

.brand-product .product-thumbs img,
.single-product .product-thumbs img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: 0.3s;
}

.brand-product .product-thumbs img:hover,
.single-product .product-thumbs img:hover {
  border-color: #ccc;
}

.brand-product .product-thumbs img.active,
.single-product .product-thumbs img.active {
  border-color: var(--primary-color);
  border-width: 1px;
}

/* Image Navigation Arrows */
.image-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s ease;
  z-index: 10;
}

/* #productImageContainer:hover .image-nav-arrow {
  opacity: 1;
} */

.image-nav-arrow:hover {
  background: rgba(0, 0, 0, 0.9);
  /* transform: translateY(-50%) scale(1.1); */
}

.image-nav-arrow:active {
  background: rgba(0, 0, 0, 0.9);
}

.arrow-left {
  left: 15px;
}

.arrow-right {
  right: 15px;
}

.image-nav-arrow svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .image-nav-arrow {
    width: 35px;
    height: 35px;
    opacity: 0.7;
  }

  .arrow-left {
    left: 10px;
  }

  .arrow-right {
    right: 10px;
  }
}


.brand-product .product-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: .5rem;
}

.brand-product .product-price {
  font-size: 2.4rem;
  color: var(--primary-color);
  margin: 1rem 0;
}

.brand-product .product-details li {
  margin-bottom: .7rem;
  font-size: 1rem;
}

.brand-product .btn-cart {
  background: #000;
  color: #fff;
  padding: .6rem 1.5rem;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.3s;
}

.brand-product .btn-cart:hover {
  background: #333;
}

.brand-product .meta {
  font-size: 0.9rem;
  color: #777;
}

.brand-product .meta strong {
  color: #444;
}


.custom-tabs {
  margin-top: 3rem;
}

.custom-tabs .nav-tabs {
  border: none;
  justify-content: center;
  gap: 2rem;
}

.custom-tabs .nav-tabs .nav-link {
  border: none;
  font-weight: 500;
  color: #555;
  padding: .6rem 1rem;
  position: relative;
  background: none;
}

.custom-tabs .nav-tabs .nav-link.active {
  color: #000;
}

.custom-tabs .nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: #000;
  border-radius: 2px;
}

.custom-tabs .tab-content {
  background: #fff;
  border-top: 1px solid #0004;
  padding: 1rem;
  margin-top: 1.5rem;
}


.custom-tabs .color-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}


.breadcrumb-wrapper {
  background: #f4f4f4;
  padding: 0.75rem 0;
  border-radius: 6px;
  margin-bottom: 2rem;
}

.breadcrumb {
  margin: 0;
  font-size: 0.95rem;
}

.breadcrumb-item a {
  color: #555;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--primary-color);
  font-weight: 500;
}

.breadcrumb-item a:hover {
  color: var(--dark);
}


.footer-logo img {
  max-width: 150px;
}

.text-info {
  color: var(--primary-color) !important;
}

.social-icons i {
  opacity: 0.7;

  transition: opacity 0.3s ease;
}

.social-icons i:hover {
  opacity: 1;

}

.btn:focus-visible,
.btn:active {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

/** ==============================
   Home Sections
   ============================== */

.home-tabs {
  border-bottom: none !important;
  gap: 15px;
}

.home-tabs .nav-link {
  border: 1px solid var(--dark);
  border-radius: 20px !important;
  color: var(--dark) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.home-tabss .nav-link:hover,
.home-tabs .nav-link:focus {
  color: var(--light) !important;
  background-color: var(--dark) !important;
  border-radius: 20px !important;

}

.home-tabs .nav-link.active {
  color: var(--light) !important;
  background-color: var(--dark) !important;
  border-radius: 20px !important;
  font-weight: 600;
}

.main-logo-slider {
  background-color: var(--dark);
  max-height: 110px;
}

#brandSplide {
  height: 60px;
}

.logo-slider {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.logo-track {
  display: inline-flex;
  animation: scroll 20s linear infinite;
}

.logo-track img {
  max-width: auto;
  max-height: 80px;
  margin: 0 50px;
  object-fit: cover;
  border-radius: 20px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.bikes-preview {
  padding: 50px 0px 0px 0px;
  background-color: var(--dark);
}

.bike-card a {
  color: var(--light);
  text-decoration: none;
  transition: .3s ease;
}

.bike-card a:hover {
  text-decoration: underline;
}

.icon-info-box {
  background: var(--dark);

  color: var(--light);

  border-radius: 12px;
  padding: 25px 15px;
  transition: 0.3s ease-in-out;
}

.icon-info-box i {
  color: var(--light);

  font-weight: 300;

}

.icon-info-box h6 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--light);
}

.icon-info-box p {
  font-size: 14px;
  margin: 0;
  font-weight: 300;
}

.icon-info-box:hover {
  transform: translateY(-5px);
  background: #111;

}

.home-faqs {
  margin-bottom: 100px;
  margin-top: 50px;
}

.hero-section {
  display: flex;
  align-items: center;
  height: 70vh;
  background: url('../../img/hero-3-min.png') no-repeat center center/cover;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 90%);
  overflow: hidden;
  z-index: 1;

}

.shop-bg {
  background: url('../../img/shop-banner.png') no-repeat center center/cover !important;
}

.comparsion-bg {
  background: url('../../img/comparsion.webp') no-repeat center center/cover !important;
}

.checkout-bg {
  background: url('../../img/checkout-1.png') no-repeat center center/cover !important;
}

.shop-single {
  background: url('../../img/motorcycle-single.webp') no-repeat center center/cover !important;
}

.motor-bg {
  background: url('../../img/product-banner.webp') no-repeat center center/cover !important;
}

.motor-single {
  background: url('../../img/product-single.webp') no-repeat center center/cover !important;
}

.cart-bg {
  background: url('../../img/cart-bg-2.jpg') no-repeat center center/cover !important;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.hero-section>* {
  position: relative;
  z-index: 3;
}

.hero-content h1 {
  color: var(--light);
  font-size: var(--font-60);
  font-weight: 600;
  font-style: italic;
}

.hero-content p {
  color: var(--light);
  font-weight: 400;
  font-size: var(--font-31);
}

.trip-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  text-align: center;
  padding: 50px 15px 30px;
}

.list-group {
  display: inline-block;
}

.trip-header h2 {
  font-weight: bold;
  text-transform: uppercase;
}

.trip-header p {
  font-weight: 500;
}

.btn-common {
  text-decoration: none;
  border-radius: 20px;
  padding: 12px 25px;
  transition: all 0.3s ease;
}

.fillBlack-btn {
  background-color: var(--dark);
  color: var(--light);
  border: 1px solid var(--dark);
}

.fillBlack-btn:hover {
  color: var(--dark);
  background-color: var(--light);
}

.trips-card {
  margin-bottom: 50px;
  background-color: #F3F3F3;
  align-items: center;
  border-radius: 20px;
}


.trip-card-img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
}

.filter-left,
.filter-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.dropdown-toggle::after {
  margin-left: 6px;
  vertical-align: middle;
}

.dropdown-menu {
  min-width: 250px;
  padding: 15px;
  border-radius: 0;
  border: 1px solid #ddd;
}

.dropdown-menu p {
  margin: 0 0 10px 0;
  font-size: 13px;
  color: #555;
}

.dropdown-menu a.reset-link {
  font-size: 13px;
  text-decoration: none;
  color: #333;
  float: right;
}

.dropdown-menu a.reset-link:hover {
  text-decoration: underline;
}

.price-inputs {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.price-inputs input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  font-size: 13px;
}

.price-inputs span {
  position: absolute;
  margin-left: 8px;
  color: #777;
}

.sort-by {
  color: #555;
}

.product-count {
  color: #555;
}

.tour-card {
  text-align: left;
  transition: transform 0.3s ease;
}

.tour-card img {
  width: 100%;
  height: 350px;
  max-height: 350px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.4s ease;
}

.tour-card:hover img {
  transform: scale(1.05);
}

.tour-card h5 {
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.tour-card h5 a {
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.tour-card h5 a:hover {
  border-bottom: 1px solid #111;
}

.tour-card .price {
  font-size: 14px;
  color: #555;
}

@media (max-width: 992px) {
  .tour-card {
    margin-bottom: 30px;
  }
}

.tour-detail {
  margin-top: 40px;
}


.main-img img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.thumbs {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.thumbs img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s, border 0.3s;
}

.thumbs img:hover,
.thumbs img.active {
  transform: scale(1.05);
}


.tour-info h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}

.price {
  font-size: 16px;
  color: #000;
  margin-bottom: 15px;
}

.price span {
  font-weight: 500;
}

select.form-select {
  font-size: 14px;
  border-radius: 0;
  border-color: #ccc;
}

.payment-box {
  margin-top: 10px;
}

.payment-box label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-bottom: 10px;
  cursor: pointer;
}

.payment-box input {
  margin-right: 10px;
}

.book-btn {
  width: 100%;
  background-color: #000;
  color: #fff;
  font-size: 15px;
  border-radius: 4px;
  padding: 10px;
  border: none;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.book-btn:hover {
  background-color: #222;
}

.highlights {
  margin-top: 25px;
}

.highlights h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.highlights ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlights ul li {
  font-size: 14px;
  margin-bottom: 8px;
}

.highlights ul li i {
  margin-right: 8px;
  color: #555;
}

.description {
  margin-top: 25px;
}

.description h6 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.description p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

@media (max-width: 992px) {
  .tour-detail {
    flex-direction: column;
  }

  .thumbs img {
    width: 80px;
    height: 60px;
  }

  .tour-info h2 {
    font-size: 20px;
  }
}

@media screen and (max-width: 1440px) {
  :root {
    --font-60: 48px;
    --font-31: 26px;
  }
}

@media screen and (max-width: 767px) {
  .filter-bar {
    flex-direction: column;
    gap: 20px;
    justify-content: start !important;
    align-items: start !important;
  }
}

@media (max-width: 767px) {
  .navbar-expand-lg {
    display: none !important;
  }
}


@media (min-width: 768px) {

  .mobile-navbar,
  .mobile-offcanvas,
  .offcanvas-overlay {
    display: none !important;
  }
}


.mobile-navbar {
  background-color: transparent;
  color: #fff;
  z-index: 1100;
  position: absolute;
  /* top: 10px; */
}


.mobile-offcanvas {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  background-color: #000;
  color: #fff;
  z-index: 1200;
  padding: 1.5rem;
  transition: all 0.4s ease;
  overflow-y: auto;
}

.mobile-offcanvas.active {
  right: 0;
}

.offcanvas-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1100;
  display: none;
}

.offcanvas-overlay.active {
  display: block;
}

.mobile-offcanvas .nav-link {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0.75rem 0;
  color: #fff !important;
}

.mobile-offcanvas .nav-link:hover {
  color: #f0f0f0;
}

@media screen and (max-width: 767.5px) {
  .list-unstyled li {
    width: 100%;
    text-align: center;
  }

  .list-unstyled.t-left li {
    text-align: left;
  }

  .brand-product .product-details li {
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }

  .product-details li {
    text-align: left !important;
  }

  .brand-product .product-title {
    font-size: 2.5rem;
    margin-top: 20px;
    line-height: 1.3;
    margin-bottom: 0.5rem;
  }

  .shop-sidebar .list-unstyled li {
    width: 100%;
    text-align: left;
  }
}

.reels-slider-container {
  background-color: var(--dark);
  position: relative;

}

.reel-item {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.reel-item video {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.reel-info {
  width: 100%;
  padding: 20px 0px 10px;
  font-size: 14px;
}

.custom-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.custom-nav button {
  background: rgba(255, 255, 255, 0.8);
  border: none;
  color: var(--dark);
  font-size: 22px;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  pointer-events: auto;
}

.custom-nav button:hover {
  background: #fff;
  color: #000;
}

.owl-next {
  margin-right: 50px;
}

.owl-prev {
  margin-left: 50px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: white;
  cursor: pointer;
  transition: opacity 0.3s ease;
  opacity: 0.9;
  z-index: 10;
}

.play-btn:hover {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.play-btn.hide {
  display: none;
}

@media screen and (max-width: 500.5px) {
  .footer .list-unstyled li {
    width: 100%;
    text-align: left;
  }

  .main-image img {
    height: 250px;
  }
}

.nav-item .fa-basket-shopping {
  font-size: 18px;
  color: white;
}

.cart-count {
  position: absolute;
  top: -10px;
  right: 6px;
  background: red;
  color: white;
  font-size: 12px !important;
  font-weight: 300 !important;
  border-radius: 50%;
  padding: 2px 6px;
  line-height: 1;
}

.side-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
}

.cutom-pagination {
  text-align: center;
}

.cutom-pagination p {
  display: none;
}

.cutom-pagination svg {
  max-width: 40px;
}

div.cutom-pagination>nav>div:first-of-type {
  display: none !important;
}

.trips-bg {
  background: url('../../img/trips-bg.jpg') no-repeat center center/cover !important;
}

.single-trip-bg {
  background: url('../../img/single-trip.jpg') no-repeat center center/cover !important;
}

.tour-card-link h5 {
  color: #111;
}

.tour-card-link {
  text-decoration: none;
}

.tour-card-link:hover h5 {
  text-decoration: underline;
}

.sort-by .btn-light {
  background-color: #fff;
  border: 1px solid #ccc;
  color: #333;
  font-weight: 500;
  padding: 5px 12px;
}

.sort-by .btn-light:hover {
  background-color: #f8f9fa;
}

.share-now a {
  color: #111;
  font-weight: 300;
  font-size: 14px;
  text-decoration: none;
  transition: .3s ease;
}

.share-now a:hover {
  text-decoration: underline;
}

.trip-details .col-lg-6:first-child {
  position: sticky;
  top: 10px;
  align-self: flex-start;
}

.product-description img {
  max-width: 100%;
  max-height: 100%;
  text-align: center;
}

@media (max-width: 991px) {
  .trip-details .col-lg-6:first-child {
    position: unset !important;
  }
}

.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:focus,
.dropdown-item:hover {
  background: unset;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: var(--primary-color);
}

.cart-count {
  position: absolute;
  top: 3px;
  right: 6px;
  background: var(--primary-color);
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 50%;
  font-weight: 600;
}

.dropdown-menu::-webkit-scrollbar {
  width: 4px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

.cart-button {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-cart {
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-cart .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.mobile-cart .btn-outline-light:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}


.color-swatch {
  width: 24px;
  height: 24px;
  transition: border 0.2s ease;

}


.color-swatch-wrapper {
  border-radius: 50%;
  padding: 2px;

  line-height: 0;
  border: 2px solid transparent;

  transition: border 0.2s ease;
}


.color-option-label:hover .color-swatch-wrapper {
  border-color: #ced4da;

}


.color-input:checked+.color-swatch-wrapper {
  border-color: #007bff;

  box-shadow: 0 0 0 1px #007bff;

}

#addToCartBtn,
#qty {
  padding: .5rem 1.5rem !important;
}

#addToCartBtn:active {
  background-color: var(--primary-color) !important;
  color: var(--light) !important;
  border: 1px solid var(--primary-color) !important;
}

@media screen and (max-width: 500.5px) {

  #addToCartBtn,
  #qty {
    padding: .75rem 1.5rem !important;
  }

  .breadcrumb-item {
    margin-bottom: .5rem;
  }
}

.clr-primary {
  color: var(--primary-color);
}

.clr-primary-light {
  color: #dc3545;
}

.accordion-button.clr-primary:not(.collapsed) {
  color: var(--primary-color);
}

.accordion-button.clr-primary-light:not(.collapsed) {
  color: #dc3545;
}

.font-md {
  font-size: 14px !important;
}

.pagination .page-link {
  border-radius: 50% !important;
  margin: 0 8px;
  width: 40px;
  text-align: center;
  height: 40px;
  color: var(--dark);
}

.pagination .page-link:hover {
  background-color: var(--dark);
  color: var(--light);
  border-color: var(--dark);
}

.btn-update {
  color: var(--dark);
  border: 1px solid var(--dark);
  background-color: transparent;
  transition: all 0.3s ease;
}

.btn-update:hover {
  color: var(--light);
  background-color: var(--dark);
  border: 1px solid var(--dark);
}

.btn-checkout {
  color: var(--light);
  background-color: var(--dark);
  border: 1px solid var(--dark);
  transition: all 0.3s ease;
}

.btn-checkout:hover,
.btn-checkout:focus,
.btn-checkout:active {
  color: var(--dark);
  border: 1px solid var(--dark);
  background-color: transparent;
}

@media screen and (max-width: 500.5px) {
  .hero-content h1 {
    color: var(--light);
    font-size: 42px;
    font-weight: 600;
    font-style: italic;
  }
}

/* .bg-dark {
  min-height: 95px;
}

@media screen and (max-width: 767.5px) {
  .bg-dark {
    min-height: 115px;
  }
} */

/* Social Share Premium Styling */
.share-row-container {
  margin-top: -10px;
}

/* .share-card {
    transition: all 0.3s ease;
    border-color: rgba(0,0,0,0.05) !important;
}

.share-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
} */

.share-label {
  letter-spacing: 1px;
  font-size: 10px;
}


/* Social Share Premium Circular Styling */
.share-row-container {
  margin-top: -15px;
}

.share-label {
  letter-spacing: 1.5px;
  font-size: 11px;
  color: #888 !important;
}

.share-icons {
  display: flex;
  gap: 10px;
}

.share-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dark);
  color: #ffffff !important;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 0.7rem;
  border: none;
  padding: 0;
}

.share-icon:hover {
  transform: translateY(-3px);
  background-color: var(--primary-color);
  color: var(--light);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.share-icon i {
  line-height: 1;
  font-size: .75rem;
}

.motorcycle-checkbox-row input[type="checkbox"] {
  display: none;
}