/* 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;
  padding: 20px 0;
}
.cart-items {
  background-color: white;
  width: calc( 100% - 400px);
  float: left;
  padding: 50px 150px;
}
.cart-image-cart {
  float: left;
  width: 25%;
}
.cart-item-cart {
  width: 50%;
  float: left;
  padding: 0 20px;
}
.cart-item-cart p {
  margin: 0;
}
.cart h1 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 50px;
}

/* Empty cart message */
.empty-cart{
  text-align: center;
  color: #888;         /* muted gray */
  font-size: 1rem;
  font-style: italic;
  margin: 40px 0;
}

.cart-summary {
  width: 400px;
  float: left;
  padding: 50px;
}


.cart-item-delete-btn {
  width: 25%;
  float: left;
  text-align: right;
  font-size: 20px;
}
.cart-item-delete-btn p {
  margin: 0;
}
.cart-item-delete-btn a { 
  text-decoration: none;
  color: #000000;
}

/* 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: #178240;
  color: #fff;
  width: 100%;
  text-align: center;
  margin: 30px 0;
}
.btn.primary:hover {
  background: #0b4723;
}

.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;
  }
}