/* quantity controls start */
.quantity-controls button {
  width: 40px;
  font-size: 20px;
}

/* quantity  */
.quantity-wrapper {
  font-family: Arial, sans-serif;
  width: 210px;
}

.quantity-box {
  /* border: 1px solid #ccc;
            border-radius: 5px; */
  overflow: hidden;
  height: 36px;
}

.quantity-box input[type="number"] {
  width: 40px;
  text-align: center;
  border: none;
  outline: none;
  -moz-appearance: textfield;
  border: solid 1px lightgray;
  height: 100%;
  font-size: 16px;
}

.quantity-box input::-webkit-outer-spin-button,
.quantity-box input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.qty-btn {
  background-color: #fff;
  border: none;
  width: 36px;
  height: 100%;
  font-size: 18px;
  cursor: pointer;
}

button.decreaseQty {
  border: solid 1px #0c0000;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

button.increaseQty {
  border: solid 1px #0c0000;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

/* quantity  */

.cart-btn-cont {
  background: #4e4934;
  color: #ffffff;
  border-radius: 4px;
  width: 234px;
}

.cart-btn {
  color: #ffffff;
  padding: 12px;
  width: 100% !important;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.price-text-wrapper {
  display: inline-block;
  overflow: hidden;
  height: 1.2em;
  position: relative;
  width: 60px;
  /* fixed width if needed */
}

.price-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: top 50ms ease-in-out;
  text-align: left;
}

@media (max-width: 768px) {
  .cart-btn-cont {
    width: 100%;
  }

  .quantity-wrapper {
    width: 100%;
  }
}
.modal-body {
  font-size: 16px;
}
.modal-body p {
  word-spacing: 3px;
}

/* quantity  */

.cart-btn-cont {
  background: #4e4934;
  color: #ffffff;
  border-radius: 4px;
}

.cart-btn {
  color: #ffffff;
  padding: 12px;
  max-width: 200px;
  width: 180px;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.price-text-wrapper {
  display: inline-block;
  overflow: hidden;
  height: 1.2em;
  /* adjust based on your font size */
  position: relative;
}

.price-text {
  display: inline-block;
  transition: transform cubic-bezier(0.55, 0.055, 0.675, 0.19) ease;
  will-change: transform;
}
/* quantity controls end */

/* filter slider */
.scroll-btn {
  background: transparent;
  color: #efa016;
  border: none;
  font-size: 17px;
  /* font-size: 30px; */
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.super-filter {
  border-radius: 8px !important;
  text-align: center;
  min-width: 170px;
  font-size: 15px;
  font-weight: 400;
  /* background-color: #efa016 !important; */
  /* border-color: #efa016; */
  background: #ffffff !important;
  border: none;
  transition: box-shadow 0.3s ease-in-out, transform 0.2s ease-in-out;
  color: black !important;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.super-filter:hover {
  transform: translateY(-5px);
  color: #ed8b00 !important;
  font-weight: 600;
}

.box img {
  width: auto;
  height: 300px;
  border-radius: 25px;
  padding: 8px;
  max-width: 450px;
}

.filter-selected {
  transform: translateY(-5px);
  color: #ed8b00 !important;
  font-weight: 600;
}

.card-body .card-title {
  font-weight: 600;
}

.super-filter img {
  height: 50px;
  width: auto;
  object-fit: cover;
  margin-right: 10px;
  border-radius: 8px;
}

.no-scrollbar {
  overflow-x: hidden;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For IE and Edge */
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
  /* For Chrome, Safari, and Opera */
}

@media (max-width: 1200px) {
  .super-filter {
    min-width: 204px !important;
  }
}

@media (max-width: 1024px) {
  .super-filter {
    min-width: 212px !important;
  }
}

@media (max-width: 991px) {
  .super-filter {
    min-width: 206px !important;
  }
}

@media (max-width: 400px) {
  .super-filter {
    min-width: 100% !important;
  }
}
/* filter slider */
