body {
  font-family: "inter, helvetica, sans-serif" !important;
}
p,
li,
h1,
h2,
h3,
h4,
h5,
span {
  font-family: "inter, helvetica, sans-serif" !important;
}
.color-swatch-wrapper {
  position: relative;
}
.section_space {
  padding-top: 90px;
  /* padding-bottom: 90px; */
  padding-bottom: 72px; /*Modified*/
  font-family: "inter, helvetica, sans-serif" !important;
}

.color-swatch {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  box-shadow: 0 0 0 1px #ccc; /* Light gray outline for visibility on white */
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.color-checkbox:checked + .color-swatch {
  border: 2px solid #000; /* Black border when selected */
  box-shadow: 0 0 0 1px #000; /* Ensures visibility of white when active */
}

.loader {
  display: block;
  position: relative;
  height: 32px;
  width: 150px;
  box-sizing: border-box;
  overflow: hidden;
  border: 2px solid #fff;
  border-radius: 20px;
}
.loader:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgb(224, 173, 53);
  animation: ballbns 3s ease-in-out infinite;
}

@keyframes ballbns {
  0% {
    left: 0;
    transform: translateX(0%);
    box-shadow: -5px 0 0 -1px rgba(224, 173, 53, 0.9),
      -10px 0 0 -2px rgba(224, 173, 53, 0.8),
      -15px 0 0 -4px rgba(224, 173, 53, 0.6),
      -20px 0 0 -6px rgba(224, 173, 53, 0.4),
      -25px 0 0 -8px rgba(224, 173, 53, 0.2);
  }
  49% {
    left: 100%;
    transform: translateX(-100%);
    box-shadow: -5px 0 0 -1px rgba(224, 173, 53, 0.9),
      -10px 0 0 -2px rgba(224, 173, 53, 0.8),
      -15px 0 0 -4px rgba(224, 173, 53, 0.6),
      -20px 0 0 -6px rgba(224, 173, 53, 0.4),
      -25px 0 0 -8px rgba(224, 173, 53, 0.2);
  }
  51% {
    left: 100%;
    transform: translateX(-100%);
    box-shadow: 5px 0 0 -1px rgba(224, 173, 53, 0.9),
      10px 0 0 -2px rgba(224, 173, 53, 0.8),
      15px 0 0 -4px rgba(224, 173, 53, 0.6),
      20px 0 0 -6px rgba(224, 173, 53, 0.4),
      25px 0 0 -8px rgba(224, 173, 53, 0.2);
  }
  100% {
    left: 0;
    transform: translateX(0%);
    box-shadow: 5px 0 0 -1px rgba(224, 173, 53, 0.9),
      10px 0 0 -2px rgba(224, 173, 53, 0.8),
      15px 0 0 -4px rgba(224, 173, 53, 0.6),
      20px 0 0 -6px rgba(224, 173, 53, 0.4),
      25px 0 0 -8px rgba(224, 173, 53, 0.2);
  }
}

#ajaxLoader {
  width: 100%;
  position: sticky;
  display: none;
  top: 50%;
  /* right: 50%; */
  z-index: 9999999;
  align-content: center;
  justify-content: center;
}
#ajaxLoader.show {
  display: flex;
}

.price-input {
  width: 100%;
  display: flex;
  margin: 0px 0 35px;
}
.price-input .field {
  display: flex;
  width: 100%;
  height: 45px;
  align-items: center;
}
.field input {
  width: 100%;
  height: 100%;
  outline: none;
  font-size: 13px;
  margin-left: 12px;
  border-radius: 5px;
  text-align: center;
  border: 1px solid #999;
  -moz-appearance: textfield;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.price-input .separator {
  width: 130px;
  display: flex;
  font-size: 13px;
  align-items: center;
  justify-content: center;
}
.slider {
  height: 5px;
  position: relative;
  background: #ddd;
  border-radius: 5px;
}
.slider .progress {
  height: 100%;
  left: 0%;
  right: 0%;
  position: absolute;
  border-radius: 5px;
  background: rgb(224, 173, 53);
}
.range-input {
  position: relative;
}
.range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -5px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.range-input .range-max {
  left: 10px;
}
input[type="range"]::-webkit-slider-thumb {
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background: rgb(224, 173, 53);
  pointer-events: auto;
  -webkit-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}
input[type="range"]::-moz-range-thumb {
  height: 17px;
  width: 17px;
  border: none;
  border-radius: 50%;
  background: #17a2b8;
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

/* Support */
.support-box {
  top: 2rem;
  position: relative;
  bottom: 0;
  text-align: center;
  display: block;
}
.b-btn {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.b-btn.paypal i {
  color: blue;
}
.b-btn:hover {
  text-decoration: none;
  font-weight: bold;
}
.b-btn i {
  font-size: 13px;
  color: yellow;
  margin-top: 2rem;
}
#filterInner {
  position: relative;
}

.sticky-filter {
  position: fixed;
  top: 0;
}

.unstick-filter {
  position: relative;
}
.product-card {
  position: relative;
  /* overflow: hidden; */
  height: 100%;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
  border: 1px solid #777;
}
.product-card:hover {
  /* box-shadow: 0 4px 20px rgba(0,0,0,0.1); */
}
.product-card .image-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  min-height: 370px;
}
.image-container img {
  max-width: 310px;
  min-width: 310px;

  object-fit: contain;
}

.image-container .main-image {
  transition: opacity 0.3s ease-in-out;
  z-index: 1;
}

.image-container .hover-image {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 2;
  height: 96% !important;
  padding-bottom: 0px !important;
  margin-bottom: 0px !important;
}

.image-container:hover .hover-image {
  opacity: 1;
}

.image-container:hover .main-image {
  opacity: 0;
}

.card-icons {
  position: absolute;
  top: 20px;
  right: -100px; /* Start hidden right */
  display: flex;
  gap: 10px;
  opacity: 0;
  transition: right 0.4s ease, opacity 0.1s ease;
}

/* Initial hidden state */
.card-icons.flex-column {
  opacity: 0;
  pointer-events: none;
  display: flex; /* Keep display as flex to allow animation */
  right: -30px;
  transition: right 0.4s ease, opacity 0.4s ease;
  position: absolute; /* Ensure positioning for sliding */
  top: 20px;
  z-index: 2;
}

/* On hover: show + animate */
.product-card:hover .card-icons {
  right: 15px;
  opacity: 1 !important;
  pointer-events: auto;
}

.card-icons a {
  width: 40px;
  height: 40px;
  text-align: center;
  background-color: white;
  border-radius: 50%;
  padding: 8px;
  color: #333;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}
.card-icons a:hover {
  transform: scale(1.1);
}
/* Modal zoom in on show */
.modal.fade .modal-dialog {
  transform: scale(0.7);
  transition: transform 0.3s ease-out;
}

.modal.fade.show .modal-dialog {
  transform: scale(1);
  transition: transform 0.3s ease-in;
}

/* Optional: zoom out on hide is automatic with fade */
.modal-dialog {
  transition: transform 0.3s ease;
}

.pagination {
  margin-bottom: 0;
}

.pagination .page-item .page-link {
  background-color: white;
  color: #777;
  font-size: 13px;
  font-weight: 400;
  border: 1px solid #ddd;
  padding: 6px 12px;

  transition: all 0.2s ease;
}

.pagination .page-item.active .page-link,
.pagination .page-item .page-link:hover {
  background-color: #e0ad35;
  color: #fff;
  font-weight: 400;
  border-color: #ddd;
}

.pagination .page-item.disabled .page-link {
  color: #ccc;
  background-color: #f8f9fa;
  border-color: #ddd;
}

div#cartItems {
  overflow-y: auto;
  height: 75vh;
}

.border-t.p-4.w-100.position-absolute.bottom-0 {
  background: white;
}

@media screen and (max-width: 765px) {
  div#cartItems {
    height: 70vh !important;
    margin-left: 10px;
  }
}
#cartItems .card {
  flex-direction: row;
  max-width: 30em;
  color: #fff;
}
#cartItems .card img {
  max-width: 25%;
  margin: auto;
  padding: 0.5em;
  border-radius: 0.7em;
}
#cartItems .card-body {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#cartItems .text-section {
  max-width: 60%;
}
#cartItems .cta-section {
  max-width: 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}
