
.category-item:hover .category-img {
    transform: scale(1.1);
}

.category-item:hover .category-icon {
    transform: scale(1.1);
}

.banner-overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
}

.tab-container::-webkit-scrollbar {
    height: 4px;
}

.tab-container::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 2px;
}

.tab-container::-webkit-scrollbar-thumb {
    background: #22c55e;
    border-radius: 2px;
}

.tab-container::-webkit-scrollbar-thumb:hover {
    background: #16a34a;
}

.product-tab.active {
    background: rgb(23 163 74 / 10%);
    transform: translateY(-1px);
    color: #16a34a;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.product-grid {
    animation: fadeIn 0.6s ease-in-out;
}

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

.partner-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.article-card:hover {
    transform: translateY(-3px);
}