@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Varela+Round&display=swap");

/*------------------------------------------------------------------
  [Table of contents]
  * To keep an overview of structure of your code, we make use of table of 
  * content. Table of content is use display the overall tree structure of your
  * Layout. 
  * (NOTE: Remove this commented code once you start developing the code.
  * Remove the following table of content and add your own as this is just and 
  * example to let you know)

  1. CSS Reset Code
    1.1. Eric Meyers Reset/HTML5 display-role reset for older browsers
    1.2. Clear Fix
    1.3. Font class declaration
  2. Body
  3. Header / .header
    2.1. Navigation / .navbar
  4. Content / .content
    4.1. Left column / .leftcolumn
    4.2. Right column / .rightcolumn
    4.3. Sidebar / .sidebar
      4.3.1. RSS / .rss
      4.3.2. Search / .search
      4.3.3. Boxes / .box
      4.3.4. Sideblog / .sideblog
      4.3.5. Advertisements / .ads
  5. Footer / .footer
  ------------------------------------------------------------------*/

/*------------------------------------------------------------------
  [Color codes]
  * Mention the color code you have used in your html document for the respective
  * elements given as follow. 
  * (NOTE: Remove this commented code once you start developing the code. 
  * Remove the following color code and add your own as this is just and 
  * example to let you know)

  Header nav: #e5e5df (Cararra)
  Header nav a (hover): #fff (white)
  Header nav a (active): #fff (white)
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
  [Typography]
  * Mention the Typography you have used in your html document for the respective
  * elements given as follow.
  * (NOTE: Remove this commented code once you start developing the code. 
  * Remove the following typography and add your own as this is just and 
  * example to let you know)

  Header nav a: 16px 'Futura Bold', 'Gill Sans', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  View-register li a : 12px 'Futura Bold', 'Gill Sans', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  -------------------------------------------------------------------*/

/* ==========================================================================
   1. CSS Reset Code
   ========================================================================== */

/* 1.1. Eric Meyers Reset
   http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
   ========================================================================== */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* Smooth scroll & Force scrollbar */
html {
  overflow-y: scroll;
  scroll-behavior: smooth;
}

/* Align radios and text inputs with their label */

input[type="radio"] {
  vertical-align: text-bottom;
}

/* Hand cursor on clickable input elements */
label,
input[type="button"],
input[type="submit"],
button {
  cursor: pointer;
}

strong {
  font-weight: bold;
  font-family: inherit;
  font-size: inherit;
}

em {
  font-style: italic;
}

img {
  border: 0;
  vertical-align: middle;
  width: 100%;
  pointer-events: none;
}

sub,
sup {
  vertical-align: baseline;
  position: relative;
  font-size: 55%;
  line-height: 0;
}

sup {
  top: -0.7em;
}

sub {
  bottom: -0.25em;
}

/* 1.2. Clear Fix
   ========================================================================== */

.cf:before,
.cf:after {
  display: table;
  content: " ";
}

.cf:after {
  clear: both;
}

.cf {
  zoom: 1;
}

/* 1.3. Font class declaration
   ========================================================================== */
/*
 * Mention the font property (eg: font-family, font-size, font-weight, font-style
 * etc) that have been commonly used in the html document. Make a class of it and
 * apply to the element wherever it is needed. If any single property in changed,
 * then override only that property in the particular class which is used for the
 * element.
 * (NOTE: Remove this commented code once you start 
 * developing the code. Remove the following font class and add your own
 * as this is just and example to let you know. If there is only one font family
 * followed throughout the site, then menstion the font property in body. No need
 * of creating an extra class for it) */

.futura-bold-font {
  font-family: "Futura Bold", "Gill Sans", Arial, "Helvetica Neue", Helvetica,
    sans-serif;
  font-style: normal;
  font-weight: bold;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

h1,
h2,
h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

span,
p,
a {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.icon::before {
  font-family: "FontAwesome";
  transition: 0.5s;
}

body {
  background-color: #0f0f0f;
  color: #fff;
  line-height: 1.5;
}

.icon {
  display: block;
}

.icon::after {
  font-family: "FontAwesome";
  transition: 0.5s;
}

.wrapper {
  width: 90%;
  max-width: 1360px;
  margin: 0 auto;
}

.bold-text {
  font-weight: 700;
}

/* Hide elements and apply height transition */
.hidden {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
  -webkit-transition: max-height 0.5s ease-in-out;
  -moz-transition: max-height 0.5s ease-in-out;
  -ms-transition: max-height 0.5s ease-in-out;
  -o-transition: max-height 0.5s ease-in-out;
}

/* Show elements by adjusting max-height */
.show {
  max-height: 100px;
  overflow: visible;
  /* Adjust this value based on the content height */
}
/* HEADER STYLING STARTS HERE */
h2 img {
  height: 70px;
  width: 150px;
}

.active {
  color: rgb(255, 98, 0);
}

header {
  top: 0;
  background-color: #0f0f0f;
  color: #fff;
  /* padding: 10px 0; */
  margin-bottom: 20px;
  z-index: 99;
  position: sticky;
}

header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.renderCartData {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 50%;
  max-width: 400px;
  padding: 20px;
  z-index: 999;
  background: #0f0f0f;
  box-shadow: -2px 0 4px #ff7300;
  transition: 0.5s;
  overflow-y: auto;
}

.renderCartData::-webkit-scrollbar-track {
  border: 3px solid rgb(0, 0, 0);
  /* // border color does not support transparent on scrollbar */
  /* // border-color: transparent; */
  background-color: rgb(147, 149, 152);
}

.renderCartData::-webkit-scrollbar {
  width: 7px;
  background-color: #dfe6e9;
}

.renderCartData::-webkit-scrollbar-thumb {
  background-color: #ff7300;
  border-radius: 10px;
}

.cartProductDetail {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  width: 50%;
}

.cartProductDetail h6 {
  font-size: 16px;
  margin-bottom: 8px;
}

.cart-styling {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ff7300;
}

.cartImageElement {
  width: 15%;
  max-height: 20%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: #555454 0px 0px 10px 5px;
}

.renderCartData.active {
  right: 0;
  transition: 0.5s;
}

.trash {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 3.5px;
  transition: 0.5s;
  cursor: pointer;
}

.trash:hover .lid,
.trash:hover .lidcap {
  transform: rotate(15deg);
  margin-bottom: 10.5px;
  background: red;
}

.trash:hover .lidcap {
  transform: translate(-1px, -2px) rotate(20deg);
}

.trash:hover .lid {
  transform-origin: bottom right;
}

.trash:hover .bin {
  border-top: 15px solid red;
}

.lidcap,
.lid,
.bin {
  position: absolute;
  transition: 0.5s;
}

.lidcap,
.lid {
  border-top-left-radius: 2.8px;
  border-top-right-radius: 2.8px;
  background: #fff;
}

.lidcap {
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 5px;
}

.lid {
  top: 2px;
  left: 0;
  width: 100%;
  height: 3px;
}

.bin {
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: 15px solid #fff;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

.cart-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

#totalPrice {
  font-size: 20px;
}

.cross {
  color: red;
  font-size: 0;
  text-align: right;
}

.cross::after {
  content: "❌";
  font-size: 28px;
  cursor: pointer;
}

.cart-title {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-top: 30px;
}

.total {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  border-top: 1px solid #ff7300;
}

.total-title {
  font-size: 18px;
  font-size: 600;
  margin-top: 16px;
}

.total-price {
  font-size: 16px;
  margin: 16px 0 0 14px;
}

.call {
  font-size: 0;
  position: relative;
}

.call::after {
  content: "\f2a0";
  color: rgb(255, 98, 0);
  font-size: 30px;
}

.call::before {
  content: "";
  border: 3px solid rgb(255, 98, 0);
  border-radius: 50%;
  display: block;
  height: 50px;
  width: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.call:hover::before {
  animation: ripple 1.5s infinite;
}

/* NAV STYLING STARTS HERE */
[type="checkbox"]:checked,
[type="checkbox"]:not(:checked) {
  position: fixed;
  left: -9999px;
}
/* NAV STYLING ENDS HERE */

/* HEADER STYLING ENDS HERE */

/* PRELOADER STYLING STARTS HERE */

.loader_bg {
  position: fixed;
  background: #0f0f0f;
  width: 100vw;
  height: 100vh;
  z-index: 99999999;
}

.centerBike {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 26px;
  margin-left: -12px;
}

.center {
  position: absolute;
  top: 51%;
  left: 50%;
  margin-top: -50px;
  margin-left: -50px;
}

.loader-container-hidden {
  display: none;
}

#loop {
  height: 105px;
  width: 110px;
  border: #ff7300 solid 4px;
  border-radius: 200px;
}

#loop:before {
  background: linear-gradient(to left,
      rgba(187, 95, 39, 0) 0%,
      #ff7300 30%,
      #ff7300 70%,
      rgba(187, 95, 39, 0) 100%);
  content: "";
  display: block;
  height: 4px;
  left: -100px;
  position: relative;
  top: 100px;
  width: 300px;
}

#bike-wrapper {
  height: 108px;
  width: 108px;
  animation: drive 3s linear infinite;
}

