/* Hide scrollbar for horizontal scroller */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Best seller card styles */
.best-seller-card {
    min-width: 280px;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .best-seller-card {
        min-width: 320px;
    }
}

/* Add subtle border to logo containers */
.product-card > div:first-child,
.best-seller-card > div:first-child {
    border-bottom: 1px solid #f3f4f6;
}

/* Cart updated animation */
@keyframes pulse-scale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.cart-updated {
    animation: pulse-scale 0.3s ease-in-out;
}

/* Fade in animation for notifications */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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