/**
 * HotelsCheck-In Theme — CSS v3.0.0
 * Blue scheme, hotel detail single-page layout.
 * Ported from hotel-lite main.css (hotel-detail styles only).
 */

/* ═══════════════════════════════════════════════════════════
   Variables
   ═══════════════════════════════════════════════════════════ */

:root {
    --color-primary: #1a70d9;
    --color-primary-dark: #155fbd;
    --color-primary-soft: #eaf3ff;
    --color-text: #142033;
    --color-text-muted: #576377;
    --color-text-secondary: #6c7f99;
    --color-border: #e2e8f2;
    --color-border-soft: #edf1f7;
    --color-bg: #f6f8fc;
    --color-card: #ffffff;
    --color-success: #10883f;
    --shadow-sm: 0 2px 8px rgba(21, 36, 66, 0.08);
    --shadow-md: 0 10px 28px rgba(21, 36, 66, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-pill: 999px;
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 40px;
    --space-8: 56px;
    --container: 1200px;
}

/* ═══════════════════════════════════════════════════════════
   Reset + Base
   ═══════════════════════════════════════════════════════════ */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0 !important;
    margin-top: 0 !important;
    padding: 0 !important;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--color-text);
    background: var(--color-bg);
    font-size: 14px;
    line-height: 1.5;
    overflow-x: hidden;
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    color: var(--color-primary-dark);
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.25;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin-inline: auto;
}

/* ═══════════════════════════════════════════════════════════
   Buttons
   ═══════════════════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    font-family: inherit;
}

.btn-primary {
    color: #fff;
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    color: #fff;
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

.btn-secondary {
    color: var(--color-primary);
    background: #fff;
    border-color: #cfd9e8;
}

.btn-secondary:hover {
    background: var(--color-primary-soft);
    border-color: #b7c9e8;
}

.btn-large {
    min-height: 46px;
    font-size: 15px;
    padding: 10px 28px;
}

/* Utilities */
.text-muted {
    color: var(--color-text-muted);
    font-size: 13px;
    margin: 4px 0 0;
}

/* ═══════════════════════════════════════════════════════════
   1. HEADER
   ═══════════════════════════════════════════════════════════ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid var(--color-border-soft);
}

/* Admin bar offset */
.admin-bar .site-header {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    gap: var(--space-4);
}

/* Back-to-home pill */
.header-back-home {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px 6px 10px;
    border-radius: 20px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.header-back-home:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.header-back-home svg {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.header-back-home:hover svg {
    transform: translateX(-2px);
}

/* Language switcher */
.header-lang {
    position: relative;
    margin-left: auto;
}

.header-lang__toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    background: #fff;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text);
    cursor: pointer;
    line-height: 1;
    font-family: inherit;
    transition: border-color 0.15s, background 0.15s;
}

.header-lang__toggle:hover {
    border-color: var(--color-primary);
    background: var(--color-primary-soft);
}

.header-lang__toggle svg {
    flex-shrink: 0;
    color: var(--color-text-muted);
}

.header-lang__arrow {
    transition: transform 0.2s ease;
}

.header-lang.open .header-lang__arrow {
    transform: rotate(180deg);
}

.header-lang__menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 140px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    list-style: none;
    margin: 0;
    padding: 6px 0;
    z-index: 200;
}

.header-lang.open .header-lang__menu {
    display: block;
    animation: dpFadeIn 0.15s ease;
}

.header-lang__option {
    display: block;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    transition: background 0.12s;
}

.header-lang__option:hover {
    background: var(--color-bg);
    color: var(--color-primary);
}

.header-lang__option.active {
    color: var(--color-primary);
    font-weight: 600;
}

/* Discount bar */
.header-discount-bar {
    background: var(--color-primary-soft);
    border-top: 1px solid var(--color-border-soft);
}

.header-discount-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 38px;
}

.discount-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    user-select: none;
}

.discount-toggle input[type="checkbox"] {
    display: none;
}

.discount-toggle__box {
    position: relative;
    width: 36px;
    height: 20px;
    background: #c5cdd8;
    border-radius: 10px;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.discount-toggle__box::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.discount-toggle input:checked + .discount-toggle__box {
    background: var(--color-success);
}

.discount-toggle input:checked + .discount-toggle__box::after {
    transform: translateX(16px);
}

.discount-toggle__label {
    line-height: 1;
}

.discount-see-all {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary-dark);
    text-decoration: none;
    white-space: nowrap;
}

