﻿.category-scroll {
    overflow-x: auto;
    overflow-y: visible;
    padding: 12px 0;
}

.category-item {
    flex: 0 0 auto;
    width: 100px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 12px;
    padding: 8px 4px; 
}

    .category-item:hover {
        transform: scale(1.08);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        background: #fff;
        z-index: 5; 
        position: relative;
    }

    .category-item img {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border: 2px solid #eee;
        border-radius: 50%;
        transition: border-color 0.2s ease;
    }

    .category-item:hover img {
        border-color: #0d6efd;
    }
