.custom-subcategories {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
    scroll-behavior: smooth;
    margin-top: 5px;
    margin-bottom: 15px;

}

/* скрываем некрасивый скролл (но оставляем прокрутку) */
.custom-subcategories::-webkit-scrollbar {
    height: 6px;
}

.custom-subcategories::-webkit-scrollbar-track {
    background: transparent;
}

.custom-subcategories::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.custom-subcategories::-webkit-scrollbar-thumb:hover {
    background: #999;
}
@media (max-width: 500px) {
    .custom-subcategories {
        /* скрываем скролл */
        -ms-overflow-style: none;  /* IE и Edge */
        scrollbar-width: none;     /* Firefox */
    }
    .custom-subcategories::-webkit-scrollbar {
        display: none;             /* Chrome, Safari */
    }
}

.custom-subcategories::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.custom-subcategories::-webkit-scrollbar-track {
    background: transparent;
}

.custom-subcategories .subcategory {
    flex: 0 0 auto;
    padding: 14px 25px;
    background: #eee;
    text-decoration: none;
    border-radius: 20px;
    color: #333;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.2s ease!important;
}

.custom-subcategories .subcategory:hover {
    color: #DC0000;
    background: #ddd;
}

.custom-subcategories .subcategory.active {
    background: #000;
    color: #fff;
}