/* =========================================================
   TRAVEL09 — ENTERPRISE HOTEL DISCOVERY
   File:
   /home/travel09.com/public_html/assets/css/hotels.css
   ========================================================= */

.hotel-discovery,
.hotel-discovery *{
    box-sizing:border-box;
}

.hotel-discovery{
    --hotel-deep:#03131F;
    --hotel-navy:#071E32;
    --hotel-navy-2:#0B2D46;

    --hotel-teal:#087E8B;
    --hotel-aqua:#16B8C4;
    --hotel-gold:#D6AD60;

    --hotel-white:#FFFFFF;
    --hotel-bg:#F5F8FA;
    --hotel-soft:#EEF7F8;

    --hotel-text:#173447;
    --hotel-muted:#718391;
    --hotel-border:#DFE8ED;

    --hotel-shadow:
        0 22px 65px
        rgba(7,30,50,.10);

    margin:0;

    color:var(--hotel-text);

    background:#FFFFFF;

    font-size:16px;
    line-height:1.6;

    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

.hotel-discovery button,
.hotel-discovery input,
.hotel-discovery select{
    font:inherit;
}

.hotel-shell{
    width:min(
        calc(100% - 80px),
        1440px
    );

    margin:0 auto;
}


/* =========================================================
   HERO
   ========================================================= */

.hotel-hero{
    position:relative;

    overflow:hidden;

    padding:
        82px 0 54px;

    color:#FFFFFF;

    background:

        radial-gradient(
            circle at 86% 16%,
            rgba(22,184,196,.19),
            transparent 29%
        ),

        radial-gradient(
            circle at 12% 90%,
            rgba(214,173,96,.07),
            transparent 28%
        ),

        linear-gradient(
            145deg,
            var(--hotel-deep),
            var(--hotel-navy) 55%,
            var(--hotel-navy-2)
        );
}

.hotel-hero::before{
    content:"";

    position:absolute;

    inset:0;

    opacity:.20;

    pointer-events:none;

    background-image:

        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );

    background-size:
        48px 48px;
}

.hotel-hero .hotel-shell{
    position:relative;

    z-index:2;
}

.hotel-hero__grid{
    display:grid;

    grid-template-columns:
        minmax(0,1fr)
        390px;

    align-items:end;

    gap:64px;
}

.hotel-hero__copy{
    max-width:900px;
}

.hotel-kicker,
.hotel-section-label{
    display:flex;

    align-items:center;

    gap:9px;

    color:#87E2E8;

    font-size:12px;

    line-height:1.3;

    font-weight:800;

    letter-spacing:.10em;

    text-transform:uppercase;
}

.hotel-kicker{
    margin-bottom:18px;
}

.hotel-kicker span{
    width:9px;
    height:9px;

    border-radius:50%;

    background:
        var(--hotel-aqua);

    box-shadow:
        0 0 0 5px
        rgba(22,184,196,.12);
}

.hotel-hero h1{
    max-width:900px;

    margin:
        0 0 20px;

    color:#FFFFFF;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(
            54px,
            6vw,
            86px
        );

    font-weight:600;

    line-height:.98;

    letter-spacing:-.05em;
}

.hotel-hero h1 span{
    display:block;

    background:
        linear-gradient(
            90deg,
            #A1EEF1,
            #72DCE3,
            #D7B66D
        );

    -webkit-background-clip:text;
    background-clip:text;

    -webkit-text-fill-color:transparent;
}

.hotel-hero__copy > p{
    max-width:720px;

    margin:0;

    color:#BDD0DA;

    font-size:17px;

    line-height:1.75;
}


/* =========================================================
   HERO SIGNAL
   ========================================================= */

.hotel-hero__signal{
    display:flex;

    align-items:flex-start;

    gap:17px;

    padding:23px;

    border:
        1px solid
        rgba(255,255,255,.14);

    border-radius:20px;

    background:
        rgba(255,255,255,.055);

    backdrop-filter:
        blur(13px);
}

