/* Palette & Styling: Soft Pastel Blue & Dark Teal */
:root {
  --cart-primary: #1E40AF;
  --cart-primary-light: #DBEAFE;
  --cart-primary-dark: #172554;
  --cart-accent-teal: #0F766E;
  --cart-accent-teal-light: #CCFBF1;
  --cart-accent-teal-dark: #134E4A;
  --cart-bg-main: #F8FAFC;
  --cart-bg-subtle: #F0FDF4;
  --cart-bg-card: #FFFFFF;
  --cart-border-subtle: #E2E8F0;
  --cart-border-accent: #BAE6FD;
  --cart-text-primary: #0F172A;
  --cart-text-secondary: #475569;
  --cart-surface-shadow: 0 10px 30px -5px rgba(15, 118, 110, 0.07), 0 4px 12px -2px rgba(30, 64, 175, 0.04);
}

/* Modal Responsiveness & Scrollability Rules */
#shopCartModal .custom-cart-dialog {
  max-width: 720px;
  margin: 1.75rem auto;
  height: auto;
}

#shopCartModal .custom-cart-content {
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  background-color: var(--cart-bg-card);
  box-shadow: var(--cart-surface-shadow);
  overflow: hidden;
}

#shopCartModal .custom-cart-header {
  background: linear-gradient(135deg, var(--cart-primary) 0%, var(--cart-accent-teal) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

#shopCartModal .custom-cart-header .modal-title,
#shopCartModal .custom-cart-header h5,
#shopCartModal .custom-cart-header h5.modal-title,
#shopCartModalLabel {
  color: #FFFFFF !important;
}

#shopCartModal .custom-cart-body {
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  flex: 1 1 auto;
  background-color: var(--cart-bg-card);
  color: var(--cart-text-primary);
}

#shopCartModal .custom-cart-footer {
  border-top: 1px solid var(--cart-border-subtle);
  flex-shrink: 0;
}

/* Product Row Styling */
.cart-product-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  background-color: var(--cart-bg-main);
  border-color: var(--cart-border-subtle) !important;
}

.cart-item-row {
  border-bottom: 1px solid var(--cart-border-subtle);
}

.cart-item-row:last-child {
  border-bottom: none;
}

.cart-item-title {
  color: var(--cart-text-primary);
  font-size: 0.95rem;
}

.cart-item-title:hover {
  color: var(--cart-accent-teal);
}

.cart-qty-control {
  max-width: 110px;
}

.cart-qty-control .form-control {
  border-color: var(--cart-border-subtle);
  padding: 0.25rem 0.2rem;
}

.cart-qty-control .btn {
  border-color: var(--cart-border-subtle);
  background-color: var(--cart-bg-main);
  color: var(--cart-text-secondary);
}

/* Custom Cart Toast */
.custom-cart-toast {
  background: linear-gradient(135deg, var(--cart-primary) 0%, var(--cart-accent-teal) 100%) !important;
  border-radius: 8px;
}

/* Badge Counter */
[data-cart-count] {
  background-color: var(--cart-accent-teal);
  color: #ffffff;
  font-size: 0.75rem;
  padding: 0.25em 0.55em;
  border-radius: 50rem;
}

/* Mobile Adjustments */
@media (max-width: 576px) {
  #shopCartModal .custom-cart-dialog {
    max-width: 95%;
    margin: 0.75rem auto;
  }
  #shopCartModal .custom-cart-content {
    max-height: 94vh;
  }
  .cart-product-img {
    width: 50px;
    height: 50px;
  }
  .cart-qty-control {
    max-width: 95px;
  }
}