/* Pastel Minimal Modal Custom Enhancements */
#shopBasketModal {
  z-index: 55;
  transition: opacity 0.2s ease-in-out;
}

#shopBasketModal .modal-card {
  max-height: 90vh;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease-in-out;
}

/* Smooth Custom Scrollbar for Modal Body */
#shopBasketModal .overflow-y-auto {
  scrollbar-width: thin;
  scrollbar-color: #C5CCC7 #FAF8F5;
  -webkit-overflow-scrolling: touch;
}

#shopBasketModal .overflow-y-auto::-webkit-scrollbar {
  width: 6px;
}

#shopBasketModal .overflow-y-auto::-webkit-scrollbar-track {
  background: #FAF8F5;
  border-radius: 4px;
}

#shopBasketModal .overflow-y-auto::-webkit-scrollbar-thumb {
  background-color: #C5CCC7;
  border-radius: 4px;
}

#shopBasketModal .overflow-y-auto::-webkit-scrollbar-thumb:hover {
  background-color: #9FA8A3;
}