/* ─── RESET ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --red: #E31E24;
    --red-dark: #b91c1c;
    --red-soft: #fff1f1;
    --red-mid: #fecaca;
    --ink: #0c0c0e;
    --ink-mid: #2d2d35;
    --ink-light: #64748b;
    --ink-faint: #94a3b8;
    --border: #e8eaed;
    --surface: #f7f8fa;
    --white: #fff;
    --green: #059669;
    --amber: #d97706;
    --card-shadow: 0 2px 12px rgba(0, 0, 0, .07);
    --card-shadow-hover: 0 16px 48px rgba(0, 0, 0, .14);
    --r: 12px;
    --r-lg: 18px;
    --r-xl: 24px;
}

:root {
    --red: #e8272b;
    --red-light: #fff0f0;
    --dark: #1a1a2e;
    --text: #2d2d2d;
    --muted: #6b7280;
    --border: #e5e7eb;
    --bg: #ffffff;
    --bg2: #f8f9fa;
    --radius: 12px;
    --shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.14);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fffef9;
    color: var(--ink);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif
}

a {
    text-decoration: none;
    color: inherit
}

img {
    display: block;
    max-width: 100%
}

button {
    font-family: inherit;
    cursor: pointer
}

/* ══════════════════════════════════
   TOPBAR
══════════════════════════════════ */
.topbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 500;
    box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(0, 0, 0, .04);
}

.topbar-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    min-width: 0;
}

.brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--red);
    letter-spacing: -.02em;
    flex-shrink: 0;
    white-space: nowrap;
}

.search-strip {
    flex: 1;
    max-width: 680px;
    display: flex;
    align-items: center;
    background: #f1f3f5;
    border: 1.5px solid transparent;
    border-radius: 50px;
    padding: 0 4px 0 0;
    height: 44px;
    transition: border-color .2s, background .2s, box-shadow .2s;
}

.search-strip:focus-within {
    background: var(--white);
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(227, 30, 36, .08)
}

.ss-item {
    flex: 1;
    min-width: 0;
    padding: 0 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-right: 1px solid #dde0e4;
    height: 100%;
    cursor: pointer;
}

.ss-item:last-of-type {
    border-right: none
}

.ss-ico {
    color: var(--red);
    font-size: .72rem;
    flex-shrink: 0
}

.ss-label {
    font-size: .58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--ink-faint);
    display: block;
    line-height: 1
}

.ss-val {
    font-size: .8rem;
    font-weight: 600;
    color: var(--ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    line-height: 1.3
}

.ss-go {
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0 18px;
    height: 36px;
    font-weight: 700;
    font-size: .78rem;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    transition: background .15s;
}

.ss-go:hover {
    background: var(--red-dark)
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    min-width: 0;
}

.t-link {
    font-size: .8rem;
    font-weight: 600;
    color: var(--ink-light);
    padding: 6px 10px;
    border-radius: 8px;
    transition: background .15s
}

.t-link:hover {
    background: var(--surface)
}

.t-btn {
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: .75rem;
    font-weight: 700;
    transition: background .15s;
    white-space: nowrap;
    flex-shrink: 0;
}

@media(max-width:400px) {
    .t-link {
        display: none;
    }

    .t-btn {
        padding: 7px 10px;
        font-size: .7rem;
    }
}

.t-btn:hover {
    background: var(--red-dark)
}

/* ══════════════════════════════════
   BREADCRUMB
══════════════════════════════════ */
.bc {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 10px 0
}

.bc-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .74rem;
    color: var(--ink-faint);
    flex-wrap: wrap;
}

.bc-inner a {
    color: var(--ink-light);
    transition: color .15s
}

.bc-inner a:hover {
    color: var(--red)
}

.bc-sep {
    font-size: .5rem
}

.bc-cur {
    color: var(--ink);
    font-weight: 600
}

/* ══════════════════════════════════
   GALLERY
══════════════════════════════════ */
.gallery-meta-bar {
    max-width: 1360px;
    margin: 0 auto;
    padding: .85rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    gap: 8px;
}

.gallery-meta-bar nav {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    font-size: .74rem;
    color: var(--ink-faint);
}

.gallery-meta-bar .bc-cur {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 140px;
}

.gallery-actions-top {
    display: flex;
    gap: 10px
}

.g-action {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--border);
    color: var(--ink-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    cursor: pointer;
    transition: all .2s;
}

.g-action:hover {
    border-color: var(--red);
    color: var(--red);
    background: var(--red-soft)
}

.g-action.active {
    border-color: var(--red);
    color: var(--red);
    background: var(--red-soft)
}

.gallery-wrap {
    background: #fff;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.gallery-grid {
    max-width: 1360px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    grid-template-rows: 192px 192px;
    gap: 4px;
    box-sizing: border-box;
}

@media(max-width:1000px) {
    .gallery-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
        grid-template-rows: 160px 160px;
        padding: 0 0.5rem;
    }
}

