/* Mobile Fix CSS - Designed to hide desktop elements in mobile view */

@media only screen and (max-width: 768px) {
    /* Hide quick category buttons in mobile */
    .ACİL.İLANLAR,
    .GALERİDEN.İLANLAR, 
    .YENİ.İLANLAR,
    .DÜŞÜK.FİYATLI,
    .ŞEHİR.İLANLARI,
    a[href*="urgent=1"],
    a[href*="owner=galeri"],
    a[href*="price_range=low"],
    a[href*="condition=new"],
    .quick-categories-section,
    .desktop-pro-buttons-area,
    .desktop-categories-sidebar,
    .category-card {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
        z-index: -99 !important;
    }
    
    /* Additional fixes for mobile view */
    .main-content {
        padding-bottom: 60px !important; /* Space for bottom nav */
    }
    
    /* Target specific homepage category elements */
    .category-card.urgent,
    .category-card.galeri,
    .category-card.featured,
    .category-card.budget,
    .category-card.luxury {
        display: none !important;
    }
}