#cartItems .cta-section .btn {
  padding: 0.2em 0.5em;
  font-size: 1em;
  color: #696969;
}
#cartItems .card-text {
  letter-spacing: 0.1em;
}

.cart-button {
  padding: 10px 20px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  margin: 20px;
}

.cart-button:hover {
  background-color: #45a049;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  background-color: white;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease-in-out;
  z-index: 1000;
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.close-button {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
}

.cart-content {
  padding: 20px;
}

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.main-cat-head {
  margin-bottom: 39px;
}
.filter-title,
.gradient-font {
  margin-bottom: 19px; /* 25px */
  line-height: 1;
  font-weight: 400 !important;
  font-size: 13px !important;
  color: #777 !important;
  padding: 0 !important;
  background: unset !important;
  -webkit-text-fill-color: unset !important;
}
.mb-39 {
  margin-bottom: 39px;
}
.mb-25 {
  margin-bottom: 25px;
}
.mb-26 {
  margin-bottom: 26px;
}
.mb-31 {
  margin-bottom: 31px;
}
.mb-8 {
  margin-bottom: 8px;
}
.mt-39 {
  margin-top: 39px !important;
}
.mt-25 {
  margin-top: 25px;
}
.custom_card_margin {
  margin-bottom: 7px;
  margin-top: 16px;
}
.prod-name {
  min-height: 46px;
}

#filter-form input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 13px;
  height: 13px;
  border: 2px solid #777; /* Default border color */
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  position: relative;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Checkbox when checked */
#filter-form input[type="checkbox"]:checked {
  background-color: #777; /* Background when checked */
  border-color: #777;
  box-shadow: 0px 0px 10px #77777761; /* Glowing effect */
  transform: scale(1.1); /* Slight zoom effect */
}

/* Checkbox checkmark animation */
#filter-form input[type="checkbox"]:checked::after {
  content: "\2713"; /* Unicode checkmark */
  font-size: 13px;
  color: white;
  position: absolute;
  opacity: 0;
  transform: scale(0);
  animation: checkmark-pop 0.3s ease-in-out forwards;
}

/* Hover effect */
#filter-form input[type="checkbox"]:hover {
  border-color: #777;
  transform: scale(1.2); /* Zoom effect */
}

/* Checkbox checkmark animation */
@keyframes checkmark-pop {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1.4);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
#filter-form label,
#filter-form span,
#filter-form button,
#filter-form input,
#productContainer input,
#productContainer label,
#productContainer select {
  font-size: 13px;
  line-height: 1;
  color: #777;
}

/*product grid css*/

#productContainer .swiper-button-prev,
#productContainer .swiper-button-next {
  background-color: rgba(0, 0, 0, 0.5);
  width: 36px !important;
  height: 36px !important;
  border-radius: 50%;
  color: #fff !important;
  top: 50%;
  transition: background-color 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: rgba(0, 0, 0, 0.7) Im !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 18px !important;
}

#productList .size-badge {
  padding: 5px 10px;
  border: 1px solid #777;
  border-radius: 4px;
  cursor: pointer;
  background-color: #777;
  font-size: 13px;
  font-weight: 400;
  color: #777 !important;
}
#productList .size-badge.active {
  color: #fff !important;
}

@keyframes bounce {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.4);
  }
  50% {
    transform: scale(0.95);
  }
  70% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.wishlist-bounce {
  animation: bounce 0.5s ease-in-out;
}

.wishlist-btn.filled i {
  color: #e3342f; /* red */
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card-animate {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}
.thumbnail-image {
  transition: transform 0.2s ease;
}
.thumbnail-image:hover {
  transform: scale(1.1);
  border-color: #999;
}
.main-image-wrapper img {
  min-width: 250px;
  max-width: 250px;
  height: 250px;
  object-fit: contain;
}

.color-select-swatch.active {
  border: 2px solid #e0ad35 !important;
  box-shadow: 0 0 6px #e0ad35;
  transform: scale(1.1);
}
#cartItems .card {
  flex-direction: row;
  max-width: 30em;
  color: #fff;
}
#cartItems .card img {
  max-width: 25%;
  margin: auto;
  padding: 0.5em;
  border-radius: 0.7em;
}
#cartItems .card-body {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#cartItems .text-section {
  max-width: 60%;
}
#cartItems .cta-section {
  max-width: 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}