@media(max-width:640px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 110px 110px;
        padding: 0;
        gap: 3px;
        width: 100vw;
        max-width: 100vw;
    }

    .gallery-main {
        grid-row: 1;
        grid-column: 1/3;
    }

    .gallery-thumb:nth-of-type(2) {
        grid-column: 1;
        grid-row: 2;
    }

    .gallery-thumb:nth-of-type(3) {
        grid-column: 2;
        grid-row: 2;
    }

    .gallery-thumb:nth-of-type(4) {
        grid-column: 1;
        grid-row: 3;
    }

    .gallery-thumb:nth-of-type(5) {
        grid-column: 2;
        grid-row: 3;
    }
}

.gallery-main {
    grid-column: 1;
    grid-row: 1/3;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(.25, .46, .45, .94);
}

.gallery-main:hover img {
    transform: scale(1.03);
}

.gallery-thumb {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-thumb:nth-of-type(2) {
    grid-column: 2;
    grid-row: 1;
}

.gallery-thumb:nth-of-type(3) {
    grid-column: 3;
    grid-row: 1;
}

.gallery-thumb:nth-of-type(4) {
    grid-column: 2;
    grid-row: 2;
}

.gallery-thumb:nth-of-type(5) {
    grid-column: 3;
    grid-row: 2;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s cubic-bezier(.25, .46, .45, .94);
}

.gallery-thumb:hover img {
    transform: scale(1.05);
}

.view-all-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(255, 255, 255, .95);
    border: none;
    border-radius: 6px;
    padding: 6px 11px;
    font-size: .74rem;
    font-weight: 700;
    color: var(--ink-mid);
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
    transition: all .15s;
    z-index: 5;
    white-space: nowrap;
}

.view-all-btn:hover {
    background: #fff;
    color: var(--red);
}

.view-all-btn i {
    font-size: .7rem;
}

/* ══════════════════════════════════
   STICKY TAB NAV
══════════════════════════════════ */
.tab-nav {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 64px;
    z-index: 400;
}

.tab-nav-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.tab-list {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 0
}

.tab-list::-webkit-scrollbar {
    display: none
}

.tab-item {
    white-space: nowrap;
    padding: 14px 18px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--ink-light);
    cursor: pointer;
    border-bottom: 2.5px solid transparent;
    transition: all .2s;
    user-select: none;
}

.tab-item:hover {
    color: var(--ink-mid)
}

.tab-item:hover {
    color: var(--red);
    border-bottom-color: var(--red);
}

.tab-book-cta {
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 9px 22px;
    font-family: 'Poppins', sans-serif;
    font-size: .82rem;
    font-weight: 800;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(227, 30, 36, .28);
    transition: all .2s;
}

.tab-book-cta:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(227, 30, 36, .38)
}

/* ══════════════════════════════════
   LAYOUT
══════════════════════════════════ */
.page-body {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0.8rem 0rem;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 0rem;
    align-items: start;
    overflow: hidden;
}

@media(max-width:1100px) {
    .page-body {
        grid-template-columns: 1fr;
        padding: 1.2rem
    }
}

.left {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    min-width: 0;
    /* KEY: prevents flex child from overflowing grid cell */
    width: 100%;
}

/* ══════════════════════════════════
   SECTION CARD
   FIX: overflow:hidden removed — was blocking horizontal scroll in perks/sim-row
   Using overflow:clip on y-axis only so border-radius still works
══════════════════════════════════ */
.scard {
    background: var(--white);
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    box-shadow: var(--card-shadow);
    overflow: visible;
    animation: slideUp .45s ease both;
    min-width: 0;
    /* KEY: prevents scard from overflowing flex parent */
    width: 100%;
}

/* Re-apply overflow:hidden only on scard-head to keep border-radius sharp at top */
.scard-head {
    overflow: hidden;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
}

.scard:nth-child(1) {
    animation-delay: .04s
}

.scard:nth-child(2) {
    animation-delay: .08s
}

.scard:nth-child(3) {
    animation-delay: .12s
}

.scard:nth-child(4) {
    animation-delay: .16s
}

.scard:nth-child(5) {
    animation-delay: .20s
}

.scard:nth-child(6) {
    animation-delay: .24s
}

.scard:nth-child(7) {
    animation-delay: .28s
}

.scard:nth-child(8) {
    animation-delay: .32s
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(18px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.scard-head {
    padding: 1.2rem 1.6rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: .6rem
}

.scard-head-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: var(--red-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.scard-head-icon i {
    color: var(--red);
    font-size: .82rem
}

.scard-eyebrow {
    font-size: .62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--ink-faint);
    display: block;
    margin-bottom: 2px
}

.scard-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.2
}

.scard-body {
    padding: 0.6rem
}

/* ══════════════════════════════════
   HOTEL HEADER
══════════════════════════════════ */
.hotel-hdr {
    padding: 1.6rem
}

.hotel-name-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: .7rem
}

.hotel-title {
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--ink);
    letter-spacing: -.03em;
    line-height: 1.1
}

.hdr-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0
}

.hdr-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .84rem;
    color: var(--ink-faint);
    transition: all .2s;
}

.hdr-btn:hover {
    border-color: var(--red);
    color: var(--red);
    background: var(--red-soft)
}

.hdr-btn.liked {
    border-color: var(--red);
    color: var(--red);
    background: var(--red-soft)
}

.meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .6rem;
    margin-bottom: 1rem
}

.rating-pill {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--green);
    color: #fff;
    border-radius: 8px;
    padding: 4px 10px;
    font-size: .82rem;
    font-weight: 800;
}