#bike {
  height: 24px;
  width: 25px;
  background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/133687/motorbike.png");
}

@keyframes drive {
  0% {
    margin-left: -364px;
    opacity: 0;
  }

  33.33% {
    transform: rotate(0deg);
    margin-left: -50px;
    opacity: 1;
  }

  66.66% {
    transform: rotate(-360deg);
    margin-left: -50px;
    opacity: 1;
  }

  100% {
    margin-left: 264px;
    transform: rotate(-360deg);
    opacity: 0;
  }
}
/* PRELOADER STYLING ENDS HERE */

/* SEARCH STYLING STARTS HERE */
.cart-checkout-btn {
  padding: 15px;
  background-color: #444;
  border-radius: 15px;
  transition: 0.5s;
}

.cart-checkout-btn:hover {
  background-color: #fff;
  color: #0f0f0f;
}

.search-products-list::-webkit-scrollbar {
  display: none;
}

.search-product {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
}

.search-product img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 5px;
}

.s-p-heading,
.s-p-price {
  font-size: 20px;
  color: #1d1d1d;
}

/* SEARCH STYLING ENDS HERE */

.product-container-main {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  /* gap: 50px; */
  align-content: stretch;
  flex-wrap: nowrap;
  flex-direction: row;
}

.card-left {
  display: flex;
  justify-content: space-evenly;
  flex-basis: 45%;
}

.card-right {
  flex-basis: 52%;
  /* display: flex;
  flex-direction: column;
  justify-content: space-between; */
}

img {
  width: 100%;
  display: block;
  height: 100%;
}

.img-display {
  overflow: hidden;
}

.img-showcase {
  display: flex;
  width: 100%;
  transition: all 0.5s ease;
}

.img-showcase img {
  min-width: 100%;
  height: 540px;
  object-fit: contain;
}

.img-select {
  display: flex;
  justify-content: space-evenly;
}

.img-item {
  margin: 0.3rem;
}

.img-item img {
  height: 150px;
}

.img-item:nth-child(1),
.img-item:nth-child(2),
.img-item:nth-child(3) {
  margin-right: 0;
}

.img-item:hover {
  opacity: 0.8;
}

.product-imgs {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.desktop-product-description,
.mobile-product-description {
  margin: 2vh 0px;
  border: 1px solid #fff;
  /* width: 50%; */
  padding: 2%;

  .loading {
    width: 100%;
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.12);

    .image {
      height: 200px;
    }

    .image img {
      display: block;
      width: 100%;
      height: inherit;
      object-fit: cover;
    }

    .content {
      padding: 5%;
    }

    h4 {
      margin-top: 1vh;
      font-size: 1.5rem;
      line-height: 1.5rem;
    }

    .description {
      height: 40px;
    }
  }

  .loading .image,
  .loading h4,
  .loading .description {
    background-color: #ededed;
    background: linear-gradient(100deg,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0) 60%) #ededed;
    background-size: 200% 100%;
    background-position-x: 180%;
    animation: 1s loading ease-in-out infinite;
    -webkit-animation: 1s loading ease-in-out infinite;
  }

  .loading h4 {
    min-height: 1rem;
    border-radius: 4px;
    animation-delay: 0.05s;
  }

  .loading .description {
    border-radius: 4px;
    animation-delay: 0.06s;
  }

  p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;

    span {
      text-align: right;
      flex-basis: 40%;
    }

    .bold-text {
      text-align: left;
    }
  }
}

.desktop-compatible-vehicle,
.mobile-compatible-vehicle {
  /* margin: 2vh 0px; */
  /* width: 50%; */
  /* padding: 2%; */
  .loading {
    width: 100%;
    /* min-height: 300px; */
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.12);
    padding: 2.5%;

    .image {
      height: 200px;
    }

    .image img {
      display: block;
      width: 100%;
      height: inherit;
      object-fit: cover;
    }

    .content:nth-child(2) {
      margin: 5% 0;
    }

    h3 {
      font-size: 1.5rem;
      line-height: 1.5rem;
      margin: 1vh 0;
    }

    h4 {
      margin: 0 1vh;
      font-size: 1.5rem;
      line-height: 1.5rem;
    }

    .description {
      height: 40px;
    }
  }

  .loading .image,
  .loading h3,
  .loading h4,
  .loading .description {
    background-color: #ededed;
    background: linear-gradient(100deg,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0) 60%) #ededed;
    background-size: 200% 100%;
    background-position-x: 180%;
    animation: 1s loading ease-in-out infinite;
    -webkit-animation: 1s loading ease-in-out infinite;
  }

  .loading h3 {
    min-height: 1.5rem;
    border-radius: 4px;
    animation-delay: 0.05s;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    width: 25%;
  }

  .loading h4 {
    min-height: 1rem;
    border-radius: 4px;
    animation-delay: 0.05s;
    width: 15%;
    display: inline-block;
  }

  .loading .description {
    border-radius: 4px;
    animation-delay: 0.06s;
  }

  p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;

    span {
      text-align: right;
      flex-basis: 40%;
    }

    .bold-text {
      text-align: left;
    }
  }
}

.star-outer {
  position: relative;
  font-size: 2rem;
  display: inline-block;
}

.star-outer::before {
  content: "\2605 \2605 \2605 \2605 \2605";
  color: #5d5a5a;
}

.star-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  overflow: hidden;
}

.star-inner::before {
  content: "\2605 \2605 \2605 \2605 \2605";
  color: gold;
}

.product-title {
  text-transform: capitalize;
  position: relative;
  color: #fff;
  margin-bottom: 1vh;
  font-size: 3vh;
  font-weight: 100;

  .title-first {
    display: block;
    font-size: 7vh;
    font-weight: 700;
  }

  .title-second {
    display: block;
    font-size: 5vh;
    font-weight: 400;
    margin-top: -5px;
  }
}

