:root {
    --hotel-primary: #58306e;
    --hotel-primary-dark: #46237a;
    --hotel-accent: #7c4dff;
    --hotel-bg: #f5f0f8;
    --hotel-card: #ffffff;
    --hotel-text: #2d1b36;
    --hotel-muted: #6b5b73;
    --hotel-radius: 16px;
    --hotel-shadow: 0 4px 20px rgba(88, 48, 110, 0.12);
}

* { box-sizing: border-box; }

body.hotel-app,
body.hotel-app button,
body.hotel-app input,
body.hotel-app select,
body.hotel-app textarea,
body.hotel-app .btn {
    font-family: 'Vazir', Tahoma, sans-serif;
}

body.hotel-app {
    background: var(--hotel-bg);
    color: var(--hotel-text);
    min-height: 100vh;
    margin: 0;
    line-height: 1.7;
}

body.hotel-app a,
body.hotel-app a:hover,
body.hotel-app a:focus,
body.hotel-app a:active {
    text-decoration: none;
}

.hotel-header {
    background: linear-gradient(135deg, var(--hotel-primary-dark), var(--hotel-primary));
    color: #fff;
    padding: 1.25rem 1rem 1.5rem;
    text-align: center;
}

.hotel-header img.logo {
    max-height: 56px;
    margin-bottom: 0.75rem;
}

.hotel-header h1 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
}

.hotel-main {
    max-width: 480px;
    margin: 0 auto;
    padding: 1rem 1rem 5rem;
}

.hotel-nav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1rem;
}

.hotel-nav-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--hotel-card);
    border-radius: var(--hotel-radius);
    padding: 1.25rem 0.75rem;
    text-decoration: none;
    color: var(--hotel-text);
    box-shadow: var(--hotel-shadow);
    transition: transform 0.15s, box-shadow 0.15s;
    min-height: 110px;
}

.hotel-nav-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(88, 48, 110, 0.18);
    color: var(--hotel-primary);
}

.hotel-nav-card i {
    font-size: 1.75rem;
    color: var(--hotel-primary);
}

.hotel-nav-card span {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.hotel-note {
    background: rgba(88, 48, 110, 0.08);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: var(--hotel-primary-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.hotel-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
}

.hotel-tabs::-webkit-scrollbar { height: 4px; }
.hotel-tabs::-webkit-scrollbar-thumb { background: var(--hotel-primary); border-radius: 4px; }

.hotel-tab {
    flex-shrink: 0;
    border: none;
    background: var(--hotel-card);
    color: var(--hotel-muted);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.82rem;
    cursor: pointer;
    box-shadow: var(--hotel-shadow);
}

.hotel-tab.active {
    background: var(--hotel-primary);
    color: #fff;
}

.hotel-menu-section { display: none; }
.hotel-menu-section.active { display: block; }

.hotel-item {
    background: var(--hotel-card);
    border-radius: var(--hotel-radius);
    padding: 1rem;
    margin-bottom: 0.75rem;
    box-shadow: var(--hotel-shadow);
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.hotel-item img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.hotel-item-body { flex: 1; min-width: 0; }

.hotel-item-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0 0 0.15rem;
}

.hotel-item-title-en {
    font-size: 0.78rem;
    color: var(--hotel-muted);
    margin: 0 0 0.35rem;
}

.hotel-item-price {
    font-weight: 600;
    color: var(--hotel-primary);
    font-size: 0.88rem;
}

.hotel-table-wrap {
    background: var(--hotel-card);
    border-radius: var(--hotel-radius);
    box-shadow: var(--hotel-shadow);
    overflow: hidden;
}

.hotel-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.hotel-table th,
.hotel-table td {
    padding: 0.75rem;
    text-align: right;
    border-bottom: 1px solid #eee;
}

.hotel-table th {
    background: var(--hotel-primary);
    color: #fff;
    font-weight: 600;
}

.hotel-table tr:last-child td { border-bottom: none; }

.hotel-place-card {
    background: var(--hotel-card);
    border-radius: var(--hotel-radius);
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: var(--hotel-shadow);
    text-decoration: none;
    color: inherit;
    display: block;
}

.hotel-place-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.hotel-place-card .body {
    padding: 1rem;
}

.hotel-place-card h3 {
    margin: 0;
    font-size: 1rem;
    color: var(--hotel-primary-dark);
}

.hotel-contact-block {
    background: var(--hotel-card);
    border-radius: var(--hotel-radius);
    padding: 1.25rem;
    margin-bottom: 1rem;
    box-shadow: var(--hotel-shadow);
}

.hotel-contact-block h3 {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    color: var(--hotel-primary);
}

.hotel-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--hotel-primary);
    color: #fff !important;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0.25rem 0.25rem 0.25rem 0;
    border: none;
}

.hotel-btn-outline {
    background: transparent;
    color: var(--hotel-primary) !important;
    border: 2px solid var(--hotel-primary);
}

.hotel-btn-whatsapp { background: #25d366; }

.hotel-phone-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hotel-phone-list li {
    padding: 0.35rem 0;
    font-size: 0.95rem;
}

/* Legacy alias — replaced by .app-tabbar */
.hotel-bottom-nav { display: none; }

.hotel-back {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--hotel-primary);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.hotel-content-page {
    background: var(--hotel-card);
    border-radius: var(--hotel-radius);
    padding: 1.25rem;
    box-shadow: var(--hotel-shadow);
    font-size: 0.9rem;
    line-height: 1.9;
}

.hotel-content-page img {
    max-width: 100%;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.hotel-room-card {
    background: var(--hotel-card);
    border-radius: var(--hotel-radius);
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: var(--hotel-shadow);
    text-decoration: none;
    color: inherit;
    display: block;
}

.hotel-room-card__media {
    position: relative;
    height: 170px;
    background: linear-gradient(135deg, #e8dff0, #f5f0f8);
}

.hotel-room-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-room-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hotel-primary);
    font-size: 3rem;
    opacity: 0.45;
}

.hotel-room-card__badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: #b45309;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
}

.hotel-room-card__badge--suite {
    background: var(--hotel-primary);
}

.hotel-room-card__body {
    padding: 1rem;
}

.hotel-room-card__body h3 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    color: var(--hotel-primary-dark);
}

.hotel-room-card__meta {
    display: flex;
    gap: 1rem;
    font-size: 0.82rem;
    color: var(--hotel-muted);
    margin-bottom: 0.5rem;
}

.hotel-room-card__meta i {
    color: var(--hotel-primary);
    margin-left: 0.25rem;
}

.hotel-room-card__price {
    font-weight: 700;
    color: var(--hotel-primary);
    font-size: 0.95rem;
}

.hotel-room-card__price small {
    font-weight: 500;
    color: var(--hotel-muted);
    font-size: 0.78rem;
}

.hotel-room-card__avail {
    margin-top: 0.35rem;
    font-size: 0.78rem;
    color: var(--hotel-muted);
}

.hotel-room-gallery {
    position: relative;
    border-radius: var(--hotel-radius);
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: var(--hotel-shadow);
    background: #e8dff0;
    min-height: 200px;
}

.hotel-room-gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: none;
}

.hotel-room-gallery img.active {
    display: block;
}

.hotel-room-gallery--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    color: var(--hotel-primary);
    font-size: 3rem;
    opacity: 0.4;
}

.hotel-room-gallery__dots {
    position: absolute;
    bottom: 0.65rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.35rem;
}

.hotel-room-gallery__dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.55);
    padding: 0;
    cursor: pointer;
}

.hotel-room-gallery__dots button.active {
    background: #fff;
    transform: scale(1.15);
}

.hotel-room-price-box {
    background: var(--hotel-card);
    border-radius: var(--hotel-radius);
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    box-shadow: var(--hotel-shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hotel-room-price-box .label {
    display: block;
    font-size: 0.78rem;
    color: var(--hotel-muted);
    margin-bottom: 0.15rem;
}

.hotel-room-price-box strong {
    font-size: 1.1rem;
    color: var(--hotel-primary);
}

.hotel-room-price-box__meta {
    display: flex;
    gap: 0.85rem;
    font-size: 0.82rem;
    color: var(--hotel-muted);
}

.hotel-room-price-box__meta i {
    color: var(--hotel-primary);
    margin-left: 0.2rem;
}

.hotel-room-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.88rem;
}

.hotel-room-info-list li {
    padding: 0.35rem 0;
    border-bottom: 1px solid #f0eaf4;
}

.hotel-room-info-list li:last-child {
    border-bottom: none;
}

.hotel-amenity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.hotel-amenity-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    padding: 0.35rem 0;
}