.hotel-hero__signal-icon{
    width:54px;
    height:54px;

    flex:none;

    display:grid;

    place-items:center;

    border-radius:15px;

    background:
        linear-gradient(
            135deg,
            var(--hotel-teal),
            var(--hotel-aqua)
        );

    color:#FFFFFF;

    font-size:14px;

    font-weight:900;
}

.hotel-hero__signal strong{
    display:block;

    margin:
        2px 0 7px;

    color:#FFFFFF;

    font-size:16px;

    line-height:1.35;
}

.hotel-hero__signal p{
    margin:0;

    color:#A8BDC9;

    font-size:14px;

    line-height:1.7;
}


/* =========================================================
   SEARCH
   ========================================================= */

.hotel-search{
    position:relative;

    z-index:4;

    display:grid;

    grid-template-columns:
        minmax(300px,1.7fr)
        repeat(3,minmax(160px,.7fr))
        auto;

    gap:10px;

    margin-top:46px;

    padding:15px;

    border:
        1px solid
        rgba(255,255,255,.16);

    border-radius:20px;

    background:
        rgba(255,255,255,.98);

    box-shadow:
        0 28px 80px
        rgba(0,0,0,.24);
}

.hotel-search label{
    min-width:0;
}

.hotel-search label > span{
    display:block;

    margin-bottom:5px;

    color:#788D9A;

    font-size:12px;

    font-weight:800;
}

.hotel-search__primary,
.hotel-search__field{
    min-height:70px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    padding:
        9px 13px;

    border:
        1px solid
        #E1E9ED;

    border-radius:11px;

    background:#FAFCFD;
}

.hotel-search__input-wrap{
    display:flex;

    align-items:center;

    gap:9px;
}

.hotel-search__icon{
    color:var(--hotel-teal);

    font-size:20px;
}

.hotel-search input,
.hotel-search select{
    width:100%;

    min-width:0;

    min-height:36px;

    border:0;

    outline:0;

    color:var(--hotel-text);

    background:transparent;

    font-size:15px;

    font-weight:650;
}

.hotel-search__submit{
    min-height:70px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:9px;

    padding:
        0 22px;

    border:0;

    border-radius:11px;

    background:
        linear-gradient(
            135deg,
            var(--hotel-teal),
            var(--hotel-aqua)
        );

    color:#FFFFFF;

    cursor:pointer;

    font-size:14px;

    font-weight:800;

    box-shadow:
        0 12px 28px
        rgba(22,184,196,.20);
}

.hotel-hero__quick{
    display:flex;

    align-items:center;

    flex-wrap:wrap;

    gap:8px;

    margin-top:14px;
}

.hotel-hero__quick > span{
    color:#8FA9B8;

    font-size:13px;

    font-weight:800;
}

.hotel-hero__quick a{
    min-height:36px;

    display:inline-flex;

    align-items:center;

    padding:
        0 12px;

    border:
        1px solid
        rgba(255,255,255,.12);

    border-radius:999px;

    color:#B8CBD5;

    background:
        rgba(255,255,255,.04);

    text-decoration:none;

    font-size:13px;

    font-weight:700;
}

.hotel-hero__quick a:hover{
    color:#FFFFFF;

    border-color:
        rgba(22,184,196,.45);
}


/* =========================================================
   DISCOVERY BAR
   ========================================================= */

.hotel-discovery-bar{
    border-bottom:
        1px solid
        var(--hotel-border);

    background:#FFFFFF;
}

.hotel-discovery-bar__inner{
    min-height:96px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:30px;
}

.hotel-discovery-bar__inner strong{
    display:block;

    margin-top:4px;

    color:var(--hotel-navy);

    font-size:18px;
}

.hotel-discovery-bar .hotel-section-label{
    color:var(--hotel-teal);
}

.hotel-discovery-bar__actions{
    display:flex;

    align-items:center;

    gap:12px;
}

.hotel-clear{
    color:var(--hotel-teal);

    text-decoration:none;

    font-size:13px;

    font-weight:800;
}

.hotel-sort label{
    display:flex;

    align-items:center;

    gap:9px;

    color:#788D9A;

    font-size:12px;

    font-weight:800;
}