#cartItems .cta-section .btn {
  padding: 0.2em 0.5em;
  font-size: 1em;
  color: #696969;
}
#cartItems .card-text {
  letter-spacing: 0.1em;
}

.cart-button {
  padding: 10px 20px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  margin: 20px;
}

.cart-button:hover {
  background-color: #45a049;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  background-color: white;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease-in-out;
  z-index: 1000;
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.close-button {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
}

.cart-content {
  padding: 20px;
}

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}
p.card-title.fw-bold.h5.text-dark {
  font-size: 13px;
}
p.card-text.text-sm.text-muted {
  font-size: 12px;
}
#quickViewLoader {
  z-index: 2;
  top: 35%;
  position: absolute;
  left: 50%;
}
#main-content {
  min-width: 100%;
  height: 100%;
}

#main-content .bg-secondary {
  background-color: #777 !important;
}

.transition-color {
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.color-item {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.custom-dropdown,
.filter-search-input {
  position: relative;
  cursor: pointer;
  padding: 0.375rem 0.375rem;
  font-size: 13px;
}
.dropdown-toggle-box {
  border: 1px solid #ccc;
  padding: 8px 12px;
  cursor: pointer;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dropdown-menu-box {
  max-height: 0;
  overflow-y: scroll;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;
  top: 9px;
  opacity: 0;
  /* transition: max-height 0.3s ease, opacity 0.3s ease; */
  transition: max-height 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  position: absolute;
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  z-index: 100;
}

/* When visible (we toggle this class with JS) */
.dropdown-menu-box.show {
  max-height: 342px;
  opacity: 1;
  border-top: none;
}

.search-input {
  width: 100%;
  padding: 8px;
  /* border-bottom: 1px solid #ddd; */
  border: 1px solid #777;
}

.dropdown-options {
  /* border: 1px solid #777; */

  height: 178px;
  overflow-y: scroll;
}

.dropdown-option {
  padding: 8px 12px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.dropdown-option.selected {
  background: linear-gradient(#e0ad3578, #cb971c59);
  font-weight: bold;
}
.checkmark {
  color: green;
}
.arrow {
  transition: transform 0.3s ease;
}
.dropdown-menu-box.show ~ .arrow {
  transform: rotate(180deg);
}

/* Modified */

.dropdown-options::-webkit-scrollbar-button {
  display: none;
}

.dropdown-options {
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: #777 transparent; /* Firefox */
}

/* WebKit-based browsers (Chrome, Safari, Edge) */
.dropdown-options::-webkit-scrollbar {
  width: 6px; /* thin scrollbar */
}

.dropdown-options::-webkit-scrollbar-thumb {
  background-color: #bbb;
  border-radius: 4px;
}

.dropdown-options::-webkit-scrollbar-track {
  background: transparent;
}

.dropdown-options::-webkit-scrollbar-button {
  display: none; /* hides up/down arrows */
  color: transparent;
  background-color: transparent;
  opacity: 0;
  height: 0;
  width: 0;
  display: block;
  background: transparent;
  opacity: 0;
  pointer-events: none;
}

.dropdown-options::-webkit-scrollbar-button:single-button {
  display: none;
  height: 0;
  width: 0;
}

#cover {
  height: 31px;
  width: 306px;
  z-index: 333;
  position: absolute;
}

.dropdown-options2 {
  /* border: 1px solid #777; */

  height: 178px;
  overflow-y: scroll;
}

.dropdown-option2 {
  padding: 8px 12px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.dropdown-option2.selected {
  background: linear-gradient(#e0ad3578, #cb971c59);
  font-weight: bold;
}

/* Modified */

.dropdown-options2::-webkit-scrollbar-button {
  display: none;
}

.dropdown-options2 {
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: #777 transparent; /* Firefox */
}

/* WebKit-based browsers (Chrome, Safari, Edge) */
.dropdown-options2::-webkit-scrollbar {
  width: 6px; /* thin scrollbar */
}

.dropdown-options2::-webkit-scrollbar-thumb {
  background-color: #bbb;
  border-radius: 4px;
}

.dropdown-options2::-webkit-scrollbar-track {
  background: transparent;
}

.dropdown-options2::-webkit-scrollbar-button {
  display: none; /* hides up/down arrows */
  color: transparent;
  background-color: transparent;
  opacity: 0;
  height: 0;
  width: 0;
  display: block;
  background: transparent;
  opacity: 0;
  pointer-events: none;
}

.dropdown-options2::-webkit-scrollbar-button:single-button {
  display: none;
  height: 0;
  width: 0;
}

.h-inc {
  padding-top: 16px;
  padding-bottom: 12px;
}

.custom-margin-top {
  margin-top: 5px;
}

.dropdown-options3 {
  /* border: 1px solid #777; */

  height: 178px;
  overflow-y: scroll;
}

.dropdown-option3 {
  padding: 8px 12px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.dropdown-option3.selected {
  background: linear-gradient(#e0ad3578, #cb971c59);
  font-weight: bold;
}

/* Modified */

.dropdown-options3::-webkit-scrollbar-button {
  display: none;
}

.dropdown-options3 {
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: #777 transparent; /* Firefox */
}

/* WebKit-based browsers (Chrome, Safari, Edge) */
.dropdown-options3::-webkit-scrollbar {
  width: 6px; /* thin scrollbar */
}

.dropdown-options3::-webkit-scrollbar-thumb {
  background-color: #bbb;
  border-radius: 4px;
}

.dropdown-options3::-webkit-scrollbar-track {
  background: transparent;
}

.dropdown-options3::-webkit-scrollbar-button {
  display: none; /* hides up/down arrows */
  color: transparent;
  background-color: transparent;
  opacity: 0;
  height: 0;
  width: 0;
  display: block;
  background: transparent;
  opacity: 0;
  pointer-events: none;
}

.dropdown-options3::-webkit-scrollbar-button:single-button {
  display: none;
  height: 0;
  width: 0;
}

.dropdown-options4 {
  /* border: 1px solid #777; */

  height: 178px;
  overflow-y: scroll;
}

.dropdown-option4 {
  padding: 8px 12px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.dropdown-option4.selected {
  background: linear-gradient(#e0ad3578, #cb971c59);
  font-weight: bold;
}

/* Modified */

.dropdown-options4::-webkit-scrollbar-button {
  display: none;
}

.dropdown-options4 {
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: #777 transparent; /* Firefox */
}

/* WebKit-based browsers (Chrome, Safari, Edge) */
.dropdown-options4::-webkit-scrollbar {
  width: 6px; /* thin scrollbar */
}

.dropdown-options4::-webkit-scrollbar-thumb {
  background-color: #bbb;
  border-radius: 4px;
}

.dropdown-options4::-webkit-scrollbar-track {
  background: transparent;
}

.dropdown-options4::-webkit-scrollbar-button {
  display: none; /* hides up/down arrows */
  color: transparent;
  background-color: transparent;
  opacity: 0;
  height: 0;
  width: 0;
  display: block;
  background: transparent;
  opacity: 0;
  pointer-events: none;
}

.dropdown-options4::-webkit-scrollbar-button:single-button {
  display: none;
  height: 0;
  width: 0;
}

.dropdown-options5 {
  /* border: 1px solid #777; */

  height: 178px;
  overflow-y: scroll;
}

.dropdown-option5 {
  padding: 8px 12px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.dropdown-option5.selected {
  background: linear-gradient(#e0ad3578, #cb971c59);
  font-weight: bold;
}

/* Modified */

.dropdown-options5::-webkit-scrollbar-button {
  display: none;
}

.dropdown-options5 {
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: #777 transparent; /* Firefox */
}

/* WebKit-based browsers (Chrome, Safari, Edge) */
.dropdown-options5::-webkit-scrollbar {
  width: 6px; /* thin scrollbar */
}

.dropdown-options5::-webkit-scrollbar-thumb {
  background-color: #bbb;
  border-radius: 4px;
}

.dropdown-options5::-webkit-scrollbar-track {
  background: transparent;
}

.dropdown-options5::-webkit-scrollbar-button {
  display: none; /* hides up/down arrows */
  color: transparent;
  background-color: transparent;
  opacity: 0;
  height: 0;
  width: 0;
  display: block;
  background: transparent;
  opacity: 0;
  pointer-events: none;
}

.dropdown-options5::-webkit-scrollbar-button:single-button {
  display: none;
  height: 0;
  width: 0;
}

.dropdown-options6 {
  /* border: 1px solid #777; */

  height: 178px;
  overflow-y: scroll;
}

.dropdown-option6 {
  padding: 8px 12px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.dropdown-option6.selected {
  background: linear-gradient(#e0ad3578, #cb971c59);
  font-weight: bold;
}

/* Modified */

.dropdown-options6::-webkit-scrollbar-button {
  display: none;
}

.dropdown-options6 {
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: #777 transparent; /* Firefox */
}

/* WebKit-based browsers (Chrome, Safari, Edge) */
.dropdown-options6::-webkit-scrollbar {
  width: 6px; /* thin scrollbar */
}

.dropdown-options6::-webkit-scrollbar-thumb {
  background-color: #bbb;
  border-radius: 4px;
}

.dropdown-options6::-webkit-scrollbar-track {
  background: transparent;
}

.dropdown-options6::-webkit-scrollbar-button {
  display: none; /* hides up/down arrows */
  color: transparent;
  background-color: transparent;
  opacity: 0;
  height: 0;
  width: 0;
  display: block;
  background: transparent;
  opacity: 0;
  pointer-events: none;
}

.dropdown-options6::-webkit-scrollbar-button:single-button {
  display: none;
  height: 0;
  width: 0;
}

.dropdown-options7 {
  /* border: 1px solid #777; */

  height: 178px;
  overflow-y: scroll;
}

.dropdown-option7 {
  padding: 8px 12px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.dropdown-option7.selected {
  background: linear-gradient(#e0ad3578, #cb971c59);
  font-weight: bold;
}

/* Modified */

.dropdown-options7::-webkit-scrollbar-button {
  display: none;
}

.dropdown-options7 {
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: #777 transparent; /* Firefox */
}

/* WebKit-based browsers (Chrome, Safari, Edge) */
.dropdown-options7::-webkit-scrollbar {
  width: 6px; /* thin scrollbar */
}

.dropdown-options7::-webkit-scrollbar-thumb {
  background-color: #bbb;
  border-radius: 4px;
}

.dropdown-options7::-webkit-scrollbar-track {
  background: transparent;
}

.dropdown-options7::-webkit-scrollbar-button {
  display: none; /* hides up/down arrows */
  color: transparent;
  background-color: transparent;
  opacity: 0;
  height: 0;
  width: 0;
  display: block;
  background: transparent;
  opacity: 0;
  pointer-events: none;
}

.dropdown-options7::-webkit-scrollbar-button:single-button {
  display: none;
  height: 0;
  width: 0;
}

.dropdown-options8 {
  /* border: 1px solid #777; */

  height: 178px;
  overflow-y: scroll;
}

.dropdown-option8 {
  padding: 8px 12px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.dropdown-option8.selected {
  background: linear-gradient(#e0ad3578, #cb971c59);
  font-weight: bold;
}

/* Modified */

.dropdown-options8::-webkit-scrollbar-button {
  display: none;
}

.dropdown-options8 {
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: #777 transparent; /* Firefox */
}

/* WebKit-based browsers (Chrome, Safari, Edge) */
.dropdown-options8::-webkit-scrollbar {
  width: 6px; /* thin scrollbar */
}

.dropdown-options8::-webkit-scrollbar-thumb {
  background-color: #bbb;
  border-radius: 4px;
}

.dropdown-options8::-webkit-scrollbar-track {
  background: transparent;
}

.dropdown-options8::-webkit-scrollbar-button {
  display: none; /* hides up/down arrows */
  color: transparent;
  background-color: transparent;
  opacity: 0;
  height: 0;
  width: 0;
  display: block;
  background: transparent;
  opacity: 0;
  pointer-events: none;
}

.dropdown-options8::-webkit-scrollbar-button:single-button {
  display: none;
  height: 0;
  width: 0;
}

.dropdown-options9 {
  /* border: 1px solid #777; */

  height: 178px;
  overflow-y: scroll;
}

.dropdown-option9 {
  padding: 8px 12px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.dropdown-option9.selected {
  background: linear-gradient(#e0ad3578, #cb971c59);
  font-weight: bold;
}

/* Modified */

.dropdown-options9::-webkit-scrollbar-button {
  display: none;
}

.dropdown-options9 {
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: #777 transparent; /* Firefox */
}

/* WebKit-based browsers (Chrome, Safari, Edge) */
.dropdown-options9::-webkit-scrollbar {
  width: 6px; /* thin scrollbar */
}

.dropdown-options8::-webkit-scrollbar-thumb {
  background-color: #bbb;
  border-radius: 4px;
}

.dropdown-options9::-webkit-scrollbar-track {
  background: transparent;
}

.dropdown-options9::-webkit-scrollbar-button {
  display: none; /* hides up/down arrows */
  color: transparent;
  background-color: transparent;
  opacity: 0;
  height: 0;
  width: 0;
  display: block;
  background: transparent;
  opacity: 0;
  pointer-events: none;
}

.dropdown-options9::-webkit-scrollbar-button:single-button {
  display: none;
  height: 0;
  width: 0;
}
/* 
#filterInner .show {
  z-index: 9999;
} */
h1.mb-0 {
  line-height: 1;
  font-size: 45px;
}
#productContainer {
  min-height: 400px;
}
.filter-sort-select {
  width: 24%;
}
#sortSelect {
  padding: 8px 12px;
  border-radius: 0;
}

.product-grid.d-grid.mt-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 0.375rem 0.375rem;
}
.filter-sort-select-container {
  padding: 0.375rem 0.375rem;
  padding-top: 0;
  margin-top: 26px !important;
}
#searchInput {
  border: 1px solid #ccc;
  border-radius: 0;
}
.border-radius-50 {
  border-radius: 50px;
}
/* Important Changes 
class="col-md-12" |

 class="d-grid" style="grid-template-columns: repeat(4, 1fr); gap: 1rem;"
 */

.pagination {
  list-style: none;
  display: inline-block;
  padding: 0;
  margin-top: 10px;
}
.pagination li {
  display: inline;
  text-align: center;
}
.pagination a {
  float: left;
  font-weight: 600;
  display: block;
  font-size: 13px;
  text-decoration: none;
  padding: 5px 12px;
  color: #fff;
  margin-left: -1px;
  border: 1px solid transparent;
  line-height: 1.5;
}
.pagination a.active {
  cursor: default;
}
.pagination a:active {
  outline: none;
}

.modal-6 {
  /* -moz-box-shadow: 0 2px 2px #333;
  -webkit-box-shadow: 0 2px 2px #333;
  box-shadow: 0 2px 2px #333; */
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
}
.modal-6 a {
  border-color: #ddd;
  color: #fff;
  background: #777;
  padding: 10px 15px;
}
.modal-6 a:hover {
  color: #fff;
  background-color: #e0ad35;
}
.modal-6 a.prev {
  -moz-border-radius: 50px 0 0 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px 0 0 50px;
  width: 50px;
  position: relative;
}
.modal-6 a.prev:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 100%;
  top: 0;
  right: 0;
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
}
.modal-6 a.next {
  -moz-border-radius: 0 50px 50px 0;
  -webkit-border-radius: 0;
  border-radius: 0 50px 50px 0;
  width: 50px;
  position: relative;
}
.modal-6 a.next:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}
.modal-6 a.active {
  border-color: #bbb;
  background: #e0ad35;
  color: #fff;
  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.25) inset;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.25) inset;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.25) inset;
}

.dropdown-menu-box .stbtn_fbtn .hover-text,
.stbtn_fbtn .hover-text {
  color: white !important;
}
.dropdown-options,
.dropdown-options2,
.dropdown-options3,
.dropdown-options4,
.dropdown-options5,
.dropdown-options6,
.dropdown-options7,
.dropdown-options8,
.dropdown-options9 {
  color: #777 !important;
}

button.stbtn_fbtn.categories_btn {
  width: -webkit-fill-available;
  font-size: 13px;
  font-weight: 600;
  border-radius: 10rem;
  color: #fff;
  border: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 1em 70px;
  cursor: pointer;
  transition: opacity 0.8s ease;
  box-shadow: 0 4px 6px -1px hsla(0, 0%, 0%, 0.1),
    0 2px 4px -2px hsla(0, 0%, 0%, 0.1);
  font-family: "inter, helvetica, sans-serif" !important;
}
button.stbtn_fbtn.btn-orange {
  box-shadow: unset !important;
}
.clearfilter {
  border-radius: 50px !important;
  padding: 1em 95px !important;
}
.clear-icon {
  font-size: 16px;
  transition: transform 0.3s ease-in-out;
}
.clearfilter:hover .clear-icon {
  transform: rotate(180deg);
}

.card_text_margin {
  margin-bottom: 0.7rem !important  ;
  /* margin-top: 15px; */
}
.card_margin_bottom {
  margin-bottom: 2px !important;
}
.added_shadow {
  border-bottom: 2px solid #00000021;
}

.hover-zoom_custom {
  transition: font-size 0.2s cubic-bezier(0.53, -0.54, 0.5, 1.18);
}

.hover-zoom_custom:hover {
  font-size: 17px;
}
.breadcrumb a:before {
  transition: background-color 0.4s ease;
}

.breadcrumb .categories_btn {
  transition: background-color 0.4s ease;
}

#filterInner .style_dropdown-menu-box {
  padding-top: 5.5% !important;
  width: 96.5% !important;
}
.custom_inline_padding {
  padding-inline: 0.375rem !important;
}

#filterInner .dropdown-menu-box.show {
  max-height: 362px !important;
  height: 362px !important;
}

.filter_custom_width18 {
  width: 18% !important;
}

#filterTagSection #selectedFilterList li {
  transition: background .3s ease;

  border: 1px solid #777 !important;
  border-radius: 50px !important;
  padding: 0.6em 11px !important;
  text-align: center !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  color: #777 !important;
  padding-right: 2px !important;
  padding-top: 1px;
}

#filterTagSection #selectedFilterList button {
  color: #777;
  font-size: 13px;
  font-weight: 800;
  padding-inline-end: 11px;
  position: relative;
  top: -1px;
  /* filter: invert(44%) sepia(0%) saturate(0%) hue-rotate(174deg) brightness(91%)
    contrast(85%); */
}

#filterTagSection #selectedFilterList li:hover {
  cursor: pointer;
  background-color: #777 !important;
}

#filterTagSection #selectedFilterList li:hover span {
  color: white !important;
}
#filterTagSection #selectedFilterList li:hover button {
  filter: invert(100%) sepia(0%) saturate(10000%) hue-rotate(0deg)
    brightness(150%) contrast(120%) !important;
}

.filter_animation li,
.filter_animation button {
  height: 0;
  transition: height 0.5s ease-out;
}
.filter_animation.show_filter {
  height: 100%;
}

@keyframes fadeInUpx {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.fadeInUpx-animation {
  animation: fadeInUpx 0.7s ease-out;
}
h5.mt-2 {
  font-size: 13px;
}
.apple-breadcrumb {
  font-size: 13px;
  font-weight: 500;
}

.apple-breadcrumb .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
}

.apple-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  padding: 0 10px;
  color: #999;
  font-size: 13px;
}

.apple-breadcrumb .breadcrumb-item a {
  color: #777;
  text-decoration: none;
  transition: color 0.2s ease;
}

.apple-breadcrumb .breadcrumb-item a:hover {
  color: #777; /* nice blue on hover */
}

.apple-breadcrumb .breadcrumb-item.active {
  color: #888;
}

div#navbarNavDropdown {
  background: transparent;
}

/* SIDEBAR */
.cta-section span,
.cartTotalLabel,
#cartTotal {
  color: #777 !important;
}

.cart-drawer {
  width: 600px;
}

.cart-drawer {
  right: -608px;
}
.sidebarQuantity {
  font-size: 13px;
  font-weight: 600 !important;
  color: #777 !important;
}

.cart-drawer .card-title,
.cart-drawer .card-body .card-text {
  color: #777 !important;
}

.cart-drawer .cartMath {
  font-weight: 800 !important;
  font-size: 13px !important;
}

.cart-drawer .colorSideCart {
  font-weight: 600;
  color: #777;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  background-color: white;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease-in-out;
  z-index: 1000;
}

.cart-drawer.open {
  right: 0;
}
#cart-drawer {
  .card-icons a {
    width: 40px;
    height: 40px;
    text-align: center;
    background-color: white;
    border-radius: 50%;
    padding: 8px;
    color: #333;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
  }
  .card-icons a:hover {
    transform: scale(1.1);
  }
  .card_text_margin {
    margin-bottom: 0.7rem !important  ;
    /* margin-top: 15px; */
  }

  .prod-name {
    min-height: 46px;
  }

  .card_margin_bottom {
    margin-bottom: 2px !important;
  }

  div#cartItems {
    overflow-y: auto;
    height: 75vh;
  }

  .border-t.p-4.w-100.position-absolute.bottom-0 {
    background: white;
  }
  #cartItems .card {
    flex-direction: row;
    max-width: 30em;
    color: #fff;
  }
  #cartItems .card img {
    max-width: 25%;
    margin: auto;
    padding: 0.5em;
    border-radius: 0.7em;
  }
  #cartItems .card-body {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  #cartItems .text-section {
    width: 60%;
  }
  #cartItems .cta-section {
    max-width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
  }
  #cartItems .cta-section .btn {
    padding: 0.2em 0.5em;
    font-size: 13px;
    color: #696969;
  }
  #cartItems .card-text {
    letter-spacing: 0.1em;
  }

  .cart-button {
    padding: 10px 20px;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin: 20px;
  }

  .cart-button:hover {
    background-color: #45a049;
  }

  .cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
  }

  .close-button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
  }

  .cart-content {
    padding: 20px;
  }

  .cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .cart-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  h3.card-text.fw-bold.h5.custom_card_margin.mt-0 {
    margin-bottom: 1rem;
  }

  .cart-header h2 {
    font-size: 28px;
    line-height: 34px;
    font-weight: 800;
  }

  .cartTotalLabel {
    font-size: 13px;
    line-height: 30px;
    font-size: 800;
    text-transform: uppercase;
  }

  #cartTotal {
    font-size: 13px;
    font-weight: 400;
    line-height: 23px;
  }

  .inDiv-cart-delete {
    display: none;
  }
  .original-cart-delete {
    display: block;
  }
  #cartItems .cta-section .btn {
    padding: 0em 0em;
    background: #e0ad35;
    color: white !important;
    font-weight: 600 !important;
    font-size: 16px;
    padding-inline: 20px;
    text-align: center;
  }
  .cta-section .quantity-controls > button:first-child {
    padding-inline: 0.6em !important;
    font-weight: 800 !important;
  }
}