.product-subtitle {
  font-size: 3vh;
  color: #fff;
  font-weight: 100; 
  margin-bottom: 1vh;
  text-transform: capitalize;
}

.product-link {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 0.5rem;
  background: #256eff;
  color: #fff;
  padding: 0 0.3rem;
  transition: all 0.5s ease;
}

.product-link:hover {
  opacity: 0.75;
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  box-shadow: #256eff40 0px 54px 55px, #256eff1f 0px -12px 30px,
    #256eff1f 0px 4px 6px, #256eff2b 0px 12px 13px, #256eff17 0px -3px 5px;
}

.product-rating {
  color: #ffc107;
  margin-bottom: 10px;
}

.product-rating span {
  font-weight: 600;
  color: #fff;
}

.new-price {
  font-size: 7vh;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

.mr-price {
  font-size: 4vh !important;
  text-decoration: line-through; 
  color: #eb0d0d; 
}

.product-price {
  font-size: 3vh; 
  font-weight: 600;
  margin-top: 5px; 
  display: flex;
  flex-direction: column;
}

.product-price span {
  font-weight: 400;
}

.offer-percentage {
  padding: 4px 8px;
  color: white;
  background-color: green;
  text-align: center;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bolder;
  width: 12%;
}

.last-price span {
  color: #f64749;
  text-decoration: line-through;
}

.productpage-payment-options {
  width: 80%;
  height: 80%;
}

.new-price span {
  color: #256eff;
}


.wa-btn-clean {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  height: 40px;
  padding: 0 10px;
  /* width: 100%; */
  /* max-width: 260px; */

  border: 1px solid #ced4da;
  border-radius: 13px;

  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  background: #25D366;
  color: #ffffff;
}

.wa-btn-clean i {
  font-size: 16px;
  color: #fff;
}

.wa-btn-clean:hover {
  background: #f8f9fa;
  color: #212529;
}

.wa-btn-clean:hover i {
  color: #212529;
}


.button-59 {
  align-items: center;
  background-color: #0f0f0f;
  border: 2px solid #fff;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  fill: #fff;
  font-size: 16px;
  font-weight: 600;
  height: 48px;
  justify-content: center;
  letter-spacing: -0.8px;
  line-height: 24px;
  min-width: 140px;
  outline: 0;
  padding: 0 17px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-59:hover {
  border-color: #ff7300;
  color: #ff7300;
  fill: #ff7300;
}

.button-59:active {
  border-color: #ff7300;
  color: #ff7300;
  fill: #ff7300;
}

#buyNowBtn:disabled {
  background-color: #cccccc; 
  color: #666666; 
  cursor: not-allowed; 
  border: 1px solid #999999; 
  opacity: 0.6;
}

#buyNowBtn:disabled {
  background-color: #f0f0f0;
  color: #888;
  border: 2px solid #ddd;
  box-shadow: none; 
  cursor: not-allowed;
  transform: scale(1); 
  transition: none;
}

#buyNowBtn:disabled{
    background-color: #eee;
    color: #aaa;
    border: 2px solid #ccc;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: not-allowed;
    text-decoration: line-through; 
}

#buyNowBtn.processing { 
    position: relative;
    cursor: wait;
}

.product-text h3 {
  font-size: 2vh;
  font-weight: 200;
  padding: 0.3rem;
}

.product-text h3 ul {
  padding-left: 3%;
}

.product-text a {
  color: #ff7300;
  background-color: transparent;
  text-decoration: dotted underline;
  text-transform: capitalize;
  text-underline-offset: 5px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.product-text a:visited {
  background-color: transparent;
  text-decoration: none;
}

.product-text a:hover {
  color: #ff4d00;
  background-color: transparent;
  text-decoration: dashed underline;
  text-decoration-color: #ff4d00;
  -moz-text-decoration-color: #ff4d00;
}

.product-text a:active {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}

.product-text h3 {
  color: #fff;
  text-transform: capitalize;
  font-weight: 700;
  font-size: 16px;
}

.product-spec {
  color: #fff;
  text-transform: capitalize;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  margin-bottom: 2%;
  border-left: transparent 1px solid;
  border-right: transparent 1px solid;
  border-bottom: 1px solid #d3d3d3;
  border-radius: 5px;
}

.full-description,
.short-description {
  font-weight: 300 !important;
}

#similar-products {
  margin-top: 25px;

  .similarProductHeader {
    position: relative;
    font-weight: 500;
    font-size: 3.5vh;
    margin-bottom: 2%;
    width: max-content;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
  }

  .similarProductHeader::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0px;
    background-color: #ff7300;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
  }

  .similarProductHeader:hover::after {
    width: 100%;
  }

  .similarProductContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
    align-items: center;

    .loading {
      width: 100%;
      background-color: #fff;
      border-radius: 6px;
      overflow: hidden;
      box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.12);

      .image {
        height: 200px;
      }

      .image img {
        display: block;
        width: 100%;
        height: inherit;
        object-fit: cover;
      }

      .content {
        padding: 5%;
      }

      h4 {
        margin-top: 1vh;
        font-size: 1.5rem;
        line-height: 1.5rem;
      }

      .description {
        height: 40px;
      }
    }

    .loading .image,
    .loading h4,
    .loading .description {
      background-color: #ededed;
      background: linear-gradient(100deg,
          rgba(255, 255, 255, 0) 40%,
          rgba(255, 255, 255, 0.5) 50%,
          rgba(255, 255, 255, 0) 60%) #ededed;
      background-size: 200% 100%;
      background-position-x: 180%;
      animation: 1s loading ease-in-out infinite;
      -webkit-animation: 1s loading ease-in-out infinite;
    }

    .loading h4 {
      min-height: 1rem;
      border-radius: 4px;
      animation-delay: 0.05s;
    }

    .loading .description {
      border-radius: 4px;
      animation-delay: 0.06s;
    }
  }

  .feat-hs {
    display: flex;
    gap: 20px;
  }

  .feat-dev-card {
    background-color: #fff;
    color: #0f0f0f;
    overflow: hidden;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }

  .feat-dev-content {
    padding: 3%;
  }

  .feat-dev-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: auto;
    font-weight: 600;
  }

  .feat-price {
    font-weight: 600;
    font-size: 20px;
  }

  .feat-price::before {
    content: "\20B9";
    margin-right: 1%;
  }

  .feat-price::after {
    content: "/-";
    margin-left: 1%;
  }
}

.mobile-compatible-vehicle {
  margin-top: 12px;
}

.desktop_compatible_loader,
.mobile-compatible-vehicle {
  .compatible-vehicles {
    max-height: 300px;
    overflow: auto;
    border: 2px solid #ff7300;
    border-radius: 10px;
    padding: 20px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 0 15px #ff730066;
  }

  .compatible-vehicles::-webkit-scrollbar {
    height: 9px;
    width: 9px;
  }

  .compatible-vehicles::-webkit-scrollbar-track {
    border-radius: 8px;
    background-color: #1B1B1B;
  }

  .compatible-vehicles::-webkit-scrollbar-track:hover {
    background-color: #2C2C2C;
  }

  .compatible-vehicles::-webkit-scrollbar-track:active {
    background-color: #090909;
  }

  .compatible-vehicles::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #FF7300;
  }

  .compatible-vehicles::-webkit-scrollbar-thumb:hover {
    background-color: #FF7700;
  }

  .compatible-vehicles::-webkit-scrollbar-thumb:active {
    background-color: #FF4400;
  }

  .compatible-vehicles h3 {
    text-align: center;
    color: #ff7300;
    font-size: 24px;
    margin-bottom: 20px;
  }

  .brand {
    margin-bottom: 10px;
  }

  .brand h4 {
    margin: 0;
    font-size: 1.2em;
    color: #fff;
  }

  .models {
    margin: 5px 0 0 15px;
    line-height: 1.5;
  }

  .models h5 {
    display: inline-block;
  }

  .models h5 a {
    background: #ff7300;
    padding: 3px 8px;
    border-radius: 5px;
    margin: 2px;
    color: #000;
    font-size: 0.9em;
    text-transform: capitalize;
  }

  /* Responsive design */
  @media (max-width: 768px) {
    .compatible-vehicles {
      padding: 15px;
      margin-bottom: 10px;
    }

    .compatible-vehicles h3 {
      font-size: 1.5em;
    }

    .brand {
      margin-bottom: 8px;
    }

    .brand h4 {
      font-size: 1em;
    }

    .models h5 a {
      font-size: 12px;
    }
  }
}

