/* Cart item styling */

.cart-page {
  padding: 20px 0;
}

.cart-items h3,
.cart-summary h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.cart-list {
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 5px;
  background-color: #f9f9f9;
}

.product-widget {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  position: relative;
}

/* .product-widget .product-img img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
} */

.product-widget .product-body {
  flex: 1;
  margin-left: 15px;
}

.product-widget .product-body .product-name a {
  font-size: 16px;
  color: #333;
  text-decoration: none;
}

.product-widget .product-body .product-price {
  font-size: 14px;
  color: #666;
}

.product-widget .delete {
  position: absolute;
  top: 0;
  left: 0;
  height: 14px;
  width: 14px;
  text-align: center;
  font-size: 10px;
  padding: 0;
  background: #1e1f29;
  border: none;
  color: #FFF;
}

.cart-summary {
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 5px;
  background-color: #f9f9f9;
}

.cart-summary .summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 16px;
}

.cart-summary .summary-item.total {
  font-weight: bold;
}

.checkout-btn {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #D10024;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
}

/* .checkout-btn:hover {
  background-color: #D10024;
  color: #fff;
} */

.cart-page .custom-cart{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.cart-page .custom-summary{
  position: relative;
  padding: 0px 30px 30px;
  /* border-right: 1px solid #E4E7ED;
  border-left: 1px solid #E4E7ED;
  border-bottom: 1px solid #E4E7ED; */
}

.cart-summary{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

@media only screen and (max-width: 1001px) {
  .custom-cart{
    gap: 30px;
  }
  .carts{
    width: 100%;
  }
  .custom-summary{
    width: 100%;
  }
}
