/* Museum-like scrollbar styling */
#orderCartModal ::-webkit-scrollbar {
  width: 6px;
}
#orderCartModal ::-webkit-scrollbar-track {
  background: #F5F1EB;
}
#orderCartModal ::-webkit-scrollbar-thumb {
  background: #EAE4DC;
  border-radius: 4px;
}
#orderCartModal ::-webkit-scrollbar-thumb:hover {
  background: #C1121F;
}

#orderCartModal {
  scrollbar-width: thin;
  scrollbar-color: #EAE4DC #F5F1EB;
}

/* Ensure smooth scrolling within modal */
#orderCartModal .overflow-y-auto {
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}