/* Minimal custom CSS - only for cases where Tailwind utilities are insufficient */

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

/* Custom animations if needed */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

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

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

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

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

::-webkit-scrollbar-thumb {
    background: #00C853;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #007E33;
}