.hotel-amenity-item i {
    color: var(--hotel-primary);
    width: 1.1rem;
    text-align: center;
    flex-shrink: 0;
}

.hotel-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hotel-service-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0eaf4;
    font-size: 0.85rem;
}

.hotel-service-list li:last-child {
    border-bottom: none;
}

.hotel-service-list .price {
    color: var(--hotel-primary);
    font-weight: 600;
    text-align: left;
    white-space: nowrap;
}

.hotel-service-list .price small {
    display: block;
    font-weight: 400;
    color: var(--hotel-muted);
    font-size: 0.72rem;
}

.hotel-room-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}


/* ══════════════════════════════════════════════════════════
   Mobile app hub (/app)
   ══════════════════════════════════════════════════════════ */

body.hotel-app--hub {
    --hotel-primary: #3f2618;
    --hotel-primary-dark: #2e1b11;
    --hotel-accent: #b8956f;
    --hotel-bg: #f7f3ee;
    --hotel-text: #3f2618;
    --hotel-muted: #8a7c6e;
    --hotel-shadow: 0 4px 18px rgba(63, 38, 24, 0.1);
    --app-icon-bg: #f5ebe0;
    --app-icon-bg-muted: #ebe3d8;
    --app-icon-color: #3f2618;
}

.app-header {
    position: sticky;
    top: 0;
    z-index: 110;
    background: var(--hotel-primary);
    box-shadow: 0 4px 20px rgba(63, 38, 24, 0.22);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.app-header__bar {
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    align-items: center;
    gap: 0.5rem;
    max-width: 480px;
    margin: 0 auto;
    padding: 0.7rem 0.85rem;
    padding-top: calc(0.7rem + env(safe-area-inset-top, 0px));
}
.app-header__slot { display: block; }
.app-header__center {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.app-header__title {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.app-header__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    min-width: 0;
    color: #fff !important;
    text-decoration: none;
}
.app-header__brand--compact {
    gap: 0.45rem;
}
.app-header__brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.08rem;
    min-width: 0;
}
.app-header__logo {
    width: auto;
    max-width: 108px;
    height: 38px;
    object-fit: contain;
    padding: 0;
    flex-shrink: 0;
}
.app-header__logo-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: rgba(255,255,255,.12);
    color: var(--hotel-accent);
    font-size: 1rem;
    flex-shrink: 0;
}
.app-header__name {
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.app-header__tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.68rem;
    font-weight: 700;
    color: rgba(255,255,255,.78);
    line-height: 1.2;
}
.app-header__tagline i {
    color: var(--hotel-accent);
    font-size: 0.58rem;
}
.app-header__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.12s, background 0.12s;
}
.app-header__btn:active { transform: scale(0.94); }
.app-header__btn--ghost {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.12);
    color: #fff !important;
}
.app-header__btn--accent {
    background: rgba(255,255,255,.95);
    color: var(--hotel-primary) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,.12);
}
.app-header__btn--accent i { color: var(--hotel-accent); }

.app-main {
    max-width: 480px;
    margin: 0 auto;
    padding: 1rem 1rem 1.25rem;
    min-height: calc(100vh - 180px);
}

/* App shell footer + tab bar */
.app-shell-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    max-width: 480px;
    margin: 0 auto;
    background: #fff;
    border-top: 1px solid #ebe3d8;
    box-shadow: 0 -6px 24px rgba(63, 38, 24, 0.08);
    padding-bottom: env(safe-area-inset-bottom, 0px);
}
.app-shell-footer__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    padding: 0.4rem 0.75rem 0.25rem;
    font-size: 0.64rem;
    font-weight: 700;
    color: var(--hotel-muted);
}
.app-shell-footer__meta i {
    color: var(--hotel-accent);
    font-size: 0.58rem;
    margin-left: 0.15rem;
}
.app-shell-footer__dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #d4c8bc;
}
.app-shell-footer__copy {
    margin: 0;
    padding: 0.2rem 0.75rem 0.35rem;
    text-align: center;
    font-size: 0.58rem;
    font-weight: 600;
    color: #b0a498;
}

.app-tabbar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.15rem;
    padding: 0.35rem 0.5rem 0.25rem;
}
.app-tabbar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 0.3rem 0.15rem;
    color: var(--hotel-muted) !important;
    -webkit-tap-highlight-color: transparent;
    transition: color 0.15s;
}
.app-tabbar__item:active { transform: scale(0.96); }
.app-tabbar__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 32px;
    border-radius: 12px;
    font-size: 1.05rem;
    transition: background 0.15s, color 0.15s;
}
.app-tabbar__label {
    font-size: 0.62rem;
    font-weight: 800;
    line-height: 1.2;
}
.app-tabbar__item.active {
    color: var(--hotel-primary) !important;
}
.app-tabbar__item.active .app-tabbar__icon {
    background: var(--app-icon-bg);
    color: var(--hotel-primary);
}

body.hotel-app--hub .app-main {
    padding-bottom: calc(7.5rem + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 481px) {
    .app-shell-footer {
        left: 50%;
        transform: translateX(-50%);
        border-radius: 18px 18px 0 0;
    }
}

/* App hub home */
.app-hub {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-hub-hero {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: var(--hotel-primary);
    color: #fff;
    box-shadow: 0 12px 32px rgba(63, 38, 24, 0.22);
}
.app-hub-hero--photo {
    background-color: var(--hotel-primary-dark);
    background-image: var(--app-hub-hero-bg);
    background-size: cover;
    background-position: center;
}
.app-hub-hero--photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(46, 27, 17, 0.78);
    pointer-events: none;
}
.app-hub-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.65rem 1.25rem 1.35rem;
}
.app-hub-quick {
    margin-top: -0.15rem;
    grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
}
.app-hub-hero__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    border-radius: 22px;
    background: rgba(255,255,255,.12);
    border: 2px solid rgba(255,255,255,.18);
    margin-bottom: 0.85rem;
    overflow: hidden;
}
.app-hub-hero__avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.35rem;
}
.app-hub-hero__avatar i {
    font-size: 1.85rem;
    color: var(--hotel-accent);
}
.app-hub-hero__name {
    margin: 0 0 0.6rem;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.4;
}
.app-hub-hero__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem;
    margin-bottom: 0.75rem;
}
.app-hub-hero__badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.14);
    font-size: 0.72rem;
    font-weight: 700;
}
.app-hub-hero__badges i { color: var(--hotel-accent); font-size: 0.68rem; }
.app-hub-hero__stats {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    font-size: 0.76rem;
    color: rgba(255,255,255,.85);
}
.app-hub-hero__stats strong { color: var(--hotel-accent); font-weight: 800; }
.app-hub-hero__dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
}

.app-hub-book {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.15rem;
    border-radius: 18px;
    background: var(--hotel-primary);
    border: 1px solid rgba(255,255,255,.08);
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(63, 38, 24, 0.28);
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.12s, box-shadow 0.12s;
}
.app-hub-book:active {
    transform: scale(0.98);
    box-shadow: 0 5px 16px rgba(63, 38, 24, 0.22);
}
.app-hub-book__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255,255,255,.14);
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.app-hub-book__icon i { color: var(--hotel-accent); }
.app-hub-book__text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}
.app-hub-book__text strong {
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
}
.app-hub-book__text small {
    font-size: 0.74rem;
    color: rgba(255,255,255,.72);
    font-weight: 600;
}
.app-hub-book__arrow {
    color: var(--hotel-accent);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.app-hub-group__title {
    margin: 0 0 0.55rem;
    padding: 0 0.25rem;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--hotel-muted);
    letter-spacing: 0.02em;
}
.app-hub-grid {
    display: grid;
    gap: 0.6rem;
}
.app-hub-grid--main {
    grid-template-columns: repeat(2, 1fr);
}
.app-hub-grid--services {
    grid-template-columns: 1fr;
    gap: 0.55rem;
}

.app-hub-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 104px;
    padding: 1rem 0.6rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #ebe3d8;
    color: var(--hotel-text) !important;
    box-shadow: 0 2px 10px rgba(63, 38, 24, 0.06);
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.12s;
}
.app-hub-tile:active { transform: scale(0.96); }
.app-hub-tile--row {
    flex-direction: row;
    min-height: auto;
    padding: 0.9rem 1rem;
    justify-content: flex-start;
    gap: 0.75rem;
}
.app-hub-tile__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 1.15rem;
    flex-shrink: 0;
    background: var(--app-icon-bg);
    color: var(--app-icon-color);
}
.app-hub-tile--row .app-hub-tile__icon {
    background: var(--app-icon-bg-muted);
}
.app-hub-tile__label {
    font-size: 0.86rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.3;
}
.app-hub-tile--row .app-hub-tile__label {
    flex: 1;
    text-align: right;
}
.app-hub-tile__chev {
    font-size: 0.7rem;
    color: #c4b8aa;
    flex-shrink: 0;
}

