.glass-modal .modal-dialog {
  max-width: 520px;
  width: 92%;
  margin: 1.5rem auto;
  max-height: 90vh;
}

.glass-modal .modal-content {
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.glass-aqua-container {
  background: rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 16px 40px -8px rgba(13, 148, 136, 0.16), 0 6px 20px -4px rgba(2, 132, 199, 0.08) !important;
  border-radius: 20px !important;
  overflow: hidden;
}

.glass-header {
  border-bottom: 1px solid rgba(20, 184, 166, 0.16) !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(240, 253, 250, 0.6) 100%);
  padding: 1rem 1.25rem;
}

.modal-icon-badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(45, 212, 191, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0F2F2E;
}

.glass-close-btn {
  opacity: 0.65;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.glass-close-btn:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.glass-body {
  overflow-y: auto;
  max-height: calc(90vh - 180px);
  background: rgba(255, 255, 255, 0.45);
}

.glass-footer {
  border-top: 1px solid rgba(20, 184, 166, 0.16) !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(240, 253, 250, 0.75) 100%);
  padding: 1rem 1.25rem;
}

.cart-glass-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 14px;
  box-shadow: 0 4px 14px -3px rgba(13, 148, 136, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cart-glass-item:last-child {
  margin-bottom: 0;
}

.cart-glass-item:hover {
  box-shadow: 0 6px 18px -4px rgba(13, 148, 136, 0.12);
}

.cart-glass-thumb-wrap {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(240, 253, 250, 0.8);
  border: 1px solid rgba(20, 184, 166, 0.15);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-glass-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-glass-info {
  flex-grow: 1;
  min-width: 0;
}

.cart-glass-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0F2F2E;
  margin: 0 0 2px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-glass-unit-price {
  font-size: 0.82rem;
  color: #5F8783;
  margin-bottom: 6px;
}

.cart-glass-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.cart-glass-qty-group {
  display: inline-flex;
  align-items: center;
  background: rgba(240, 253, 250, 0.9);
  border: 1px solid rgba(20, 184, 166, 0.25);
  border-radius: 8px;
  overflow: hidden;
}

.cart-glass-qty-btn {
  border: none;
  background: transparent;
  color: #0D9488;
  font-weight: 700;
  width: 24px;
  height: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease;
}

.cart-glass-qty-btn:hover {
  background: rgba(45, 212, 191, 0.25);
}

.cart-glass-qty-value {
  font-size: 0.85rem;
  font-weight: 600;
  min-width: 22px;
  text-align: center;
  color: #0F2F2E;
}

.cart-glass-subtotal {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0D9488;
}

.cart-glass-remove-btn {
  border: none;
  background: transparent;
  color: #99B2AF;
  padding: 6px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}

.cart-glass-remove-btn:hover {
  color: #EF4444;
  background: rgba(239, 68, 68, 0.1);
}

.glass-summary-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #3B615D;
}

.glass-summary-total {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0D9488;
}

.btn-glass-primary {
  background: linear-gradient(135deg, #0D9488 0%, #0284C7 100%) !important;
  color: #FFFFFF !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 10px 18px !important;
  font-weight: 600 !important;
  box-shadow: 0 8px 20px -4px rgba(13, 148, 136, 0.28) !important;
  transition: all 0.2s ease !important;
}

.btn-glass-primary:hover {
  box-shadow: 0 12px 26px -4px rgba(13, 148, 136, 0.42) !important;
  transform: translateY(-1px);
}

.btn-glass-secondary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 253, 250, 0.8) 100%) !important;
  color: #0F766E !important;
  border: 1px solid rgba(20, 184, 166, 0.3) !important;
  border-radius: 12px !important;
  padding: 10px 18px !important;
  font-weight: 600 !important;
  transition: all 0.2s ease !important;
}

.btn-glass-secondary:hover {
  background: rgba(255, 255, 255, 1) !important;
  border-color: #0D9488 !important;
  transform: translateY(-1px);
}

.text-muted-glass {
  color: #5F8783;
  font-size: 0.95rem;
}

.shop-cart-toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1080;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.shop-cart-toast {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-left: 4px solid #0D9488;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 12px 32px -6px rgba(13, 148, 136, 0.22);
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0F2F2E;
  font-weight: 600;
  font-size: 0.92rem;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
}

.shop-cart-toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.shop-cart-toast-icon {
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
}