/* Cart Page */
#cart { padding: 40px 80px; }
#cart table { border-collapse: collapse; }
#cart table thead { background: #088178; color: #fff; }
#cart table thead td { padding: 14px 20px; font-size: 14px; font-weight: 600; }
#cart table tbody tr { border-bottom: 1px solid #eee; transition: 0.2s; }
#cart table tbody tr:hover { background: #f9f9f9; }
#cart table tbody td { padding: 14px 20px; font-size: 14px; color: #555; vertical-align: middle; }
#cart table tbody td img { width: 70px; border-radius: 8px; }
#cart table tbody td input { width: 70px; padding: 6px; border: 1px solid #ddd; border-radius: 4px; text-align: center; font-size: 14px; }
#cart table tbody td a { color: #e74c3c; font-size: 18px; }
#cart table tbody td .item-total { font-weight: 700; color: #088178; }

#Checkout-Details {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 80px;
  flex-wrap: wrap;
  gap: 30px;
}
#coupon { flex: 1; min-width: 250px; }
#coupon h3 { font-size: 18px; margin-bottom: 15px; }
#coupon div { display: flex; gap: 10px; }
#coupon input {
  flex: 1; padding: 12px 15px; border: 1px solid #ddd;
  border-radius: 4px; font-size: 14px; outline: none;
}

#sub-total { min-width: 300px; }
#sub-total h3 { font-size: 18px; margin-bottom: 15px; }
#sub-total table { width: 100%; border-collapse: collapse; }
#sub-total table tr { border-bottom: 1px solid #eee; }
#sub-total table td { padding: 12px 0; font-size: 14px; color: #555; }
#sub-total table td:last-child { text-align: right; font-weight: 600; }
#sub-total button { margin-top: 20px; width: 100%; background: #088178; color: #fff; }
#sub-total button:hover { background: #056e63; }

.empty-cart {
  text-align: center; padding: 80px 20px;
  display: none;
}
.empty-cart i { font-size: 60px; color: #ccc; margin-bottom: 20px; }
.empty-cart h3 { font-size: 24px; color: #555; margin-bottom: 10px; }
.empty-cart p { color: #888; }
.empty-cart a { display: inline-block; margin-top: 20px; padding: 12px 30px; background: #088178; color: #fff; border-radius: 6px; text-decoration: none; font-weight: 600; }
