/* Cart Global Styles */
body {
  background-color: #f8f9fa;
}
.cart-container {
  padding: 40px 0;
}

/* Product Item Styles */
.cart-item {
  background: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #e9ecef;
  position: relative;
}
.cart-item img {
  width: 100%;
  max-width: 120px;
  border-radius: 8px;
}
.cart-item-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.cart-item-meta {
  font-size: 0.85rem;
  color: #6c757d;
  line-height: 1.4;
}
.cart-item-price {
  font-weight: bold;
  font-size: 1.1rem;
  text-align: right;
}

/* Quantity Controls */
.qty-group {
  width: 150px;
  background: #e5e5e5;
  font-family: Verdana, Geneva, Tahoma, sans-serif !important;
}
.qty-group .btn {
  background: #d5d5d5;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  line-height: 1;
  border-color: #d5d5d5;
  font-family: Verdana, Geneva, Tahoma, sans-serif !important;
  font-size: 19px;
}
.qty-group .form-control {
  text-align: center;
  border-left: none;
  border-right: none;
  font-weight: normal;
  background: #e5e5e5;
  font-family: Verdana, Geneva, Tahoma, sans-serif !important;
}

/* Sidebar Summary */
.summary-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.summary-total {
  border-top: 1px solid #dee2e6;
  padding-top: 15px;
  margin-top: 15px;
  font-weight: bold;
  font-size: 1.25rem;
}
.promo-badge {
  background: #f1f8ff;
  border: 1px dashed #007bff;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.85rem;
}