.discount-see-all:hover {
    text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════
   2. SEARCH BAR
   ═══════════════════════════════════════════════════════════ */

.search-bar {
    padding-bottom: 12px;
}

.search-form {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 30px;
    display: grid;
    grid-template-columns: 1.6fr 1.35fr 1.35fr auto;
    overflow: visible;
    box-shadow: var(--shadow-sm);
}

.search-field {
    position: relative;
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 8px;
    align-items: center;
    min-height: 52px;
    padding: 8px 18px;
    border-right: 1px solid var(--color-border-soft);
}

.search-field:last-of-type {
    border-right: 0;
}

.search-field-icon {
    color: var(--color-text-muted);
}

.search-field-content {
    display: grid;
    gap: 2px;
}

.search-label {
    color: var(--color-text-muted);
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
}

.search-field input,
.search-field select {
    border: 0;
    padding: 0;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: #0f1f37;
    line-height: 1;
    appearance: none;
    width: 100%;
}

.search-field input::placeholder {
    color: #8a96a8;
    font-weight: 500;
    opacity: 1;
}

.search-field input:focus,
.search-field select:focus {
    outline: none;
}

.search-btn {
    border-radius: 20px;
    margin: 6px;
    min-height: 40px;
    min-width: 100px;
    font-size: 14px;
    padding-inline: 24px;
}

/* Mobile compact search bar — hidden on desktop */
.search-bar-mobile {
    display: none;
}

/* ═══════════════════════════════════════════════════════════
   3. MOBILE SEARCH DIALOG
   ═══════════════════════════════════════════════════════════ */

.search-dialog {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.4);
}

.search-dialog[aria-hidden="false"] {
    display: flex;
    align-items: flex-end;
    animation: sdOverlayIn 0.2s ease;
}

@keyframes sdOverlayIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.search-dialog__panel {
    width: 100%;
    background: #fff;
    border-radius: 16px 16px 0 0;
    padding: 0 16px 24px;
    max-height: 90vh;
    overflow-y: auto;
    animation: sdSlideUp 0.25s ease;
}

@keyframes sdSlideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.search-dialog__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0 12px;
    border-bottom: 1px solid var(--color-border-soft);
    margin-bottom: 16px;
}

.search-dialog__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    background: none;
    color: var(--color-text);
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.15s;
}

.search-dialog__close:hover {
    background: var(--color-bg);
}

.search-dialog__title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.search-dialog__form {
    display: grid;
    gap: 0;
}

.search-dialog__field {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border-soft);
    cursor: pointer;
}

.search-dialog__field:last-of-type {
    border-bottom: none;
}

.search-dialog__field-icon {
    flex-shrink: 0;
    color: var(--color-primary);
}

.search-dialog__field-content {
    display: grid;
    gap: 2px;
    min-width: 0;
    flex: 1;
}

.search-dialog__field-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-muted);
    line-height: 1;
}

.search-dialog__input,
.search-dialog__select {
    border: 0;
    padding: 0;
    background: transparent;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.3;
    appearance: none;
    width: 100%;
}

.search-dialog__input::placeholder {
    color: #8a96a8;
    font-weight: 500;
}

.search-dialog__input:focus,
.search-dialog__select:focus {
    outline: none;
}

.search-dialog__submit {
    margin-top: 16px;
    width: 100%;
    min-height: 48px;
    font-size: 16px;
    border-radius: 12px;
}

/* Mobile dialog guests panel */
.search-dialog__guests-field {
    cursor: pointer;
}

.search-dialog__guests-panel {
    display: none;
    padding: 0 0 8px;
}

.search-dialog__guests-panel.open {
    display: block;
}

.dialog-guests-summary {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.3;
}

/* Mobile dialog inline date picker */
.search-dialog__dates-trigger {
    cursor: pointer;
}

.search-dialog__dates-panel {
    display: none;
    padding: 8px 0 12px;
}

.search-dialog__dates-panel.open {
    display: block;
}

.search-dialog__dates-panel .dp-months {
    flex-direction: column;
    gap: 12px;
}

.search-dialog__dates-panel .dp-month {
    width: 100%;
}

.search-dialog__dates-panel .dp-day {
    width: auto;
    height: 38px;
}

.search-dialog__dates-panel .dp-days {
    grid-template-columns: repeat(7, 1fr);
}

/* ═══════════════════════════════════════════════════════════
   4. DATE PICKER
   ═══════════════════════════════════════════════════════════ */

.date-picker {
    position: fixed;
    z-index: 1100;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
    padding: 16px;
    display: none;
}

.date-picker.open {
    display: block;
    animation: dpFadeIn 0.15s ease;
}

@keyframes dpFadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.dp-months {
    display: flex;
    gap: 20px;
}

.dp-month {
    width: 252px;
}

.dp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.dp-header strong {
    font-size: 14px;
}

.dp-nav {
    background: none;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: var(--color-text);
}

.dp-nav:hover {
    background: var(--color-bg);
}

.dp-nav.hidden {
    visibility: hidden;
}