.rating-pill i {
    font-size: .65rem
}

.stars {
    color: var(--amber);
    font-size: .82rem;
    letter-spacing: 1px
}

.review-ct {
    font-size: .75rem;
    color: var(--ink-faint);
    font-weight: 500
}

.star-tier {
    background: #eff6ff;
    color: #1d4ed8;
    border-radius: 6px;
    padding: 3px 9px;
    font-size: .7rem;
    font-weight: 800
}

.props-row {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1.1rem
}

.prop-tag {
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 5px 12px;
    font-size: .73rem;
    font-weight: 600;
    color: var(--ink-mid);
    background: var(--white);
    transition: all .15s;
}

.prop-tag i {
    color: var(--red);
    font-size: .65rem
}

.prop-tag:hover {
    border-color: var(--red-mid);
    background: var(--red-soft)
}

.addr-line {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: .8rem;
    color: var(--ink-light);
    line-height: 1.55;
    padding: .85rem 1rem;
    background: var(--surface);
    border-radius: 10px;
}

.addr-line i {
    color: var(--red);
    font-size: .7rem;
    margin-top: 2px;
    flex-shrink: 0
}

/* ══════════════════════════════════
   PROMO BANNERS
══════════════════════════════════ */
.promo-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .8rem;
    width: 100%;
    min-width: 0;
}

@media(max-width:600px) {
    .promo-duo {
        grid-template-columns: 1fr
    }
}

.promo-card {
    border-radius: var(--r-lg);
    padding: 1.1rem 1.3rem;
    display: flex;
    align-items: center;
    gap: .9rem;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    min-width: 0;
    /* KEY: prevents card from overflowing grid */
    overflow: hidden;
}

.promo-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1)
}

.promo-card.warm {
    background: linear-gradient(120deg, #fff8f0, #fde8d0);
    border: 1.5px solid #f9c89b
}

.promo-card.cool {
    background: linear-gradient(120deg, #f0f7ff, #d5e8ff);
    border: 1.5px solid #93c5fd
}

.promo-ico {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0
}

.promo-card.warm .promo-ico {
    background: #f97316;
    color: #fff;
    box-shadow: 0 4px 12px rgba(249, 115, 22, .3)
}

.promo-card.cool .promo-ico {
    background: #3b82f6;
    color: #fff;
    box-shadow: 0 4px 12px rgba(59, 130, 246, .3)
}

.promo-ttl {
    font-size: .85rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 2px
}

.promo-sub {
    font-size: .7rem;
    color: var(--ink-light);
    line-height: 1.5;
    word-break: break-word;
}

.promo-code {
    display: inline-block;
    background: rgba(0, 0, 0, .06);
    border-radius: 5px;
    padding: 1px 6px;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .04em;
    color: var(--ink-mid);
    margin-top: 2px
}

/* ══════════════════════════════════
   PERKS
   FIX: Added proper scroll container with padding, -webkit-overflow-scrolling
══════════════════════════════════ */
.perks-row {
    display: flex;
    gap: .8rem;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    padding-bottom: 8px;
    padding-left: 2px;
    padding-right: 2px;
    -webkit-overflow-scrolling: touch;
}

.perks-row::-webkit-scrollbar {
    display: none
}

.perk {
    min-width: 128px;
    background: var(--surface);
    border-radius: var(--r);
    padding: 1.1rem 0.4rem;
    text-align: center;
    border: 1.5px solid var(--border);
    flex-shrink: 0;
    transition: all .2s;
}

.perk:hover {
    border-color: var(--red-mid);
    background: var(--red-soft);
    transform: translateY(-2px)
}

.perk-em {
    font-size: 1.6rem;
    display: block;
    margin-bottom: .5rem
}

.perk-nm {
    font-size: .78rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: .15rem
}

.perk-ds {
    font-size: .65rem;
    color: var(--ink-faint);
    line-height: 1.45
}

/* ══════════════════════════════════
   AMENITIES
══════════════════════════════════ */
.am-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: .6rem
}

@media(max-width:580px) {
    .am-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:400px) {
    .am-grid {
        grid-template-columns: 1fr
    }
}

.am-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .7rem .9rem;
    background: var(--surface);
    border-radius: var(--r);
    border: 1.5px solid transparent;
    font-size: .78rem;
    font-weight: 600;
    color: var(--ink-mid);
    transition: all .15s;
}

.am-item i {
    color: var(--red);
    font-size: .82rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0
}

.am-item:hover {
    border-color: var(--red-mid);
    background: var(--red-soft);
    color: var(--red)
}

.view-more-am {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    padding: 8px 18px;
    font-size: .78rem;
    font-weight: 700;
    color: var(--ink-mid);
    background: var(--white);
    transition: all .15s;
}

.view-more-am:hover {
    border-color: var(--red);
    color: var(--red)
}

/* ══════════════════════════════════
   LOCATION
══════════════════════════════════ */
.map-box {
    border-radius: var(--r);
    overflow: hidden;
    background: linear-gradient(135deg, #dce8f5, #c8d8ee);
    height: 260px;
    position: relative;
    border: 1px solid var(--border);
}

.map-grid-bg {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(rgba(100, 150, 200, .08) 0 1px, transparent 1px 100%),
        repeating-linear-gradient(90deg, rgba(100, 150, 200, .08) 0 1px, transparent 1px 100%);
    background-size: 32px 32px;
}

.map-roads {
    position: absolute;
    inset: 0;
    opacity: .3
}

.map-pin-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%)
}

