/* ===============================
   Scrollable lists
   =============================== */
.shop-scroll {
  flex: 1 1 auto;
  overflow-y: auto;
  max-height: 234px; 
  padding-right: 4px;
  display: flex;
  flex-direction: column;
}
.shop-scroll::-webkit-scrollbar { width: 6px; }
.shop-scroll::-webkit-scrollbar-thumb {
  background: #c4b5fd;
  border-radius: 3px;
}
.shop-scroll::-webkit-scrollbar-thumb:hover {
  background: #a78bfa;
}
