@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;
}

/* Force scrollbar */
html {
  overflow-y: scroll;
}

/* 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;
}

/* GLOBAL STYLING STARTS HERE */

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;
}

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

li {
  list-style: none;
}

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

.capital {
  text-transform: uppercase;
}

.bold {
  font-weight: 900;
}

.icon {
  display: block;
}

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

/* HEADER STYLING STARTS HERE */

.tb {
  display: table;
  width: 100%;
}

.td {
  display: table-cell;
  vertical-align: middle;
}

#cover {
  /* position: absolute; */
  top: 50%;
  left: -224px;
  right: 0;
  width: 500px;
  display: block;
  padding: 35px;
  /* margin: -83px auto 0 auto; */
  background-color: #322f2f;
  border-radius: 20px;
  box-shadow: 0 10px 40px #000000, 0 0 50px 20px #ffffffeb;
  /* transform: scale(0.3); */
}

form {
  height: 96px;
}

/* PRELOADER STYLING STARTS HERE */

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

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

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

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

#loop {
  height: 100px;
  width: 100px;
  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 */

/* SOCIAL ICONS STYLING STARTS HERE */
.social {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  vertical-align: middle;
  text-align: center;
  width: 0%;
}

.social ul {
  padding: 0px;
  transform: translate(-163px, 0);
}

.social ul li {
  display: block;
  margin: 5px;
  background: rgba(0, 0, 0, 0);
  width: 200px;
  text-align: right;
  padding: 0px;
  border-radius: 0 30px 30px 0;
  transition: all 1s;
}

.social ul li:hover {
  transform: translate(110px, 0);
  background: #000;
  border: 1px solid #ff7300;
}

.social ul li:hover a {
  color: #fff;
  text-shadow: 0px 0px 5px #ff7300;
}

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

.social ul li i {
  margin-left: 10px;
  color: #fff;
  background: #fff;
  padding: 10px;
  border-radius: 50%;
  border: 1px solid #ff7300;
  width: 20px;
  height: 20px;
  font-size: 19px;
  background: #000;
  transform: rotate(0deg);
  vertical-align: middle;
  text-align: center;
}

/* SOCIAL ICONS STYLING ENDS HERE */


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

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

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

/* SEARCH STYLING ENDS HERE */

h1 img {
  height: 70px;
  width: 150px;
}

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

.renderCartData {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 50%;
  max-width: 400px;
  padding: 20px;
  z-index: 999;
  background: #000000;
  box-shadow: -2px 0 4px #ff7300;
  transition: .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: 16%;
  max-height: 20%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: #555454 0px 0px 10px 5px;
}

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

.trash {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 3.5px;
  transition: .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: .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: 50%;
  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;
}

.btn-buy {
  display: flex;
  justify-content: center;
  margin: 20px auto 0 auto;
  padding: 12px 20px;
  width: 50%;
  border: none;
  border-radius: 30px;
  background: #ff7300;
  color: #000;
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  transition: .5s;
}

.btn-buy:hover {
  color: #fff;
}

.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;
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }

  50% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }

  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

/* HEADER STYLING ENDS HERE */

/* BODY STYLING STARTS HERE */

/*PRODUCT PAGE STYLING*/

.row {
  display: flex;
  /* margin-right: -15px; */
  /* margin-left: -15px; */
  justify-content: space-between;
  flex-wrap: nowrap;
  padding: 100px 0;
  align-items: flex-start;
}

.col-lg-4 {
  flex: 0 0 31%;
}

.col-lg-9 .row {
  padding: 20px 0;
}

