/* ============================================================
   AIRPORT TRANSFER — LISTING PAGE — airport-transfer.css
   ------------------------------------------------------------
   Standalone stylesheet for the [airport_transfer_listing_filter]
   shortcode. This is a 1:1 visual copy of the car-rental listing
   design (.car-listing-page / .car-card / .car-cat-badge / .car-tags
   / #carPagination in car-rental.css), just renamed to .airport-*
   so this page no longer depends on car-rental.css being loaded.

   The shared, cross-listing-type system classes (.tours-page,
   .tours-sidebar, .tours-content, .tour-card, .hotel-card,
   .hotel-card__*, .btn-details, .tours-pagination, etc.) are left
   alone on purpose — those come from the common listing layout
   stylesheet used by tours/hotel/car/airport alike and are not
   "car" or "airport" specific.

   Enqueue this file alongside (or instead of, for this page) the
   generic listing layout stylesheet.
   ============================================================ */

/* ── Results bar ── */
.airport-listing-page .hotel-results-bar {
    font-size: 14px;
    color: rgba(30, 30, 30, 0.55);
    margin-bottom: 16px;
    min-height: 20px;
    font-family: "Helvetica regular", Sans-serif;
}

/* ══════════════════════════════════════════════════════════════
   AIRPORT CARD
══════════════════════════════════════════════════════════════ */

.airport-card .hotel-card__img-wrap {
    position: relative;
    width: 300px;
    height: 250px;
    flex-shrink: 0;
}

.airport-card .hotel-card__img-wrap img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    border-radius: 16px !important;
}

/* Category badge on image */
.airport-cat-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #FEFEFE;
    border-radius: 80px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 400;
    color: #141414;
}

/* Tags row (seating capacity) */
.airport-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.airport-tags .hotel-card__room-tag {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* No results */
.airport-no-results {
    padding: 48px 24px;
    text-align: center;
    color: #505050;
    background: #fff;
    border-radius: 14px;
    font-size: 15px;
}

/* ══════════════════════════════════════════════════════════════
   PAGINATION
══════════════════════════════════════════════════════════════ */
#airportPagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

#airportPagination .tours-pagination-inner {
    display: flex;
    align-items: center;
    gap: 8px;
}

#airportPagination .page-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #D9D9D9;
    background: transparent;
    color: #121212;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    font-family: inherit;
}

#airportPagination .page-btn:hover {
    background: #20C210;
    border-color: #20C210;
    color: #fff;
}

#airportPagination .page-btn.active {
    background: #20C210;
    border-color: #20C210;
    color: #fff;
}

#airportPagination .page-btn:disabled {
    cursor: default;
    opacity: 0.5;
}

/* ══════════════════════════════════════════════════════════════
   SIDEBAR HIDE HEADING ON DESKTOP
══════════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
    #airportSidebarHeading {
        display: none !important;
    }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET
══════════════════════════════════════════════════════════════ */

@media only screen and (max-width: 1366px) {

    .airport-card .hotel-card__img-wrap {
        width: 240px;
        height: 220px;
    }
}

@media screen and (max-width: 1024px) {
    .airport-listing-page .tours-sidebar {
        position: fixed;
        top: 0;
        left: -320px;
        width: 300px;
        height: 100vh;
        overflow-y: auto;
        z-index: 1200;
        border-radius: 0;
        transition: left 0.3s ease;
        scrollbar-width: none;
    }

    .airport-listing-page .tours-sidebar::-webkit-scrollbar {
        display: none;
    }

    .airport-listing-page .tours-sidebar.is-open {
        left: 0;
    }

    .airport-listing-page .sidebar-filter-heading {
        display: flex !important;
        margin-bottom: 20px;
        padding-bottom: 16px;
        border-bottom: 1px solid #CDCDCD;
    }

    .airport-listing-page .sidebar-filter-heading .sidebar-heading-text {
        display: block;
        font-size: 22px;
        font-weight: 700;
        color: #1e1e1e;
    }

    .airport-listing-page .sidebar-close-btn  { display: flex; }
    .airport-listing-page .btn-apply-filter   { display: block; }
    .airport-listing-page .btn-mobile-filter  { display: flex !important; }

    .airport-card {
        flex-direction: column;
        gap: 0;
    }

    .airport-card .hotel-card__img-wrap {
        width: 100% !important;
        height: 220px !important;
    }

    .airport-card .hotel-card__body {
        padding: 16px 0 0;
    }

    .airport-card .hotel-card__actions {
        flex-direction: row;
        justify-content: flex-start;
        padding-top: 12px;
    }
}

/* ── MOBILE ── */
@media screen and (max-width: 768px) {
    .airport-filter-bar .filter-bar__label {
        display: none;
    }

    .airport-card .hotel-card__img-wrap {
        height: 200px !important;
    }
}

@media screen and (max-width: 480px) {
    .airport-tags {
        gap: 4px;
    }

    .airport-tags .hotel-card__room-tag {
        font-size: 14px;
        padding: 3px 9px;
    }

    .airport-card .hotel-card__price-amount {
        font-size: 20px;
    }
}