/* cart */
.cart-table th {
  background: #f1f1f1;
  font-weight: 600;
}

.cart-product img {
  border-radius: 8px;
  transition: transform 0.3s;
}

.cart-product img:hover {
  transform: scale(1.05);
}

.cart-summary {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.cart-summary h3 {
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.checkout-button {
  background: linear-gradient(135deg, #007bff, #0056b3);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  transition: 0.3s;
}

.checkout-button:hover {
  background: linear-gradient(135deg, #0056b3, #003d80);
  transform: translateY(-2px);
}

/* Coupon box */
.coupon-box input {
  border-radius: 30px 0 0 30px;
  border: 1px solid #ddd;
  padding-left: 15px;
}

.coupon-box button {
  border-radius: 0 30px 30px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .cart-table thead {
    display: none;
  }

  .cart-table tbody tr {
    display: block;
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 10px;
    background: #fff;
  }

  .cart-table tbody td {
    display: inline-block;
    justify-content: space-between;
    padding: 8px;
  }

  .cart-table tbody td img {
    max-width: 80px;
  }
}