.products-faq-container {
  margin: 2% 0;
}

.similarProductHeader {
  position: relative;
  font-weight: 500;
  font-size: 3.5vh;
  margin-bottom: 2%;
  width: max-content;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.similarProductHeader::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0px;
  background-color: #ff7300;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.similarProductHeader:hover::after {
  width: 100%;
}

.faq-tabs {
  /* border-radius: 8px; */
  overflow: hidden;
  box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
}

.faq-tab {
  width: 100%;
  color: white;
  overflow: hidden;
}

.faq-tab-label {
  display: flex;
  justify-content: space-between;
  padding: 1em;
  /* background: #2c3e50; */
  border: 1px solid #ff6200;
  font-weight: bold;
  cursor: pointer;
}

.faq-tab-label:hover {
  background: #0f0f0f;
}

.faq-tab-label::after {
  content: "\276F";
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all 0.35s;
}

.faq-tab-content {
  max-height: 0;
  padding: 0 1em;
  color: #0f0f0f;
  background: white;
  transition: all 0.35s;
}

.faq-tab-content::before {
  content: "≫";
  font-weight: 900;
  color: #ff6200;
}

.faq-tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #0f0f0f;
  cursor: pointer;
}

.faq-tab-close:hover {
  background: #0f0f0f;
}

input:checked+.faq-tab-label {
  background: #0f0f0f;
}

input:checked+.faq-tab-label::after {
  transform: rotate(90deg);
}

input:checked~.faq-tab-content {
  max-height: 100vh;
  padding: 1em;
  padding-left: 1.5em;
}

@keyframes loading {
  to {
    background-position-x: -20%;
  }
}

.product-detail ul {
  margin: 1rem 0;
  font-size: 0.9rem;
}

.product-detail ul li {
  margin: 0;
  list-style: none;
  /* padding-left: 1.7rem; */
  margin: 0.4rem 0;
  font-weight: 600;
  /* opacity: 0.9; */
}

.product-detail ul li::before {
  content: "\f085";
  font-size: 20px;
  margin-right: 10px;
  vertical-align: middle;
  color: #fff;
}

.product-detail ul .avail::before {
  content: "\f00c";
  width: 20px;
  height: 20px;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.5s ease;
}

.product-detail ul .unavailable::before {
  content: "\f00d";
  width: 20px;
  height: 20px;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.5s ease;
}

.fa-facebook-f {
  content: "\f39e";
  color: #1877f2;
}

.fa-whatsapp {
  content: "\f232";
  color: #4ac959;
}

.fa-instagram {
  content: "\f16d";
  color: #c13584;
}

.fa-youtube {
  content: "\f167";
  color: #ff0000;
}

.fa-linkedin-in {
  content: "\f0e1";
  color: #0077b5;
}

.fa-facebook-f:hover {
  color: #fff;
  text-align: center;
  background-color: #1877f2;
}

.fa-linkedin-in:hover {
  color: #fff;
  background-color: #0077b5;
}

.fa-youtube:hover {
  color: #fff;
  background-color: #ff0000;
}

.fa-instagram:hover {
  color: #fff;
  background-color: #c13584;
}

.fa-whatsapp:hover {
  color: #fff;
  background-color: #4ac959;
}

.product-detail ul li span {
  font-weight: 400;
}

.purchase-info {
  margin: 1.5rem 0;
}

.purchase-info input,
.purchase-info .btn {
  border: 1.5px solid #ddd;
  border-radius: 25px;
  text-align: center;
  padding: 0.45rem 0.8rem;
  outline: 0;
  margin-right: 0.2rem;
  margin-bottom: 1rem;
}

.purchase-info input {
  width: 60px;
}

.purchase-info .btn {
  cursor: pointer;
  color: #fff;
}

.purchase-info .btn:first-of-type {
  background: #256eff;
}

.purchase-info .btn:last-of-type {
  background: #f64749;
}

.purchase-info .btn:hover {
  opacity: 0.9;
}

.social-links {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.social-links a i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  /* color: #0F0F0F; */
  border: 1px solid #0f0f0f;
  margin: 0 0.2rem;
  border-radius: 50%;
  font-size: 16px;
  transition: all 0.5s ease;
}

.social-links a i:hover {
  /* background: #0F0F0F; */
  border-color: transparent;
  /* color: #fff; */
}

/* POPUP STYLING STARTS HERE */

.popup-container {
  display: none;
  position: fixed;
  top: 16%;
  right: 0%;
  transform: translate(-10%, -50%);
  z-index: 9999;
  overflow: hidden;
}