.form-control {
  display: block;
  width: 100%;
  height: 40px;
  padding: 10px 15px;
  line-height: 1.5;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 10px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.categoryh1 {
  position: relative;
  color: #080808;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  padding-bottom: 15px;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

.categoryh1:before {
  background-color: #ff7300;
  content: '';
  display: block;
  height: 3px;
  width: 75px;
  margin-bottom: 5px;
}

.categoryh1:after {
  background-color: #ff7300;
  content: '';
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 3px;
  width: 75px;
  margin-bottom: 0.25em;
}

option {
  display: block;
  min-height: 20px;
  padding: 0px 2px 1px;
  white-space: nowrap;
}

.blog-sidebar-title {
  color: #242424;
  font-size: 25px;
  font-weight: 900;
}

.blog-sidebar-list {
  color: #242424;
  font-size: 16px;
  cursor: pointer;
  font-weight: 900;
  margin-top: 5px;
  text-wrap: nowrap;
}

.blog-sidebar-text {
  color: #242424;
  font-family: "Kanit", sans-serif;
  font-size: 16px;
  font-weight: 200;
}

.blog-form {
  background-color: #f4f4f4;
  padding: 50px;
  height: 100%;
  width: 320px;
  position: sticky;
  top: 90px;
}

.list-icon {
  color: #c0aa83;
  font-weight: 900;
  display: inline-block;
  transition: .3s;
}

.collapsible-brand {
  cursor: pointer;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 18px;
  transition: 0.5s;
}

.collapsible-brand:hover {
  background-color: #f1f1f1;
}

.dropdown-branditem {
  padding: 8px 0;
  padding-right: 10px;
  cursor: pointer;
  transition: .5s;
  display: block;
}

.collapsible-brand.active .list-icon {
  transform: rotate(90deg);
  /* Rotate the list icon */
}

.collapsible-price.active .list-icon {
  transform: rotate(90deg);
  /* Rotate the list icon */
}

.collapsible-category.active .list-icon {
  transform: rotate(90deg);
  /* Rotate the list icon */
}

.content {
  padding-left: 18px;
  overflow: hidden;
  background-color: #f1f1f1;
  transition: .5s;
}

.noProducts {
  font-size: 40px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 50px;
}

.brand-list {
  width: 100%;
}

.dropdown-branditem::before {
  content: '\f105';
  font-family: 'FontAwesome';
  margin-right: 5px;
}

.dropdown-branditem:hover {
  padding-left: 9px;
  padding-right: 0px;
  text-decoration: underline;
}

.category-list li {
  cursor: pointer;
  margin-bottom: 5px;
  padding: 5px;
  background-color: #f0f0f0;
  transition: .5s;
  font-size: 18px;
}

.category-list>li:first-child:hover {
  /* text-decoration: underline; */
}

.dropdown-categoryList {
  display: none;
  white-space: nowrap;
  transition: .5s;
  padding-left: 10px;
}

.dropdown-categoryList a {
  font-size: 16px;
}

.category-list li::before {
  content: '\2b';
  display: inline-block;
  margin-right: 5px;
  font-size: 20px;
  font-weight: 900;
  vertical-align: auto;
  transition: .5s;
}

.category-list li.active::before {
  transform: rotate(45deg);
}

.category-list li.active .dropdown-categoryList {
  display: block;
}

.dropdown-branditem:hover::before {
  content: '\f101';
}

/* Style for the collapsible section */
.collapsible-price {
  cursor: pointer;
  /* padding: 18px; */
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 18px;
  transition: 0.4s;
}

.collapsible-price:hover {
  background-color: #f1f1f1;
}

/* Style for the content inside the collapsible section */
.content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
}

/* Style for the range input */
#price-range {
  width: 100%;
  margin-top: 10px;
}

/* Style for the price display */
#min-price,
#max-price {
  font-weight: bold;
}


.tags {
  color: #242424;
  font-family: "Kanit", sans-serif;
  font-size: 20px;
  font-weight: 200;
}

.tags {
  color: #242424;
  font-size: 20px;
  font-weight: 200;
  padding: 0 5px;
}

.product-sidebar-list {
  color: #242424;
}

.product-sidebar-list:hover {
  color: #c0aa83;
}

.card-title {
  color: #000;
  font-size: 16px;
  font-weight: 900;
  padding: 0 5px;
}

.card-text {
  font-size: 13px;
  padding: 10px 5px;
}

.price-tag {
  color: #c0aa83;
  font-size: 25px;
  font-weight: 900;
}

.button-text {
  font-size: 14px;
  font-weight: 900;
  padding: 5px 5px;
  margin: 5px;
  border: 1px solid #868282;
  border-radius: 10px;
  transition: 0.5s;
}

.button-text:hover {
  background-color: #8682825b;
  border: 1px solid transparent;
}

.product-image {
  height: 300px;
  object-fit: contain;
}

.product-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: stretch;
  align-content: stretch;
  height: 100%;
}

.products-preview {
  position: fixed;
  top: 0;
  left: 0;
  min-height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, .8);
  display: none;
  align-items: center;
  justify-content: center;
}

.products-preview .preview {
  display: block;
  padding: 2rem;
  text-align: center;
  background: #fff;
  position: relative;
  margin: 2rem;
  width: 40rem;
}

.products-preview .preview.active {
  display: inline-block;
}

.products-preview .preview img {
  height: 30rem;
}

.products-preview .preview .fa-times {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  cursor: pointer;
  color: #444;
  font-size: 4rem;
}

.products-preview .preview .fa-times:hover {
  transform: rotate(90deg);
}

.products-preview .preview h3 {
  color: #444;
  padding: 0.5rem 0;
  font-size: 2.5rem;
}

.products-preview .preview .stars {
  padding: 1rem 0;
  font-size: 1.7rem;
}

.products-preview .preview .stars i {
  color: #27ae60;
}

.products-preview .preview .stars span {
  color: #999;
}

.products-preview .preview p {
  line-height: 1.5;
  padding: 1rem 0;
  font-size: 1.6rem;
  color: #777;
}

.products-preview .preview .price {
  padding: 1rem 0;
  font-size: 2.5rem;
  color: #27ae60;
}

.products-preview .preview .buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.products-preview .preview .buttons a {
  flex: 1 1 16rem;
  padding: 1rem;
  font-size: 1.8rem;
  color: #444;
  border: 0.1rem solid #444;
}

.products-preview .preview .buttons a.cart {
  background: #444;
  color: #fff;
}

.products-preview .preview .buttons a.cart:hover {
  background: #111;
}

