.cart-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  width: 80%;
  margin: 40px auto;
}

.cart-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 12px;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cart-img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 12px;
}

.cart-info {
  display: flex;
  flex-direction: column;
}

.cart-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}
.cart-summary {
  text-align: center;
  margin-top: 30px;
}

.checkout-btn {
  margin-top: 15px;
  padding: 14px 30px;
  background: black;
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
}

.cart-controls button {
  width: 30px;
  height: 30px;
  border: 1px solid #ddd;
  background: #f9f9f9;
  cursor: pointer;
  border-radius: 6px;
  font-weight: bold;
}

.cart-controls button:hover {
  background: #eee;
}

.remove-btn {
  background: none;
  border: none;
  color: #ff3b30;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
}

.remove-btn:hover {
  text-decoration: underline;
}

.empty-cart {
  text-align: center;
  font-size: 25px;
  padding-top: 20px;
}

#go-shopping {
  background-color: rgb(175, 232, 41);
  color: black;
  padding: 12px 25px;
  font-size: 15px;
  font-weight: bold;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  margin-top: 25px;
}

.empcart {
  width: 200px;
  border-radius: 10px;
  transition: 0.3s;
  display: block;
  margin: 30px auto 0;
}