.popup-box {
  width: 25px;
  height: 25px;
  padding: 10px;
  border-radius: 50%;
  background-color: black;
  border: 1px solid #ff7300;
  box-sizing: content-box;
  display: flex;
  flex-direction: row;
  color: white;
  animation: popup-animation 1.5s ease-in-out 1.5s forwards;
  align-content: center;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.exclamation {
  font-size: 30px;
  font-weight: 900;
  margin: 0 15px;
  color: red;
  animation: rotate-animation 1.5s ease-in-out forwards;
}

.message {
  text-align: center;
  /* display: none; */
  /* Initially hidden */
  transition: 0.5s;
}

.message.show {
  display: block;
}

.reverse-animation {
  animation: reverse-popup-animation 1.5s ease-in-out;
}

@keyframes reverse-popup-animation {
  0% {
    width: 200px;
    flex-wrap: nowrap;
    border-radius: 15px;
  }

  100% {
    width: 30px;
    text-decoration: none;
  }
}

@keyframes popup-animation {
  0% {
    width: 30px;
    text-decoration: none;
  }

  30% {
    border-radius: 15px;
  }

  100% {
    width: 200px;
    flex-wrap: nowrap;
    border-radius: 15px;
  }
}

@keyframes rotate-animation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* POPUP STYLING ENDS HERE */

/* FOOTER SECTION STARTS HERE */

.icon {
  display: block;
}

.icon::after {
  font-family: "FontAwesome";
  transition: 0.5s;
}

footer {
  padding: 25px 50px;
  width: 90%;
  max-width: 1360px;
  margin: 0 auto;
  background: #0f0f0f;
  border: 1px solid #fff;
}

.footer-up {
  display: flex;
  justify-content: space-between;
  /* margin-top: 30px; */
}

.footer-heading {
  padding-left: 10px;
  border-left: 3px solid #eeeeee;
  border-bottom: 10px solid transparent;
  border-top: 10px solid transparent;
  color: #fff;
  padding-bottom: 6px;
  margin-bottom: 5px;
  color: #ff7300;
  font-size: 24px;
}

.footer-list {
  padding: 0 10px 0 0;
  margin-left: 15px;
}

.footer-list li {
  margin-bottom: 3%;
}

.footer-link {
  display: flex;
  align-items: center;
  color: #fff;
  transition: 0.5s;
  margin-right: 10px;
  font-size: 16px;
  padding: 5px 0;
}

.footer-link:hover {
  padding-left: 10px;
  margin-right: 0;
  color: #ff7300;
}

.footer-down {
  margin: 15px 0;
}

.footer-socials-list {
  display: flex;
  justify-content: space-evenly;
  list-style: none;
}

.footer-social {
  font-size: 20px;
  border-radius: 50%;
  text-align: center;
  padding: 20px;
  position: relative;
  border: 1px solid #fff;
  width: 30px;
  height: 30px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.footer-social::before {
  font-family: "FontAwesome";
  font-size: 26px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.facebook::before {
  content: "\f39e";
  color: #1877f2;
}

.whatsapp::before {
  content: "\f232";
  color: #4ac959;
}

.instagram::before {
  content: "\f16d";
  color: #c13584;
}

.youtube::before {
  content: "\f167";
  color: #ff0000;
}

.linkedIn::before {
  content: "\f0e1";
  color: #0077b5;
}

.facebook:hover {
  background-color: #1877f2;
}

.facebook:hover::before {
  color: #fff;
}

.linkedIn:hover {
  background-color: #0077b5;
}

.linkedIn:hover::before {
  color: #fff;
}

.youtube:hover {
  background-color: #ff0000;
}

.youtube:hover::before {
  color: #fff;
}

.instagram:hover {
  background-color: #c13584;
}

.instagram:hover::before {
  color: #fff;
}

.whatsapp:hover {
  background-color: #4ac959;
}

.whatsapp:hover::before {
  color: #fff;
}

.footer-last {
  color: #fff;
  /* margin-top: 50px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-last-links {
  display: flex;
  margin-top: 10px;
  width: 100%;
  align-items: center;
  justify-content: space-around;
}

.footer-last-links a {
  text-decoration: underline;
}

.footer-last span {
  display: block;
}

/* FOOTER SECTION ENDS HERE */

/* Media Queries Start Here */

@media only screen and (max-width: 786px) {
  .product-container-main {
    flex-direction: column;
  }

  .img-select {
    justify-content: center;
  }

  .product-title {
    text-align: center;

    .title-first,
    .title-second {
      display: inline;
    }
  }

  .product-subtitle {
    text-align: center;
  }

  .product-link {
    text-align: center;
    margin: 0 35.5vw;
    display: block;
  }

  .product-rating {
    text-align: center;
  }

  .product-price p {
    text-align: center;
  }

  .offer-percentage {
    width: 25%;
    margin: auto;
  }

  .product-page-btns {
    text-align: center;
  }

  .productpage-payment-options {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 100%;
  }

  .mr-price {
    margin-top: 1% !important;
  }

  #similar-products .similarProductHeader {
    font-size: 18px;
  }

  footer {
    padding: 5px 10px;
    /* margin: 5px 10px; */
  }

  .footer-up {
    flex-direction: column;
  }
}

@media screen and (max-width: 640px) {
  .search-bar {
    /* width: 120px; */
    font-size: 12px;
  }

  header .wrapper {
    width: 90%;
  }

  .search-btn-text::after {
    font-size: 20px;
  }

  .call::after {
    font-size: 25px;
  }

  h1 img {
    height: 40px;
    width: 70px;
  }
  footer {
    width: 95%;
  }
}

@media only screen and (max-width: 640px) {
  .search-field {
    width: 0;
    border: none;
  }

  .social ul li:focus {
    transform: translate(110px, 0);
    background: #ff73007b;
  }

  .social ul li:focus a {
    color: #0f0f0f;
  }

  .social ul li:focus i {
    color: #fff;
    background: rgba(0, 0, 0, 0.36);
    transform: rotate(360deg);
    transition: all 1s;
  }
}

@media only screen and (max-width: 480px) {
  body {
    line-height: 1.3;
  }

  h1 img {
    width: 80px;
    height: 40px;
  }

  .wrapper {
    width: 95%;
  }

  .social ul {
    transform: translate(-95px, 0);
    font-size: 13px;
  }

  .social ul li:hover {
    transform: translate(95px, 0);
  }

  .social ul li {
    margin: 5px 5px 5px 0px;
    width: 120px;
  }

  .social ul li i {
    padding: 5px;
    font-size: 14px;
  }

  .product-title {
    font-size: 20px;
  }

  .product-title::after {
    width: 50px;
    height: 2px;
  }

  .star-outer {
    font-size: 24px;
  }

  .product-rating span {
    font-size: 14px;
  }

  .product-detail ul li {
    padding-left: 0;
    font-size: 14px;
  }

  .product-detail ul {
    margin: 0;
  }

  .desktop-product-description,
  .mobile-product-description {
    margin: 10px auto;
    font-size: 14px;
  }

  .product-text h3 {
    font-size: 16px;
  }

  .img-showcase img {
    height: 300px;
  }

  .s-p-heading,
  .s-p-price {
    font-size: 14px;
  }

  .search-products-list {
    width: 400px;
    /* right: -100%; */
    align-items: center;
    max-height: 400px;
    max-width: 75vw;
  }

  .renderCartData {
    width: 70%;
  }

  #totalPrice {
    font-size: 16px;
  }

  .cart-checkout-btn {
    padding: 10px;
    font-size: 12px;
  }

  .cartProductDetail h6 {
    font-size: 14px;
  }

  .cartImageElement {
    /* height: 150px; */
    width: 70px;
  }

  #similar-products {
    .feat-hs {
      gap: 5px;
    }

    .feat-dev-title {
      font-size: 12px;
    }

    .feat-price {
      font-size: 16px;
    }
  }

  .footer-last span {
    text-align: center;
  }

  #hovering-checkout-button {
    bottom: 10px;
    right: 10px;
    width: 200px;
  }

  .hovering-checkout-icon {
    width: 50px;
    height: 30px;
  }

  .hovering-checkout-text {
    font-size: 14px;
    padding: 2px 5px;
  }

  @keyframes slideInOut {
    0% {
      transform: translateX(100%);
      -webkit-transform: translateX(100%);
      -moz-transform: translateX(100%);
      -ms-transform: translateX(100%);
      -o-transform: translateX(100%);
    }

    35% {
      transform: translateX(90%);
      -webkit-transform: translateX(90%);
      -moz-transform: translateX(90%);
      -ms-transform: translateX(90%);
      -o-transform: translateX(90%);
    }

    40% {
      transform: translateX(100%);
      -webkit-transform: translateX(100%);
      -moz-transform: translateX(100%);
      -ms-transform: translateX(100%);
      -o-transform: translateX(100%);
    }

    45% {
      transform: translateX(-40%);
      -webkit-transform: translateX(-40%);
      -moz-transform: translateX(-40%);
      -ms-transform: translateX(-40%);
      -o-transform: translateX(-40%);
    }

    50% {
      transform: translateX(-40%);
      text-shadow: none;
      -webkit-transform: translateX(-40%);
      -moz-transform: translateX(-40%);
      -ms-transform: translateX(-40%);
      -o-transform: translateX(-40%);
    }

    55% {
      transform: translateX(-40%);
      text-shadow: 0px 5px 10px #ff0000, 0px -5px 10px #ff0000;
      -webkit-transform: translateX(-40%);
      -moz-transform: translateX(-40%);
      -ms-transform: translateX(-40%);
      -o-transform: translateX(-40%);
    }

    60% {
      transform: translateX(-40%);
      text-shadow: none;
      -webkit-transform: translateX(-40%);
      -moz-transform: translateX(-40%);
      -ms-transform: translateX(-40%);
      -o-transform: translateX(-40%);
    }

    65% {
      opacity: 1;
      transform: translateX(100%);
      -webkit-transform: translateX(100%);
      -moz-transform: translateX(100%);
      -ms-transform: translateX(100%);
      -o-transform: translateX(100%);
    }

    100% {
      opacity: 0;
      transform: translateX(100%);
      -webkit-transform: translateX(100%);
      -moz-transform: translateX(100%);
      -ms-transform: translateX(100%);
      -o-transform: translateX(100%);
    }
  }

  .product-page-btns {
    text-align: center;
  }
}