.app-hub-links {
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #ebe3d8;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(63, 38, 24, 0.06);
}
.app-hub-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    color: var(--hotel-text) !important;
    font-size: 0.88rem;
    font-weight: 700;
    border-bottom: 1px solid #f3ede6;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.12s;
}
.app-hub-link:last-child { border-bottom: none; }
.app-hub-link:active { background: var(--hotel-bg); }
.app-hub-link__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    font-size: 0.95rem;
    flex-shrink: 0;
    background: var(--app-icon-bg);
    color: var(--app-icon-color);
}
.app-hub-link span:not(.app-hub-link__icon) { flex: 1; }
.app-hub-link__chev {
    font-size: 0.7rem;
    color: #c4b8aa;
}

@media (min-width: 400px) {
    .app-hub-grid--main {
        grid-template-columns: repeat(4, 1fr);
    }
    .app-hub-tile--row { min-height: 64px; }
}

/* App inner pages */
.app-page-head {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 1rem;
    background: #fff;
    border-bottom: 1px solid #e7ddd0;
    position: sticky;
    top: calc(58px + env(safe-area-inset-top, 0px));
    z-index: 90;
}
.app-page-head__back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--hotel-bg);
    color: var(--hotel-primary) !important;
    flex-shrink: 0;
}
.app-page-head__title {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--hotel-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.app-main--sub { padding-top: 0.5rem; }

.app-empty {
    text-align: center;
    color: var(--hotel-muted);
    font-size: 0.9rem;
    padding: 2rem 0;
}

.app-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.app-action {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 1.1rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #e7ddd0;
    color: var(--hotel-text) !important;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: var(--hotel-shadow);
    -webkit-tap-highlight-color: transparent;
}
.app-action i {
    width: 1.25rem;
    text-align: center;
    color: var(--hotel-accent);
    flex-shrink: 0;
}
.app-action--primary {
    background: var(--hotel-primary);
    border-color: var(--hotel-primary);
    color: #fff !important;
}
.app-action--primary i { color: var(--hotel-accent); }
.app-action--whatsapp { background: var(--app-icon-bg); border-color: #ddd0c0; }
.app-action--whatsapp i { color: var(--app-icon-color); }

.app-tabs {
    display: flex;
    gap: 0.45rem;
    overflow-x: auto;
    padding-bottom: 0.65rem;
    margin-bottom: 0.85rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.app-tabs::-webkit-scrollbar { display: none; }
.app-tab {
    flex-shrink: 0;
    padding: 0.55rem 0.95rem;
    border: 1px solid #e7ddd0;
    border-radius: 999px;
    background: #fff;
    color: var(--hotel-text);
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
}
.app-tab.is-active {
    background: var(--hotel-primary);
    border-color: var(--hotel-primary);
    color: #fff;
}
.app-menu-panel { display: none; }
.app-menu-panel.is-active { display: block; }
.app-menu-item {
    padding: 0.85rem 1rem;
    margin-bottom: 0.55rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #e7ddd0;
    box-shadow: var(--hotel-shadow);
}
.app-menu-item__row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}
.app-menu-item__title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--hotel-text);
    flex-shrink: 0;
    max-width: 58%;
}
.app-menu-item__dots {
    flex: 1;
    border-bottom: 2px dotted #e7ddd0;
    min-width: 0.5rem;
    margin-bottom: 0.2rem;
}
.app-menu-item__price {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--hotel-primary);
    white-space: nowrap;
}
.app-menu-item__en {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: var(--hotel-muted);
    font-style: italic;
}

.app-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #e7ddd0;
    color: var(--hotel-text) !important;
    box-shadow: var(--hotel-shadow);
    -webkit-tap-highlight-color: transparent;
}
.app-card__img,
.app-card__placeholder {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    flex-shrink: 0;
    object-fit: cover;
    background: var(--hotel-bg);
}
.app-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hotel-accent);
    font-size: 1.4rem;
}
.app-card__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.app-card__body strong {
    font-size: 0.9rem;
    font-weight: 800;
}
.app-card__body span {
    font-size: 0.78rem;
    color: var(--hotel-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.app-card__body em {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--hotel-primary);
    font-style: normal;
}
.app-card__arrow {
    color: var(--hotel-accent);
    font-size: 0.75rem;
    flex-shrink: 0;
}
.app-card--row { padding: 1rem; }
.app-card__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--hotel-bg);
    color: var(--hotel-primary);
    font-size: 0.78rem;
    font-weight: 800;
    flex-shrink: 0;
}

.app-room__cover {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 0.85rem;
}
.app-room__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}
.app-room__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e7ddd0;
    font-size: 0.78rem;
    font-weight: 600;
}
.app-room__meta i { color: var(--hotel-accent); }
.app-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}
.app-chips span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.65rem;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e7ddd0;
    font-size: 0.75rem;
    font-weight: 600;
    color: #5b5048;
}
.app-chips i { color: var(--hotel-accent); font-size: 0.7rem; }

.app-detail__img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 0.85rem;
}
.app-detail__text {
    font-size: 0.88rem;
    line-height: 1.9;
    color: #5b5048;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e7ddd0;
}

.app-table-wrap {
    overflow-x: auto;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #e7ddd0;
    box-shadow: var(--hotel-shadow);
}
.app-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
}
.app-table th,
.app-table td {
    padding: 0.7rem 0.65rem;
    text-align: right;
    border-bottom: 1px solid #f0ebe3;
}
.app-table th {
    background: var(--hotel-bg);
    font-weight: 800;
    color: var(--hotel-primary);
    font-size: 0.78rem;
}
.app-table tr:last-child td { border-bottom: none; }

.app-rate {
    padding: 1rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #e7ddd0;
    box-shadow: var(--hotel-shadow);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.app-rate strong { font-size: 0.9rem; font-weight: 800; }
.app-rate span { font-size: 0.78rem; color: var(--hotel-muted); }
.app-rate em {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--hotel-primary);
    font-style: normal;
    margin-top: 0.25rem;
}

/* ══════════════════════════════════════════════════════════
   App contact page — modern mobile UI
   ══════════════════════════════════════════════════════════ */

.app-contact {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    padding-bottom: 4.5rem;
}

.app-contact-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1.25rem 1.35rem;
    border-radius: 22px;
    background: var(--hotel-primary);
    color: #fff;
    box-shadow: 0 12px 32px rgba(63, 38, 24, 0.22);
}
.app-contact-hero__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: rgba(255,255,255,.12);
    border: 2px solid rgba(255,255,255,.18);
    margin-bottom: 0.85rem;
    overflow: hidden;
}
.app-contact-hero__avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.35rem;
}
.app-contact-hero__avatar i {
    font-size: 1.75rem;
    color: var(--hotel-accent);
}
.app-contact-hero__name {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.4;
}
.app-contact-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.16);
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255,255,255,.9);
    margin-bottom: 1rem;
}
.app-contact-hero__badge i { color: var(--hotel-accent); font-size: 0.68rem; }
.app-contact-hero__call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    max-width: 280px;
    padding: 0.9rem 1.25rem;
    border-radius: 16px;
    background: #fff;
    color: var(--hotel-primary) !important;
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(0,0,0,.15);
    transition: transform 0.15s;
    -webkit-tap-highlight-color: transparent;
}
.app-contact-hero__call:active { transform: scale(0.97); }
.app-contact-hero__call i { color: var(--hotel-accent); }

.app-contact-quick {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}
.app-contact-quick__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    padding: 0.75rem 0.35rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #ebe3d8;
    color: var(--hotel-text) !important;
    font-size: 0.72rem;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(63, 38, 24, 0.06);
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.12s;
}
.app-contact-quick__item:active { transform: scale(0.94); }
.app-contact-quick__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 1.1rem;
    background: var(--app-icon-bg);
    color: var(--app-icon-color);
}

.app-contact-group__title {
    margin: 0 0 0.5rem;
    padding: 0 0.35rem;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--hotel-muted);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.app-contact-list {
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #ebe3d8;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(63, 38, 24, 0.06);
}
.app-contact-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem 1rem;
    color: var(--hotel-text) !important;
    border-bottom: 1px solid #f3ede6;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.12s;
}
.app-contact-item:last-child { border-bottom: none; }
.app-contact-item:active { background: var(--hotel-bg); }
.app-contact-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--app-icon-bg);
    color: var(--app-icon-color);
    font-size: 0.95rem;
    flex-shrink: 0;
}
.app-contact-item__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}
.app-contact-item__body strong {
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.3;
}
.app-contact-item__body small {
    font-size: 0.76rem;
    color: var(--hotel-muted);
    font-weight: 600;
}
.app-contact-item__chev {
    font-size: 0.7rem;
    color: #c4b8aa;
    flex-shrink: 0;
}