.dp-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.dp-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.dp-day {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    border: none;
    background: none;
    color: var(--color-text);
    font-family: inherit;
}

.dp-day:hover:not(.disabled) {
    background: var(--color-primary-soft);
}

.dp-day.disabled {
    color: #c5cdd8;
    cursor: default;
}

.dp-day.today {
    box-shadow: inset 0 0 0 1px var(--color-primary);
}

.dp-day.selected,
.dp-day.range-start,
.dp-day.range-end {
    background: var(--color-primary);
    color: #fff;
}

.dp-day.in-range {
    background: var(--color-primary-soft);
    border-radius: 0;
}

.dp-day.range-start {
    border-radius: 8px 0 0 8px;
}

.dp-day.range-end {
    border-radius: 0 8px 8px 0;
}

/* ═══════════════════════════════════════════════════════════
   5. GUESTS SELECTOR
   ═══════════════════════════════════════════════════════════ */

.guests-field {
    cursor: pointer;
    position: relative;
}

.guests-summary {
    font-size: 14px;
    font-weight: 600;
    color: #0f1f37;
    line-height: 1;
}

.guests-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    min-width: 240px;
    z-index: 200;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    padding: 12px 16px;
}

.guests-dropdown.open {
    display: block;
    animation: dpFadeIn 0.15s ease;
}

.guests-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.guests-row + .guests-row {
    border-top: 1px solid var(--color-border-soft);
}

.guests-row-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
}

.guests-counter {
    display: flex;
    align-items: center;
    gap: 12px;
}

.guests-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: #fff;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: background 0.15s, border-color 0.15s;
    font-family: inherit;
}

.guests-btn:hover {
    background: var(--color-primary-soft);
    border-color: var(--color-primary);
}

.guests-count {
    font-size: 15px;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
    color: var(--color-text);
}

/* ═══════════════════════════════════════════════════════════
   6. HOTEL TITLE BAR
   ═══════════════════════════════════════════════════════════ */

.hotel-title-bar {
    background: #fff;
    border-bottom: 1px solid var(--color-border-soft);
    padding: 20px 0 16px;
}

.hotel-title-bar__content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.hotel-title-bar__info {
    flex: 1;
    min-width: 0;
}

.hotel-title-bar__name {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.2;
    color: var(--color-text);
}

.hotel-title-bar__city {
    font-weight: 400;
    color: var(--color-text-muted);
}

.hotel-title-bar__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.hotel-title-bar__stars {
    display: inline-flex;
    gap: 1px;
    color: #f5a623;
    font-size: 16px;
    line-height: 1;
}

.hotel-title-bar__stars .hci-star {
    color: #f5a623;
}

.hotel-title-bar__type {
    font-size: 13px;
    color: var(--color-text-muted);
    padding: 2px 8px;
    background: var(--color-bg);
    border-radius: 4px;
    font-weight: 500;
}

.hotel-title-bar__score {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 32px;
    padding: 0 8px;
    background: var(--color-success);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px 8px 8px 2px;
    line-height: 1;
}

.hotel-title-bar__score-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
}

.hotel-title-bar__reviews {
    font-size: 13px;
    color: var(--color-text-muted);
}

.hotel-title-bar__address {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 4px 0 0;
    font-size: 14px;
    color: var(--color-text-muted);
}

.hotel-title-bar__address svg {
    flex-shrink: 0;
    color: var(--color-text-secondary);
}

.hotel-title-bar__cta {
    flex-shrink: 0;
    padding-top: 4px;
}

/* ═══════════════════════════════════════════════════════════
   7. GALLERY SHOWCASE — Horizontal strip with overlay
   ═══════════════════════════════════════════════════════════ */

.gallery-showcase {
    padding: 12px 0 4px;
}

/* Strip container — holds images + overlay elements */
.gallery-showcase__strip {
    position: relative;
    display: grid;
    gap: 6px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

/* Adaptive column layouts */
.gallery-cols-1 { grid-template-columns: 1fr; }
.gallery-cols-2 { grid-template-columns: 1fr 1fr; }
.gallery-cols-3 { grid-template-columns: 1fr 1fr 1fr; }

/* Image cells — height on cell, not strip, so no gray gap */
.gallery-showcase__cell {
    overflow: hidden;
    position: relative;
    height: 240px;
}

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

/* Subtle bottom vignette on gallery strip */
.gallery-showcase__strip::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.06));
    pointer-events: none;
    z-index: 1;
}

/* CTA badge — bottom-right inside gallery */
.gallery-showcase__cta {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    text-decoration: none;
    color: var(--color-text);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-showcase__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.24);
    color: var(--color-text);
}

.gallery-showcase__cta-icon {
    flex-shrink: 0;
    color: #e74c3c;
    width: 22px;
    height: 22px;
}