/* Media Queries Ends Here */

/* NAVBAR STYLING STARTS FROM HERE */

:root {
  --primary-color: #ff5e00; /* Orange */
  --dark-color: #333; /* Dark Gray */
  --black-color: #000; /* Black */
  --white-color: #fff; /* White */
}

.navbar {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #1a1a1a;
  color: white;
  padding: 4px 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
}

.navbar-left {
  display: flex;
  align-items: center;
  flex-wrap: 0;
}

.navbar-logo {
  font-size: 1.8em;
  font-weight: 600;
  color: #ff5e00;
  margin-right: 20px;
  cursor: pointer;
}

.navbar-search {
  display: flex;
  align-items: center;
  flex-grow: 1;
  max-width: 500px;
  background-color: #333;
  border-radius: 5px;
  padding: 5px;
  position: relative;
  margin: 0 20px;
}

.navbar-search input[type="text"] {
  padding: 10px 15px;
  border: none;
  border-radius: 5px 0 0 5px;
  flex-grow: 1;
  background-color: transparent;
  color: white;
  outline: none;
}

.navbar-search button {
  background-color: #ff5e00;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 16px;
}

.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #282828; /* New background color */
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 1000;
  max-height: 400px;
  list-style: none;
  overflow-y: auto;
  overflow-x: hidden;
}

.search-suggestions.active {
  display: block;
}

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

.search-suggestions li {
  padding: 10px 15px;
  border-bottom: 1px solid #444; /* Lighter border color */
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background-color 0.2s ease;
}

.search-suggestions li:hover {
  background-color: #444; /* Lighter hover effect */
}

.search-suggestions li:last-child {
  border-bottom: none;
}

.search-suggestions li .product-search-image {
  margin-right: 15px;
  border-radius: 5px;
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 5px;
}

.search-suggestions li .product-search-details {
  display: flex;
  flex-direction: column;
}

.search-suggestions li .product-search-name {
  font-size: 16px;
  font-weight: bold;
  color: #fff; /* Text color changed to white for better contrast */
}

.search-suggestions li .product-search-price {
  font-size: 14px;
  color: #ccc; /* Lighter color for price */
  margin-top: 5px;
}

