/* Categories Section Styling */
.categories-section {
    margin-bottom: 30px;
}

.categories-section h3 {
    margin-bottom: 15px;
}

.categories {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
}

.categories::-webkit-scrollbar {
    display: none;
}

.category {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.category:hover {
    transform: translateY(-5px);
}

.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    color: white;
    font-size: 24px;
}

.category-name {
    font-size: 14px;
    text-align: center;
}

/* Category highlight effect when selected */
.category.active .category-icon {
    box-shadow: 0 0 0 3px white, 0 0 0 6px var(--primary-color);
}

@media (max-width: 576px) {
    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .category-name {
        font-size: 12px;
    }
}