.app-contact-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.75rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--hotel-muted);
}
.app-contact-location i { color: var(--hotel-accent); }

.app-contact-fab {
    position: fixed;
    bottom: calc(7.5rem + env(safe-area-inset-bottom, 0px));
    left: 50%;
    transform: translateX(-50%);
    z-index: 80;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    background: var(--hotel-primary);
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 8px 28px rgba(63, 38, 24, 0.35);
    border: 1px solid rgba(255,255,255,.12);
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.15s, box-shadow 0.15s;
    max-width: calc(480px - 2rem);
}
.app-contact-fab:active {
    transform: translateX(-50%) scale(0.96);
}
.app-contact-fab i { color: var(--hotel-accent); }

@media (max-width: 360px) {
    .app-contact-quick { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════════════════
   App menu page — modern mobile UI
   ══════════════════════════════════════════════════════════ */

.app-menu {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.app-menu-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 3rem 1rem;
    text-align: center;
    color: var(--hotel-muted);
}
.app-menu-empty__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #ebe3d8;
    color: var(--hotel-accent);
    font-size: 1.5rem;
    opacity: 0.7;
}
.app-menu-empty p { margin: 0; font-size: 0.9rem; }

.app-menu-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.35rem 1.25rem 1.15rem;
    border-radius: 22px;
    background: var(--hotel-primary);
    color: #fff;
    box-shadow: 0 12px 32px rgba(63, 38, 24, 0.22);
}
.app-menu-hero__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(255,255,255,.12);
    border: 2px solid rgba(255,255,255,.16);
    font-size: 1.4rem;
    color: var(--hotel-accent);
    margin-bottom: 0.75rem;
}
.app-menu-hero__title {
    margin: 0 0 0.55rem;
    font-size: 1.05rem;
    font-weight: 800;
}
.app-menu-hero__stats {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.14);
    font-size: 0.78rem;
    color: rgba(255,255,255,.85);
}
.app-menu-hero__stats strong {
    color: var(--hotel-accent);
    font-weight: 800;
}
.app-menu-hero__dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
}

.app-menu-note {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.8rem 1rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #ebe3d8;
    box-shadow: 0 2px 10px rgba(63, 38, 24, 0.06);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--hotel-text);
    line-height: 1.6;
}
.app-menu-note i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--app-icon-bg);
    color: var(--app-icon-color);
    flex-shrink: 0;
}

.app-menu-cats-wrap {
    position: sticky;
    top: calc(58px + env(safe-area-inset-top, 0px));
    z-index: 85;
    margin: 0 -0.25rem;
    padding: 0.35rem 0;
    background: var(--hotel-bg);
}
.app-menu-cats {
    display: flex;
    gap: 0.45rem;
    overflow-x: auto;
    padding: 0.15rem 0.25rem 0.35rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.app-menu-cats::-webkit-scrollbar { display: none; }
.app-menu-cat {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 0.95rem;
    border: 1px solid #ebe3d8;
    border-radius: 999px;
    background: #fff;
    color: var(--hotel-text);
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(63, 38, 24, 0.05);
    transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.12s;
    -webkit-tap-highlight-color: transparent;
}
.app-menu-cat:active { transform: scale(0.96); }
.app-menu-cat.is-active {
    background: var(--hotel-primary);
    border-color: var(--hotel-primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(63, 38, 24, 0.25);
}
.app-menu-cat__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.35rem;
    height: 1.35rem;
    padding: 0 0.3rem;
    border-radius: 999px;
    background: var(--hotel-bg);
    color: var(--hotel-primary);
    font-size: 0.68rem;
    font-weight: 800;
}
.app-menu-cat.is-active .app-menu-cat__count {
    background: rgba(255,255,255,.2);
    color: #fff;
}

.app-menu-panel { display: none; }
.app-menu-panel.is-active { display: block; }
.app-menu-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.55rem;
    padding: 0 0.15rem;
}
.app-menu-panel__head h3 {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--hotel-text);
}
.app-menu-panel__head span {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--hotel-muted);
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #ebe3d8;
}

.app-menu-list {
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #ebe3d8;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(63, 38, 24, 0.06);
}
.app-menu-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.95rem 1rem;
    border-bottom: 1px solid #f3ede6;
}
.app-menu-row:last-child { border-bottom: none; }
.app-menu-row__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.app-menu-row__body strong {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--hotel-text);
    line-height: 1.45;
}
.app-menu-row__body small {
    font-size: 0.74rem;
    color: var(--hotel-muted);
    font-style: italic;
    line-height: 1.4;
}
.app-menu-row__price {
    flex-shrink: 0;
    padding: 0.35rem 0.65rem;
    border-radius: 10px;
    background: var(--app-icon-bg);
    color: var(--app-icon-color);
    font-size: 0.76rem;
    font-weight: 800;
    white-space: nowrap;
    line-height: 1.3;
    text-align: center;
    max-width: 42%;
}

/* ══════════════════════════════════════════════════════════
   App tourism page — modern mobile UI
   ══════════════════════════════════════════════════════════ */

.app-tourism {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.app-tourism-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 3rem 1rem;
    text-align: center;
    color: var(--hotel-muted);
}
.app-tourism-empty__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #ebe3d8;
    color: var(--hotel-accent);
    font-size: 1.5rem;
    opacity: 0.7;
}
.app-tourism-empty p { margin: 0; font-size: 0.9rem; }

.app-tourism-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.35rem 1.25rem 1.15rem;
    border-radius: 22px;
    background: var(--hotel-primary);
    color: #fff;
    box-shadow: 0 12px 32px rgba(63, 38, 24, 0.22);
}
.app-tourism-hero__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(255,255,255,.12);
    border: 2px solid rgba(255,255,255,.16);
    font-size: 1.4rem;
    color: var(--hotel-accent);
    margin-bottom: 0.75rem;
}
.app-tourism-hero__title {
    margin: 0 0 0.55rem;
    font-size: 1.05rem;
    font-weight: 800;
}
.app-tourism-hero__stats {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.14);
    font-size: 0.78rem;
    color: rgba(255,255,255,.85);
}
.app-tourism-hero__stats strong {
    color: var(--hotel-accent);
    font-weight: 800;
}
.app-tourism-hero__dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
}

.app-tourism-quick {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}
.app-tourism-quick__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    padding: 0.75rem 0.35rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #ebe3d8;
    color: var(--hotel-text) !important;
    font-size: 0.72rem;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(63, 38, 24, 0.06);
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.12s;
}
.app-tourism-quick__item:active { transform: scale(0.94); }
.app-tourism-quick__item--static { cursor: default; }
.app-tourism-quick__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 1.05rem;
    background: var(--app-icon-bg);
    color: var(--app-icon-color);
}

.app-tourism-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.app-tourism-card {
    display: flex;
    align-items: stretch;
    gap: 0;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #ebe3d8;
    color: var(--hotel-text) !important;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(63, 38, 24, 0.06);
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.12s, box-shadow 0.12s;
}
.app-tourism-card:active {
    transform: scale(0.98);
    box-shadow: 0 4px 16px rgba(63, 38, 24, 0.1);
}
.app-tourism-card__visual {
    position: relative;
    width: 96px;
    flex-shrink: 0;
    background: var(--hotel-bg);
    overflow: hidden;
}
.app-tourism-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 100px;
}
.app-tourism-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100px;
    height: 100%;
    color: var(--hotel-accent);
    font-size: 1.6rem;
    opacity: 0.55;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23b8956f' fill-opacity='0.12'/%3E%3C/svg%3E");
    background-size: 20px 20px;
}
.app-tourism-card__num {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.65rem;
    height: 1.65rem;
    padding: 0 0.3rem;
    border-radius: 8px;
    background: rgba(255,255,255,.92);
    color: var(--hotel-primary);
    font-size: 0.68rem;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(63, 38, 24, 0.12);
}
.app-tourism-card__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.85rem 0.65rem 0.85rem 0.75rem;
}
.app-tourism-card__body h3 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.4;
}
.app-tourism-card__body p {
    margin: 0;
    font-size: 0.74rem;
    line-height: 1.55;
    color: var(--hotel-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.app-tourism-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: auto;
    padding-top: 0.2rem;
}
.app-tourism-card__meta > span {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--hotel-muted);
}
.app-tourism-card__meta i { font-size: 0.62rem; color: var(--hotel-accent); }
.app-tourism-card__map { color: var(--hotel-primary) !important; }
.app-tourism-card__chev {
    display: flex;
    align-items: center;
    padding-left: 0.35rem;
    font-size: 0.7rem;
    color: #c4b8aa;
    flex-shrink: 0;
}

