.child-categories-wrapper {
    margin-bottom: 10px;
}

.filters-title {
    font-size: 19px;
    margin-bottom: 10px;
    color: #333; /* Change this to your preferred color */
}

.child-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
}

@media (max-width: 900px) {
    .child-categories {
        grid-template-columns: repeat(4, 1fr) !important; /* Force 4 columns */
    }
}

.child-category {
    margin: 10px;
    text-align: center;
}

.child-category a {
    text-decoration: none;
    color: #0090D1;
}

.child-category a:hover {
    color: #66bf3f;
}

/* Hide the filters title if no child categories exist */
.child-categories-wrapper:empty .filters-title {
    display: none;
}
