.new-card-product .cart_card_wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.new-card-product .cart_card_wrapper .cart_product_card {
  display: flex;
  align-items: center;
  box-shadow: 0px 0px 5px #00000033;
  border-radius: 10px;
  background: #f3f3f3;
  padding: 4px;

  transition: all 0.3s ease;
}
.new-card-product .cart_card_wrapper .cart_product_img {
  width: 141px;
  min-width: 175px;
  height: 110px;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  background: white;
}
.new-card-product .cart_card_wrapper .cart_product_img img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.new-card-product .cart_card_wrapper .cart_product_content {
  flex: 1;
  padding-left: 16px;
}
.new-card-product .cart_card_wrapper .cart_product_content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: break-word;
  word-break: normal;
}
.new-card-product .cart_card_wrapper .cart_product_desc {
  font-size: 13px;
  color: #707070;
  margin-bottom: 0px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: break-word;
  word-break: normal;
}
.new-card-product .cart_card_wrapper .cart_bottom_row {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.new-card-product .cart_card_wrapper .cart_price {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}
.new-card-product
  .cart_card_wrapper
  .cart_product_content
  .Increment_decrement_btn_holder {
  transform: scale(0.95);
}
.new-card-product .delivery-notes {
  padding: 4px 10px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0.5px solid #707070;
  cursor: pointer;
  border-radius: 5px !important;
}
.new-card-product .delivery-notes span {
  color: #707070;
  font-size: 13px;
  font-weight: 500;
}
.new-card-product .delivery-notes svg {
  color: #75438e;
}

.new-card-product .empty_cart_message {
  width: 100%;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.new-card-product .empty_cart_message h4 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
}

.new-card-product .empty_cart_message p {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 1199px) {
  .new-card-product .cart_card_wrapper .cart_product_img {
    width: 130px;
    min-width: 130px;
    height: 105px;
  }
  .new-card-product .cart_card_wrapper .cart_product_content h4 {
    font-size: 17px;
  }
}
@media (max-width: 1199px) {
  .new-card-product .delivery-notes {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .new-card-product .cart_card_wrapper .cart_product_card {
    padding: 10px;
  }
  .new-card-product .cart_card_wrapper .cart_product_img {
    width: 90px;
    min-width: 90px;
    height: 90px;
  }
  .new-card-product .cart_card_wrapper .cart_product_content {
    padding-left: 10px;
  }
  .new-card-product .cart_card_wrapper .cart_product_content h4 {
    font-size: 15px;
  }
  .new-card-product .cart_card_wrapper .cart_product_desc {
    font-size: 12px;
  }
  .new-card-product .cart_card_wrapper .cart_price {
    font-size: 15px;
  }
  .new-card-product .delivery-notes span {
    font-size: 12px;
  }
  .new-card-product .empty_cart_message h4 {
    margin: 0 0 3px;
    font-size: 15px;
  }
  .new-card-product .empty_cart_message p {
    margin: 0;
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .new-card-product .cart_card_wrapper .cart_product_card {
    padding: 10px;
    flex-direction: column;
    align-items: start;
    gap: 15px;
  }
  .new-card-product .cart_card_wrapper .cart_product_content {
    padding-left: 0px;
    width: 100%;
  }
  .new-card-product .delivery-notes {
    flex-direction: row !important;
  }
}
