/* Cart Page */
.cart {
  width: 100%;
  float: left;
  margin-top: 80px; /* align with fixed header */
  padding: 40px 7%;  
  background-color: #f9f9f9;
}
.cart-items-cart {
  width: 100%;
  float: left;
}
.cart-items {
  background-color: white;
  width: 50%;
  float: left;
  padding: 50px;
}
.cart-image-cart {
  float: left;
  width: 25%;
}
.cart-item-cart {
  width: 50%;
  float: left;
  padding: 0 10px;
}

.cart h1 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 30px;
}

/* Empty cart message */
.empty-cart{
  text-align: center;
  color: #888;         /* muted gray */
  font-size: 1rem;
  font-style: italic;
  margin: 40px 0;
}

.cart-summary {
  width: 50%;
  float: left;
  padding: 50px;
}


.cart-item-delete-btn {
  width: 25%;
  float: left;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.btn.primary {
  background: #111;
  color: #fff;
}
.btn.primary:hover {
  background: #333;
}

.btn.danger {  
  background: #e53935;
  color: #fff;
}
.btn.danger:hover {
  background: #c62828;
}

/* Responsive */
@media (max-width: 700px) {
  .cart-table th, .cart-table td {
    padding: 10px;
    font-size: 0.85rem;
  }
  .cart h2 {
    text-align: center;
  }
}