

.mobile-bottom-actions {
    display: none;
    
}


.mobile-filter-header,
.mobile-filter-footer {
    display: none;
}

@media (max-width: 768px) {

    
    .desktop-only {
        display: none !important;
    }

    
    .mobile-only {
        display: block;
        
    }

    
    .mobile-bottom-actions {
        display: flex;
        position: sticky;
        top: 16px;
        left: 0;
        background-color: var(--color-surface);
        z-index: 1000;
        padding: 0;
        width: 100%;
        overflow: hidden;
        border-bottom: 1px solid var(--color-border);
        border-radius: 30px;
        box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 15px;
    }



    .btn-mobile-action {
        flex: 1;
        background: white;
        border: none;
        padding: 12px 10px;
        font-weight: 600;
        color: #000000;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.2s;
    }

    .btn-mobile-action:active {
        background-color: #f8f9fa;
    }

    .action-divider {
        width: 1px;
        background-color: #e9ecef;
    }

    
    .filters-column {
        display: none;
        
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: white;
        z-index: 2000;
        padding: 0;
        overflow-y: auto;
        
        transform: translateY(100%);
        transition: transform 0.3s ease-in-out;
    }

    .filters-column.open {
        display: block;
        
        transform: translateY(0);
    }

    
    
    .filters-column {
        display: flex !important;
        
        flex-direction: column;
        transform: translateY(100%);
        
        visibility: hidden;
    }

    .filters-column.open {
        transform: translateY(0);
        visibility: visible;
    }

    
    .mobile-filter-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        border-bottom: 1px solid var(--color-border);
        background: white;
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .mobile-filter-header h3 {
        margin: 0;
        font-size: 1.2rem;
        color: var(--color-text);
    }

    .close-filters-btn {
        background: none;
        border: none;
        font-size: 2rem;
        line-height: 1;
        color: var(--color-text);
        cursor: pointer;
        padding: 0 10px;
    }

    
    .sidebar-filters {
        flex: 1;
        overflow-y: auto;
        padding: 20px;
        background: #f8f9fa;
    }

    .sidebar-filters .filter-group {
        background: white;
        padding: 15px;
        border-radius: 12px;
        margin-bottom: 15px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }

    .sidebar-filters .filter-group h3 {
        margin-top: 0;
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    
    .mobile-filter-footer {
        display: block;
        padding: 15px 20px;
        border-top: 1px solid var(--color-border);
        background: white;
        position: sticky;
        bottom: 0;
    }

    .btn-apply-filters {
        background-color: var(--color-primary);
        color: white;
        border: none;
        padding: 12px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
    }
}