/* Mobilní styly pro vyhledávací formulář na homepage */
@media (max-width: 767px) {
    /* Hero sekce - zvětšit výšku aby se všechno vešlo */
    #layerslider {
        height: 650px !important;
        min-height: 650px !important;
    }
    
    /* Wrapper pro formulář */
    .search-form-wrapper {
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 90% !important;
        max-width: 400px !important;
        padding: 0 !important;
        top: 280px !important;
    }
    
    /* Samotný formulář */
    #homeSearchForm {
        flex-direction: column !important;
        width: 100% !important;
        padding: 20px 15px !important;
        gap: 12px !important;
        align-items: center !important;
    }
    
    /* Všechny selecty - stejná šířka a vycentrované */
    #homeSearchForm > div {
        width: 100% !important;
        max-width: none !important;
        min-width: unset !important;
        margin: 0 !important;
        flex: none !important;
    }
    
    /* Selecty a inputy - stejná šířka */
    #homeSearchForm select,
    #homeSearchForm input[type="text"] {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
    
    /* Skrýt desktop tlačítko na mobilech */
    .search-btn-desktop {
        display: none !important;
    }
    
    /* Zobrazit a nastylovat mobilní tlačítko */
    .search-btn-mobile {
        display: flex !important;
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        justify-content: center !important;
    }
    
    .search-btn-mobile button {
        width: 100% !important;
        justify-content: center !important;
    }
}

/* Desktop styly - skrýt mobilní tlačítko */
@media (min-width: 768px) {
    .search-btn-mobile {
        display: none !important;
    }
}
