body {
  font-family:
    Segoe UI,
    sans-serif;
  margin: 0;
  padding: 40px;
  background: #eef2f7;
}

.title {
  text-align: center;
  margin-bottom: 30px;
  color: #2c3e50;
}

.products {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  margin-bottom: 50px;

  justify-content: flex-start;
}

.card {
  background: white;
  width: 220px;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}

.card h3 {
  margin: 8px 0;
}

.card p {
  margin: 4px 0;
  color: #555;
}

.card button {
  margin-top: 10px;
  padding: 10px;
  width: 100%;
  border: none;
  background: #3498db;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

.card button:hover {
  background: #2980b9;
}

.card button:disabled {
  background: #aaa;
  cursor: not-allowed;
}

.cart {
  width: 320px;
  margin: 0 auto;
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.cart h2 {
  text-align: center;
}

#cartItems {
  list-style: none;
  padding: 0;
  max-height: 200px;
  overflow-y: auto;
}

#cartItems li {
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
}

#checkout {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background: #27ae60;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

#checkout:hover {
  background: #1f8a4d;
}