.gallery-showcase__cta-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.gallery-showcase__cta-small {
    font-size: 11px;
    color: var(--color-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.gallery-showcase__cta-big {
    font-size: 16px;
    font-weight: 800;
    color: #e74c3c;
    letter-spacing: 0.02em;
}

/* Photo count pill — top-right */
.gallery-showcase__count {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(10, 18, 36, 0.65);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.gallery-showcase__count svg {
    opacity: 0.85;
}

/* ═══════════════════════════════════════════════════════════
   7. SECTION TABS
   ═══════════════════════════════════════════════════════════ */

.section-tabs {
    position: sticky;
    top: 60px;
    z-index: 850;
    margin-top: 12px;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid var(--color-border-soft);
    border-bottom: 1px solid var(--color-border);
}

.tabs-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 44px;
    overflow-x: auto;
    scrollbar-width: none;
}

.tabs-nav::-webkit-scrollbar {
    display: none;
}

.tab-link {
    color: #4d627f;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    text-decoration: none;
}

.tab-link.active,
.tab-link:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

/* ═══════════════════════════════════════════════════════════
   8. INFO BAR (3-column cards)
   ═══════════════════════════════════════════════════════════ */

.hotel-info-bar {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    padding: 20px 0 0;
}

.info-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: -1px;
    min-width: 0;
    overflow: hidden;
}

.info-card:first-child {
    border-radius: 12px 0 0 12px;
    margin-left: 0;
}

.info-card:last-child {
    border-radius: 0 12px 12px 0;
}

/* Rating card */
.info-card--rating {
    gap: 4px;
}

.info-card-header {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}

.info-rating-top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.info-rating-score-box {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    min-height: 52px;
    border-radius: 10px 10px 10px 2px;
    background: var(--color-success);
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    flex-shrink: 0;
}

.info-rating-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-rating-badge {
    font-size: 16px;
    font-weight: 800;
    color: var(--color-text);
    line-height: 1.2;
}

.info-rating-count {
    margin: 0;
    font-size: 13px;
    color: var(--color-text-muted);
    font-weight: 500;
}

.info-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.info-link:hover {
    text-decoration: underline;
}

.info-link svg {
    flex-shrink: 0;
}

/* Amenities card */
.info-amenity-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 20px;
}

.info-amenity-list li {
    font-size: 13px;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.5;
}

.info-amenity-list li::before {
    content: '';
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2310883f' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Location card */
.info-card--location {
    gap: 8px;
}

.info-address {
    margin: 0;
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.info-address svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-primary);
}

.info-address-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-address-line {
    font-size: 14px;
    color: var(--color-text);
    font-weight: 500;
}

.info-address-sub {
    font-size: 13px;
    color: var(--color-text-muted);
}

/* ═══════════════════════════════════════════════════════════
   9. PAGE LAYOUT (2-column shell)
   ═══════════════════════════════════════════════════════════ */

.hotel-page-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: start;
    gap: 20px;
    padding-top: 18px;
    padding-bottom: 36px;
}

.hotel-main-content {
    display: grid;
    gap: 14px;
    min-width: 0;
}

.hotel-block {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 20px;
    min-width: 0;
    overflow: hidden;
}

.hotel-block h2 {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.hotel-block h3 {
    margin: 0 0 6px;
    font-size: 16px;
    line-height: 1.25;
}

.hotel-rich-content {
    color: #273b59;
    font-size: 14px;
    overflow-wrap: break-word;
    word-break: break-word;
}

.hotel-rich-content p {
    margin: 0 0 10px;
}

.hotel-inline-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.hotel-inline-ctas .btn {
    min-height: 38px;
    font-size: 14px;
    border-radius: 8px;
}

/* SEO intro paragraph */
.hotel-seo-intro {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

/* Star rating display */
.star-rating {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    color: #f2b01e;
}

/* ═══════════════════════════════════════════════════════════
   10. ROOMS
   ═══════════════════════════════════════════════════════════ */

.rooms-intro {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-soft);
}

.rooms-intro__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-soft);
    border-radius: 12px;
    color: var(--color-primary);
}

.rooms-intro__content {
    flex: 1;
    min-width: 0;
}

.rooms-intro__text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0 0 16px;
}

.rooms-intro__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.rooms-intro__btn svg {
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   11. FACILITIES — Grouped Booking.com style
   ═══════════════════════════════════════════════════════════ */

.facilities-grouped {
    border: 1px solid var(--color-border-soft);
    border-radius: 10px;
    overflow: hidden;
}

.facility-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    align-items: start;
    padding: 18px 20px;
    border-bottom: 1px solid var(--color-border-soft);
}

.facility-row:last-child {
    border-bottom: 0;
}