/* Tourism detail */
.app-tourism-detail {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding-bottom: 4rem;
}
.app-tourism-detail__hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 200px;
    background: var(--hotel-primary);
    box-shadow: 0 10px 28px rgba(63, 38, 24, 0.2);
}
.app-tourism-detail__cover {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.app-tourism-detail__cover--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    color: var(--hotel-accent);
    font-size: 3rem;
    opacity: 0.45;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23b8956f' fill-opacity='0.15'/%3E%3C/svg%3E");
    background-size: 20px 20px;
}
.app-tourism-detail__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.1rem;
    background: rgba(63, 38, 24, 0.45);
    box-shadow: inset 0 -80px 60px -30px rgba(30, 18, 10, 0.85);
    color: #fff;
}
.app-tourism-detail__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    width: fit-content;
    margin-bottom: 0.45rem;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    background: rgba(255,255,255,.15);
    font-size: 0.7rem;
    font-weight: 700;
}
.app-tourism-detail__tag i { color: var(--hotel-accent); }
.app-tourism-detail__overlay h2 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.45;
    text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.app-tourism-detail__content {
    padding: 1.1rem 1.15rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #ebe3d8;
    font-size: 0.88rem;
    line-height: 1.95;
    color: #5b5048;
    box-shadow: 0 2px 12px rgba(63, 38, 24, 0.06);
}

.app-tourism-fab {
    position: fixed;
    bottom: calc(7.5rem + env(safe-area-inset-bottom, 0px));
    left: 50%;
    transform: translateX(-50%);
    z-index: 80;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    background: var(--hotel-primary);
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 8px 28px rgba(63, 38, 24, 0.35);
    border: 1px solid rgba(255,255,255,.12);
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.15s;
    max-width: calc(480px - 2rem);
}
.app-tourism-fab:active { transform: translateX(-50%) scale(0.96); }
.app-tourism-fab i { color: var(--hotel-accent); }

@media (max-width: 360px) {
    .app-tourism-quick { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════════════════
   App laundry page — modern mobile UI
   ══════════════════════════════════════════════════════════ */

.app-laundry {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 4.5rem;
}

.app-laundry-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    padding: 3rem 1rem;
    text-align: center;
    color: var(--hotel-muted);
}
.app-laundry-empty__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #ebe3d8;
    color: var(--hotel-accent);
    font-size: 1.5rem;
    opacity: 0.7;
}
.app-laundry-empty p { margin: 0; font-size: 0.9rem; }

.app-laundry-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.35rem 1.25rem 1.15rem;
    border-radius: 22px;
    background: var(--hotel-primary);
    color: #fff;
    box-shadow: 0 12px 32px rgba(63, 38, 24, 0.22);
}
.app-laundry-hero__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(255,255,255,.12);
    border: 2px solid rgba(255,255,255,.16);
    font-size: 1.4rem;
    color: var(--hotel-accent);
    margin-bottom: 0.75rem;
}
.app-laundry-hero__title {
    margin: 0 0 0.55rem;
    font-size: 1.05rem;
    font-weight: 800;
}
.app-laundry-hero__stats {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.14);
    font-size: 0.78rem;
    color: rgba(255,255,255,.85);
}
.app-laundry-hero__stats strong {
    color: var(--hotel-accent);
    font-weight: 800;
}
.app-laundry-hero__dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
}

.app-laundry-quick {
    grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
}

.app-laundry-card {
    border-radius: 18px;
    background: #fff;
    border: 1px solid #ebe3d8;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(63, 38, 24, 0.06);
}
.app-laundry-card__head {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 0.5rem;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--hotel-bg);
    border-bottom: 1px solid #ebe3d8;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--hotel-muted);
}
.app-laundry-card__head span:not(:first-child) {
    text-align: center;
}

.app-laundry-list {
    display: flex;
    flex-direction: column;
}
.app-laundry-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 0.5rem;
    align-items: center;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid #f3ede6;
}
.app-laundry-row:last-child { border-bottom: none; }
.app-laundry-row__title {
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.45;
    color: var(--hotel-text);
}
.app-laundry-row__price {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.45rem;
    border-radius: 10px;
    background: var(--app-icon-bg);
    color: var(--app-icon-color);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
    white-space: nowrap;
}

.app-laundry-fab {
    position: fixed;
    bottom: calc(7.5rem + env(safe-area-inset-bottom, 0px));
    left: 50%;
    transform: translateX(-50%);
    z-index: 80;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    background: var(--hotel-primary);
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 8px 28px rgba(63, 38, 24, 0.35);
    border: 1px solid rgba(255,255,255,.12);
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.15s;
    max-width: calc(480px - 2rem);
}
.app-laundry-fab:active { transform: translateX(-50%) scale(0.96); }
.app-laundry-fab i { color: var(--hotel-accent); }

@media (max-width: 360px) {
    .app-laundry-card__head,
    .app-laundry-row {
        grid-template-columns: 1.2fr 0.9fr 0.9fr;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    .app-laundry-row__price {
        font-size: 0.68rem;
        padding: 0.3rem 0.25rem;
    }
}

/* ══════════════════════════════════════════════════════════
   App transfer page — modern mobile UI
   ══════════════════════════════════════════════════════════ */

.app-transfer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 4.5rem;
}

.app-transfer-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    padding: 3rem 1rem;
    text-align: center;
    color: var(--hotel-muted);
}
.app-transfer-empty__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #ebe3d8;
    color: var(--hotel-accent);
    font-size: 1.5rem;
    opacity: 0.7;
}
.app-transfer-empty p { margin: 0; font-size: 0.9rem; }

.app-transfer-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.35rem 1.25rem 1.15rem;
    border-radius: 22px;
    background: var(--hotel-primary);
    color: #fff;
    box-shadow: 0 12px 32px rgba(63, 38, 24, 0.22);
}
.app-transfer-hero__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(255,255,255,.12);
    border: 2px solid rgba(255,255,255,.16);
    font-size: 1.4rem;
    color: var(--hotel-accent);
    margin-bottom: 0.75rem;
}
.app-transfer-hero__title {
    margin: 0 0 0.55rem;
    font-size: 1.05rem;
    font-weight: 800;
}
.app-transfer-hero__stats {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.14);
    font-size: 0.78rem;
    color: rgba(255,255,255,.85);
}
.app-transfer-hero__stats strong {
    color: var(--hotel-accent);
    font-weight: 800;
}
.app-transfer-hero__dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
}

.app-transfer-quick {
    grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
}

.app-transfer-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.app-transfer-card {
    border-radius: 18px;
    background: #fff;
    border: 1px solid #ebe3d8;
    box-shadow: 0 2px 12px rgba(63, 38, 24, 0.06);
    overflow: hidden;
}
.app-transfer-card__main {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.95rem 1rem;
}
.app-transfer-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: var(--app-icon-bg);
    color: var(--app-icon-color);
    font-size: 1rem;
    flex-shrink: 0;
}
.app-transfer-card__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.app-transfer-card__body strong {
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.4;
    color: var(--hotel-text);
}
.app-transfer-card__route {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--hotel-muted);
    line-height: 1.45;
}
.app-transfer-card__route i {
    font-size: 0.62rem;
    color: var(--hotel-accent);
}
.app-transfer-card__meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-top: 0.15rem;
}
.app-transfer-card__meta span {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--hotel-muted);
    line-height: 1.5;
}
.app-transfer-card__meta i {
    margin-top: 0.15rem;
    color: var(--hotel-accent);
    font-size: 0.68rem;
    flex-shrink: 0;
}
.app-transfer-card__price {
    flex-shrink: 0;
    align-self: flex-start;
    padding: 0.4rem 0.6rem;
    border-radius: 10px;
    background: var(--app-icon-bg);
    color: var(--app-icon-color);
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
    max-width: 38%;
    white-space: nowrap;
}

.app-transfer-fab {
    position: fixed;
    bottom: calc(7.5rem + env(safe-area-inset-bottom, 0px));
    left: 50%;
    transform: translateX(-50%);
    z-index: 80;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    background: var(--hotel-primary);
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 8px 28px rgba(63, 38, 24, 0.35);
    border: 1px solid rgba(255,255,255,.12);
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.15s;
    max-width: calc(480px - 2rem);
}
.app-transfer-fab:active { transform: translateX(-50%) scale(0.96); }
.app-transfer-fab i { color: var(--hotel-accent); }

