@import url("https://fonts.googleapis.com/css2?family=Caprasimo&family=Dosis:wght@200..800&family=Encode+Sans+Expanded:wght@100;200;300;400;500;600;700;800;900&family=Macondo&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&display=swap");

body {
  font-family: Arial, sans-serif;
  background: #f4f4f4;
  margin: 0;
  padding: 0; /* remove the 20px padding */
}


.cart-container {
  max-width: 800px;
  margin: auto;
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-top: 20px; /* add this instead */
}

.cart-container h1 {
  text-align: center;
  margin-bottom: 25px;
}


.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fafafa;
  margin-bottom: 15px;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.cart-item img {
  height: 80px;
  width: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.item-details {
  flex: 1;
  margin-left: 15px;
}

.item-details h3 {
  margin: 0 0 5px 0;
}

.item-price {
  font-weight: bold;
}


.quantity-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-btn {
  width: 30px;
  height: 30px;
  background: #ddd;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: 0.2s;
}

.qty-btn:hover {
  background: #ccc;
}

.qty-number {
  width: 30px;
  text-align: center;
  font-weight: bold;
}

.remove-btn {
  background: none;
  border: none;
  color: #ff4444;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s;
}
.remove-btn:hover {
  color: #cc0000;
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 2px solid #ddd;
}

.total-label {
  font-weight: bold;
}


.cart-actions {
  text-align: center;
  margin-top: 25px;
}

.checkout-btn {
  background: black;
  color: white;
  padding: 12px 40px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}

.checkout-btn:hover {
  background: #333;
}
