.filter-card_c9727648 {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 24px;
    font-family: inherit;
    box-shadow: 0 2px 12px rgba(0,0,0,0.02);
}

.cat-section-header_c9727648 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.cat-header-title_c9727648 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.reset-btn_c9727648 {
    background-color: #c0985c;
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}

.reset-btn_c9727648:hover {
    filter: brightness(0.92);
}

.categories-list_c9727648 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.parent-category-item_c9727648 {
    display: flex;
    flex-direction: column;
}

.category-row_c9727648 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
}

.cat-item-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
    flex-grow: 1;
}

.cat-checkbox {
    width: 18px;
    height: 18px;
    border: 1.5px solid #cccccc;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.cat-checkbox:checked {
    accent-color: #c0985c;
}

.toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 4px;
    background-color: #2c2d30;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
    padding: 0;
}

.toggle-btn.expanded {
    background-color: #c0985c;
}

.toggle-btn .chevron-icon {
    transition: transform 0.2s;
}

.toggle-btn.expanded .chevron-icon {
    transform: rotate(180deg);
}

.subcategories-list_c9727648 {
    margin-left: 26px;
    padding-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-left: 1px solid #eaeaea;
    padding-left: 12px;
}

.subcategory-row_c9727648 {
    display: flex;
    align-items: center;
    padding: 2px 0;
}

.subcategory-row_c9727648 .cat-item-label {
    font-size: 14px;
    font-weight: 400;
}

/* Mobile Toggle Layout Rules */
.mobile-toggle-btn_c9727648 {
    display: none;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background-color: #2c2d30;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 15px;
    transition: opacity 0.2s;
}

.mobile-toggle-btn_c9727648:hover {
    opacity: 0.9;
}

@media (max-width: 767px) {
    .mobile-toggle-btn_c9727648 {
        display: flex;
    }
    .ajax-product-filter-c9727648 .filter-card_c9727648 {
        display: none;
    }
    .ajax-product-filter-c9727648.mobile-expanded .filter-card_c9727648 {
        display: block !important;
        animation: slideDown_c9727648 0.3s ease-out;
    }
}

@keyframes slideDown_c9727648 {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