.facility-category {
    display: flex;
    align-items: center;
    gap: 10px;
}

.facility-category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    flex-shrink: 0;
}

.facility-category-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.3;
}

.facility-items {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
    align-items: center;
}

.facility-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--color-text);
    line-height: 1.5;
}

.facility-check {
    flex-shrink: 0;
    color: var(--color-success);
}

/* Top amenities highlight grid */
.amenity-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.amenity-highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--color-bg);
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text);
}

.amenity-highlight-item svg {
    flex-shrink: 0;
    color: var(--color-success);
}

/* ═══════════════════════════════════════════════════════════
   12. PHOTOS PREVIEW
   ═══════════════════════════════════════════════════════════ */

.photos-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    position: relative;
}

.photos-preview--three {
    grid-template-columns: repeat(3, 1fr);
}

.photos-preview__item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    pointer-events: none;
}

.photos-preview__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photos-preview__footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.photos-preview__more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--color-border);
    background: #fff;
    color: var(--color-text);
    font-size: 13px;
    font-weight: 600;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.photos-preview__more:hover {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #fff;
}

.photos-preview__more svg {
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   13. LOCATION
   ═══════════════════════════════════════════════════════════ */

.location-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px 20px;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-soft);
}

.location-address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.location-icon {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.location-address-line {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.4;
}

.location-address-sub {
    display: block;
    font-size: 13px;
    color: var(--color-text-muted);
    margin-top: 2px;
}

.location-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 300px;
    background: var(--color-bg);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: 0;
}

.location-map-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    background: var(--color-primary);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: background 0.2s ease;
    text-decoration: none;
}

.location-map-link:hover {
    background: var(--color-primary-dark);
    color: #fff;
}

.location-description {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-top: 16px;
}

/* ═══════════════════════════════════════════════════════════
   14. FAQ — Accordion
   ═══════════════════════════════════════════════════════════ */

.faq-list {
    display: grid;
    gap: 8px;
}

.faq-list details {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 0;
}

.faq-list summary {
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: '+';
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-muted);
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-list details[open] summary::after {
    content: '\2212';
}

.faq-list details p,
.faq-answer {
    padding: 0 18px 14px;
    margin: 0;
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   15. POLICIES
   ═══════════════════════════════════════════════════════════ */

.hotel-policy-list {
    display: grid;
    gap: 8px;
}

.hotel-policy-item {
    border: 1px solid var(--color-border-soft);
    border-radius: 8px;
    padding: 10px 12px;
}

.hotel-policy-item p {
    margin: 0;
    color: #4d607a;
    font-size: 13px;
}

.policy-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 4px;
}

.policy-value {
    display: block;
    font-size: 14px;
    color: var(--color-text-muted);
}

/* ═══════════════════════════════════════════════════════════
   16. REVIEWS
   ═══════════════════════════════════════════════════════════ */

/* Review header — score box + label */
.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.review-score-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    min-height: 56px;
    border-radius: 10px 10px 10px 2px;
    background: var(--color-success);
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    flex-shrink: 0;
}

.review-header-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-badge {
    font-size: 16px;
    font-weight: 700;
    display: block;
    color: var(--color-text);
}

.review-count {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 14px;
    font-weight: 500;
}

/* Review sentiment bars — 3-column grid */
.review-bars {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px 24px;
    margin-bottom: 18px;
}

.review-bar-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-bar-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.review-bar-label {
    font-size: 14px;
    color: var(--color-text);
    font-weight: 500;
}

.review-bar-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
    margin-left: auto;
}

.review-bar-track {
    height: 6px;
    background: #e8ecf1;
    border-radius: 3px;
    overflow: hidden;
}

.review-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--color-success), #34d399);
}

.review-cta-area {
    padding-top: 4px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    background: #fff;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.btn-outline:hover {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════
   17. SIDEBAR
   ═══════════════════════════════════════════════════════════ */

.hotel-sidebar {
    position: sticky;
    top: 112px;
    display: grid;
    gap: 12px;
}

.hotel-sidebar-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 14px;
}

.hotel-sidebar-card h3 {
    margin: 0 0 10px;
    font-size: 16px;
}

.hotel-sidebar-ctas {
    display: grid;
    gap: 6px;
}

.hotel-sidebar-ctas .btn {
    width: 100%;
    min-height: 38px;
    font-size: 14px;
}

.hotel-facts-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 6px;
}

.hotel-facts-list li {
    color: #41526c;
    font-size: 13px;
}

.hotel-facts-list strong {
    color: #1c2e47;
}

/* ═══════════════════════════════════════════════════════════
   18. RADAR CHART — Guest Experience
   ═══════════════════════════════════════════════════════════ */

