/* ========================================
   CART PAGE
======================================== */

.cart-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 40px;
}

.cart-glass {
  width: 100%;
  max-width: 1100px;
  padding: 60px;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.18),
    rgba(255,255,255,0.05)
  );

  backdrop-filter: blur(45px);
  -webkit-backdrop-filter: blur(45px);

  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 32px;

  box-shadow: 0 50px 120px rgba(0,0,0,0.8);
}

.cart-glass h1 {
  margin-bottom: 40px;
  letter-spacing: 3px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.cart-item img {
  width: 120px;
  border-radius: 12px;
}

.cart-info {
  flex: 1;
}

.cart-info h3 {
  margin-bottom: 8px;
}

.cart-info p {
  opacity: 0.8;
  margin-bottom: 8px;
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-qty button {
  width: 30px;
  height: 30px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  cursor: pointer;
}

.cart-qty button:hover {
  background: #fff;
  color: #000;
}

.remove-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
}

.remove-btn:hover {
  color: #fff;
}

.cart-summary {
  margin-top: 40px;
  text-align: right;
}