.dropdown-menu-box .stbtn_fbtn {
  z-index: 999;
}
@media (max-height: 667px) {
  .sidecart-gap {
    padding-bottom: 0px !important;
    padding-top: 3px !important;
  }
  .sidecart-gap button {
    margin-bottom: 4px !important;
  }
  .sidecart-gap > div:first-child {
    margin-bottom: 6px !important;
  }
  #cartItems {
    padding-bottom: 66px !important;
  }
}

.dropdown-menu-box.show + .cover {
  z-index: 0;
}
#cover {
  width: 96.5% !important;
}

/* SELECT */
#productContainer label[for="sortSelect"] {
  font-weight: 600;
  font-size: 13px;
  padding-top: 4px;
}

.categoryFilter {
  display: none;
}

.custom-selecty {
  position: relative;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 0px;
  cursor: pointer;
  color: #777;
  user-select: none;
  font-size: 13px;
  padding: 0;
}

.custom-selecty .selected {
  padding: 4px 12px;
  padding-bottom: 5px;
}

.custom-selecty .options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #ccc;
  background: #fff;
  z-index: 1000;
}

.custom-selecty .options label {
  display: block;
  padding: 8px 12px;
  cursor: pointer;
  color: #777;
}

.custom-selecty .options label:hover,
.custom-selecty .options input:checked + span {
  background: #777;
  color: #fff !important;
}