.map-pin-bubble {
    background: var(--red);
    color: #fff;
    border-radius: 10px;
    padding: 6px 12px;
    font-size: .75rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(227, 30, 36, .45);
    position: relative;
}

.map-pin-bubble::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--red);
    border-bottom: none;
}

.map-pin-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--red);
    margin: 4px auto 0;
    box-shadow: 0 0 0 4px rgba(227, 30, 36, .2);
}

.map-overlay-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, .4));
    padding: 20px 14px 10px;
    font-size: .72rem;
    color: rgba(255, 255, 255, .85);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.map-dir-btn {
    background: rgba(255, 255, 255, .92);
    color: var(--ink);
    border: none;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: .72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: all .2s;
}

.map-dir-btn:hover {
    background: #fff;
    color: var(--red)
}

.addr-block {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 1rem;
    font-size: .8rem;
    color: var(--ink-light);
    line-height: 1.6;
}

.addr-block i {
    color: var(--red);
    font-size: .7rem;
    margin-top: 3px;
    flex-shrink: 0
}

.addr-block strong {
    color: var(--ink)
}

.nearby-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
    margin-top: 1rem
}

@media(max-width:420px) {
    .nearby-grid {
        grid-template-columns: 1fr
    }
}

.nearby-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .76rem;
    color: var(--ink-light);
    padding: .5rem .7rem;
    background: var(--surface);
    border-radius: 8px;
}

.nearby-item i {
    color: var(--red);
    font-size: .65rem;
    flex-shrink: 0;
    width: 12px
}

.nearby-item strong {
    color: var(--ink-mid);
    font-weight: 600
}

/* ══════════════════════════════════
   RATINGS
   FIX: min-width removed on rating-bars, flex-wrap column on small screens
══════════════════════════════════ */
.ratings-layout {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    flex-wrap: wrap
}

.rating-hero {
    text-align: center;
    flex-shrink: 0;
    min-width: 120px
}

.rating-num {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -.04em;
}

.rating-stars {
    color: var(--amber);
    font-size: .95rem;
    margin: .35rem 0
}

.rating-based {
    font-size: .72rem;
    color: var(--ink-faint);
    font-weight: 500
}

.rating-bars {
    flex: 1;
    min-width: 0;
    /* FIX: was 220px — caused overflow on narrow screens */
    display: flex;
    flex-direction: column;
    gap: .9rem
}

.rbar {
    display: flex;
    align-items: center;
    gap: .9rem
}

.rbar-lbl {
    font-size: .76rem;
    font-weight: 600;
    color: var(--ink-light);
    min-width: 130px
}

.rbar-track {
    flex: 1;
    height: 5px;
    background: #e9ecef;
    border-radius: 5px;
    overflow: hidden
}

.rbar-fill {
    height: 100%;
    border-radius: 5px;
    background: linear-gradient(90deg, var(--green), #34d399)
}

.rbar-val {
    font-size: .78rem;
    font-weight: 800;
    color: var(--ink);
    min-width: 26px;
    text-align: right
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem
}

@media(max-width:600px) {
    .reviews-grid {
        grid-template-columns: 1fr
    }
}

.rev-card {
    background: var(--surface);
    border-radius: var(--r);
    padding: 1.1rem;
    border: 1.5px solid var(--border);
    transition: border-color .2s;
}

.rev-card:hover {
    border-color: var(--red-mid)
}

.rev-top {
    display: flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: .65rem
}

.rev-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .8rem;
    color: #fff;
    flex-shrink: 0;
}

.rev-nm {
    font-size: .82rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1px
}

.rev-dt {
    font-size: .68rem;
    color: var(--ink-faint)
}

.rev-stars {
    color: var(--amber);
    font-size: .72rem;
    margin-bottom: .45rem
}

.rev-txt {
    font-size: .77rem;
    color: var(--ink-light);
    line-height: 1.7;
    font-style: italic
}

/* ══════════════════════════════════
   POLICIES
══════════════════════════════════ */
.pol-section {
    margin-bottom: 1.4rem
}

.pol-section:last-child {
    margin-bottom: 0
}

.pol-head {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: .88rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: .8rem;
    padding-bottom: .65rem;
    border-bottom: 1.5px solid var(--border);
}

.pol-head i {
    color: var(--red);
    font-size: .78rem;
    width: 16px;
    text-align: center
}

.pol-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .6rem
}

.pol-list li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    font-size: .79rem;
    color: var(--ink-light);
    line-height: 1.65;
    padding: .6rem .8rem;
    background: var(--surface);
    border-radius: 8px;
}

.pol-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
    margin-top: .45rem;
}

/* ══════════════════════════════════
   RESTRICTIONS
══════════════════════════════════ */
.rest-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .65rem
}

@media(max-width:500px) {
    .rest-grid {
        grid-template-columns: 1fr
    }
}