@media (max-width: 360px) {
    .app-transfer-card__main {
        flex-wrap: wrap;
        padding: 0.85rem 0.85rem;
    }
    .app-transfer-card__price {
        width: 100%;
        max-width: none;
        text-align: right;
    }
}

/* ══════════════════════════════════════════════════════════
   App rooms page — modern mobile UI
   ══════════════════════════════════════════════════════════ */

.app-rooms {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 4.5rem;
}

.app-rooms-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    padding: 3rem 1rem;
    text-align: center;
    color: var(--hotel-muted);
}
.app-rooms-empty__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #ebe3d8;
    color: var(--hotel-accent);
    font-size: 1.5rem;
    opacity: 0.7;
}
.app-rooms-empty p { margin: 0; font-size: 0.9rem; }

.app-rooms-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.35rem 1.25rem 1.15rem;
    border-radius: 22px;
    background: var(--hotel-primary);
    color: #fff;
    box-shadow: 0 12px 32px rgba(63, 38, 24, 0.22);
}
.app-rooms-hero__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(255,255,255,.12);
    border: 2px solid rgba(255,255,255,.16);
    font-size: 1.4rem;
    color: var(--hotel-accent);
    margin-bottom: 0.75rem;
}
.app-rooms-hero__title {
    margin: 0 0 0.55rem;
    font-size: 1.05rem;
    font-weight: 800;
}
.app-rooms-hero__stats {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.14);
    font-size: 0.78rem;
    color: rgba(255,255,255,.85);
}
.app-rooms-hero__stats strong {
    color: var(--hotel-accent);
    font-weight: 800;
}
.app-rooms-hero__dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
}

.app-rooms-quick {
    grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
}

.app-rooms-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.app-rooms-card {
    display: block;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #ebe3d8;
    color: var(--hotel-text) !important;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(63, 38, 24, 0.06);
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.12s, box-shadow 0.12s;
}
.app-rooms-card:active {
    transform: scale(0.98);
    box-shadow: 0 4px 16px rgba(63, 38, 24, 0.1);
}

.app-rooms-card__visual {
    position: relative;
    height: 168px;
    background: var(--hotel-bg);
    overflow: hidden;
}
.app-rooms-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.app-rooms-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--hotel-accent);
    font-size: 2.2rem;
    opacity: 0.45;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23b8956f' fill-opacity='0.12'/%3E%3C/svg%3E");
    background-size: 20px 20px;
}

.app-rooms-card__tags {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    max-width: 70%;
}
.app-rooms-card__tags span {
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: rgba(63, 38, 24, 0.82);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    line-height: 1.3;
}

.app-rooms-card__badge {
    position: absolute;
    bottom: 0.6rem;
    padding: 0.28rem 0.55rem;
    border-radius: 8px;
    background: rgba(255,255,255,.92);
    color: var(--hotel-primary);
    font-size: 0.68rem;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(63, 38, 24, 0.12);
}
.app-rooms-card__badge--360 {
    left: 0.6rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}
.app-rooms-card__badge--360 i { color: var(--hotel-accent); font-size: 0.62rem; }
.app-rooms-card__badge--avail {
    right: 0.6rem;
}
.app-rooms-card__badge--avail.is-open { color: var(--hotel-primary); }
.app-rooms-card__badge--avail.is-full { color: var(--hotel-muted); }

.app-rooms-card__body {
    padding: 0.9rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.app-rooms-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.65rem;
}
.app-rooms-card__head h3 {
    margin: 0;
    flex: 1;
    min-width: 0;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.45;
}
.app-rooms-card__price {
    flex-shrink: 0;
    padding: 0.35rem 0.55rem;
    border-radius: 10px;
    background: var(--app-icon-bg);
    color: var(--app-icon-color);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.35;
    white-space: nowrap;
}
.app-rooms-card__tagline {
    margin: 0;
    font-size: 0.76rem;
    line-height: 1.55;
    color: var(--hotel-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.app-rooms-card__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.app-rooms-card__specs span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.55rem;
    border-radius: 999px;
    background: var(--hotel-bg);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--hotel-muted);
}
.app-rooms-card__specs i {
    color: var(--hotel-accent);
    font-size: 0.65rem;
}
.app-rooms-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}
.app-rooms-card__chips span {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    padding: 0.28rem 0.5rem;
    border-radius: 8px;
    background: var(--app-icon-bg);
    color: var(--app-icon-color);
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.3;
}
.app-rooms-card__chips i { font-size: 0.62rem; opacity: 0.85; }
.app-rooms-card__chips-more {
    background: var(--app-icon-bg-muted) !important;
}
.app-rooms-card__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0.15rem;
    padding-top: 0.55rem;
    border-top: 1px solid #f3ede6;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--hotel-primary);
}
.app-rooms-card__cta i {
    color: var(--hotel-accent);
    font-size: 0.7rem;
}

.app-rooms-fab {
    position: fixed;
    bottom: calc(7.5rem + env(safe-area-inset-bottom, 0px));
    left: 50%;
    transform: translateX(-50%);
    z-index: 80;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    background: var(--hotel-primary);
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 8px 28px rgba(63, 38, 24, 0.35);
    border: 1px solid rgba(255,255,255,.12);
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.15s;
    max-width: calc(480px - 2rem);
}
.app-rooms-fab:active { transform: translateX(-50%) scale(0.96); }
.app-rooms-fab i { color: var(--hotel-accent); }

/* ══════════════════════════════════════════════════════════
   Unified FAB + empty states + guide + room detail
   ══════════════════════════════════════════════════════════ */

.app-fab,
.app-contact-fab,
.app-laundry-fab,
.app-transfer-fab,
.app-rooms-fab,
.app-tourism-fab {
    position: fixed;
    bottom: calc(7.5rem + env(safe-area-inset-bottom, 0px));
    left: 50%;
    transform: translateX(-50%);
    z-index: 80;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    background: var(--hotel-primary);
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 8px 28px rgba(63, 38, 24, 0.35);
    border: 1px solid rgba(255,255,255,.12);
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.15s;
    max-width: calc(480px - 2rem);
}
.app-fab:active,
.app-contact-fab:active,
.app-laundry-fab:active,
.app-transfer-fab:active,
.app-rooms-fab:active,
.app-tourism-fab:active { transform: translateX(-50%) scale(0.96); }
.app-fab i,
.app-contact-fab i,
.app-laundry-fab i,
.app-transfer-fab i,
.app-rooms-fab i,
.app-tourism-fab i { color: var(--hotel-accent); }

.app-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    padding: 3rem 1.25rem;
    text-align: center;
}
.app-empty-state__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #ebe3d8;
    color: var(--hotel-accent);
    font-size: 1.5rem;
    opacity: 0.75;
}
.app-empty-state__text {
    margin: 0;
    font-size: 0.9rem;
    color: var(--hotel-muted);
    line-height: 1.6;
}
.app-empty-state__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
}
.app-empty-state__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.65rem 1rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #ebe3d8;
    color: var(--hotel-text) !important;
    font-size: 0.8rem;
    font-weight: 700;
}
.app-empty-state__btn--primary {
    background: var(--hotel-primary);
    border-color: var(--hotel-primary);
    color: #fff !important;
}
.app-empty-state__btn--primary i { color: var(--hotel-accent); }

/* Stay guide */
.app-guide {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 4.5rem;
}
.app-guide-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.35rem 1.25rem 1.15rem;
    border-radius: 22px;
    background: var(--hotel-primary);
    color: #fff;
    box-shadow: 0 12px 32px rgba(63, 38, 24, 0.22);
}
.app-guide-hero__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(255,255,255,.12);
    border: 2px solid rgba(255,255,255,.16);
    font-size: 1.4rem;
    color: var(--hotel-accent);
    margin-bottom: 0.75rem;
}
.app-guide-hero__title {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    font-weight: 800;
}
.app-guide-hero__sub {
    margin: 0;
    font-size: 0.78rem;
    color: rgba(255,255,255,.78);
}
.app-guide-quick { grid-template-columns: repeat(auto-fit, minmax(72px, 1fr)); }
.app-guide-section__title {
    margin: 0 0 0.55rem;
    padding: 0 0.25rem;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--hotel-muted);
}
.app-guide-cards {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.app-guide-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #ebe3d8;
    box-shadow: 0 2px 10px rgba(63, 38, 24, 0.06);
}
.app-guide-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--app-icon-bg);
    color: var(--app-icon-color);
    font-size: 0.95rem;
    flex-shrink: 0;
}
.app-guide-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}
.app-guide-card__body strong {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--hotel-text);
}
.app-guide-card__body span {
    font-size: 0.78rem;
    color: var(--hotel-muted);
    line-height: 1.55;
}
.app-guide-links {
    border-radius: 18px;
    background: #fff;
    border: 1px solid #ebe3d8;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(63, 38, 24, 0.06);
}
.app-guide-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    color: var(--hotel-text) !important;
    border-bottom: 1px solid #f3ede6;
}
.app-guide-link:last-child { border-bottom: none; }
.app-guide-link__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: var(--app-icon-bg);
    color: var(--app-icon-color);
    font-size: 0.9rem;
    flex-shrink: 0;
}
.app-guide-link span:not(.app-guide-link__icon) { flex: 1; font-size: 0.88rem; font-weight: 700; }
.app-guide-link__chev { font-size: 0.7rem; color: #c4b8aa; }
.app-guide-location {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #ebe3d8;
    box-shadow: 0 2px 12px rgba(63, 38, 24, 0.06);
}
.app-guide-location__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: var(--app-icon-bg);
    color: var(--app-icon-color);
    flex-shrink: 0;
}
.app-guide-location strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 0.15rem;
}
.app-guide-location span {
    font-size: 0.76rem;
    color: var(--hotel-muted);
}