.navbar-nav {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.navbar-nav li {
  margin: 0 15px;
  position: relative;
}

.navbar-nav a {
  color: #808080;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  padding: 10px 0;
}

.navbar-nav a:hover {
  color: white;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #1a1a1a;
  min-width: 200px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  z-index: 1000;
  list-style: none;
  padding: 0;
  left: 0;
}

.dropdown-content li {
  margin: 0;
  padding: 10px 15px;
  border-bottom: 1px solid #333;
}

.dropdown-content li:last-child {
  border-bottom: none;
}

.navbar-nav li:hover .dropdown-content {
  display: block;
}

.brand-dropdown {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 350px;
  overflow-y: auto;
  overflow-x: hidden;
}

.brand-dropdown::-webkit-scrollbar {
  width: 8px;
}

.brand-dropdown::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.menu-icon {
  display: none;
  cursor: pointer;
  font-size: 24px;
}

.cart-dropdown, .search-suggestions::-webkit-scrollbar {
  width: 8px;
}

.cart-dropdown, .search-suggestions::-webkit-scrollbar-track {
  background: #222;
  border-radius: 10px;
}

.cart-dropdown, .search-suggestions::-webkit-scrollbar-thumb {
  background-color: #666;
  border-radius: 10px;
  border: 2px solid #222;
}

.cart-dropdown, .search-suggestions::-webkit-scrollbar-thumb:hover {
  background-color: #888;
}

.nav-logo {
  height: 45px;
  width: 90px;
}

.navbar-left {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin-right: auto;
}

.cart-icon {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin: 24px;
    z-index: 9999;
}

.cart-icon i {
    font-size: 20px;
    color: var(--white-color);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 50%;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 75%;
  height: 100%;
  background-color: #1a1a1a;
  box-shadow: -2px 0px 10px rgba(0, 0, 0, 0.5);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 20px;
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu .close-menu {
  position: absolute;
  top: 15px;
  -webkit-tap-highlight-color: transparent;
  right: 15px;
  background: #ff5e00;
  border: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}

.mobile-menu .close-menu:hover {
  background-color: #ff7300;
  transform: scale(1.1);
}

.mobile-menu .navbar-nav {
  display: block;
  padding: 0;
  margin-top: 40px;
}

.mobile-menu .navbar-nav li {
  margin: 10px 0;
  padding: 12px 10px;
  border-bottom: 1px solid #333;
  text-align: left;
  transition: background-color 0.3s ease;
  position: relative; 
}

.mobile-menu .navbar-nav li:hover {
  background-color: #282828;
}

.mobile-menu .navbar-nav li:last-child {
  border-bottom: none;
}

.mobile-menu .navbar-nav a {
  color: #808080;
  text-decoration: none;
  display: block;
  padding: 8px 0;
  transition: color 0.3s ease;
  font-size: 16px;
}

.mobile-menu .navbar-nav a:hover,
.mobile-menu .navbar-nav a.active {
  color: white;
}

.mobile-menu .dropdown-content {
  position: relative;
  display: none;
  width: 100%;
  box-shadow: none;
  background-color: #282828;
  padding-left: 20px;
  margin-top: 10px;
  border-radius: 5px;
  overflow: hidden;
}

.mobile-menu .navbar-nav li.active .dropdown-content {
  display: block;
  animation: slideDown 0.3s ease;
}

.mobile-menu .dropdown-content li {
  padding: 10px 0;
  border-bottom: 1px solid #444;
}

.mobile-menu .dropdown-content li:last-child {
  border-bottom: none;
}

.mobile-menu .brand-dropdown {
  max-height: 40vh;
  overflow-y: auto;
}

@keyframes slideDown {
  from {
      transform: translateY(-20px);
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }
}

/* +- button styling */
.mobile-menu .navbar-nav li .dropdown-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  cursor: pointer;
  color: #808080;
  transition: color 0.3s ease;
}

.mobile-menu .navbar-nav li .dropdown-toggle:hover {
  color: white;
}

.mobile-menu::-webkit-scrollbar {
  width: 8px;
}

.mobile-menu::-webkit-scrollbar-track {
  background: #222;
  border-radius: 10px;
}

.mobile-menu::-webkit-scrollbar-thumb {
  background-color: #666;
  border-radius: 10px;
  border: 2px solid #222;
}

.mobile-menu::-webkit-scrollbar-thumb:hover {
  background-color: #888;
}

.clear-btn {
  display: none;
  margin-right: 6px;
  font-size: 28px;
  color: #ffffff;
  cursor: pointer;
  border: none;
}

.clear-btn:hover {
  color: #ff5e00;
}

@media (max-width: 768px) {
  .navbar-left {
      flex-basis: 100%;
      justify-content: space-between;
      align-items: center;
      display: flex;
      flex-wrap: wrap;
  }

  .navbar-logo {
      margin-right: auto;
  }

  .navbar-search {
      order: 2;
      width: 100%;
      margin: 10px 0;
      max-width: 100%;
  }

  .navbar-nav {
      display: none;
      flex-direction: column;
      position: relative;
      top: 60px;
      right: 0;
      width: 100%;
      background-color: #1a1a1a;
      text-align: center;
      z-index: 10;
  }

  .navbar-nav.active {
      display: flex;
  }

  .navbar-nav li {
      margin: 0;
      padding-bottom: 15px;
      width: 100%;
      border-bottom: 1px solid #333;
  }

  .navbar-nav li:last-child {
      border-bottom: none;
  }

  .dropdown-content {
      position: absolute;
      display: none;
      width: 100%;
      box-shadow: none;
  }

  .navbar-nav li:hover .dropdown-content {
      display: none;
  }

  .navbar-nav li.active .dropdown-content{
      display: block;
  }

  .menu-icon {
    display: block;
    margin-left: 15px;
    margin-top: 9px;
  }

  .cart-dropdown {
      right: auto;
      left: 0;
      min-width: 90%;
      max-width: 95%;
      top: 60px;
  }
}

@media (max-width: 480px) {
  .navbar-search {
      width: calc(100% - 40px);
      max-width: 80%;
  }

  .cart-icon {
      margin-left: 10px;
      -webkit-tap-highlight-color: transparent;
  }
}

@media (max-width: 768px) {
    .cart-dropdown {
        width: 100%;
        padding: 15px;
    }

    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-item-img {
        width: 60px;
        height: 60px;
    }

    .cart-item-name {
        font-size: 14px;
    }

    .cart-dropdown-total {
        font-size: 16px;
    }

    .checkout-btn {
        padding: 8px 16px;
    }

    .close-cart {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
  .cart-dropdown {
      width: 100%;
      padding: 10px;
  }

  .cart-item-img {
      width: 50px;
      height: 50px;
  }

  .cart-dropdown-total {
      font-size: 14px;
  }

  .checkout-btn {
      width: 100%;
      padding: 12px 0;
  }

  .close-cart {
      font-size: 18px;
  }
}

@media (max-width: 768px) {
  .navbar-left {
      flex-basis: 100%;
      justify-content: space-between;
      align-items: center;
      display: flex;
      flex-wrap: wrap;
  }

  .navbar-logo {
      margin-right: auto;
  }

  .navbar-search {
      order: 1;
      width: calc(100% - 40px);  
      margin: 10px 0;
      display: inline-flex; 
  }

  .cart-icon {
      order: 2;
      margin-left: 10px;  
      display: inline-flex;
      align-items: center;
      -webkit-tap-highlight-color: transparent;
  }

  .navbar-nav {
      display: none;
      flex-direction: column;
      position: relative;
      top: 60px;
      right: 0;
      width: 100%;
      background-color: #1a1a1a;
      text-align: center;
      z-index: 10;
  }

  .navbar-nav.active {
      display: flex;
  }

  .navbar-nav li {
      margin: 0;
      padding-bottom: 15px;
      width: 100%;
      border-bottom: 1px solid #333;
  }

  .navbar-nav li:last-child {
      border-bottom: none;
  }

  .dropdown-content {
      position: absolute;
      display: none;
      width: 100%;
      box-shadow: none;
  }

  .navbar-nav li:hover .dropdown-content {
      display: none;
      padding: 0;
  }

  .navbar-nav li.active .dropdown-content{
      display: block;
  }

  .menu-icon {
      display: block;
      -webkit-tap-highlight-color: transparent;
  }

  .cart-dropdown {
      right: auto;
      left: 0;
      min-width: 90%;
      max-width: 95%;
      top: 60px;
  }
}

@media (max-width: 480px) {
  .navbar-search {
      width: calc(100% - 40px);
      max-width: 100%;
  }

  .cart-icon {
      margin: 0px;
      margin-left: 10px;
      margin-top: 15.5px;
  }
  input, textarea, select {
    font-size: 16px; 
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    padding: 8px 10px;
    align-items: flex-start;
  }

  .navbar-left {
    order: 1;
    flex: 1;
    justify-content: space-between;
  }

  .menu-icon {
    order: 3;
    display: block;
    -webkit-tap-highlight-color: transparent;
  }

  .cart-icon {
    order: 2;
    margin-left: 15px;
    margin-top: 13px;
    margin-right: 0;
  }

  .navbar-search {
    order: 4;
    width: 100%;
    margin: 5px 0 0;
  }

  .navbar-nav {
    display: none;
  }
}

/* NAVBAR STYLING ENDS HERE */


/* ---------------------------- CHAT BOT STYLING STARTS FROM HERE ---------------------------- */
.chat-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #e74c3c;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  z-index: 1000;
  -webkit-tap-highlight-color: transparent;
  font-family: "Montserrat", sans-serif;
}

.chat-button:hover {
  transform: scale(1.1);
  background: #c0392b;
}

/* Chat Container */
.chat-container {
  position: fixed;
  max-height: 80%;
  bottom: 100px;
  right: 30px;
  width: 350px;
  max-width: 90%;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
  font-family: "Montserrat", sans-serif;
}

.chat-header {
  background: #e74c3c;
  color: white;
  padding: 15px;
  font-size: 1.2em;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}

.chat-body {
  padding: 15px;
  height: 400px;
  overflow-y: auto;
  background: #f9f9f9;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Scrollbar */
.chat-body::-webkit-scrollbar {
  width: 8px;
}

.chat-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.chat-body::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.chat-body::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Input Section */
.input-section {
  padding: 15px;
  background: white;
  border-top: 1px solid #eee;
}

.quick-options {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: space-between;  */
  gap: 8px; 
  margin-bottom: 10px;
  -webkit-tap-highlight-color: transparent;
}

.quick-option {
  background: #f1f1f1;
  color: #333;
  border: none;
  padding: 8px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 12px;
  white-space: nowrap;
}

.quick-option:hover {
  background: #e74c3c;
  color: white;
}

.quick-option .fa-headset,
.quick-option .fa-whatsapp {
    margin-right: 8px;
}

.chat-quick-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; 
  gap: 8px; 
  margin-bottom: 10px;
}

.chat-quick-option {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between; 
  gap: 10px; 
  background: #e74c3c;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 10px;
  transition: all 0.3s ease;
  font-size: 13px;
  font-weight: bolder;
  white-space: nowrap;
  width: 100%;
}

.chat-quick-option:hover {
  background: #f1f1f1;
  color: #333;
}

.input-row {
  display: flex;
  gap: 10px;
}

.chat-input {
  flex: 1;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 25px;
  font-size: 14px;
  outline: none;
  font-family: inherit;
}

.chat-input::placeholder {
  color: #5c5b5b;;
  opacity: 1;
}

.send-btn {
  background: #e74c3c;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

.send-btn:hover {
  background: #c0392b;
}

.send-btn svg {
  width: 20px;
  height: 20px;
  fill: white;
}

/* Messages */
.chatbot-message {
  max-width: 80%;
  padding: 12px 18px;
  border-radius: 20px;
  word-wrap: break-word;
  font-size: 13px;
  color: black;
}

.bot-message {
  background: white;
  border: 1px solid #eee;
  align-self: flex-start;
  border-bottom-left-radius: 5px;
}

.user-message {
  background: #e74c3c;
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 5px;
}

.typing-indicator {
  display: inline-flex;
  padding: 12px 18px;
  background: #eee;
  border-radius: 20px;
  align-self: flex-start;
}

.dot {
  width: 8px;
  height: 8px;
  margin: 0 3px;
  background: #999;
  border-radius: 50%;
  animation: typing 1.4s infinite;
}

.enquiry-form-container {
  width: 100%;
  margin: 0;
  background: #ffffff;
  border-radius: 15px;
  /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
  overflow: visible;

  .chat-body {
    width: 100%;
  }
}

.navbar-search input::placeholder {
  color: #ff7300;
  opacity: .5;
}

.form-header {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  padding: 10px;
  text-align: center;
  position: relative;
}

.form-header h2 {
  margin: 0;
  font-size: 1.5em;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.enquiry-form {
  padding: 15px;
  background: #f9f9f9;
}

.form-group {
  margin-bottom: 15px;
  position: relative;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  padding-left: 30px;
  position: relative;
  text-align: start;
}

.form-label i {
  position: absolute;
  left: 0;
  top: 2px;
  color: #e74c3c;
  font-size: 18px;
}

.form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #eee;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: white;
  box-sizing: border-box;
}

.form-input:focus {
  border-color: #e74c3c;
  box-shadow: 0 3px 15px rgba(231, 76, 60, 0.1);
  outline: none;
}

.form-input:disabled {
  background: #f8f9fa;
  color: #666;
}

.form-textarea {
  height: 100px;
  resize: vertical;
  width: 100%;
}

.form-textarea::placeholder {
  color: #5c5b5b;
  opacity: 1;
}

.enquire-now-btn {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 100%;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.enquire-now-btn:hover {
  background: linear-gradient(135deg, #f31d06, #f13e2b);
  /* background: linear-gradient(135deg, #44e279, #39e022); */
}

.deactivated-enquire-now-btn {
  cursor: not-allowed;
  background: #333;
}

.deactivated-start-chat-btn {
  cursor: not-allowed;
  opacity: .5;
}

.quick-options .fa-whatsapp {
  color: #333;
}

.quick-options .fa-whatsapp:hover {
  color: white;
  background: transparent;
}

@media (max-width: 480px) {
  .chat-container {
      width: 87%;
      right: 2.5%;
      bottom: 85px;
      height: 69%;
  }
  
  .chat-body {
      height: 60vh;
  }
  
  .chat-button {
      bottom: 20px;
      right: 20px;
  }

  .chat-input, .form-input {
    font-size: 16px;
  }
  
  .quick-options {
      gap: 5px;
  }

  .quick-option:hover {
    background: #f1f1f1;
    color: #333;
  }

  .quick-option:active {
    background: #e74c3c;
    color: white;
  }
  
  .quick-option {
      padding: 6px 10px;
      font-size: 11px;
  }

  .enquire-now-btn:hover {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
  }

  .deactivated-enquire-now-btn:hover {
    cursor: not-allowed;
    background: #333;
  }

  .enquiry-form {
    padding: 15px;
}
}
/* ---------------------------- CHAT BOT STYLING ENDS HERE ---------------------------- */


/* WHATSAPP BOT STYLING STARTS FROM HERE  */
.whatsapp_icon_wrapper{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999999;
}

.whatsapp_icon_button{
  width: 60px;
  height: 60px;
  background: linear-gradient(180deg,#25d366 0,#1da851 100%);
  border-radius: 50%;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.22);
  cursor: pointer;
  outline: none;
  transition: transform .18s ease;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  overflow: visible;
}

.whatsapp_icon_button::after{
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.45);
  animation: whatsapp_iconPulse 2.6s infinite;
  pointer-events: none;
  opacity: 0.9;
}

@keyframes whatsapp_iconPulse{
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.35); transform: scale(1); }
  50% { box-shadow: 0 0 0 12px rgba(37,211,102,0.05); transform: scale(1.03); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.0); transform: scale(1); }
}