.rest-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .85rem 1rem;
    border-radius: var(--r);
    border: 1.5px solid var(--border);
    background: var(--white);
    font-size: .78rem;
    font-weight: 600;
    color: var(--ink-mid);
    transition: border-color .15s;
}

.rest-item:hover {
    border-color: var(--border)
}

.rest-em {
    font-size: 1.3rem;
    flex-shrink: 0
}

.rest-allowed {
    color: var(--green)
}

.rest-allowed-badge {
    background: #dcfce7;
    color: var(--green);
    border-radius: 20px;
    padding: 1px 7px;
    font-size: .62rem;
    font-weight: 800;
    margin-left: auto
}

.rest-denied-badge {
    background: #fee2e2;
    color: var(--red);
    border-radius: 20px;
    padding: 1px 7px;
    font-size: .62rem;
    font-weight: 800;
    margin-left: auto
}

/* ══════════════════════════════════
   SIMILAR HOTELS
   FIX: Added -webkit-overflow-scrolling for smooth iOS scroll
══════════════════════════════════ */
.sim-row {
    display: flex;
    gap: .9rem;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    padding-bottom: 8px;
    padding-left: 2px;
    padding-right: 2px;
    -webkit-overflow-scrolling: touch;
}

.sim-row::-webkit-scrollbar {
    display: none
}

.sim-card {
    min-width: 210px;
    background: var(--white);
    border-radius: var(--r-lg);
    border: 1.5px solid var(--border);
    overflow: hidden;
    flex-shrink: 0;
    transition: box-shadow .2s, transform .2s;
    cursor: pointer;
}

.sim-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, .12);
    transform: translateY(-4px)
}

.sim-img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    transition: transform .5s
}

.sim-card:hover .sim-img {
    transform: scale(1.05)
}

.sim-body {
    padding: .9rem
}

.sim-top {
    display: flex;
    align-items: center;
    gap: .4rem;
    margin-bottom: .3rem
}

.sim-rb {
    background: var(--green);
    color: #fff;
    border-radius: 6px;
    padding: 2px 7px;
    font-size: .68rem;
    font-weight: 800
}

.sim-rv {
    font-size: .65rem;
    color: var(--ink-faint)
}

.sim-nm {
    font-family: 'Poppins', sans-serif;
    font-size: .9rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: .2rem
}

.sim-loc {
    font-size: .7rem;
    color: var(--ink-faint);
    margin-bottom: .6rem;
    display: flex;
    align-items: center;
    gap: 4px
}

.sim-loc i {
    color: var(--red);
    font-size: .58rem
}

.sim-badges-row {
    display: flex;
    gap: .25rem;
    flex-wrap: wrap;
    margin-bottom: .65rem
}

.sim-bdg {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 5px;
    padding: 2px 6px;
    font-size: .6rem;
    font-weight: 700;
    color: var(--ink-faint)
}

.sim-prices {
    display: flex;
    gap: .35rem;
    flex-wrap: wrap
}

.sim-pbtn {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 4px 8px;
    font-size: .7rem;
    font-weight: 800;
    color: var(--ink-mid);
    cursor: pointer;
    text-align: center;
    transition: all .15s;
    background: var(--white);
}

.sim-pbtn small {
    display: block;
    font-size: .58rem;
    font-weight: 400;
    color: var(--ink-faint)
}

.sim-pbtn:hover {
    border-color: var(--red);
    color: var(--red);
    background: var(--red-soft)
}

/* ══════════════════════════════════
   RIGHT SIDEBAR — BOOKING WIDGET
══════════════════════════════════ */
.right-col {
    position: sticky;
    top: 20px;
    height: fit-content;
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media(max-width:1100px) {
    .right-col {
        position: static;
    }
}

.bwidget {
    background: var(--white);
    border-radius: var(--r-xl);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .1);
}

.bw-top {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 1.4rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.bw-top::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(227, 30, 36, .12);
}

.bw-from {
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 4px
}

.bw-price-row {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin-bottom: .4rem
}

.bw-price {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1
}

.bw-per {
    font-size: .75rem;
    color: rgba(255, 255, 255, .4);
    padding-bottom: 4px
}

.bw-meta {
    display: flex;
    align-items: center;
    gap: .5rem
}

.bw-rb {
    background: var(--green);
    color: #fff;
    border-radius: 6px;
    padding: 3px 8px;
    font-size: .7rem;
    font-weight: 800
}

.bw-rv {
    font-size: .7rem;
    color: rgba(255, 255, 255, .4)
}

.bw-dtabs {
    display: flex;
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    margin-bottom: 1rem
}

.bw-dt {
    flex: 1;
    text-align: center;
    padding: .6rem .4rem;
    cursor: pointer;
    border-right: 1.5px solid var(--border);
    transition: all .15s;
    min-width: 0;
    /* FIX: prevents tabs from overflowing on tiny screens */
}

.bw-dt:last-child {
    border-right: none
}

.bw-dt:hover {
    background: var(--red-soft)
}

.bw-dt.on {
    background: var(--red);
    border-color: var(--red)
}

.bw-dt-lbl {
    font-size: .58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--ink-faint);
    display: block
}

.bw-dt.on .bw-dt-lbl {
    color: rgba(255, 255, 255, .7)
}

.bw-dt-pr {
    font-family: 'Poppins', sans-serif;
    font-size: .92rem;
    font-weight: 800;
    color: var(--ink);
    display: block
}

