.cart-page {
  padding: 40px;
  max-width: 1000px;
  margin: auto;
}

.cart-page h1 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--accent-gold);
}

/* Cart Table */
.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.cart-table th, .cart-table td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #ddd;
  color: var(--text-light);
}

.cart-table th {
  background: var(--bg-dark);
  color: var(--white);
  font-weight: 600;
}

.cart-table img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 6px;
}

/* Quantity */
.qty-btn {
  background: #000;
  color: #fff;
  padding: 5px 10px;
  border: none;
  cursor: pointer;
  margin: 0 5px;
}

.qty-btn:hover {
  background: #333;
}

/* Trash Icon */
.delete-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #fff; /* clean white */
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Summary */
#cart-summary {
  text-align: right;
}

.checkout-btn {
  background: #000;
  color: #fff;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  border-radius: 4px;
}

.checkout-btn:hover {
  background: #333;
}

/* Empty Cart */
.cart-empty {
  text-align: center;
  font-size: 20px;
  color: var(--text-light);
}