.custom-selecty input[type="radio"] {
  display: none;
}

.custom-selecty .options label:has(input:checked) {
  background: #777;
  color: #fff;
}
/* MEDIA QUERIES  */

@media (max-width: 767px) {
  .product-card .card-icons {
  right: 15px;
  opacity: 1 !important;
  pointer-events: auto;
}
  .product-grid.d-grid.mt-4 {
    margin-top: 4px !important;
  }
  .filter-sort-select-container {
    margin-top: 0 !important;
  }
  .custom_inline_padding {
    padding-inline: 0.3rem !important;
    margin-bottom: 0rem !important;
  }
  .filtersDisplay {
    display: none !important;
  }
  .categoryFilterSmall {
    display: flex !important;
    position: relative;
    top: 20px;
    left: -2px;
  }
  .product-card .image-container {
    /* min-height: 300px; */
  }
  #clearFilters {
    margin-top: 10px !important;
  }
  #filterTagSection > span:first-child {
    font-size: 13px;
    font-weight: 600 !important;
  }
  #filterTagSection {
    padding: 6px;
    margin-top: 7px;
  }
  #selectedFilterList li span > *:first-child {
    width: 0%;
    font-size: 13px !important;
  }
  #selectedFilterList {
    gap: 0 !important;
    border: 1px solid #ccc !important;
  }

  #filterTagSection #selectedFilterList li {
    border-radius: 0px !important;
    width: 100%;
    border: 0 !important;
    border-top: 1px solid #ccc !important;
    padding-inline: 12px !important;
  }
  #filterTagSection #selectedFilterList li:first-child {
    border-top: 0 !important;
  }
  #selectedFilterList li span {
    line-height: 1.1;
    text-align: left;
    word-break: break-all;
    justify-content: space-between;
  }
  #forAnimate {
    flex-direction: column;
  }
  #forAnimate > div:first-child {
    width: 100% !important;
  }
  #filterInner .dropdown-menu-box.show {
    z-index: 336;
  }

  #productContainer .filter-search-input {
    max-height: 0 !important;
    overflow: hidden !important;
    display: block !important;
    transition: max-height 1s ease-in-out 0s, visibility 1s ease-in-out 0s;
    visibility: hidden;
  }

  #productContainer .filter-search-input.activeP {
    max-height: 175px !important;
    visibility: visible;
  }

  .section_space {
    padding-top: 28px !important;
    padding-inline: 1.56rem;
    overflow-x: hidden;
  }
  .section_space h1 {
    font-size: 26px;
  }
  .dropdown-menu-box .label .hover-text,
  .dropdown-menu-box .stbtn_fbtn .hover-text {
    color: #777 !important;
  }
  .filter-sort-select-container {
    flex-direction: column;
    padding-inline: 0;
  }
  .filter-sort-select-container > div {
    width: 100%;
  }
  .filter-sort-select-container .filter-sort-select {
    width: 96.4%;
  }
  .product-grid.d-grid.mt-4 {
    grid-template-columns: 1fr;
  }
  .image-container img {
    min-width: 100%;
  }

  .categories_btn .label .hover-text {
    color: #777 !important;
  }
  #quickViewModal .modal-content {
    height: 98vh;
    overflow-y: scroll;
    margin-bottom: 20px;
  }
  #quickViewModal .modal-content::-webkit-scrollbar {
    display: none;
  }
  #quickViewModal .modal-body {
    top: 0;
  }

  /* CART */

  .cart-drawer .card-title,
  .cart-drawer .card-body .text-section {
    width: 100% !important;
  }

  #cartItems .text-section {
    max-width: 100% !important;
  }

  .cart-drawer .card-body .text-section > p:nth-child(2) {
    padding-bottom: 0;
    margin-bottom: 3px;
  }
  #cartItems .cta-section {
    max-width: 100% !important;
    flex-direction: row !important;
    justify-content: space-between !important;
  }
  .cart-drawer .card-body > div:nth-child(3) {
    text-align: right;
  }
  .cart-drawer .card-body .text-section > p:nth-child(3) {
    padding-bottom: 7px;
  }

  .cart-drawer .cartMath {
    font-size: 12px !important;
  }
  .cart-drawer .card-title,
  .cart-drawer .card-body .card-text {
    font-size: 12px !important;
  }
  .cart-drawer {
    width: 320px;
  }
  .cart-drawer .card .card-body {
    padding-left: 0.4rem !important;
    padding-right: 0.2rem !important;
  }
  #cart-drawer {
    .product-container-padding {
      margin-top: 0px !important;
    }

    div#cartItems {
      margin-left: 0px;
    }
    .cart-content {
      padding-inline: 15px;
    }
    .trash-style {
      margin-left: 4px;
      padding-right: 2px;
    }

    #cartItems .cta-section .btn {
      padding: 0em 0em;
      background: #e0ad35;
      color: white !important;
      font-weight: 600 !important;
      font-size: 16px;
      padding-inline: 20px;
      text-align: center;
    }
    #cartItems .card {
      width: 100%;
    }

    #cartItems .card-body {
      flex-direction: row;
      flex-wrap: wrap;
      gap: 10px;
    }

    .original-cart-delete {
      display: none;
    }
    .inDiv-cart-delete {
      display: block;
    }

    #cartItems {
      padding-bottom: 63px !important;
    }
    #toggleParent {
      display: flex;
      justify-content: space-between;
    }
    .upload-card {
      flex-direction: column !important;
      max-width: 100%;
    }
    #cartItems .cta-section {
      gap: 26%;
    }
    .cta-section > span {
      font-size: 12px;
      font-weight: 500 !important;
    }

    .cta-section .quantity-controls > button:first-child {
      padding-inline: 0.6em !important;
      font-weight: 800 !important;
    }
    #cartItems .card {
      padding-top: 10px;
      padding-bottom: 10px;
    }
  }

  .label .master,
  .label .hover-text {
    font-size: 13px !important;
  }
  #quickViewModal h4 {
    font-size: 1rem !important;
    margin-top: 10px;
  }
  #quickViewModal #addToCartButton {
    margin-top: 24px;
  }
  .categoryFilter {
    display: block;
    color: #777;
    display: flex;
    align-items: anchor-center;
    justify-content: end;
    gap: 10%;
    font-size: 1.2rem;
  }
  #filterInner {
    display: none;
  }
  #filterInner.active {
    display: block;
    display: flex;
  }

  .filter-search-input {
    display: none !important;
  }

  .filter-search-input.active {
    display: block !important;
    display: flex !important;
    flex-direction: column;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .product-card .card-icons {
  right: 15px;
  opacity: 1 !important;
  pointer-events: auto;
}
  #cartItems {
    padding-bottom: 33px !important;
  }

  #cartItems .cta-section .btn {
    padding: 0em 0.5em;
  }
  .section_space {
    padding-top: 28px !important;
    padding-inline: 1.56rem;
    overflow-x: hidden;
  }
  .section_space h1 {
    font-size: 32px;
  }
  .dropdown-menu-box .label .hover-text,
  .dropdown-menu-box .stbtn_fbtn .hover-text {
    color: #777 !important;
  }
  .filter-sort-select-container {
    flex-direction: row;
    gap: 4%;
    padding-inline: 0;
    align-items: flex-start !important;
  }
  .filter-sort-select-container > div {
    width: 45%;
  }
  .filter-sort-select-container .filter-sort-select {
    width: 45%;
    padding: 0.375rem 0.375rem;
    display: flex;
    flex-direction: column;
  }
  .product-grid.d-grid.mt-4 {
    grid-template-columns: 1fr 1fr;
  }
  .image-container img {
    min-width: 100%;
  }

  .categories_btn .label .hover-text {
    color: #777 !important;
  }

  #quickViewModal .modal-content::-webkit-scrollbar {
    display: none;
  }
  #quickViewModal .modal-body {
    top: 0;
  }

  .custom-dropdown {
    min-width: 30%;
  }
  .dropdown-toggle-box {
    padding: 8px 6px;
  }
  #filterInner .col-md-3 {
    width: 33.3%;
  }
  .label .master,
  .label .hover-text {
    font-size: 13px !important;
  }
  #cartItems .card-body {
    padding-inline: 2px;
  }
  #cartItems .cta-section {
    margin-right: 4px;
  }
  .cta-section > span {
    font-size: 12px;
    font-weight: 500 !important;
  }
  #cartItems .cta-section .btn {
    font-size: 15px;
  }
  #cartItems {
    padding-bottom: 33px !important;
  }
  #quickViewModal .modal-dialog {
    width: 73%;
    max-width: 100%;
  }
  #cartItems .card {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  #cartItems {
    padding-bottom: 33px;
  }

  #cartItems .cta-section .btn {
    padding: 0em 0.5em;
  }

  .dropdown-menu-box .label .hover-text,
  .dropdown-menu-box .stbtn_fbtn .hover-text {
    color: #777 !important;
  }
  .filter-sort-select-container {
    flex-direction: row;
    gap: 4%;
    padding-inline: 0;
    align-items: flex-start !important;
  }
  .filter-sort-select-container > div {
    width: 45%;
  }
  .filter-sort-select-container .filter-sort-select {
    width: 45%;
    padding: 0.375rem 0.375rem;
    display: flex;
    flex-direction: column;
  }
  .product-grid.d-grid.mt-4 {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .image-container img {
    min-width: 100%;
  }

  .categories_btn .label .hover-text {
    color: #777 !important;
  }

  #quickViewModal .modal-content::-webkit-scrollbar {
    display: none;
  }
  #quickViewModal .modal-body {
    top: 0;
  }

  .custom-dropdown {
    min-width: 30%;
  }
  .dropdown-toggle-box {
    padding: 8px 6px;
  }
  #filterInner .col-md-3 {
    width: 33.3%;
  }
  .label .master,
  .label .hover-text {
    font-size: 13px !important;
  }
  #cartItems .card-body {
    padding-inline: 2px;
  }
  #cartItems .cta-section {
    margin-right: 4px;
  }
  .cta-section > span {
    font-size: 12px;
    font-weight: 500 !important;
  }
  #cartItems .cta-section .btn {
    font-size: 15px;
  }
  #cartItems {
    padding-bottom: 33px !important;
  }
  #quickViewModal .modal-dialog {
    width: 73%;
    max-width: 100%;
  }
  #cartItems .card {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .section_space {
    padding-inline: 7%;
  }
  div#cartItems {
    padding-bottom: 50px !important;
  }
  .cart-drawer {
    width: 476px;
    right: -476px;
  }
  #cartItems .card {
    width: 98%;
  }
}

