.carousel {
  border-radius: 30px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.corner-label {
  position: absolute;
  font-size: 12px;
  font-weight: bold;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 5px;
  border-radius: 5px;
}
.corner-label.top-left {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #f8efda;
  color: black;
  font-size: 12px;
  padding: 5px 10px;
  border: 1px solid #333;
  border-radius: 15px;
}
.corner-label.bottom-left {
  position: absolute;
  bottom: 10px;
  left: 20px;
  background-color: #f8efda;
  color: black;
  font-size: 12px;
  padding: 5px 10px;
  border: 1px solid #333;
  border-radius: 15px;
}
.products .cart-modal {
  border-radius: 20px;
  display: none;
  position: absolute;
  top: 90px;
  right: 50px;
  min-width: 300px;
  z-index: 1000;
  background-color: white;
  color: black;
  border: 1px solid #ccc;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.products .cart-product {
  border: 1px solid #ddd;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
}
.products .cart-product-title {
  font-weight: bold;
}
.products .cart-product-price {
  color: #888;
}
.products .adjust-quantity {
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 5px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.trash-icon {
  cursor: pointer;
  color: red;
}
.trash-icon:hover {
  color: darkred;
}
.active {
  background-color: #007bff;
  color: white;
}
@media only screen and (max-width: 1000px) {
  .products .cart-modal {
    top: 140px;
    right: 30px;
    padding: 10px;
    margin-right: 0;
  }
  .products .cart-product {
    padding: 5px;
  }
  .products .adjust-quantity {
    width: 25px;
    height: 25px;
  }
}