/* Room detail */
.app-room-detail {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 4.5rem;
}
.app-room-detail__gallery {
    position: relative;
    margin: -1rem -1rem 0;
    height: 220px;
    overflow: hidden;
    background: var(--hotel-bg);
}
.app-room-detail__gallery--scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.app-room-detail__gallery--scroll::-webkit-scrollbar { display: none; }
.app-room-detail__slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    height: 220px;
}
.app-room-detail__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.app-room-detail__slide--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hotel-accent);
    font-size: 3rem;
    opacity: 0.4;
}
.app-room-detail__360 {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.65rem;
    border-radius: 10px;
    background: rgba(255,255,255,.92);
    color: var(--hotel-primary) !important;
    font-size: 0.72rem;
    font-weight: 800;
    box-shadow: 0 2px 10px rgba(63, 38, 24, 0.15);
}
.app-room-detail__360 i { color: var(--hotel-accent); }
.app-room-detail__head {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.app-room-detail__title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.65rem;
}
.app-room-detail__title-row h2 {
    margin: 0;
    flex: 1;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.45;
}
.app-room-detail__price {
    flex-shrink: 0;
    padding: 0.4rem 0.6rem;
    border-radius: 10px;
    background: var(--app-icon-bg);
    color: var(--app-icon-color);
    font-size: 0.76rem;
    font-weight: 800;
    white-space: nowrap;
    text-align: center;
    line-height: 1.35;
}
.app-room-detail__price small {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    opacity: 0.8;
}
.app-room-detail__tagline {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--hotel-muted);
}
.app-room-detail__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.app-room-detail__specs span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.32rem 0.58rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #ebe3d8;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--hotel-muted);
}
.app-room-detail__specs i { color: var(--hotel-accent); font-size: 0.65rem; }
.app-room-detail__vip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}
.app-room-detail__vip span {
    padding: 0.28rem 0.6rem;
    border-radius: 999px;
    background: var(--hotel-primary);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
}
.app-room-detail__section h3 {
    margin: 0 0 0.55rem;
    padding: 0 0.15rem;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--hotel-text);
}
.app-room-detail__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}
.app-room-detail__chips span {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    padding: 0.32rem 0.55rem;
    border-radius: 10px;
    background: var(--app-icon-bg);
    color: var(--app-icon-color);
    font-size: 0.72rem;
    font-weight: 700;
}
.app-room-detail__chips i { font-size: 0.62rem; }
.app-room-detail__rules {
    margin: 0;
    padding: 0;
    list-style: none;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #ebe3d8;
    overflow: hidden;
}
.app-room-detail__rules li {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid #f3ede6;
}
.app-room-detail__rules li:last-child { border-bottom: none; }
.app-room-detail__rules strong {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--hotel-text);
}
.app-room-detail__rules span {
    font-size: 0.76rem;
    color: var(--hotel-muted);
}
.app-room-detail__services {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.app-room-detail__service {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.8rem 1rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #ebe3d8;
}
.app-room-detail__service span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    font-weight: 700;
}
.app-room-detail__service span i { color: var(--hotel-accent); }
.app-room-detail__service em {
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--hotel-primary);
    font-style: normal;
    white-space: nowrap;
}
.app-room-detail__quick {
    grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 360px) {
    .app-room-detail__quick { grid-template-columns: repeat(2, 1fr); }
}

/* ── Services, Map, Facilities, Search, Events, Feedback ── */
.app-services,
.app-map,
.app-facilities,
.app-search,
.app-events,
.app-feedback {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 4.5rem;
}

.app-services-hero,
.app-map-hero,
.app-facilities-hero,
.app-events-hero,
.app-feedback-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.35rem 1.25rem 1.15rem;
    border-radius: 22px;
    background: var(--hotel-primary);
    color: #fff;
    box-shadow: 0 12px 32px rgba(63, 38, 24, 0.22);
}

.app-services-hero__icon,
.app-map-hero__icon,
.app-facilities-hero__icon,
.app-events-hero__icon,
.app-feedback-hero__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(255,255,255,.12);
    border: 2px solid rgba(255,255,255,.16);
    font-size: 1.4rem;
    color: var(--hotel-accent);
    margin-bottom: 0.75rem;
}

.app-services-hero__title,
.app-map-hero__title,
.app-facilities-hero__title,
.app-events-hero__title,
.app-feedback-hero__title {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    font-weight: 800;
}

.app-services-hero__sub,
.app-map-hero__sub,
.app-facilities-hero__sub,
.app-feedback-hero__sub {
    margin: 0;
    font-size: 0.78rem;
    color: rgba(255,255,255,.78);
    line-height: 1.5;
}

.app-services-call {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #ebe3d8;
    box-shadow: 0 2px 10px rgba(63, 38, 24, 0.06);
    color: var(--hotel-primary);
    font-weight: 700;
    font-size: 0.82rem;
}
.app-services-call i { color: var(--hotel-accent); font-size: 1rem; }
.app-services-call span { flex: 1; }
.app-services-call strong { font-size: 0.88rem; }

.app-services-list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.app-services-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #ebe3d8;
    box-shadow: 0 2px 10px rgba(63, 38, 24, 0.06);
    color: var(--hotel-primary);
}
.app-services-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--app-icon-bg);
    color: var(--app-icon-color);
    font-size: 0.95rem;
    flex-shrink: 0;
}
.app-services-item__label {
    flex: 1;
    font-size: 0.86rem;
    font-weight: 700;
}
.app-services-item__chev {
    font-size: 0.7rem;
    color: var(--hotel-muted);
}

.app-map-embed {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #ebe3d8;
    background: #fff;
    aspect-ratio: 16 / 11;
}
.app-map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.app-map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 2rem 1.25rem;
    border-radius: 18px;
    background: #fff;
    border: 1px dashed #d9cfc2;
    color: var(--hotel-muted);
    font-size: 0.82rem;
    text-align: center;
}
.app-map-placeholder i {
    font-size: 2rem;
    color: var(--hotel-accent);
}

.app-map-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.55rem;
}
.app-map-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.85rem 0.5rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #ebe3d8;
    color: var(--hotel-primary);
    font-size: 0.72rem;
    font-weight: 700;
    text-align: center;
}
.app-map-action i { color: var(--hotel-accent); font-size: 1rem; }

.app-map-section h3 {
    margin: 0 0 0.55rem;
    padding: 0 0.25rem;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--hotel-muted);
}
.app-map-distances {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 0.65rem;
}
.app-map-distance {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #ebe3d8;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--hotel-primary);
}
.app-map-distance em {
    font-style: normal;
    font-size: 0.76rem;
    color: var(--hotel-accent);
    font-weight: 800;
    white-space: nowrap;
}
.app-map-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: var(--app-icon-bg);
    color: var(--hotel-primary);
    font-size: 0.82rem;
    font-weight: 700;
}
.app-map-link i { color: var(--hotel-muted); font-size: 0.7rem; }

