.CommonProductCard-section {
  /* width: 220px; */
  height: 100%;
  background: #fff;
  border: 1px solid #cfcfcf;
  border-radius: 16px;
  position: relative;
  /* overflow: hidden; */
  font-family: sans-serif;
}

.CommonProductCard-section .badge {
  position: absolute;
  top: 0px;
  left: 0px;
  background: #a3c526;
  color: #fff;
  padding: 7px 13px;
  font-size: 12px;
  border-radius: 12px 0px;
}

.CommonProductCard-section .badge-red {
  background: #c54126 !important;
}

.CommonProductCard-section .wishlist {
  position: absolute;
  top: 2px;
  right: 2px;
  cursor: pointer;
  background: #ffffff;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  aspect-ratio: 1/1;
  padding: 0 !important;
}

.CommonProductCard-section .wishlist svg {
  font-size: 17px;
}

.CommonProductCard-section .image-box {
  text-align: center;
  padding: 10px 0;
  background: #f5f5f5;
  height: 180px;
}

.CommonProductCard-section .image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.CommonProductCard-section .content {
  padding: 10px;
}

.CommonProductCard-section .rating-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.CommonProductCard-section .category {
  font-size: 12px;
  color: #999;
  margin-bottom: 0px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.CommonProductCard-section .rating-row {
  display: flex;
  align-items: center;
  gap: 2px;
}

.CommonProductCard-section .review {
  font-size: 12px;
  color: #666;
}

.CommonProductCard-section .title {
  font-size: 14px;
  font-weight: 600;
  color: #0a5c91;
  margin: 6px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: 90%;
  height: 34px;
}

.CommonProductCard-section .variant {
  margin: 8px 0;
}

.CommonProductCard-section .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.CommonProductCard-section .price {
  color: #0a5c91;
  font-weight: 600;
  font-size: 21px;
  margin: 0;
}

.CommonProductCard-section .star-icon {
  color: #ffc107;
  font-size: 14px;
}

/*-------------- react select --------------*/
.CommonProductCard-section .select__control {
  min-height: 30px !important;
  height: 30px;
  width: 50%;
  border-radius: 8px !important;
  border: 2px solid #799a00 !important;
  font-size: 12px;
  background: #ffffff;
  box-shadow: none !important;
}

.CommonProductCard-section .select__control--is-focused {
  border-color: #799a00 !important;
}

.CommonProductCard-section .select__single-value {
  font-size: 12px;
  color: #799a00 !important;
}

.CommonProductCard-section .select__dropdown-indicator {
  padding: 4px !important;
  color: #799a00 !important;
}

.CommonProductCard-section .select__indicator-separator {
  display: none;
}

.CommonProductCard-section .select__menu {
  font-size: 11px;
  overflow: hidden;
  z-index: 99;
  background: #ffffff !important;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
}

.CommonProductCard-section .select__option {
  padding: 5px;
  margin: 0 !important;
  position: relative;
  z-index: 1;
}

.CommonProductCard-section .select__option--is-focused {
  background-color: #799a0021 !important;
}

.CommonProductCard-section .select__option--is-selected {
  background-color: #799a00 !important;
  color: #fff;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .CommonProductCard-section .title {
    margin: 3px 0;
  }

  .CommonProductCard-section .image-box {
    height: 170px;
  }

  .CommonProductCard-section .select__control {
    min-height: 30px !important;
    height: 30px;
    width: 55%;
  }

  .CommonProductCard-section .price {
    font-size: 20px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .CommonProductCard-section .price {
    font-size: 20px;
  }

  .CommonProductCard-section .select__control {
    min-height: 30px !important;
    height: 30px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {}

@media (min-width: 576px) and (max-width: 767.98px) {}

@media (min-width: 0px) and (max-width: 575.98px) {
  .CommonProductCard-section .select__control {
    width: 90px;
  }

  .CommonProductCard-section .bottom {
    align-items: start;
    gap: 5px;
    flex-direction: column;
  }

  .CommonProductCard-section .title {
    font-size: 13px;
    -webkit-line-clamp: 2;
    width: 100%;
  }

  .CommonProductCard-section .rating-wrapper {
    align-items: start;
    flex-direction: column;
  }

  .CommonProductCard-section .price {
    font-size: 15px;
  }

  .CommonProductCard-section .image-box {
    height: 140px;
  }

  .CommonProductCard-section .badge {
    padding: 6px 12px;
    font-size: 10px;
  }

  .CommonProductCard-section .Add_to_Cart {
    width: 100% !important;
  }

  .CommonProductCard-section .Add_to_Cart_btn {
    width: 100% !important;
  }

  .CommonProductCard-section .title {
    height: 32px;
  }
}