.bw-dt.on .bw-dt-pr {
    color: #fff
}

.bw-form {
    display: flex;
    flex-direction: column;
    gap: .65rem;
    padding: 1.2rem 1.4rem
}

.bw-row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .6rem
}

.bw-field label {
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--ink-faint);
    display: block;
    margin-bottom: .3rem
}

.bw-inp {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    padding: 0.4rem;
    font-size: .84rem;
    font-weight: 500;
    color: var(--ink);
    transition: border-color .2s, box-shadow .2s;
    background: var(--white);
}

.bw-inp:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(227, 30, 36, .1)
}

.bw-cta-wrap {
    padding: 0 1.4rem 1.2rem
}

.bw-cta {
    width: 100%;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: var(--r);
    padding: 1rem;
    font-family: 'Poppins', sans-serif;
    font-size: .98rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    box-shadow: 0 4px 18px rgba(227, 30, 36, .35);
    transition: all .2s;
    margin-bottom: .75rem;
}

.bw-cta:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(227, 30, 36, .45)
}

.bw-trust {
    background: var(--surface);
    border-radius: var(--r);
    padding: .85rem 1rem;
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.bw-trust-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .7rem;
    color: var(--ink-light)
}

.bw-trust-item i {
    color: var(--green);
    font-size: .65rem;
    width: 12px
}

.cancel-card {
    background: #f0fdf4;
    border: 1.5px solid #bbf7d0;
    border-radius: var(--r-lg);
    padding: 1.1rem 1.3rem;
}

.cancel-card h5 {
    font-size: .78rem;
    font-weight: 800;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: .4rem;
    margin-bottom: .35rem;
}

.cancel-card p {
    font-size: .72rem;
    color: #166534;
    line-height: 1.65
}

.help-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.2rem;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.help-card .big-ico {
    font-size: 1.6rem;
    color: var(--red);
    margin-bottom: .5rem
}

.help-card h4 {
    font-size: .92rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: .2rem
}

.help-card p {
    font-size: .74rem;
    color: var(--ink-faint);
    margin-bottom: .9rem
}

.help-btns {
    display: flex;
    gap: .5rem
}

.h-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    border-radius: var(--r);
    padding: .55rem;
    font-size: .76rem;
    font-weight: 700;
    border: 1.5px solid;
    cursor: pointer;
    transition: all .2s;
}

.h-btn.call {
    border-color: var(--red-mid);
    color: var(--red);
    background: var(--red-soft)
}

.h-btn.call:hover {
    background: var(--red);
    color: #fff;
    border-color: var(--red)
}

.h-btn.wa {
    border-color: #bbf7d0;
    color: var(--green);
    background: #f0fdf4
}

.h-btn.wa:hover {
    background: var(--green);
    color: #fff;
    border-color: var(--green)
}

/* ══════════════════════════════════
   GALLERY MODAL
══════════════════════════════════ */
.gallery-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, .92);
    backdrop-filter: blur(8px);
    flex-direction: column;
}

.gallery-modal.open {
    display: flex
}

.gm-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.gm-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff
}

.gm-count {
    font-size: .8rem;
    color: rgba(255, 255, 255, .5);
    margin-top: 2px
}

.gm-close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: none;
    color: #fff;
    font-size: .9rem;
    cursor: pointer;
    transition: background .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gm-close:hover {
    background: rgba(255, 255, 255, .2)
}

.gm-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 1rem
}

.gm-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px
}

.gm-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    border: none;
    color: #fff;
    font-size: .9rem;
    cursor: pointer;
    transition: background .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
}

.gm-nav:hover {
    background: rgba(255, 255, 255, .22)
}

.gm-nav.prev {
    left: 12px
}

.gm-nav.next {
    right: 12px
}

.gm-thumbs {
    display: flex;
    gap: .5rem;
    overflow-x: auto;
    padding: .8rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
    scrollbar-width: none;
}

.gm-thumbs::-webkit-scrollbar {
    display: none
}

.gm-thumb {
    width: 72px;
    height: 52px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    opacity: .55;
    border: 2px solid transparent;
    transition: all .2s;
}

.gm-thumb.active {
    opacity: 1;
    border-color: #fff
}

.gm-thumb:hover {
    opacity: .85
}

.gm-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, .8);
    padding: clamp(36px, 5vw, 64px) clamp(16px, 5vw, 72px) 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 12px;
    color: var(--bg);
}

.footer-brand p {
    font-size: 0.78rem;
    line-height: 1.7;
    color: var(--bg2);
    margin-bottom: 16px;
}

.footer-contact {
    font-size: 0.75rem;
    color: #fff;
    line-height: 1.8;
}