.products-preview .preview .buttons a.buy:hover {
  background: #444;
  color: #fff;
}

.pagination {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  list-style-type: none;
  padding: 0;
  height: max-content;
  margin: 15px 0;
}

.pagination button {
  cursor: pointer;
  padding: 10px;
  background-color: #000;
  border-radius: 15px;
  border: 2px solid #ff7300;
  color: #fff;
  transition: .5s;
}

.pagination-btn[disabled] {
  cursor: not-allowed;
  opacity: .7;
}

.pagination-btn[disabled]:hover {
  color: red;
}

.pagination-btn.active {
  color: #ff7300;
}

.pagination-btn:hover {
  color: #ff7300;
}

/* POPUP STYLING STARTS HERE */

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

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

.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;
}

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

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

  50% {
    border-radius: 50%;
  }

  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 */

/* BODY STYLING ENDS HERE */

/* MEDIA QUERIES START HERE */

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

  /* Make the filter become a vertical menu for smaller screens */
  .row {
    display: block;
    text-align: center;
  }

  .blog-sidebar-title::before {
    font-family: "FontAwesome";
    transition: 0.5s;
    content: '\f0b0';
    margin-right: 30px;
  }

  .blog-sidebar-title::after {
    font-family: "FontAwesome";
    transition: 0.5s;
    content: '\f0d7';
    margin-left: 30px;
  }

  .blog-sidebar-title.collapsed::after {
    content: '\f150';
  }

  .collapsible-filter {
    display: none;
  }

  .collapsible-filter.collapsed {
    display: block;
  }

  .blog-form {
    position: static;
    width: 100%;
    padding: 10px;
    text-align: center;
  }

  .blog-sidebar-list {
    text-align: center;
  }

  .form-control {
    /* text-align: center; */
  }

  .content {
    padding: 0;
  }

  .brand-list {
    width: max-content;
    text-align: justify;
    margin-left: 45%;

  }

  .category-list {
    width: max-content;
    text-align: justify;
    margin-left: 42%;
  }

}

@media screen and (max-width: 680px) {
  .call::after {
    font-size: 25px;
  }

  h1 img {
    height: 60px;
    width: 90px;
  }

}

@media only screen and (max-width:640px) {
  .social ul li:focus {
    transform: translate(110px, 0);
    background: #ff73007b;
  }

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

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

}

@media screen and (max-width: 500px) {
  .wrapper {
    width: 95%;
  }

  header .wrapper {
    width: 80%;
  }

  .blog-form {
    padding: 25px 0;
    /* width: 200px; */
  }

  .product-row {
    flex-wrap: nowrap;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .products-preview .preview h3 {
    font-size: 16px;
  }

  .products-preview .preview .fa-times {
    font-size: 2rem;
    top: 2rem;
    right: 2rem;
  }

  .products-preview .preview .stars i {
    font-size: 20px;
  }

  .products-preview .preview .stars span {
    font-size: 20px
  }

  .products-preview .preview p {
    font-size: 14px;
  }

  .products-preview .preview .price {
    font-size: 22px;
    padding: 0;
  }

  .products-preview .preview .buttons a {
    font-size: 16px;
    padding: 10px;
  }

  .products-preview .preview .buttons {
    gap: 15px;
    margin-top: 10px;
  }


}

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

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

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

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

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

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

  .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;
  }

  .noProducts {
    width: 80%;
    font-size: 32px;
  }

  .row {
    padding: 0;
  }

  .card {
    height: max-content;
  }

  .card-title {
    font-size: 14px;
  }

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


/* MEDIA QUERIES END HERE */


/* CATEGORY WORDINGS STYLE STARTS FROM HERE */
.category-wording-container {
  max-width: 1100px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 10px 10px 10px 10px;
}

.category-wording-heading {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.category-wording-points {
  list-style-type: none;
  padding-left: 0;
  font-size: 16px;
  color: #333;
  line-height: 1.8;
}

.category-wording-points li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-family: Arial, sans-serif;
}

.category-wording-points li:before {
  content: '\2714';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  color: #FF7F32;
}

.category-wording-points a {
  color: #FF7F32;
  text-decoration: none;
  font-weight: bold;
}

.category-wording-points a:hover {
  text-decoration: underline;
}

.category-wording-points li:last-child {
  margin-bottom: 0;
}

.category-wording-points li.hidden {
  display: none;
}

.view-more {
  color: #FF7F32;
  cursor: pointer;
  font-weight: 600;
  display: block;
  margin-top: 20px;
  text-align: center;
  transition: color 0.3s ease;
}

.view-more:hover {
  text-decoration: underline;
  color: #a74102;
}

/* MEDIA QUERIES */
@media (max-width: 768px) {
  .category-wording-container {
    padding: 15px;
    margin: 10px 10px 10px 10px;
  }

  .category-wording-heading {
    font-size: 24px;
  }

  .category-wording-points li {
    font-size: 14px;
  }
}


/* ---------------------------- 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: 100000;
  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 ---------------------------- */


/* 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: 1000c1;
  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 */