.whatsapp_icon_button:active{ transform: scale(.98); }
.whatsapp_icon_icon { display:block; }
.whatsapp_icon_button img {
  height: 50%;
}

.whatsapp_icon_small_popup{
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 250px;
  display: none;
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.14);
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

.whatsapp_icon_small_img, .whatsapp_icon_agent_img{
  width:48px;
  height:48px;
  border-radius:50%;
  object-fit:contain;
  flex-shrink:0;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  background: #000;
}

.whatsapp_icon_small_text { 
  font-size:13px; 
  color:#222; 
  line-height:1.1; 
  margin-left: 9px;
}
.whatsapp_icon_small_name { font-weight:700; margin-bottom:3px; display:flex; align-items:center; gap:8px; }
.whatsapp_icon_small_role { color:#666; font-size:12px; }

.whatsapp_icon_online_dot{
  color: #0bbd6a;
  background: rgba(11,189,106,0.06);
  padding: 2px 6px;
  border-radius: 999px;
  font-weight:600;
  font-size:12px;
}

.whatsapp_icon_box{
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 320px;
  display: none;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.18);
  font-family: "Montserrat", sans-serif !important;
  font-weight: 300;
}

.whatsapp_icon_header{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px;
  background: #075E54;
  color:#fff;
}
.whatsapp_icon_agent_meta{ min-width:0; }
.whatsapp_icon_agent_name{ font-weight:700; font-size:15px; line-height:1; }
.whatsapp_icon_status{ font-size:12px; opacity:0.92; color:rgba(255,255,255,0.92); margin-top:4px; }

.whatsapp_icon_close{
  margin-left:auto;
  background:transparent;
  border:0;
  color:#fff; font-size:18px;
  cursor:pointer;
  padding:6px;
}

.whatsapp_icon_small_close {
  position: absolute;
  top: 6px;
  right: 6px;
  background: transparent;
  border: none;
  font-size: 14px;
  cursor: pointer;
  color: #666;
}

.whatsapp_icon_body{ padding:14px; background:#ece5dd; }
.whatsapp_icon_msg{
  background:#fff; padding:10px 12px; border-radius:10px; display:inline-block; font-size:14px; color:#222;
}

.whatsapp_icon_cta{
  display:block; text-align:center; padding:12px 0; font-weight:700; text-decoration:none;
  background: linear-gradient(180deg,#25d366 0,#1da851 100%);
  color:#fff; border-radius:0 0 12px 12px;
}

@media (max-width:520px){
  .whatsapp_icon_wrapper{ right:14px; bottom:14px; }
  .whatsapp_icon_box{
    width: calc(100% - 28px);
    right: 14px;
    left: 14px;
    bottom: 80px;
    position: fixed;
    border-radius: 14px;
  }
  .whatsapp_icon_small_popup{ 
    box-sizing: border-box; }
  .whatsapp_icon_small_img{ width:42px; height:42px; }
}


.whatsapp_icon_show { display:flex !important; animation: whatsapp_iconShow .28s ease both; }
@keyframes whatsapp_iconShow{ from{ opacity:0; transform: translateY(8px) scale(.98) } to { opacity:1; transform: translateY(0) scale(1) } }


.whatsapp_icon_box.whatsapp_icon_show{ display:block !important; }
/* WHATSAPP BOT STYLING ENDS HERE  */






