.category-list-section {
    width: 100%;
    clear: both;
    float: left;
    width: 100%;
    position: relative;
    overflow: hidden;
}


.categories-bg {
    background-color: #fff;
    padding: 20px;
}

.category-columns {
    column-count: 4;
    column-gap: 20px;
    max-width: 100%;
    margin: 0;
}

.category-column {
    display: inline-block;
    width: 100%;
    break-inside: avoid;
}

.category-header h2 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 0 0 8px 0;
    text-transform: uppercase;
}

.category-content a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
    display: block;
}

.category-content a:hover {
    text-decoration: underline;
}

.toggle-icon {
    display: none;
}

/* Responsive düzenlemeler */
@media (max-width: 991px) {
    .category-columns {
        column-count: 1;
    }

    .category-block {
        border-bottom: 1px solid #eee;
    }

    .category-header {
        padding: 10px 0;
        margin: 0;
        position: relative;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .toggle-icon {
        display: block;
    }

    .category-content {
        display: none;
        padding: 0 0 15px 15px;
    }

    .category-block.active .category-content {
        display: block;
    }
}

@media (max-width: 767px) {
    .categories-bg {
        padding: 15px;
    }

    .products-section-title {
        margin-bottom: 15px;
        font-size: 20px;
    }
}
span.toggle-icon {
    font-size: 20px;
    color: black;
}