.hotel-sort select{
    min-height:42px;

    padding:
        0 36px 0 12px;

    border:
        1px solid
        var(--hotel-border);

    border-radius:9px;

    outline:0;

    background:#FFFFFF;

    color:var(--hotel-text);

    font-size:13px;

    font-weight:700;
}


/* =========================================================
   RESULTS
   ========================================================= */

.hotel-results{
    padding:
        46px 0 86px;

    background:
        var(--hotel-bg);
}

.hotel-grid{
    display:grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0,1fr)
        );

    gap:18px;
}


/* =========================================================
   HOTEL CARD
   ========================================================= */

.hotel-card{
    overflow:hidden;

    display:flex;

    flex-direction:column;

    min-width:0;

    border:
        1px solid
        var(--hotel-border);

    border-radius:20px;

    background:#FFFFFF;

    box-shadow:
        0 10px 32px
        rgba(7,30,50,.055);

    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}

.hotel-card:hover{
    transform:
        translateY(-5px);

    border-color:#B7DDE1;

    box-shadow:
        0 24px 60px
        rgba(7,30,50,.11);
}

.hotel-card__media{
    position:relative;

    overflow:hidden;

    aspect-ratio:
        16 / 10;

    display:block;

    background:
        linear-gradient(145deg,#0B2D46 0%,#087E8B 58%,#16B8C4 100%);
}

.hotel-card__fallback{
    position:absolute;
    inset:0;
    display:grid;
    place-content:center;
    justify-items:center;
    gap:8px;
    color:#fff;
    background:
        radial-gradient(circle at 78% 18%,rgba(255,255,255,.17),transparent 32%),
        linear-gradient(145deg,#071E32 0%,#087E8B 62%,#16B8C4 100%);
}

.hotel-card__fallback b{
    display:grid;
    width:74px;
    height:74px;
    place-items:center;
    border:1px solid rgba(255,255,255,.35);
    border-radius:22px;
    background:rgba(255,255,255,.13);
    box-shadow:0 18px 38px rgba(3,19,31,.22);
    font-size:27px;
}

.hotel-card__fallback small{
    color:rgba(255,255,255,.88);
    font-size:12px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.hotel-card__media.is-image-missing::before{
    content:"09";
    position:absolute;
    inset:0;
    display:grid;
    place-items:center;
    color:#fff;
    background:linear-gradient(145deg,#071E32,#087E8B 65%,#16B8C4);
    font-size:42px;
    font-weight:900;
}

.hotel-card__media img{
    width:100%;
    height:100%;

    display:block;

    object-fit:cover;

    transition:
        transform .45s ease;
}

.hotel-card__media:focus-visible,
.hotel-card h2 a:focus-visible,
.hotel-card__button:focus-visible{
    outline:3px solid var(--hotel-aqua);
    outline-offset:3px;
}

.hotel-card:hover
.hotel-card__media img{
    transform:
        scale(1.035);
}

.hotel-card__shade{
    position:absolute;

    inset:0;

    background:

        linear-gradient(
            180deg,
            rgba(4,20,31,.02) 35%,
            rgba(4,20,31,.56) 100%
        );
}

.hotel-card__badges{
    position:absolute;

    z-index:2;

    top:14px;
    left:14px;

    display:flex;

    flex-wrap:wrap;

    gap:6px;
}

.hotel-badge{
    min-height:28px;

    display:inline-flex;

    align-items:center;

    padding:
        0 9px;

    border:
        1px solid
        rgba(255,255,255,.18);

    border-radius:999px;

    background:
        rgba(7,30,50,.78);

    color:#FFFFFF;

    backdrop-filter:
        blur(9px);

    font-size:11px;

    font-weight:800;
}

.hotel-badge--featured{
    background:
        rgba(214,173,96,.93);

    color:#3D2A08;
}

.hotel-card__stars{
    position:absolute;

    z-index:2;

    right:14px;
    bottom:13px;

    padding:
        6px 9px;

    border-radius:8px;

    background:
        rgba(7,30,50,.76);

    color:#F6D786;

    backdrop-filter:
        blur(8px);

    font-size:12px;

    letter-spacing:.04em;
}

.hotel-card__body{
    flex:1;

    padding:
        20px 20px 18px;
}

.hotel-card__location{
    display:flex;

    align-items:center;

    gap:6px;

    margin-bottom:8px;

    color:var(--hotel-teal);

    font-size:12px;

    font-weight:800;
}

.hotel-card h2{
    margin:0;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:25px;

    font-weight:600;

    line-height:1.22;
}

.hotel-card h2 a{
    color:var(--hotel-navy);

    text-decoration:none;
}

.hotel-card__description{
    margin:
        11px 0 0;

    color:var(--hotel-muted);

    font-size:14px;

    line-height:1.7;
}

.hotel-card__facts{
    display:flex;

    flex-wrap:wrap;

    gap:7px;

    margin-top:15px;
}

.hotel-card__facts span{
    min-height:30px;

    display:inline-flex;

    align-items:center;

    padding:
        5px 9px;

    border:
        1px solid
        #E3EAEE;

    border-radius:8px;

    background:#FAFCFD;

    color:#627989;

    font-size:12px;

    font-weight:700;
}

.hotel-card__footer{
    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:12px;

    padding:
        14px 20px 18px;

    border-top:
        1px solid
        #EDF2F4;

    background:#FCFDFE;
}

.hotel-card__price span{
    display:block;

    color:#8999A3;

    font-size:11px;

    font-weight:800;

    text-transform:uppercase;
}

.hotel-card__price strong{
    display:block;

    margin-top:3px;

    color:var(--hotel-navy);

    font-size:15px;

    line-height:1.3;
}

.hotel-card__button{
    min-height:42px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:7px;

    padding:
        0 14px;

    border-radius:9px;

    background:
        var(--hotel-navy);

    color:#FFFFFF;

    text-decoration:none;

    font-size:13px;

    font-weight:800;
}

.hotel-card__button:hover{
    background:
        var(--hotel-teal);
}


/* =========================================================
   EMPTY STATE
   ========================================================= */

.hotel-empty{
    max-width:780px;

    margin:
        30px auto;

    padding:
        58px 38px;

    border:
        1px solid
        var(--hotel-border);

    border-radius:22px;

    background:#FFFFFF;

    text-align:center;

    box-shadow:
        var(--hotel-shadow);
}

.hotel-empty__icon{
    width:56px;
    height:56px;

    display:grid;

    place-items:center;

    margin:
        0 auto 18px;

    border-radius:16px;

    background:
        linear-gradient(
            135deg,
            var(--hotel-teal),
            var(--hotel-aqua)
        );

    color:#FFFFFF;

    font-weight:900;
}

.hotel-empty h2{
    margin:0;

    color:var(--hotel-navy);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:34px;

    line-height:1.15;
}

.hotel-empty p{
    max-width:600px;

    margin:
        14px auto 0;

    color:var(--hotel-muted);

    font-size:15px;

    line-height:1.75;
}

.hotel-empty__actions{
    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:9px;

    margin-top:24px;
}

.hotel-primary-button,
.hotel-secondary-button{
    min-height:46px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:
        0 18px;

    border-radius:10px;

    text-decoration:none;

    font-size:14px;

    font-weight:800;
}

.hotel-primary-button{
    background:
        linear-gradient(
            135deg,
            var(--hotel-teal),
            var(--hotel-aqua)
        );

    color:#FFFFFF;
}

.hotel-secondary-button{
    border:
        1px solid
        var(--hotel-border);

    background:#FFFFFF;

    color:var(--hotel-navy);
}


/* =========================================================
   PAGINATION
   ========================================================= */

.hotel-pagination{
    display:flex;

    align-items:center;

    justify-content:center;

    gap:14px;

    margin-top:40px;
}

.hotel-pagination__pages{
    display:flex;

    gap:6px;
}

.hotel-pagination__page,
.hotel-pagination__control{
    min-height:42px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    border:
        1px solid
        var(--hotel-border);

    border-radius:9px;

    background:#FFFFFF;

    color:#526E80;

    text-decoration:none;

    font-size:13px;

    font-weight:800;
}

.hotel-pagination__page{
    min-width:42px;

    padding:
        0 10px;
}

.hotel-pagination__control{
    padding:
        0 14px;
}

.hotel-pagination__page.active{
    border-color:
        var(--hotel-teal);

    background:
        var(--hotel-teal);

    color:#FFFFFF;
}


/* =========================================================
   AI INTELLIGENCE HANDOFF
   ========================================================= */

.hotel-intelligence{
    padding:
        76px 0;

    background:#FFFFFF;
}

.hotel-intelligence__panel{
    display:grid;

    grid-template-columns:
        auto
        minmax(0,1fr)
        auto;

    align-items:center;

    gap:26px;

    padding:
        38px 40px;

    border:
        1px solid
        #D8E6EA;

    border-radius:24px;

    background:

        radial-gradient(
            circle at 92% 20%,
            rgba(22,184,196,.10),
            transparent 28%
        ),

        linear-gradient(
            120deg,
            rgba(8,126,139,.07),
            rgba(22,184,196,.015)
        ),

        #FFFFFF;

    box-shadow:
        var(--hotel-shadow);
}

.hotel-intelligence__icon{
    width:66px;
    height:66px;

    display:grid;

    place-items:center;

    border-radius:18px;

    background:
        linear-gradient(
            135deg,
            var(--hotel-teal),
            var(--hotel-aqua)
        );

    color:#FFFFFF;

    font-size:16px;

    font-weight:900;
}

.hotel-intelligence__copy
.hotel-section-label{
    color:var(--hotel-teal);
}

.hotel-intelligence h2{
    margin:
        6px 0 0;

    color:var(--hotel-navy);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(
            32px,
            3vw,
            46px
        );

    font-weight:600;

    line-height:1.08;
}

.hotel-intelligence p{
    max-width:760px;

    margin:
        12px 0 0;

    color:var(--hotel-muted);

    font-size:15px;

    line-height:1.75;
}

.hotel-intelligence__button{
    min-height:48px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    padding:
        0 19px;

    border-radius:10px;

    background:
        var(--hotel-navy);

    color:#FFFFFF;

    text-decoration:none;

    white-space:nowrap;

    font-size:14px;

    font-weight:800;
}


/* =========================================================
   TRUST SECTION
   ========================================================= */

.hotel-trust{
    position:relative;

    overflow:hidden;

    padding:
        78px 0;

    background:

        radial-gradient(
            circle at 92% 8%,
            rgba(22,184,196,.13),
            transparent 26%
        ),

        linear-gradient(
            145deg,
            var(--hotel-deep),
            var(--hotel-navy)
        );

    color:#FFFFFF;
}

.hotel-trust__grid{
    display:grid;

    grid-template-columns:
        repeat(
            4,
            minmax(0,1fr)
        );

    gap:14px;
}

.hotel-trust article{
    min-height:230px;

    padding:25px;

    border:
        1px solid
        rgba(255,255,255,.09);

    border-radius:18px;

    background:
        rgba(255,255,255,.04);
}

.hotel-trust article > span{
    width:42px;
    height:42px;

    display:grid;

    place-items:center;

    margin-bottom:40px;

    border-radius:11px;

    background:
        rgba(22,184,196,.11);

    color:#7DDDE5;

    font-size:12px;

    font-weight:900;
}

.hotel-trust strong{
    display:block;

    margin-bottom:8px;

    color:#F1F8FA;

    font-size:18px;

    line-height:1.35;
}

.hotel-trust p{
    margin:0;

    color:#91A9B7;

    font-size:14px;

    line-height:1.7;
}


/* =========================================================
   TABLET
   ========================================================= */

@media(max-width:1180px){

    .hotel-shell{
        width:
            calc(100% - 40px);
    }

    .hotel-hero__grid{
        grid-template-columns:1fr;

        gap:30px;
    }

    .hotel-hero__signal{
        max-width:680px;
    }

    .hotel-search{
        grid-template-columns:
            repeat(
                2,
                minmax(0,1fr)
            );
    }

    .hotel-search__primary{
        grid-column:
            1 / -1;
    }

    .hotel-search__submit{
        min-height:58px;
    }

    .hotel-grid{
        grid-template-columns:
            repeat(
                2,
                minmax(0,1fr)
            );
    }

    .hotel-trust__grid{
        grid-template-columns:
            repeat(
                2,
                minmax(0,1fr)
            );
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:760px){

    .hotel-shell{
        width:
            calc(100% - 24px);
    }

    .hotel-hero{
        padding:
            52px 0 36px;
    }

    .hotel-hero h1{
        font-size:
            clamp(
                42px,
                12vw,
                54px
            );

        line-height:1.01;
    }

    .hotel-hero__copy > p{
        font-size:16px;
    }

    .hotel-hero__signal{
        padding:18px;
    }

    .hotel-search{
        grid-template-columns:1fr;

        margin-top:30px;

        padding:11px;

        border-radius:17px;
    }

    .hotel-search__primary{
        grid-column:auto;
    }

    .hotel-search input,
    .hotel-search select{
        font-size:16px;
    }

    .hotel-search__submit{
        min-height:50px;

        font-size:15px;
    }

    .hotel-hero__quick{
        display:grid;

        grid-template-columns:
            repeat(
                2,
                minmax(0,1fr)
            );
    }

    .hotel-hero__quick > span{
        grid-column:
            1 / -1;
    }

    .hotel-hero__quick a{
        justify-content:center;
    }

    .hotel-discovery-bar__inner{
        align-items:flex-start;

        flex-direction:column;

        justify-content:center;

        gap:14px;

        padding:
            20px 0;
    }

    .hotel-discovery-bar__actions{
        width:100%;

        align-items:stretch;

        flex-direction:column;
    }

    .hotel-sort,
    .hotel-sort label,
    .hotel-sort select{
        width:100%;
    }

    .hotel-sort label{
        align-items:flex-start;

        flex-direction:column;
    }

    .hotel-results{
        padding:
            32px 0 58px;
    }

    .hotel-grid{
        grid-template-columns:1fr;
    }

    .hotel-card h2{
        font-size:24px;
    }

    .hotel-card__footer{
        align-items:flex-start;

        flex-direction:column;
    }

    .hotel-card__button{
        width:100%;

        min-height:46px;
    }

    .hotel-pagination{
        align-items:stretch;

        flex-direction:column;
    }

    .hotel-pagination__pages{
        justify-content:center;
    }

    .hotel-pagination__control{
        width:100%;
    }

    .hotel-intelligence{
        padding:
            56px 0;
    }

    .hotel-intelligence__panel{
        grid-template-columns:1fr;

        gap:19px;

        padding:
            27px 22px;
    }

    .hotel-intelligence__button{
        width:100%;

        min-height:50px;
    }

    .hotel-trust{
        padding:
            58px 0;
    }

    .hotel-trust__grid{
        grid-template-columns:1fr;
    }

    .hotel-trust article{
        min-height:auto;
    }

    .hotel-trust article > span{
        margin-bottom:24px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media(max-width:430px){

    .hotel-shell{
        width:
            calc(100% - 20px);
    }

    .hotel-hero h1{
        font-size:40px;
    }

    .hotel-hero__signal{
        flex-direction:column;
    }

    .hotel-hero__quick{
        grid-template-columns:1fr;
    }

    .hotel-empty{
        padding:
            38px 20px;
    }

    .hotel-empty h2{
        font-size:29px;
    }
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

@media(pointer:coarse){

    .hotel-discovery a,
    .hotel-discovery button,
    .hotel-discovery input,
    .hotel-discovery select{
        touch-action:manipulation;
    }

    .hotel-card__button,
    .hotel-search__submit,
    .hotel-primary-button,
    .hotel-secondary-button,
    .hotel-intelligence__button{
        min-height:44px;
    }
}


@media(prefers-reduced-motion:reduce){

    .hotel-discovery *,
    .hotel-discovery *::before,
    .hotel-discovery *::after{
        transition:none !important;

        scroll-behavior:auto !important;
    }
}