@media (min-width: 1200px) and (max-width: 1599px) {
  #cartItems .card-body {
    padding-inline: 2px;
  }
  #cartItems .cta-section {
    margin-right: 4px;
  }
  .cta-section > span {
    font-size: 12px;
    font-weight: 500 !important;
  }
  #cartItems .cta-section .btn {
    font-size: 15px;
  }
  #cartItems {
    padding-bottom: 33px !important;
  }
  #quickViewModal .modal-dialog {
    width: 73%;
    max-width: 100%;
  }
  #cartItems .card {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  div#cartItems {
    padding-bottom: 50px;
  }
  .cart-drawer {
    width: 476px;
    right: -476px;
  }
  #cartItems .card {
    width: 98%;
  }

  div#cartItems {
    padding-bottom: 50px !important;
  }

  .product-grid.d-grid.mt-4 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .image-container img {
    max-width: 100%;
  }
}

@media (min-width: 1600px) {
  #cartItems .card {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  div#cartItems {
    padding-bottom: 50px;
  }
  .cart-drawer {
    width: 476px;
    right: -476px;
  }
  #cartItems .card {
    width: 98%;
  }

  div#cartItems {
    padding-bottom: 50px !important;
  }
  #cartItems .card-body {
    padding-inline: 2px;
  }
  #cartItems .cta-section {
    margin-right: 4px;
  }
  .cta-section > span {
    font-size: 13px;
    font-weight: 500 !important;
  }
  #cartItems .cta-section .btn {
    font-size: 15px;
  }
  #cartItems {
    padding-bottom: 33px !important;
  }
}

@media (min-width: 3800px) {
  .product-grid.d-grid.mt-4 {
    height: 68vh;
  }
}

@media (min-width: 474px) and (max-width: 767px) {
  .product-grid.d-grid.mt-4 {
    grid-template-columns: 1fr 1fr;
  }
}

/* .swiper-backface-hidden .swiper-slide {
  height: 500px !important;
} */

.product-card .card-body .card-text {
  margin-bottom: 16px !important;
}


#cartItems .cta-section > span {
  font-size: 13px !important;
  font-weight: 400 !important;
}
#cartItems > div{
  border-color:#777;
  border-radius: 0;
}

.filterBtnCategory {
  font-weight: 600 !important;
}

