/* Custom styles */
.filter-size.active {
  background-color: rgb(147 51 234);
  color: white;
  border-color: rgb(147 51 234);
}

.filter-color.active {
  border-color: rgb(147 51 234);
  border-width: 3px;
}

input[type="checkbox"]:checked {
  accent-color: rgb(147 51 234);
}

input[type="range"] {
  accent-color: rgb(147 51 234);
}

/* Product image hover effect */
.product-image {
  transition: transform 0.3s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

/* Cart animation */
.cart-item-enter {
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: rgb(147 51 234);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(126 34 206);
}
