/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 10 2025 | 10:59:43 */
.custom-product-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.category-item {
    margin-bottom: 5px;
}

.category-toggle {
    background-color: #f5dfbb;
    border: none;
    padding: 12px;
    font-size: 18px;
    font-weight: bold;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 5px;
    color: black;
}

.category-toggle:hover {
    background-color: #e0cfa3;
}

/* Styling för underkategorier */
.subcategory-item {
    margin-left: 15px;
}

.subcategory-toggle {
    background-color: transparent; /* Ingen bakgrund */
    color: black;
    border: none; /* Tar bort ramen */
    padding: 8px;
    font-size: 16px;
    font-weight: bold;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 5px;
}

.subcategory-toggle:hover {
    background-color: #f5dfbb;
}

/* Ta bort underline från "Visa allt i ..." länkar */
.subcategory-list li > a,
.category-item > ul > li > a {
    text-decoration: none !important;
    color: black;
    font-weight: normal;
    display: block;
    padding: 5px 0;
    margin-left: 0;
}

/* Hover-effekt för "Visa allt i ..." länkar */
.subcategory-list li > a:hover,
.category-item > ul > li > a:hover {
    background-color: transparent;
    text-decoration: none !important;
    color: black;
}

/* Underkategori-listor */
.subcategory-list {
    list-style: none;
    padding-left: 15px;
    display: none;
}

/* Mobilanpassning */
@media (max-width: 768px) {
    .custom-product-category-list {
        gap: 3px;
    }

    .category-toggle {
        font-size: 16px;
        padding: 10px;
    }

    .subcategory-toggle {
        font-size: 14px;
        padding: 6px;
    }

    .subcategory-list a {
        font-size: 14px;
    }
}