.radar-chart-wrap {
    position: relative;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.radar-chart {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
}

.radar-grid {
    fill: none;
    stroke: #e2e8f0;
    stroke-width: 0.8;
}

.radar-grid-outer {
    stroke: #cbd5e1;
    stroke-width: 1;
}

.radar-axis {
    stroke: #e2e8f0;
    stroke-width: 0.6;
}

.radar-scale {
    fill: var(--color-success);
    font-size: 9px;
    font-weight: 700;
    font-family: inherit;
}

.radar-data {
    fill: rgba(16, 136, 63, 0.15);
    stroke: var(--color-success);
    stroke-width: 2;
    pointer-events: none;
    transition: fill 0.2s ease;
}

.radar-point {
    fill: var(--color-success);
    stroke: #fff;
    stroke-width: 2;
    cursor: pointer;
    transition: r 0.15s ease, fill 0.15s ease;
}

.radar-point:hover {
    fill: #0b6b2e;
}

.radar-label {
    fill: #41526c;
    font-size: 11px;
    font-weight: 600;
    font-family: inherit;
}

/* Radar tooltip */
.radar-tooltip {
    position: absolute;
    pointer-events: none;
    background: #1c2e47;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-50%) translateY(-8px);
    transition: opacity 0.15s ease;
    z-index: 10;
}

.radar-tooltip.visible {
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════
   19. DECISION INTELLIGENCE BOX
   ═══════════════════════════════════════════════════════════ */

.decision-box {
    border-left: 4px solid var(--color-primary);
}

.decision-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.decision-header h2 {
    margin: 0;
}

.decision-icon {
    color: var(--color-primary);
    flex-shrink: 0;
}

.decision-verdict {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #1a1a2e;
    margin-bottom: 20px;
    font-weight: 500;
}

.decision-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.decision-card {
    padding: 16px;
    border-radius: 8px;
}

.decision-card--good {
    background: #f0faf4;
    border: 1px solid #c6f0d5;
}

.decision-card--caution {
    background: #fef9ee;
    border: 1px solid #fde3a7;
}

.decision-card h3 {
    margin: 0 0 10px;
    font-size: 0.95rem;
    font-weight: 600;
}

.decision-card--good h3 {
    color: #15803d;
}

.decision-card--caution h3 {
    color: #b45309;
}

.decision-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.decision-card li {
    padding: 4px 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #334155;
}

.decision-card--good li::before {
    content: "\2713  ";
    color: #15803d;
    font-weight: 600;
}

.decision-card--caution li::before {
    content: "\26A0  ";
    color: #b45309;
}

.decision-experience,
.decision-location,
.decision-price {
    margin-bottom: 16px;
}

.decision-experience h3,
.decision-location h3,
.decision-price h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #475569;
    margin: 0 0 6px;
}

.decision-experience p,
.decision-location p,
.decision-price p {
    font-size: 0.93rem;
    line-height: 1.65;
    color: #334155;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   20. SECTION CTA BUTTONS
   ═══════════════════════════════════════════════════════════ */

.section-cta-wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 14px;
}

.btn-cta-action {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.btn-cta-action--verdict {
    background: var(--color-primary-soft);
    color: var(--color-primary-dark);
}

.btn-cta-action--verdict:hover {
    background: var(--color-primary);
    color: #fff;
}

.btn-cta-action svg {
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   21. STICKY BOOKING BAR (mobile)
   ═══════════════════════════════════════════════════════════ */

.sticky-booking-mobile {
    position: fixed;
    bottom: -80px;
    left: 0;
    right: 0;
    z-index: 980;
    background: #fff;
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
    transition: bottom 0.25s ease;
}

.sticky-booking-mobile.visible {
    bottom: 0;
}

.sticky-mobile-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
}

.sticky-mobile-text {
    font-size: 13px;
    color: var(--color-text-muted);
    font-weight: 500;
}

.sticky-mobile-btn {
    flex-shrink: 0;
    min-height: 40px;
    font-size: 14px;
    border-radius: 10px;
    padding: 8px 20px;
}

@media (min-width: 1100px) {
    .sticky-booking-mobile {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════════
   22. LIGHTBOX
   ═══════════════════════════════════════════════════════════ */

.hci-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.hci-lightbox--active {
    opacity: 1;
    visibility: visible;
}

.hci-lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.hci-lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.hci-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ═══════════════════════════════════════════════════════════
   23. FOOTER
   ═══════════════════════════════════════════════════════════ */

.site-footer {
    margin-top: 20px;
    background: #0f1c30;
    color: rgba(255, 255, 255, 0.75);
    padding: 24px 0 18px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
}

.footer-column h3 {
    margin: 0 0 8px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
}

.footer-column p {
    font-size: 13px;
    margin: 0 0 4px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    transition: background 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
    background: var(--color-primary);
    color: #fff;
}

.footer-bottom {
    margin-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 12px;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* ═══════════════════════════════════════════════════════════
   Content-Visibility — skip rendering below-fold sections
   ═══════════════════════════════════════════════════════════ */

#verdict,
#rooms,
#amenities,
#photos,
#location,
#faq,
#policies,
#reviews {
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}

.hotel-sidebar-card {
    content-visibility: auto;
    contain-intrinsic-size: auto 320px;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — 1099px (Tablet / Single column)
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1099px) {
    .hotel-info-bar {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .info-card:first-child {
        border-radius: 12px 12px 0 0;
    }

    .info-card:last-child {
        border-radius: 0 0 12px 12px;
    }

    .info-card {
        margin-left: 0;
        margin-top: -1px;
        padding: 16px 18px;
    }

    .info-card:first-child {
        margin-top: 0;
    }

    .header-top {
        height: 50px;
    }

    .search-form {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }

    .search-field {
        min-height: 48px;
        border-right: 0;
        border-bottom: 1px solid var(--color-border-soft);
        padding: 8px 14px;
    }

    .search-btn {
        margin: 8px;
        width: calc(100% - 16px);
    }

    .section-tabs {
        top: 0;
    }

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

    .hotel-sidebar {
        position: static;
    }

    .hotel-title-bar__name {
        font-size: 22px;
    }

    .gallery-showcase__cell {
        height: 200px;
    }

    .gallery-showcase__cta {
        padding: 10px 14px;
    }

    .gallery-showcase__cta-big {
        font-size: 14px;
    }

    .review-bars {
        grid-template-columns: 1fr 1fr;
    }

    .dp-months {
        flex-direction: column;
        gap: 12px;
    }

    .facility-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 14px 16px;
    }

    .radar-chart-wrap {
        max-width: 280px;
    }

    .radar-label {
        font-size: 10px;
    }

    .radar-scale {
        font-size: 9px;
    }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — 767px (Mobile)
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 767px) {
    .container {
        width: calc(100% - 16px);
    }

    .site-header {
        position: static;
    }

    .header-top {
        height: 44px;
    }

    .header-back-home {
        font-size: 12px;
        padding: 5px 12px 5px 8px;
        gap: 4px;
    }

    .header-back-home svg {
        width: 14px;
        height: 14px;
    }

    /* Language switcher — compact on mobile */
    .header-lang__toggle span {
        display: none;
    }

    .header-lang__arrow {
        display: none;
    }

    .header-lang__toggle {
        padding: 6px 8px;
        border: none;
        background: transparent;
    }

    .header-lang__toggle svg:first-child {
        width: 20px;
        height: 20px;
    }

    .header-lang__menu {
        right: -40px;
    }

    /* Discount bar — stack on mobile */
    .header-discount-inner {
        flex-direction: column;
        gap: 6px;
        padding: 8px 0;
        align-items: flex-start;
    }

    .discount-see-all {
        font-size: 12px;
    }

    /* Hide desktop search, show mobile compact bar */
    .search-bar--desktop {
        display: none;
    }

    .search-bar-mobile {
        display: block;
        padding: 0 0 10px;
    }

    .search-bar-mobile__trigger {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        padding: 10px 14px;
        border: 1px solid var(--color-border);
        border-radius: 28px;
        background: #fff;
        box-shadow: var(--shadow-sm);
        cursor: pointer;
        text-align: left;
        font-family: inherit;
    }

    .search-bar-mobile__trigger:active {
        background: var(--color-bg);
    }

    .search-bar-mobile__icon {
        flex-shrink: 0;
        color: var(--color-text);
    }

    .search-bar-mobile__text {
        display: grid;
        gap: 1px;
        min-width: 0;
    }

    .search-bar-mobile__title {
        font-size: 14px;
        font-weight: 600;
        color: var(--color-text);
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .search-bar-mobile__subtitle {
        font-size: 12px;
        color: var(--color-text-muted);
        font-weight: 400;
        line-height: 1.2;
    }

    /* Hotel title bar mobile */
    .hotel-title-bar {
        padding: 14px 0 12px;
    }

    .hotel-title-bar__content {
        flex-direction: column;
        gap: 12px;
    }

    .hotel-title-bar__name {
        font-size: 20px;
    }

    .hotel-title-bar__cta {
        width: 100%;
    }

    .hotel-title-bar__cta .btn {
        width: 100%;
    }

    /* Gallery showcase mobile */
    .gallery-showcase {
        padding: 8px 0 0;
    }

    .gallery-showcase__strip {
        border-radius: var(--radius-sm);
        gap: 3px;
    }

    /* Stack 1 image full, 2+ side by side below */
    .gallery-cols-3 {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: max-content;
        height: auto;
    }

    .gallery-cols-3 .gallery-showcase__cell:first-child {
        grid-column: 1 / -1;
        height: 160px;
    }

    .gallery-cols-3 .gallery-showcase__cell:nth-child(n+2) {
        height: 110px;
    }

    .gallery-cols-2 .gallery-showcase__cell {
        height: 140px;
    }

    .gallery-cols-1 .gallery-showcase__cell {
        height: 180px;
    }

    /* CTA compact on mobile */
    .gallery-showcase__cta {
        bottom: 90px;
        right: 10px;
        padding: 8px 12px;
        gap: 8px;
        border-radius: 10px;
    }

    .gallery-showcase__cta-icon {
        width: 18px;
        height: 18px;
    }

    .gallery-showcase__cta-small {
        font-size: 9px;
    }

    .gallery-showcase__cta-big {
        font-size: 12px;
    }

    .gallery-showcase__count {
        top: 8px;
        right: 8px;
        font-size: 11px;
        padding: 4px 10px;
    }

    .tabs-nav {
        gap: 14px;
        min-height: 40px;
    }

    .tab-link {
        font-size: 12px;
    }

    .hotel-block {
        padding: 14px;
    }

    .hotel-block h2 {
        font-size: 18px;
    }

    .photos-preview {
        display: flex;
        overflow-x: auto;
        gap: 8px;
        max-width: none;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .photos-preview::-webkit-scrollbar {
        display: none;
    }

    .photos-preview__item {
        flex-shrink: 0;
        width: 140px;
        aspect-ratio: 4 / 3;
    }

    .rooms-intro {
        flex-direction: column;
        padding: 18px;
        gap: 14px;
    }

    .review-bars {
        grid-template-columns: 1fr;
    }

    /* Location mobile */
    .location-header {
        flex-direction: column;
        gap: 12px;
        padding: 14px 16px;
    }

    .footer-content {
        gap: 14px;
    }

    /* Review bars mobile */
    .review-bars {
        grid-template-columns: 1fr 1fr;
        gap: 10px 16px;
    }

    /* Radar chart mobile */
    .radar-chart-wrap {
        max-width: 260px;
    }

    .radar-label {
        font-size: 16px;
    }

    .radar-scale {
        font-size: 8px;
    }

    /* Decision cards mobile */
    .decision-cards {
        grid-template-columns: 1fr;
    }

    /* Lightbox mobile */
    .hci-lightbox {
        padding: 16px;
    }

    /* Prevent iOS auto-zoom on input focus */
    input[type="text"],
    input[type="number"],
    input[type="email"],
    input[type="tel"],
    input[type="search"],
    select,
    textarea,
    .search-dialog__input,
    .search-dialog__select,
    .guests-summary,
    .dialog-guests-summary {
        font-size: 16px !important;
    }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — 480px (Small mobile)
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 480px) {
    .review-bars {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .amenity-highlights {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════
   Landscape phone — short viewport
   ═══════════════════════════════════════════════════════════ */

@media (max-height: 500px) and (orientation: landscape) {
    .site-header {
        position: static;
    }

    .gallery-showcase__strip {
        border-radius: 8px;
    }

    .gallery-showcase__cell {
        height: 150px;
    }

    .gallery-showcase__cta {
        padding: 6px 10px;
    }

    .gallery-showcase__cta-big {
        font-size: 12px;
    }

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

    .info-card {
        padding: 12px 14px;
    }

    .info-card:first-child {
        border-radius: 8px 0 0 8px;
        margin-top: 0;
    }

    .info-card:last-child {
        border-radius: 0 8px 8px 0;
    }

    .hotel-block {
        padding: 14px;
    }

    .hotel-block h2 {
        font-size: 18px;
    }

    .section-tabs {
        position: static;
    }

    .tabs-nav {
        min-height: 36px;
        gap: 12px;
    }

    .tab-link {
        font-size: 12px;
    }
}

/* ═══════════════════════════════════════════════════════════
   Print
   ═══════════════════════════════════════════════════════════ */

@media print {
    .site-header,
    .search-dialog,
    .sticky-booking-mobile,
    .hci-lightbox,
    .hotel-sidebar,
    .section-tabs,
    .hotel-title-bar__cta {
        display: none !important;
    }

    body {
        background: #fff;
        font-size: 12pt;
    }

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

    .hotel-block {
        border: none;
        padding: 10px 0;
        break-inside: avoid;
    }

    .gallery-showcase__strip {
        display: block;
    }

    .gallery-showcase__cell {
        height: auto;
    }

    .gallery-showcase__cell img {
        height: auto;
    }

    .gallery-showcase__cta,
    .gallery-showcase__count {
        display: none;
    }

    .gallery-showcase__strip::after {
        display: none;
    }
}
