/* ===============================
   CART SECTION
================================ */
.cart-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.cart-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
}

/* ===============================
   CART LIST
================================ */
.cart-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cart-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  margin-bottom: 15px;
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 8px;
}

.cart-list img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
}

.cart-list button {
  margin-left: auto;
  background: transparent;
  border: none;
  color: #dc2626;
  cursor: pointer;
  font-size: 0.85rem;
}

/* ===============================
   CART SUMMARY
================================ */
.cart-summary {
  margin-top: 30px;
  padding: 20px;
  background: #f9fafb;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.cart-actions {
  text-align: right;
}

/* ===============================
   EMPTY CART
================================ */
.empty-cart {
  text-align: center;
  color: #6b7280;
  margin-top: 40px;
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 600px) {
  .cart-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-list button {
    margin-left: 0;
    margin-top: 10px;
  }

  .cart-actions {
    text-align: center;
  }
}