.footer-col h4 {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 16px;
    margin-left: 44px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul li a {
    font-size: 0.78rem;
    color: var(--bg2);
    transition: color .2s;
    text-decoration: none;
    margin-left: 30px;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.72rem;
    color: #fff;
}

/* ══════════════════════════════════
   FLOAT BUTTONS
══════════════════════════════════ */
.float-btns {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 400
}

.fb {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
    transition: transform .2s
}

.fb:hover {
    transform: scale(1.1)
}

.fb-wa {
    background: #25d366;
    color: #fff
}

.fb-call {
    background: var(--red);
    color: #fff
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 992px) {
    .page-body {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .right-col {
        position: static;
        padding: 1rem;
    }

    .left {
        padding: 0;
        width: 100%;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 250px 100px 100px;
        padding: 0 10px;
    }

    .gallery-main {
        grid-column: 1 / 3;
    }

    .tab-list {
        padding: 5px;
    }

    .search-strip {
        display: none;
    }
}

.mobile-book-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 12px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .mobile-book-bar {
        display: flex;
    }

    body {
        padding-bottom: 70px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h4 {
        margin-left: 0;
    }

    .footer-col ul li a {
        margin-left: 0;
    }

    .bc-inner,
    .gallery-meta-bar nav {
        flex-wrap: wrap;
        padding: 0 1rem;
    }

    .gallery-meta-bar {
        padding: 0.85rem 1rem;
    }

    .perks-row {
        gap: 0.5rem;
    }

    .perk {
        min-width: 110px;
    }
}

@media (max-width: 480px) {
    .hotel-title {
        font-size: 1.4rem;
    }

    .rating-num {
        font-size: 2.5rem;
    }

    /* Ratings stack vertically on small phones */
    .ratings-layout {
        flex-direction: column;
        gap: 1rem;
    }

    .rating-hero {
        min-width: unset;
        width: 100%;
    }

    .rbar-lbl {
        min-width: 90px;
        font-size: 0.7rem;
    }
}

@media (max-width: 450px) {

    .topbar-inner,
    .bc-inner,
    .tab-nav-inner,
    .page-body,
    .gallery-grid {
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }

    .addr-line {
        padding: 0.7rem;
    }
}



/* Desktop same as screenshot */
.gallery-wrap {
    padding: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 300px 300px;
    gap: 8px;
}

.gallery-main {
    grid-row: span 2;
}

.gallery-main,
.gallery-thumb {
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-main img,
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Button */
.view-all-btn {
    position: absolute;
    bottom: 18px;
    right: 18px;
    background: #fff;
    color: #111;
    border: none;
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

/* ===========================
   MOBILE + TABLET SCROLL
=========================== */
@media (max-width: 991px) {

    .gallery-wrap {
        padding: 0 15px;
    }

    .gallery-grid {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }

    .gallery-grid::-webkit-scrollbar {
        display: none;
    }

    /* Every image same like card */
    .gallery-main,
    .gallery-thumb {
        flex: 0 0 85%;
        height: 260px;
        border-radius: 18px;
        scroll-snap-align: start;
    }

    .gallery-main img,
    .gallery-thumb img {
        border-radius: 18px;
    }

    .view-all-btn {
        bottom: 12px;
        right: 12px;
        padding: 8px 14px;
        font-size: 14px;
    }
}

/* Small mobile */
@media (max-width: 576px) {

    .gallery-main,
    .gallery-thumb {
        flex: 0 0 92%;
        height: 220px;
    }

    .view-all-btn {
        font-size: 13px;
        padding: 7px 12px;
    }
}



/* ===============================
   RIGHT SIDE FREEZE / STICKY FIX
   Laptop lo right side freeze avvali
=================================*/

/* Parent container */
.page-body {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 24px;
    align-items: start;
    overflow: visible !important;
}

/* Right Sidebar Freeze */
.right-col {
    position: sticky;
    top: 90px;
    /* navbar kindha stop */
    align-self: start;
    height: fit-content;
}

/* Important: parent overflow remove */
body,
html,
.page-body,
.left {
    overflow: visible !important;
}

/* Laptop/Desktop only */
@media (max-width:991px) {
    .page-body {
        grid-template-columns: 1fr;
    }

    .right-col {
        position: static;
        top: auto;
    }
}

/* =========================================================
   MOBILE BOOKING UX FIX - Brevistay-style sticky footer bar
   Keeps desktop sidebar as-is; on mobile the booking widget
   stays visible at the bottom for easy reservation.
========================================================= */
.mobile-booking-head {
    display: none
}

@media (max-width: 768px) {

    html,
    body {
        max-width: 100%;
        overflow-x: hidden !important;
    }

    body {
        padding-bottom: 112px !important;
    }

    .page-body {
        display: block !important;
        padding: 0 !important;
    }

    .left {
        width: 100% !important;
        padding-bottom: 0 !important;
    }

    /* Prevent the complete booking form from going to the last section */
    .right-col {
        position: static !important;
        display: block !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .right-col .cancel-card,
    .right-col .help-card {
        display: none !important;
    }

    .bwidget {
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        max-height: 78vh;
        overflow-y: auto;
        z-index: 9999;
        border-radius: 22px 22px 0 0 !important;
        border: 1px solid rgba(17, 24, 39, .08) !important;
        border-bottom: 0 !important;
        box-shadow: 0 -10px 30px rgba(15, 23, 42, .16) !important;
        background: #fff !important;
    }

    .mobile-booking-head {
        display: block !important;
        background: #fff;
        padding: 14px 16px 16px;
        border-top: 1px solid rgba(17, 24, 39, .06);
    }

    .mobile-slot-toggle {
        width: 100%;
        border: 0;
        background: #fff;
        color: #3f3f46;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 18px;
        font-weight: 800;
        padding: 0 0 10px;
        border-bottom: 1px solid #e5e7eb;
        cursor: pointer;
    }

    .mobile-slot-toggle i {
        font-size: 18px;
        color: #52525b;
        transition: transform .2s ease;
    }

    .bwidget.mobile-collapsed .mobile-slot-toggle i {
        transform: rotate(180deg);
    }

    .mobile-price-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        padding-top: 14px;
    }

    .mobile-price-row strong {
        display: inline-block;
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        line-height: 1;
        font-weight: 900;
        color: #111827;
    }

    .mobile-price-row small {
        font-size: 14px;
        font-weight: 700;
        color: #52525b;
    }

    .mobile-price-row a {
        display: block;
        margin-top: 7px;
        color: #0891b2;
        text-decoration: underline;
        font-size: 14px;
        font-weight: 700;
    }

    .mobile-reserve-btn {
        min-width: 148px;
        height: 56px;
        border: 0;
        border-radius: 14px;
        background: var(--red);
        color: #fff;
        font-size: 18px;
        font-weight: 900;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        box-shadow: 0 8px 22px rgba(227, 30, 36, .32);
    }

    /* collapsed = only footer bar visible */
    .bwidget.mobile-collapsed .bw-top,
    .bwidget.mobile-collapsed .bw-form,
    .bwidget.mobile-collapsed .bw-cta-wrap,
    .bwidget.mobile-collapsed>div[style*="padding:1.2rem"] {
        display: none !important;
    }

    /* expanded mobile panel */
    .bwidget:not(.mobile-collapsed) .bw-top {
        display: none !important;
    }

    .bwidget:not(.mobile-collapsed)>div[style*="padding:1.2rem"] {
        display: block !important;
        padding: 0 16px !important;
    }

    .bwidget:not(.mobile-collapsed) .bw-dtabs {
        margin: 10px 0 12px !important;
    }

    .bwidget:not(.mobile-collapsed) .bw-form {
        padding: 0 16px 12px !important;
        gap: 10px !important;
    }

    .bwidget:not(.mobile-collapsed) .bw-cta-wrap {
        padding: 0 16px 16px !important;
    }

    .bwidget:not(.mobile-collapsed) .bw-trust {
        display: none !important;
    }

    .bwidget:not(.mobile-collapsed) .bw-cta {
        margin-bottom: 0 !important;
        height: 54px;
        border-radius: 14px;
    }

    .bw-row2 {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    .bw-field label {
        font-size: 10px !important;
        letter-spacing: .09em !important;
        margin-bottom: 5px !important;
    }

    .bw-inp {
        height: 42px !important;
        padding: 8px 10px !important;
        border-radius: 12px !important;
        font-size: 13px !important;
    }

    .bw-dt {
        padding: 9px 5px !important;
    }

    .bw-dt-lbl {
        font-size: 10px !important;
    }

    .bw-dt-pr {
        font-size: 14px !important;
    }

    .float-btns {
        bottom: 120px !important;
        right: 14px !important;
    }

    .tab-book-cta {
        display: none !important;
    }

    footer {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 390px) {
    .mobile-reserve-btn {
        min-width: 132px;
        font-size: 16px;
        height: 52px;
    }

    .mobile-price-row strong {
        font-size: 22px;
    }

    .mobile-slot-toggle {
        font-size: 17px;
    }
}

/* =========================================================
   FINAL MOBILE SEARCH / FILTER FIX
========================================================= */
@media (max-width: 992px) {
    .topbar-inner { align-items: stretch !important; }
    .search-strip {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: .5rem !important;
        order: 3 !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: .55rem !important;
        margin-top: .35rem !important;
        border-radius: 16px !important;
        background: #fff !important;
        box-shadow: 0 8px 24px rgba(15,23,42,.08) !important;
        border: 1px solid #eef0f4 !important;
    }
    .search-strip .ss-item { min-width: 0 !important; padding: .55rem !important; border-radius: 12px !important; background:#f8fafc !important; }
    .search-strip .ss-go { grid-column: 1 / -1 !important; height: 44px !important; border-radius: 12px !important; }
    .ss-label { font-size: .62rem !important; }
    .ss-val { font-size: .76rem !important; white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis !important; max-width: 120px !important; display:block !important; }
    .topbar-right { margin-left: auto !important; }
}


/* Mobile booking footer: collapsed by default, expanded only after Book Now */
@media (max-width: 768px) {
    .bwidget.mobile-collapsed { max-height: 108px !important; overflow: hidden !important; }
    .bwidget.mobile-collapsed .mobile-booking-head { display:block !important; }
    .bwidget.mobile-collapsed .mobile-slot-toggle { display:none !important; }
    .bwidget.mobile-collapsed .mobile-price-row { padding-top: 0 !important; }
    .bwidget.mobile-collapsed .mobile-price-row a { display:none !important; }
    .bwidget.mobile-collapsed .mobile-reserve-btn { background: var(--red) !important; }
    .bwidget:not(.mobile-collapsed) .mobile-slot-toggle { display:flex !important; }
    .bwidget:not(.mobile-collapsed) { max-height: 82vh !important; }
    .tab-book-cta { display: inline-flex !important; }
}
