/* Custom Styles for WiWiSnack */

/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Product Card Hover Effect */
.product-card {
  transition: all 0.25s ease-in-out;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px -10px rgba(245, 158, 11, 0.15);
}

/* Tab button state transition */
.cat-tab {
  transition: all 0.2s ease;
}

/* Custom Scrollbar for Modal Cart */
#cart-items-container::-webkit-scrollbar {
  width: 5px;
}

#cart-items-container::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 999px;
}

#cart-items-container::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}

#cart-items-container::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}
