body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f9;
}

h1 {
  text-align: center;
  margin: 20px 0;
}

#cart-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.cart-item {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 200px;
  position: relative;
}

.cart-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.cart-item-details {
  margin-top: 10px;
}

.cart-item h3 {
  font-size: 18px;
  margin: 10px 0;
}

.cart-item p {
  color: #555;
  font-size: 16px;
}

.remove-item {
  background: #ff4d4d;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}

.remove-item:hover {
  background: #ff1a1a;
}

#cart-summary {
  text-align: center;
  margin: 20px;
}

#total-price {
  font-size: 20px;
  font-weight: bold;
}

#checkout-button, #clear-cart {
  background: #4caf50;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin: 10px;
}

#checkout-button:hover, #clear-cart:hover {
  background: #45a049;
}

#clear-cart {
  background: #f44336;
}

#clear-cart:hover {
  background: #e53935;
}