.app-facilities-featured {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.app-facilities-grid-title {
    margin: 0.25rem 0 0;
    padding: 0 0.25rem;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--hotel-muted);
}
.app-facilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.55rem;
}
.app-facilities-card {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 0.9rem 0.85rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #ebe3d8;
    box-shadow: 0 2px 10px rgba(63, 38, 24, 0.06);
    color: var(--hotel-primary);
    min-height: 100%;
}
.app-facilities-card--lg {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
}
.app-facilities-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--app-icon-bg);
    color: var(--app-icon-color);
    font-size: 0.95rem;
    flex-shrink: 0;
}
.app-facilities-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
    flex: 1;
}
.app-facilities-card__body h3 {
    margin: 0;
    font-size: 0.84rem;
    font-weight: 800;
}
.app-facilities-card__body p {
    margin: 0;
    font-size: 0.74rem;
    color: var(--hotel-muted);
    line-height: 1.45;
}
.app-facilities-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.25rem;
}
.app-facilities-card__tags span {
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    background: var(--app-icon-bg);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--hotel-primary);
}
.app-facilities-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.35rem;
    font-size: 0.74rem;
    font-weight: 800;
    color: var(--hotel-accent);
}
.app-facilities-card__link i { font-size: 0.62rem; }

.app-search-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0.85rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #ebe3d8;
    box-shadow: 0 2px 10px rgba(63, 38, 24, 0.06);
}
.app-search-form__icon {
    color: var(--hotel-accent);
    font-size: 0.95rem;
}
.app-search-form input {
    flex: 1;
    border: 0;
    background: transparent;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--hotel-primary);
    outline: none;
    min-width: 0;
}
.app-search-form input::placeholder { color: #b5a898; font-weight: 500; }
.app-search-form__clear {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--app-icon-bg);
    color: var(--hotel-muted);
    font-size: 0.72rem;
}

.app-search-hint {
    margin: 0;
    padding: 0 0.25rem;
    font-size: 0.76rem;
    color: var(--hotel-muted);
}
.app-search-suggest {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    padding: 0 0.15rem;
    font-size: 0.76rem;
    color: var(--hotel-muted);
}
.app-search-suggest a {
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #ebe3d8;
    color: var(--hotel-primary);
    font-weight: 700;
    font-size: 0.74rem;
}

.app-search-group h3 {
    margin: 0.5rem 0 0.45rem;
    padding: 0 0.25rem;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--hotel-muted);
}
.app-search-result {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #ebe3d8;
    color: var(--hotel-primary);
    margin-bottom: 0.45rem;
}
.app-search-result__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--app-icon-bg);
    color: var(--app-icon-color);
    font-size: 0.9rem;
    flex-shrink: 0;
}
.app-search-result__body {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    flex: 1;
    min-width: 0;
}
.app-search-result__body strong {
    font-size: 0.84rem;
    font-weight: 800;
}
.app-search-result__body small {
    font-size: 0.72rem;
    color: var(--hotel-muted);
}
.app-search-result > .fa-chevron-left {
    font-size: 0.68rem;
    color: var(--hotel-muted);
}

.app-events-hero__stats {
    margin-top: 0.15rem;
    font-size: 0.76rem;
    color: rgba(255,255,255,.78);
}
.app-events-hero__stats strong { color: var(--hotel-accent); }

.app-events-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.app-event-card {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #ebe3d8;
    box-shadow: 0 2px 10px rgba(63, 38, 24, 0.06);
}
.app-event-card__visual img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}
.app-event-card__body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.app-event-card__date {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--hotel-accent);
}
.app-event-card__body h3 {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--hotel-primary);
}
.app-event-card__body p {
    margin: 0;
    font-size: 0.78rem;
    color: var(--hotel-muted);
    line-height: 1.5;
}

.app-feedback-form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #ebe3d8;
    box-shadow: 0 2px 10px rgba(63, 38, 24, 0.06);
}
.app-feedback-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.app-feedback-field label {
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--hotel-muted);
}
.app-feedback-field input,
.app-feedback-field select,
.app-feedback-field textarea {
    width: 100%;
    padding: 0.7rem 0.85rem;
    border-radius: 12px;
    border: 1px solid #e5ddd2;
    background: #faf8f5;
    font-family: inherit;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--hotel-primary);
    outline: none;
}
.app-feedback-field textarea { resize: vertical; min-height: 96px; }
.app-feedback-field.is-invalid input,
.app-feedback-field.is-invalid select,
.app-feedback-field.is-invalid textarea { border-color: #c45c5c; }
.app-feedback-field small {
    font-size: 0.72rem;
    color: #c45c5c;
    font-weight: 600;
}

.app-feedback-stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.35rem;
}
.app-feedback-stars label {
    cursor: pointer;
    font-size: 1.65rem;
    color: #ddd5c8;
    transition: color 0.15s ease;
}
.app-feedback-stars label input { display: none; }
.app-feedback-stars label.is-active,
.app-feedback-stars label.is-active ~ label,
.app-feedback-stars label:hover,
.app-feedback-stars label:hover ~ label {
    color: var(--hotel-accent);
}

.app-feedback-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
    padding: 0.9rem 1rem;
    border: 0;
    border-radius: 14px;
    background: var(--hotel-primary);
    color: #fff;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 800;
    cursor: pointer;
}
.app-feedback-submit i { color: var(--hotel-accent); }

.app-feedback-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.45rem;
    padding: 1.5rem 1.25rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #ebe3d8;
}
.app-feedback-success i {
    font-size: 2rem;
    color: var(--hotel-accent);
}
.app-feedback-success strong {
    font-size: 1rem;
    color: var(--hotel-primary);
}
.app-feedback-success p {
    margin: 0;
    font-size: 0.82rem;
    color: var(--hotel-muted);
}
.app-feedback-success a {
    margin-top: 0.35rem;
    padding: 0.65rem 1.1rem;
    border-radius: 12px;
    background: var(--app-icon-bg);
    color: var(--hotel-primary);
    font-size: 0.82rem;
    font-weight: 800;
}

@media (max-width: 360px) {
    .app-map-actions { grid-template-columns: 1fr; }
    .app-facilities-grid { grid-template-columns: 1fr; }
}

/* Desktop gate — /app is mobile-only */
.app-desktop-gate {
    display: none;
}

html.is-desktop-app body.hotel-app {
    overflow: hidden;
    background: #f7f3ee !important;
    color: #3f2618;
    min-height: 100vh;
}

html.is-desktop-app .app-shell {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

html.is-desktop-app .app-desktop-gate {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem 1.5rem;
    background:
        radial-gradient(circle at 20% 10%, rgba(184, 149, 111, 0.18), transparent 42%),
        radial-gradient(circle at 80% 90%, rgba(63, 38, 24, 0.08), transparent 40%),
        #f7f3ee;
}

@media (min-width: 768px) {
    body.hotel-app {
        min-height: 100vh;
    }

    body.hotel-app .app-shell {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
        pointer-events: none !important;
    }

    body.hotel-app .app-desktop-gate {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        padding: 2rem 1.5rem;
        background:
            radial-gradient(circle at 20% 10%, rgba(184, 149, 111, 0.18), transparent 42%),
            radial-gradient(circle at 80% 90%, rgba(63, 38, 24, 0.08), transparent 40%),
            #f7f3ee;
    }
}

.app-desktop-gate__card {
    width: min(100%, 440px);
    padding: 2.5rem 2rem 2rem;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #e7ddd0;
    box-shadow: 0 20px 50px rgba(63, 38, 24, 0.12);
    text-align: center;
}

.app-desktop-gate__logo {
    max-height: 64px;
    margin: 0 auto 1.25rem;
    display: block;
}

.app-desktop-gate__logo-fallback {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #f7f3ee;
    color: #3f2618;
    font-size: 1.5rem;
}

.app-desktop-gate__icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f7f3ee;
    border: 2px solid #e7ddd0;
    color: #b8956f;
    font-size: 1.85rem;
}

.app-desktop-gate__title {
    margin: 0 0 0.75rem;
    font-size: 1.4rem;
    font-weight: 800;
    color: #3f2618;
    line-height: 1.5;
}

.app-desktop-gate__text {
    margin: 0 0 1.75rem;
    font-size: 0.95rem;
    color: #8a7c6e;
    line-height: 1.9;
}

.app-desktop-gate__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    padding: 0.95rem 1.25rem;
    border-radius: 12px;
    background: #3f2618;
    color: #fff !important;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(63, 38, 24, 0.28);
    text-decoration: none;
    transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
}

.app-desktop-gate__btn:hover {
    background: #2e1b11;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(63, 38, 24, 0.32);
    color: #fff !important;
}

.app-desktop-gate__url {
    margin: 1rem 0 0;
    font-size: 0.82rem;
    color: #8a7c6e;
    line-height: 1.6;
}

.app-desktop-gate__url a {
    display: inline-block;
    margin-top: 0.25rem;
    color: #b8956f !important;
    font-weight: 700;
    text-decoration: none;
}

.app-desktop-gate__url a:hover {
    color: #3f2618 !important;
}
