.faf-widget-container {
    position: relative;
    font-family: inherit;
}

.faf-mobile-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    background: #111;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    width: 100%;
    justify-content: center;
}

.faf-offcanvas {
    background: #fff;
    padding: 20px;
}

.faf-offcanvas-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.faf-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.faf-filter-group {
    margin-bottom: 25px;
}

.faf-filter-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
}

.faf-filter-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faf-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

.faf-overlay {
    display: none;
}

@media (max-width: 767px) {
    .faf-mobile-toggle {
        display: flex;
    }
    
    .faf-offcanvas {
        position: fixed;
        top: 0;
        left: -300px;
        width: 280px;
        height: 100vh;
        background: #fff;
        z-index: 9999;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        overflow-y: auto;
    }
    
    .faf-offcanvas.faf-active {
        left: 0;
    }
    
    .faf-offcanvas-header {
        display: flex;
    }
    
    .faf-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
    }
    
    .faf-overlay.faf-active {
        opacity: 1;
        visibility: visible;
    }
}
