/* ============================================
   ALANYA TOURS - Hotel Autocomplete
   Google Places widget'ının yerini alan dropdown
   ============================================ */

.hotel-ac-wrap {
    position: relative;
    width: 100%;
}

.hotel-ac-list {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 100003;
    max-height: 280px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #e2e6ea;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    overscroll-behavior: contain;
}

.hotel-ac-list.is-open {
    display: block;
}

.hotel-ac-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 14px;
    cursor: pointer;
    border-bottom: 1px solid #f1f3f5;
    transition: background-color .15s ease;
}

.hotel-ac-item:last-child {
    border-bottom: none;
}

.hotel-ac-item:hover,
.hotel-ac-item.is-active {
    background-color: #f5f8fb;
}

.hotel-ac-main {
    font-size: 14px;
    font-weight: 600;
    color: #212529;
    line-height: 1.35;
}

.hotel-ac-sub {
    font-size: 12px;
    color: #868e96;
    line-height: 1.35;
}

/* Modal içinde de üstte kalsın */
.booking-modal .hotel-ac-list,
.modal .hotel-ac-list {
    z-index: 100004;
}

@media (max-width: 576px) {
    .hotel-ac-list {
        max-height: 220px;
    }

    .hotel-ac-item {
        padding: 12px 14px;
    }

    .hotel-ac-main {
        font-size: 15px;
    }
}
