/* Custom Scrollbars and Premium E-Commerce Micro-interactions */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Card Lift & Glow on Hover */
.product-card {
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.22s ease-out;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px -10px rgba(15, 23, 42, 0.08);
}

/* Modal and Drawer transitions */
.backdrop-blur-xs {
  backdrop-filter: blur(4px);
}

/* Active buttons and clickable elements */
button, select, input, textarea {
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}