.od-row {
    display: flex;
    align-items: flex-end;
    gap: 0;
    margin-bottom: 1rem;
}
.od-row .search-field { flex: 1; min-width: 0; }

.od-row #wrap-origen .search-input-wrap {
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}
.od-row #wrap-destino .search-input-wrap {
    border-left: none;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.swap-center-btn {
    flex-shrink: 0;
    width: 44px;
    height: 52px;
    margin-top: 20px;
    align-self: flex-end;
    background: var(--navy);
    color: var(--gold);
    border: 2px solid var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}
.swap-center-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.swap-center-btn svg { width:18px; height:18px; fill:currentColor; transition: transform .4s; }
.swap-center-btn:hover svg { transform: rotate(180deg); }

.bottom-row {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
}
.bottom-row .search-field { flex: 1; min-width: 0; }
.bottom-row .buscar-w { flex-shrink: 0; display: flex; align-items: flex-end; }

.search-field-label {
    display: block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: .4rem;
}

.destino-cta {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--gold);
    color: var(--navy);
    padding: .35rem .9rem;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 700;
    margin-top: .6rem;
    opacity: 0;
    transform: translateY(5px);
    transition: var(--transition);
}
.destino-card:hover .destino-cta { opacity: 1; transform: translateY(0); }

.autocomplete-list li { flex-direction: column; align-items: flex-start; }
.autocomplete-list li .row-top { display:flex; justify-content:space-between; width:100%; }

@media (max-width: 768px) {
    .od-row {
        display: flex !important;
        flex-direction: column !important;
        gap: .75rem !important;
        align-items: stretch !important;
    }
    .od-row .search-field {
        width: 100% !important;
        flex: none !important;
    }
    .od-row #wrap-origen .search-input-wrap,
    .od-row #wrap-destino .search-input-wrap {
        border: 2px solid var(--gray-light) !important;
        border-radius: var(--radius-sm) !important;
        width: 100% !important;
    }
    .swap-center-btn {
        align-self: center !important;
        border-radius: 50% !important;
        width: 42px !important;
        height: 42px !important;
        margin-top: 0 !important;
        transform: rotate(90deg) !important;
    }
    .bottom-row {
        display: flex !important;
        flex-direction: column !important;
        gap: .6rem !important;
    }
    .bottom-row .search-field,
    .bottom-row .pax-wrap,
    .bottom-row .buscar-w {
        width: 100% !important;
        flex: none !important;
    }
    .bottom-row .buscar-w .btn-buscar { width: 100% !important; }
}
