/* =========================================================
   SINGLE HOTEL — CLEAN REBUILD
   ========================================================= */

:root {
    --hotel-bg: #f6f7fb;
    --hotel-card-bg: #ffffff;
    --hotel-text: #374151;
    --hotel-text-dark: #111827;
    --hotel-text-muted: #6b7280;
    --hotel-line: #e7ebf3;
    --hotel-line-strong: #dbe5f2;
    --hotel-blue: #2f80ed;
    --hotel-blue-dark: #1f6fda;
    --hotel-blue-soft: #edf5ff;
    --hotel-green: #35c56c;
    --hotel-green-dark: #2dac5c;
    --hotel-green-soft: #f4fcf7;
    --hotel-red: #eb6d6d;
    --hotel-shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.05);
    --hotel-shadow-md: 0 10px 26px rgba(15, 23, 42, 0.07);
    --hotel-shadow-lg: 0 18px 40px rgba(15, 23, 42, 0.14);
    --hotel-radius-sm: 10px;
    --hotel-radius-md: 14px;
    --hotel-radius-lg: 18px;
    --hotel-radius-xl: 20px;
    --hotel-transition: 0.2s ease;
}

/* =========================================================
   BASE LAYOUT
   ========================================================= */

.hotel-single {
    padding: 18px 0 56px;
    background: var(--hotel-bg);
}

.hotel-single__container {
    width: min(100%, 1400px);
    margin: 0 auto;
    padding: 0 24px;
}

.hotel-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.4;
    color: var(--hotel-text-muted);
}

.hotel-breadcrumbs a {
    color: var(--hotel-blue);
    text-decoration: none;
}

.hotel-breadcrumbs a:hover {
    text-decoration: underline;
}

.hotel-single__top {
    margin-bottom: 14px;
}

.hotel-single__title {
    margin: 0;
    text-align: center;
    font-size: 24px;
    line-height: 1.12;
    font-weight: 700;
    color: var(--hotel-blue);
}

.hotel-single__main,
.hotel-single-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 24px;
    align-items: start;
}

.hotel-single__content,
.hotel-single-layout__main,
.hotel-single-layout__sidebar {
    min-width: 0;
}

.hotel-single__sidebar {
    position: sticky;
    top: 90px;
    min-width: 0;
}

.hotel-section {
    margin-bottom: 4px;
}

.hotel-section__head,
.hotel-section__head--reviews {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.hotel-section__title {
    margin: 0 0 16px;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--hotel-blue);
}

.hotel-section__intro {
    margin: -4px 0 0;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 600;
    color: var(--hotel-text);
}

.hotel-card-box {
    background: var(--hotel-card-bg);
    border: 1px solid var(--hotel-line);
    border-radius: var(--hotel-radius-lg);
    padding: 24px;
    box-shadow: var(--hotel-shadow-sm);
}

.hotel-card-box--guarantee {
    border-color: #cfe9d7;
}

/* =========================================================
   GALLERY
   ========================================================= */

.hotel-donor-gallery {
    position: relative;
}

.hotel-donor-gallery__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 4px;
    border-radius: var(--hotel-radius-xl);
    overflow: hidden;
    background: #e6ebf2;
}

.hotel-donor-gallery__item {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
    text-align: left;
    appearance: none;
}

.hotel-donor-gallery__main {
    position: relative;
    min-height: 424px;
    height: 424px;
    overflow: hidden;
}

.hotel-donor-gallery__side {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 4px;
    min-height: 424px;
    height: 424px;
}

.hotel-donor-gallery__thumb,
.hotel-donor-gallery__thumb--empty {
    position: relative;
    min-height: 0;
    height: 100%;
    overflow: hidden;
    background: #d9e1ec;
}

.hotel-donor-gallery__image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    vertical-align: top;
    transition: transform 0.35s ease;
}

.hotel-donor-gallery__item:hover .hotel-donor-gallery__image {
    transform: scale(1.025);
}

.hotel-donor-gallery__main::after,
.hotel-donor-gallery__thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0) 30%);
    pointer-events: none;
}

.hotel-donor-gallery__rating {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.24);
}

.hotel-donor-gallery__rating-score-wrap {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hotel-donor-gallery__rating-laurel {
    display: inline-flex;
    width: 18px;
    height: 32px;
    color: #fff;
    flex: 0 0 18px;
}

.hotel-donor-gallery__rating-laurel svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hotel-donor-gallery__rating-laurel--right {
    transform: scaleX(-1);
}

.hotel-donor-gallery__rating-score {
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hotel-donor-gallery__rating-reviews {
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    white-space: nowrap;
}

.hotel-donor-gallery__actions {
    position: absolute;
    left: 22px;
    bottom: 18px;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.hotel-donor-gallery__action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: var(--hotel-radius-sm);
    background: rgba(0, 0, 0, 0.58);
    color: #fff;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    transition: background-color var(--hotel-transition), border-color var(--hotel-transition);
}

.hotel-donor-gallery__action:hover,
.hotel-donor-gallery__action:focus-visible {
    outline: none;
    background: rgba(0, 0, 0, 0.42);
    border-color: rgba(255, 255, 255, 1);
}

.hotel-donor-gallery__action-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.hotel-donor-gallery__action-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* =========================================================
   GALLERY MODAL
   ========================================================= */

.hotel-gallery-modal[hidden] {
    display: none !important;
}

.hotel-gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.hotel-gallery-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 20, 0.92);
}

.hotel-gallery-modal__dialog {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    width: min(100%, 1440px);
    height: 100vh;
    margin: 0 auto;
    padding: 22px 22px 18px;
}

.hotel-gallery-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
}

.hotel-gallery-modal__close svg {
    width: 20px;
    height: 20px;
}

.hotel-gallery-modal__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-right: 64px;
    margin-bottom: 18px;
    color: #fff;
}

.hotel-gallery-modal__counter {
    font-size: 16px;
    font-weight: 800;
}

.hotel-gallery-modal__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
}

.hotel-gallery-modal__dot {
    opacity: 0.5;
}

.hotel-gallery-modal__stage {
    position: relative;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 72px;
    gap: 14px;
    align-items: center;
    flex: 1 1 auto;
    min-height: 0;
}

.hotel-gallery-modal__image-wrap {
    position: relative;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    border-radius: var(--hotel-radius-lg);
}

.hotel-gallery-modal__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}

.hotel-gallery-modal__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hotel-gallery-modal__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #0f172a;
}

.hotel-gallery-modal__nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
}

.hotel-gallery-modal__nav svg {
    width: 24px;
    height: 24px;
}

.hotel-gallery-modal__thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-top: 18px;
    margin-top: 8px;
}

.hotel-gallery-modal__thumbs::-webkit-scrollbar {
    height: 8px;
}

.hotel-gallery-modal__thumbs::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
}

.hotel-gallery-modal__thumb {
    flex: 0 0 110px;
    width: 110px;
    height: 74px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    background: #1f2937;
    cursor: pointer;
    opacity: 0.72;
    transition: opacity var(--hotel-transition), border-color var(--hotel-transition), transform var(--hotel-transition);
}

.hotel-gallery-modal__thumb:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}

.hotel-gallery-modal__thumb.is-active {
    opacity: 1;
    border-color: var(--hotel-blue);
}

.hotel-gallery-modal__thumb-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

html.hotel-gallery-open,
body.hotel-gallery-open {
    overflow: hidden;
}

/* =========================================================
   TRUST STRIP
   ========================================================= */

.hotel-trust-strip {
    padding: 8px 0;
    border-bottom: 1px solid #9fd8b0;
}

.hotel-trust-strip__items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: center;
}

.hotel-trust-strip__item {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.hotel-trust-strip__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    min-width: 28px;
    color: #31b86a;
    flex: 0 0 28px;
}

.hotel-trust-strip__icon svg {
    display: block;
    width: 100%;
    height: auto;
    fill: currentColor;
}

.hotel-trust-strip__icon--stroke svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.hotel-trust-strip__label {
    color: #31b86a;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* =========================================================
   INTRO / DESCRIPTION / SUMMARY
   ========================================================= */

.hotel-single__intro-flow {
    display: block;
    overflow: hidden;
}

.hotel-single__intro-summary {
    float: right;
    width: 420px;
    margin: 0 0 18px 34px;
}

.hotel-single__intro-description {
    min-width: 0;
}

.hotel-description-block,
.hotel-summary-block {
    padding: 14px 0 40px;
}

.hotel-summary-block--donor {
    padding-top: 14px;
}

.hotel-description-block__short p,
.hotel-description-block__full p {
    margin: 0 0 14px;
    color: #1f2937;
    font-size: 16px;
    line-height: 1.85;
    letter-spacing: -0.01em;
}

.hotel-description-block__full h3,
.hotel-description-block__full h4,
.hotel-description-block__full strong {
    color: var(--hotel-text-dark);
    font-weight: 700;
}

.hotel-description-block__full h3,
.hotel-description-block__full h4 {
    margin: 8px 0 10px;
    font-size: 20px;
    line-height: 1.35;
}

.hotel-description-block__toggle {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--hotel-blue);
    font-size: 17px;
    line-height: 1.2;
    font-weight: 700;
    cursor: pointer;
}

.hotel-description-block__toggle:hover {
    text-decoration: underline;
}

.hotel-summary-ref-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 42px;
    align-items: start;
}

.hotel-summary-ref-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}

.hotel-summary-ref-item__icon-wrap {
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    width: 40px;
    min-width: 40px;
    padding-top: 2px;
    flex: 0 0 40px;
    background: rgba(128, 128, 128, 0.06);
    border-radius: var(--hotel-radius-sm);
}

.hotel-summary-ref-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--hotel-blue);
}

.hotel-summary-ref-item__icon svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.hotel-summary-ref-item--location .hotel-summary-ref-item__icon {
    width: 18px;
    height: 28px;
}

.hotel-summary-ref-item--breakfast .hotel-summary-ref-item__icon,
.hotel-summary-ref-item--wifi .hotel-summary-ref-item__icon,
.hotel-summary-ref-item--parking .hotel-summary-ref-item__icon {
    width: 30px;
    height: 30px;
}

.hotel-summary-ref-item__content {
    min-width: 0;
    padding-top: 1px;
}

.hotel-summary-ref-item__label {
    margin-bottom: 4px;
    color: #1f2937;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.hotel-summary-ref-item__value {
    color: var(--hotel-blue);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 400;
    word-break: break-word;
}

.hotel-summary-ref-item__value a {
    color: inherit;
    text-decoration: none;
}

/* =========================================================
   ROOMS TRACK / CARDS
   ========================================================= */

.hotel-rooms-section {
    padding-top: 2px;
}

.hotel-rooms-track-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 12px;
    scrollbar-width: thin;
    scrollbar-color: #c4c9d4 transparent;
}

.hotel-rooms-track-wrap::-webkit-scrollbar {
    height: 10px;
}

.hotel-rooms-track-wrap::-webkit-scrollbar-thumb {
    background: #c4c9d4;
    border-radius: 999px;
}

.hotel-rooms-track {
    display: flex;
    align-items: stretch;
    gap: 18px;
    min-width: max-content;
    padding-right: 18px;
}

.hotel-room-card {
    width: 304px;
    min-width: 304px;
    overflow: hidden;
    border: 1px solid #e3e8f0;
    border-radius: var(--hotel-radius-lg);
    background: #fff;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.045);
    transition: border-color var(--hotel-transition), box-shadow var(--hotel-transition);
}

.hotel-room-card--selected {
    border-color: #31b86a;
    box-shadow: 0 0 0 1px rgba(49, 184, 106, 0.16), 0 8px 18px rgba(15, 23, 42, 0.065);
}

.hotel-room-card__media {
    position: relative;
    height: 226px;
    overflow: hidden;
    background: #dfe6ef;
}

.hotel-room-card__slider,
.hotel-room-card__slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hotel-room-card__slides {
    display: flex;
    transition: transform 0.34s ease;
}

.hotel-room-card__slide {
    min-width: 100%;
    height: 226px;
    overflow: hidden;
}

.hotel-room-card__image,
.hotel-room-card__placeholder {
    display: block;
    width: 100%;
    height: 226px;
    object-fit: cover;
}

.hotel-room-card__image {
    transform: scale(1.12);
    transform-origin: center center;
}

.hotel-room-card__placeholder {
    background: linear-gradient(135deg, #dbe3ee, #eff3f8);
}

.hotel-room-card__details {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 4;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 8px;
    background: #4b8ef0;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.hotel-room-card--selected .hotel-room-card__details {
    top: 42px;
    background: var(--hotel-green);
}

.hotel-room-card__nav {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 34px;
    height: 54px;
    margin-top: -27px;
    border: 0;
    background: rgba(0, 0, 0, 0.18);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(2px);
}

.hotel-room-card__nav svg {
    display: block;
    width: 18px;
    height: 18px;
    margin: 0 auto;
}

.hotel-room-card__nav--prev {
    left: 0;
    border-radius: 0 12px 12px 0;
}

.hotel-room-card__nav--next {
    right: 0;
    border-radius: 12px 0 0 12px;
}

.hotel-room-card__badge {
    position: absolute;
    left: 0;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 30px;
    padding: 0 12px;
    color: #fff;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
}

.hotel-room-card__badge--top {
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
    justify-content: flex-start;
}

.hotel-room-card__badge--bottom {
    bottom: 0;
    border-radius: 0 10px 0 0;
    padding-right: 14px;
}

.hotel-room-card__badge--blue {
    background: var(--hotel-blue);
}

.hotel-room-card__badge--green {
    background: var(--hotel-green);
}

.hotel-room-card__badge--gray {
    background: #7a8797;
}

.hotel-room-card__badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
}

.hotel-room-card__badge-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hotel-room-card:not(.hotel-room-card--selected) .hotel-room-card__badge {
    display: none;
}

.hotel-room-card__content {
    min-height: 178px;
    padding: 12px 16px 16px;
    background: #fff;
}

.hotel-room-card__title {
    margin: 0 0 18px;
    min-height: 48px;
    text-align: center;
    color: var(--hotel-blue);
    font-size: 17px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.hotel-room-card--selected .hotel-room-card__title {
    color: #31b86a;
}

.hotel-room-card__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
}

.hotel-room-card__fact {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
    min-height: 44px;
}

.hotel-room-card__fact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: #eef3fb;
    color: var(--hotel-blue);
    flex: 0 0 30px;
}

.hotel-room-card__fact-icon svg {
    display: block;
    width: 18px;
    height: 18px;
}

.hotel-room-card--selected .hotel-room-card__fact-icon {
    color: var(--hotel-green);
}

.hotel-room-card__fact-label {
    display: -webkit-box;
    overflow: hidden;
    color: #4b4f58;
    font-size: 12px;
    line-height: 1.32;
    font-weight: 500;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.hotel-room-card__footer {
    min-height: 60px;
    padding: 0 16px;
    background: #f5f8fd;
    border-top: 1px solid #ebeff5;
}

.hotel-room-card__footer-default,
.hotel-room-card__footer-selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 60px;
    width: 100%;
}

.hotel-room-card__footer-selected {
    justify-content: flex-end;
}

.hotel-room-card__price-wrap {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 5px;
    flex-wrap: wrap;
    margin-left: auto;
    text-align: right;
}

.hotel-room-card__price-prefix {
    color: #4b4f58;
    font-size: 14px;
    font-weight: 500;
}

.hotel-room-card__price-value {
    color: var(--hotel-blue);
    font-size: 15px;
    font-weight: 700;
}

.hotel-room-card__radio {
    width: 29px;
    height: 29px;
    border: 1.5px solid #b6b6b6;
    border-radius: 999px;
    background: #fff;
    cursor: pointer;
    flex: 0 0 29px;
}

.hotel-room-card__link-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--hotel-green);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.hotel-room-card__link-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: var(--hotel-green);
    color: #fff;
    flex: 0 0 24px;
}

.hotel-room-card__link-cta-icon svg {
    display: block;
    width: 10px;
    height: 10px;
}

.hotel-room-card--selected .hotel-room-card__footer {
    background: #f7fcf8;
}

.hotel-room-card:not(.hotel-room-card--selected) .hotel-room-card__footer-selected {
    display: none;
}

.hotel-room-card--selected .hotel-room-card__footer-default {
    display: none;
}

/* =========================================================
   HOW / MAP / NEARBY
   ========================================================= */

.hotel-how-box {
    padding: 55px 0px 0px 0px;
}

.hotel-how-box__title {
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hotel-how-box__intro {
    max-width: 1120px;
    margin: 0;
    color: #1f2937;
    font-size: 20px;
    line-height: 1.42;
    font-weight: 400;
    letter-spacing: -0.015em;
}

.hotel-how-donor {
    margin-top: 36px;
}

.hotel-how-donor__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 74px;
    row-gap: 34px;
    align-items: start;
}

.hotel-how-donor__item {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    min-width: 0;
}

.hotel-how-donor__icon-wrap {
    position: relative;
    width: 55px;
    height: 55px;
}

.hotel-how-donor__number {
    position: absolute;
    top: -8px;
    right: -8px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #39b56a;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    box-shadow: 0 0 0 3px #fff;
}

.hotel-how-donor__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 10px;
    background: #eef3fb;
    color: #2f80ed;
}

.hotel-how-donor__icon svg {
    display: block;
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.hotel-how-donor__item:nth-child(1) .hotel-how-donor__icon svg {
    width: 26px;
    height: 30px;
}

.hotel-how-donor__item:nth-child(3) .hotel-how-donor__icon svg {
    width: 26px;
    height: 26px;
}

.hotel-how-donor__item:nth-child(4) .hotel-how-donor__icon svg {
    width: 28px;
    height: 28px;
}

.hotel-how-donor__content {
    min-width: 0;
    padding-top: 2px;
}

.hotel-how-donor__item-title {
    margin: 0 0 6px;
    color: #2f80ed;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.hotel-how-donor__item-text {
    margin: 0;
    color: #111827;
    font-size: 17px;
    line-height: 1.55;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.hotel-how-donor-mobile {
    display: none;
}

.hotel-map-box {
    min-height: 340px;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid #e4ebf5;
    background: linear-gradient(135deg, #dce8f5, #eff5fb);
}

.hotel-map-box__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
    padding: 20px;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    color: #5b6678;
}

.hotel-nearby-list {
    display: grid;
    gap: 14px;
}

.hotel-nearby-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid var(--hotel-line);
    border-radius: 14px;
    background: #fbfdff;
}

.hotel-nearby-item__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--hotel-blue);
}

.hotel-nearby-item__distance {
    font-size: 15px;
    color: var(--hotel-text);
}

.hotel-section--how .hotel-how-box {
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
}

/* =========================================================
   AMENITIES / GUARANTEE
   ========================================================= */

.hotel-section--amenities-popular .hotel-card-box {
    padding: 34px 40px 30px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.hotel-section--amenities-popular .hotel-section__title {
    margin: 55px 0px 20px 0px;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--hotel-blue);
}

.hotel-popular-amenities {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px 34px;
    align-items: start;
}

.hotel-popular-amenities__item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 54px;
    min-width: 0;
}

.hotel-popular-amenities__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    min-width: 46px;
    flex: 0 0 46px;
    border-radius: 12px;
    background: #eef3fb;
    color: #2f80ed;
}

.hotel-popular-amenities__icon svg {
    display: block;
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.hotel-popular-amenities__text {
    color: #1f2937;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.hotel-all-amenities {
    columns: 3;
    column-gap: 28px;
}

.hotel-all-amenities__item {
    break-inside: avoid;
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.hotel-all-amenities__check {
    color: var(--hotel-green);
    font-weight: 800;
}

.hotel-all-amenities__text {
    font-size: 16px;
    line-height: 1.55;
    color: var(--hotel-text);
}

.hotel-guarantee-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
    margin-top: 0px;
}

.hotel-guarantee-item {
    padding: 18px;
    border-radius: 16px;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 700;
    color: var(--hotel-text);
}

/* =========================================================
   WE GUARANTEE
   ========================================================= */

.hotel-section--guarantee {
    margin-top: 55px;
}

.hotel-guarantee-box {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
}

.hotel-guarantee-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}

.hotel-guarantee-head__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #336699;
    flex: 0 0 24px;
}

.hotel-guarantee-head__icon svg {
    display: block;
    width: 24px;
    height: 24px;
}

.hotel-section--guarantee .hotel-section__title {
    margin: 0;
    color: #2f7ddd;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hotel-guarantee-box__intro {
    max-width: 1120px;
    margin: 0 0 28px;
    color: #1f2937;
    font-size: 18px;
    line-height: 1.42;
    font-weight: 400;
    letter-spacing: -0.015em;
}

.hotel-guarantee-panel {
    border: 1px solid #8ed3a5;
    border-radius: 14px;
    background: transparent;
    padding: 15px 30px;
}

.hotel-guarantee-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hotel-guarantee-item {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    min-width: 0;
}

.hotel-guarantee-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 50px;
    border-radius: 0;
    background: #f2f7f4;
    color: #39b56a;
}

.hotel-guarantee-item__icon svg {
    display: block;
    fill: currentColor;
}

.hotel-guarantee-item:nth-child(1) .hotel-guarantee-item__icon svg {
    width: 34px;
    height: 34px;
}

.hotel-guarantee-item:nth-child(2) .hotel-guarantee-item__icon svg {
    width: 28px;
    height: 28px;
}

.hotel-guarantee-item:nth-child(3) .hotel-guarantee-item__icon svg {
    width: 32px;
    height: 32px;
}

.hotel-guarantee-item:nth-child(4) .hotel-guarantee-item__icon svg {
    width: 28px;
    height: 28px;
}

.hotel-guarantee-item__text {
    margin: 0;
    color: #111827;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
    .hotel-guarantee-box__intro {
        font-size: 20px;
    }

    .hotel-guarantee-panel {
        padding: 24px 22px;
    }

    .hotel-guarantee-grid {
        column-gap: 24px;
    }
}

@media (max-width: 767px) {
    .hotel-section--guarantee {
        margin-top: 28px;
    }

    .hotel-guarantee-head {
        gap: 12px;
        margin-bottom: 8px;
    }

    .hotel-guarantee-head__icon {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
    }

    .hotel-guarantee-head__icon svg {
        width: 28px;
        height: 28px;
    }

    .hotel-section--guarantee .hotel-section__title {
        font-size: 24px;
    }

    .hotel-guarantee-box__intro {
        margin-bottom: 20px;
        font-size: 18px;
        line-height: 1.5;
    }

    .hotel-guarantee-panel {
        padding: 18px 16px;
        border-radius: 12px;
    }

    .hotel-guarantee-grid {
        grid-template-columns: 1fr;
        row-gap: 16px;
    }

    .hotel-guarantee-item {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 12px;
        align-items: center;
    }

    .hotel-guarantee-item__icon {
        width: 58px;
        height: 44px;
    }

    .hotel-guarantee-item__text {
        font-size: 16px;
        line-height: 1.35;
    }
}

/* =========================================================
   ALL AMENITIES & FACILITIES
   ========================================================= */

.hotel-section--amenities-all {
    margin-top: 40px;
}

.hotel-all-amenities-box {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
}

.hotel-section--amenities-all .hotel-section__title {
    margin: 55px 0px 20px 0px;
    color: var(--hotel-blue);
    font-size: 22px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hotel-all-amenities-grid {
    column-count: 4;
    column-gap: 48px;
}

.hotel-all-amenities-group {
    break-inside: avoid;
    margin: 0 0 26px;
}

.hotel-all-amenities-group__head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.hotel-all-amenities-group__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    min-width: 16px;
    flex: 0 0 16px;
    color: #2f7ddd;
}

.hotel-all-amenities-group__icon svg {
    display: block;
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.hotel-all-amenities-group__icon svg path {
    fill: currentColor;
}

.hotel-all-amenities-group__title {
    margin: 0;
    color: #2f7ddd;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.hotel-all-amenities-group__list {
    display: grid;
    gap: 8px;
}

.hotel-all-amenities-group__item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.hotel-all-amenities-group__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 12px;
    height: 12px;
    min-width: 12px;
    flex: 0 0 12px;
    margin-top: 5px;
    color: #31b56a;
}

.hotel-all-amenities-group__check svg {
    display: block;
    width: 12px;
    height: 9px;
    fill: currentColor;
}

.hotel-all-amenities-group__check svg path {
    fill: currentColor;
}

.hotel-all-amenities-group__text {
    color: #1f2937;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
    .hotel-all-amenities-grid {
        column-count: 3;
        column-gap: 32px;
    }
}

@media (max-width: 767px) {
    .hotel-section--amenities-all {
        margin-top: 28px;
    }

    .hotel-section--amenities-all .hotel-section__title {
        margin-bottom: 18px;
        font-size: 24px;
    }

    .hotel-all-amenities-grid {
        column-count: 1;
        column-gap: 0;
    }

    .hotel-all-amenities-group {
        margin-bottom: 22px;
    }

    .hotel-all-amenities-group__title {
        font-size: 18px;
    }

    .hotel-all-amenities-group__text {
        font-size: 15px;
        line-height: 1.42;
    }
}

/* =========================================================
   VERIFIED REVIEWS
   ========================================================= */

.hotel-section--reviews {
    margin-top: 42px;
}

.hotel-reviews-box {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
}

.hotel-reviews-box__title {
    margin: 55px 0px 0px 0px;
    color: var(--hotel-blue);
    font-size: 22px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hotel-reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}

.hotel-reviews-total {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hotel-reviews-total__wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 66px;
    height: 52px;
}

.hotel-reviews-total__leaf {
    position: absolute;
    top: 50%;
    width: 22px;
    height: 39px;
    transform: translateY(-50%);
}

.hotel-reviews-total__leaf--left {
    left: 0;
}

.hotel-reviews-total__leaf--right {
    right: 0;
    transform: translateY(-50%) scaleX(-1);
}

.hotel-reviews-total__score {
    position: relative;
    z-index: 2;
    color: #111827;
    font-size: 20px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hotel-reviews-total__count {
    color: #566273;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 600;
}

.hotel-reviews-header__filter {
    margin-left: auto;
}

.hotel-reviews-language {
    position: relative;
    width: 206px;
}

.hotel-reviews-language__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    height: 40px;
    padding: 0 14px;
    border: 1px solid #2f7ddd;
    border-radius: 10px;
    background: #fff;
    color: #1f2937;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
}

.hotel-reviews-language__flag {
    font-size: 20px;
    line-height: 1;
}

.hotel-reviews-language__label {
    flex: 1 1 auto;
    text-align: left;
}

.hotel-reviews-language__arrow {
    color: #2f7ddd;
    font-size: 11px;
    line-height: 1;
}

.hotel-reviews-language__menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 15;
    width: 100%;
    padding: 8px;
    border: 1px solid #d9e6f5;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.hotel-reviews-language__option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 10px;
    border: 0;
    background: transparent;
    color: #1f2937;
    text-align: left;
    cursor: pointer;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
}

.hotel-reviews-language__option:hover,
.hotel-reviews-language__option.is-active {
    background: #f3f8ff;
}

.hotel-reviews-language__option-flag {
    font-size: 18px;
    line-height: 1;
}

.hotel-reviews-list {
    display: grid;
    gap: 18px;
}

.hotel-review-card {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 26px;
    padding: 28px 22px;
    border: 1px solid #e6e8eb;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.03);
}

.hotel-review-card__avatar-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hotel-review-card__avatar {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    object-fit: cover;
    display: block;
    background: #edf1f7;
}

.hotel-review-card__avatar--letter {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #6574cd;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.hotel-review-card__scorebox {
    text-align: center;
}

.hotel-review-card__score {
    color: #1f2937;
    font-size: 19px;
    line-height: 1.1;
    font-weight: 800;
}

.hotel-review-card__scorelabel {
    margin-top: 4px;
    color: #31b56a;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 500;
}

.hotel-review-card__content {
    min-width: 0;
}

.hotel-review-card__head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.hotel-review-card__name {
    margin: 0;
    color: #343b45;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 600;
}

.hotel-review-card__verified {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: #2f7ddd;
    color: #fff;
    flex: 0 0 16px;
}

.hotel-review-card__verified svg {
    width: 10px;
    height: 8px;
    fill: currentColor;
    display: block;
}

.hotel-review-card__text {
    color: #4a5565;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
}

.hotel-review-card__text p {
    margin: 0 0 18px;
}

.hotel-review-card__text p:last-child {
    margin-bottom: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
    .hotel-reviews-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .hotel-reviews-header__filter {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .hotel-section--reviews {
        margin-top: 28px;
    }

    .hotel-reviews-box__title {
        margin-bottom: 16px;
        font-size: 24px;
    }

    .hotel-reviews-header {
        gap: 16px;
        margin-bottom: 20px;
    }

    .hotel-reviews-total {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .hotel-reviews-language {
        width: 100%;
    }

    .hotel-review-card {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 20px 16px;
    }

    .hotel-review-card__avatar-wrap {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 14px;
    }

    .hotel-review-card__scorebox {
        text-align: left;
    }

    .hotel-review-card__head {
        margin-bottom: 12px;
    }

    .hotel-review-card__text {
        font-size: 15px;
        line-height: 1.65;
    }
}

/* =========================================================
   SIMILAR PLACES TO STAY
   ========================================================= */

.hotel-section--similar {
    margin-top: 44px;
}

.hotel-similar__title {
    margin: 55px 0px 0px 0px;
    color: var(--hotel-blue);
    font-size: 22px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
    padding-bottom: 20px;
}

.hotel-similar__scroll {
    overflow-x: auto;
    padding-bottom: 10px;
}

.hotel-similar__scroll::-webkit-scrollbar {
    height: 10px;
}

.hotel-similar__scroll::-webkit-scrollbar-track {
    background: #d8d8d8;
    border-radius: 999px;
}

.hotel-similar__scroll::-webkit-scrollbar-thumb {
    background: #b4b4b4;
    border-radius: 999px;
}

.hotel-similar__grid {
    display: flex;
    gap: 26px;
    min-width: max-content;
}

.similar-card {
    flex: 0 0 315px;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e2e7ea;
    box-shadow: 0 2px 10px rgba(24, 39, 75, 0.06);
}

.similar-card__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.similar-card__media {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: #eef2f5;
}

.similar-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.similar-card__top {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    display: flex;
    justify-content: flex-start;
    pointer-events: none;
}

.similar-card__rating {
    display: inline-flex;
    align-items: center;
    gap: 0px;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.similar-card__leaf {
    width: 22px;
    height: 39px;
    flex: 0 0 22px;
}

.similar-card__leaf--right {
    transform: scaleX(-1);
}

.similar-card__rating-value {
    font-size: 18px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.similar-card__reviews {
    margin-left: 10px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
}

.similar-card__quick-wrap {
    position: absolute;
    right: 14px;
    bottom: 12px;
}

.similar-card__quick {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 34px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    background: rgba(90, 72, 49, 0.36);
    color: #fff;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.similar-card__quick-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    color: #fff;
    flex: 0 0 16px;
}

.similar-card__quick-icon svg {
    width: 16px;
    height: 10px;
    display: block;
}

.similar-card__body {
    padding: 25px 20px 18px;
}

.similar-card__title {
    margin: 0 0 24px;
    color: var(--hotel-blue);
    text-align: center;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.similar-card__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 18px;
}

.similar-card__fact {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    min-width: 0;
}

.similar-card__fact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 30px;
    border-radius: 7px;
    background: #edf3ff;
    color: #347de0;
    flex: 0 0 34px;
}

.similar-card__fact-icon svg {
    display: block;
    fill: currentColor;
}

.similar-card__fact:nth-child(1) .similar-card__fact-icon svg {
    width: 19px;
    height: 18px;
}

.similar-card__fact:nth-child(2) .similar-card__fact-icon svg {
    width: 23px;
    height: 23px;
}

.similar-card__fact:nth-child(3) .similar-card__fact-icon svg {
    width: 21px;
    height: 21px;
}

.similar-card__fact:nth-child(4) .similar-card__fact-icon svg {
    width: 21px;
    height: 21px;
}

.similar-card__fact-content {
    min-width: 0;
}

.similar-card__fact-label {
    display: block;
    margin-bottom: 2px;
    color: #20252c;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
}

.similar-card__fact-value {
    display: block;
    color: #3a78dc;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 500;
}

.similar-card__fact-value--truncate {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.similar-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 18px 14px;
    background: #f3f7f4;
    border-top: 1px solid #ecf0ed;
}

.similar-card__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: #20252c;
    flex-wrap: wrap;
}

.similar-card__price-prefix {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
}

.similar-card__price-number {
    font-size: 16px;
    line-height: 1;
    font-weight: 800;
}

.similar-card__price-currency {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
}

.similar-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    height: 45px;
    padding: 0 20px;
    border-radius: 10px;
    background: #3dbc69;
    color: #fff;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    text-align: center;
}

.hotel-similar__bottom {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.hotel-similar__search-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #2f7ddd;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    text-decoration: none;
}

.hotel-similar__search-all:hover {
    text-decoration: underline;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 767px) {
    .hotel-section--similar {
        margin-top: 30px;
    }

    .hotel-similar__title {
        margin-bottom: 16px;
        font-size: 24px;
    }

    .hotel-similar__grid {
        gap: 16px;
    }

    .similar-card {
        flex-basis: 320px;
    }

    .similar-card__media {
        height: 205px;
    }

    .similar-card__body {
        padding: 24px 16px 16px;
    }

    .similar-card__title {
        margin-bottom: 18px;
        font-size: 17px;
    }

    .similar-card__facts {
        gap: 14px 12px;
    }

    .similar-card__fact-label {
        font-size: 13px;
    }

    .similar-card__fact-value {
        font-size: 14px;
    }

    .similar-card__footer {
        padding: 12px 14px;
    }

    .similar-card__btn {
        min-width: 132px;
        height: 46px;
        font-size: 17px;
    }

    .hotel-similar__search-all {
        font-size: 16px;
    }
}

/* =========================================================
   HOTEL QUICK VIEW MODAL
   ========================================================= */

body.hotel-quick-view-open {
    overflow: hidden;
}

.hotel-quick-view-modal[hidden] {
    display: none !important;
}

.hotel-quick-view-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.hotel-quick-view-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(14, 18, 24, 0.46);
}

.hotel-quick-view-modal__dialog {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1280px, calc(100vw - 70px));
    height: calc(100vh - 70px);
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
    display: flex;
    flex-direction: column;
}

.hotel-quick-view-modal__header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 45px;
    background: #347dde;
    color: #fff;
    padding: 0 56px;
}

.hotel-quick-view-modal__title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
}

.hotel-quick-view-modal__title-icon {
    font-size: 16px;
    line-height: 1;
    opacity: 0.95;
}

.hotel-quick-view-modal__close {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.hotel-quick-view-modal__body {
    position: relative;
    flex: 1 1 auto;
    background: #fff;
}

.hotel-quick-view-modal__loader {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3a4654;
    font-size: 16px;
    font-weight: 600;
    background: #fff;
}

.hotel-quick-view-modal__iframe {
    width: 100%;
    height: 100%;
    border: 0;
    visibility: hidden;
    background: #fff;
}

@media (max-width: 767px) {
    .hotel-quick-view-modal__dialog {
        top: 0;
        width: 100vw;
        height: 100vh;
        border-radius: 0;
    }
}

/* =========================================================
   QUICK VIEW MODE
   ========================================================= */

.site-main--quickview {
    padding: 0 !important;
    margin: 0 !important;
    background: #fff;
}

body.quick-view-mode .site-header,
body.quick-view-mode .site-footer,
body.quick-view-mode .site-breadcrumbs,
body.quick-view-mode .hotel-sidebar-booking,
body.quick-view-mode .hotel-rooms,
body.quick-view-mode .hotel-section--similar {
    display: none !important;
}

body.quick-view-mode {
    background: #fff;
}

body.quick-view-mode .site-main--quickview {
    min-height: 100vh;
}

.single-hotel-page--quickview {
    background: #fff;
}

.hotel-quickview-page {
    background: #fff;
}

.hotel-quickview-page__inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 28px 110px;
    box-sizing: border-box;
}

.hotel-quickview-stickybar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    min-height: 72px;
    padding: 10px 30px;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -6px 18px rgba(15, 23, 42, 0.06);
}

.hotel-quickview-stickybar__price {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    color: #20252c;
}

.hotel-quickview-stickybar__from {
    font-size: 12px;
    line-height: 1.2;
    font-weight: 500;
}

.hotel-quickview-stickybar__amount {
    font-size: 20px;
    line-height: 1;
    font-weight: 800;
}

.hotel-quickview-stickybar__currency {
    font-size: 12px;
    line-height: 1.2;
    font-weight: 500;
}

.hotel-quickview-stickybar__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 250px;
    height: 48px;
    padding: 0 26px;
    border-radius: 12px;
    background: #3dbc69;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
}

@media (max-width: 991px) {
    .hotel-quickview-page__inner {
        padding: 16px 18px 100px;
    }

    .hotel-quickview-stickybar {
        padding: 10px 18px;
    }

    .hotel-quickview-stickybar__button {
        min-width: 220px;
    }
}

/* =========================================================
   LEGACY BOOKING SIDEBAR BLOCK
   ========================================================= */

.hotel-booking-sidebar {
    overflow: hidden;
    border: 1px solid #dfe7f2;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.hotel-booking-sidebar__head {
    padding: 0;
    background: transparent;
}

.hotel-booking-sidebar__title {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 74px;
    margin: 0;
    padding: 0 22px;
    border-radius: 18px 18px 0 0;
    background: #3d80db;
    color: #ffffff;
    text-align: center;
    font-size: 19px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.hotel-booking-sidebar__body {
    padding: 18px 20px 20px;
}

.hotel-booking-field {
    margin-bottom: 18px;
}

.hotel-booking-field--double {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.hotel-booking-field__label {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--hotel-text-muted);
}

.hotel-booking-field__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    padding: 0 16px;
    border: 1px solid #cfe0f8;
    border-radius: 12px;
    background: #fff;
    font-size: 16px;
    font-weight: 700;
    color: var(--hotel-text);
}

.hotel-booking-field__box--single {
    justify-content: flex-start;
}

.hotel-booking-rooms-head {
    margin: 20px -20px 16px;
    padding: 10px 20px;
    text-align: center;
    background: #edf5ff;
    color: var(--hotel-blue);
    font-size: 16px;
    font-weight: 800;
}

.hotel-booking-rate {
    padding: 14px 0 18px;
    border-bottom: 1px solid #edf1f7;
}

.hotel-booking-rate:last-child {
    border-bottom: 0;
}

.hotel-booking-rate__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.hotel-booking-rate__name {
    font-size: 16px;
    font-weight: 800;
    color: var(--hotel-blue);
}

.hotel-booking-rate__price {
    font-size: 15px;
    font-weight: 800;
    color: var(--hotel-green);
}

.hotel-booking-rate__select {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid #cfe0f8;
    border-radius: 12px;
    background: #fff;
    font-size: 15px;
    font-weight: 700;
    color: #4b5563;
}

.hotel-booking-rate--selected .hotel-booking-rate__select {
    border-color: #84d79d;
    box-shadow: inset 0 0 0 1px rgba(53, 197, 108, 0.12);
}

.hotel-booking-sidebar__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px 20px;
    border-top: 1px solid #edf1f7;
    background: #fff;
}

.hotel-booking-total {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hotel-booking-total__label {
    font-size: 13px;
    color: var(--hotel-text-muted);
}

.hotel-booking-total__value {
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
    color: var(--hotel-text);
}

.hotel-booking-total__meta {
    font-size: 13px;
    color: var(--hotel-text-muted);
}

.hotel-booking-sidebar__cta {
    min-width: 170px;
    min-height: 56px;
    padding: 0 22px;
    border: 0;
    border-radius: 14px;
    background: var(--hotel-green);
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
}

/* =========================================================
   SIDEBAR BOOKING — STICKY HEADER + SCROLL CONTENT + STICKY FOOTER
   ========================================================= */

.hotel-sidebar-booking {
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 120px);
    overflow: hidden;
    border: 1px solid #dfe7f2;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.hotel-sidebar-booking__inner {
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: 100%;
}

/* HEADER — always visible */
.hotel-sidebar-booking__head {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 auto;
    min-height: 46px !important;
    padding: 0 18px !important;
    margin: 0 !important;
    background: #3b7fdd !important;
    border-radius: 18px 18px 0 0 !important;
    color: #ffffff !important;
    font-size: 18px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    text-align: center !important;
    border: 0 !important;
    box-shadow: none !important;
    position: sticky;
    top: 0;
    z-index: 30;
}

/* SCROLLABLE AREA — everything between header and footer */
.hotel-sidebar-booking__body-scroll {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    background: #fff;
}

/* SEARCH BLOCK — scrolls together with content */
.hotel-sidebar-search {
    flex: 0 0 auto;
    padding: 18px 16px 8px;
    background: #fff;
    position: relative;
    top: auto;
    z-index: auto;
}

/* SELECT ROOMS BAR — also scrolls */
.hotel-sidebar-booking__divider-title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    margin: 10px 0 6px;
    background: #eaf2fd;
    color: #2f80ed;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
    flex: 0 0 auto;
}

.hotel-sidebar-booking__divider-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 78px;
    background:
        linear-gradient(135deg, #cfe0f7 25%, transparent 25%) 0 0 / 24px 100% repeat-x,
        linear-gradient(225deg, #dbe9fb 25%, transparent 25%) 12px 0 / 24px 100% repeat-x;
    opacity: 0.9;
}

/* ROOMS LIST */
.hotel-sidebar-booking__rooms {
    min-height: 0;
    padding: 0 0 10px;
}

/* scrollbar */
.hotel-sidebar-booking__body-scroll::-webkit-scrollbar {
    width: 8px;
}

.hotel-sidebar-booking__body-scroll::-webkit-scrollbar-thumb {
    background: rgba(47, 125, 221, 0.28);
    border-radius: 999px;
}

/* FOOTER — always visible */
.hotel-sidebar-booking__footer {
    position: sticky;
    bottom: 0;
    z-index: 30;
    flex: 0 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1.15fr;
    gap: 18px;
    align-items: center;
    padding: 18px 16px;
    background: #fff;
    border-top: 1px solid #e8edf4;
    box-shadow: 0 -8px 18px rgba(15, 23, 42, 0.06);
}

.hotel-sidebar-booking__summary {
    min-width: 0;
}

.hotel-sidebar-booking__total-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    color: #5a6475;
    font-size: 17px;
    line-height: 1.1;
}

.hotel-sidebar-booking__total-row strong {
    color: #1c2434;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
}

.hotel-sidebar-booking__summary-text {
    margin-top: 6px;
    color: #6d7686;
    font-size: 13px;
    line-height: 1.35;
}

.hotel-sidebar-booking__cta {
    min-height: 50px;
    border: 0;
    border-radius: 12px;
    background: #3fbe6d;
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}

.hotel-sidebar-booking__cta:hover {
    background: #34b462;
}

/* =========================================================
   SIDEBAR SEARCH
   ========================================================= */

.hotel-sidebar-search {
    padding: 16px 16px 8px;
}

.hotel-sidebar-search__section {
    position: relative;
}

.hotel-sidebar-search__section + .hotel-sidebar-search__section {
    margin-top: 18px;
}

.hotel-sidebar-search__label {
    margin-bottom: 10px;
    color: #3f4653;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
}

.hotel-sidebar-search__row-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 10px;
}

.hotel-sidebar-search__field {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 54px;
    padding: 0 14px;
    border: 1.5px solid var(--hotel-blue);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
}

.hotel-sidebar-search__field--dates {
    justify-content: stretch;
    gap: 0;
}

.hotel-sidebar-search__field-part {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.hotel-sidebar-search__field-divider,
.hotel-sidebar-search__field-divider--center {
    width: 1px;
    height: 28px;
    background: #cfd8e7;
    flex: 0 0 1px;
    align-self: center;
}

.hotel-sidebar-search__field-icon {
    width: 20px;
    height: 20px;
    color: var(--hotel-blue);
    flex: 0 0 20px;
}

.hotel-sidebar-search__field-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.hotel-sidebar-search__field-value {
    min-width: 0;
    overflow: hidden;
    color: #3f4653;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 500;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.hotel-sidebar-search__dual-trigger {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    align-items: stretch;
    overflow: hidden;
    border: 1.5px solid var(--hotel-blue);
    border-radius: 12px;
    background: #fff;
}

.hotel-sidebar-search__dual-trigger .hotel-sidebar-search__field {
    min-height: 52px;
    border: 0;
    border-radius: 0;
}

/* =========================================================
   SIDEBAR CALENDAR
   ========================================================= */

.hotel-sidebar-calendar {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 60;
    width: 100%;
    padding: 22px 22px 20px;
    border: 1px solid var(--hotel-blue);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.hotel-sidebar-calendar__nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-bottom: 10px;
}

.hotel-sidebar-calendar__nav > button {
    position: absolute;
    top: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid #a9a9a9;
    border-radius: 8px;
    background: #fff;
    color: #1f2937;
    font-size: 0;
    line-height: 1;
    cursor: pointer;
    transition: background-color var(--hotel-transition), border-color var(--hotel-transition), transform var(--hotel-transition);
}

.hotel-sidebar-calendar__nav > button:hover {
    background: #f8fafc;
    border-color: #7b8491;
}

.hotel-sidebar-calendar__nav > button:active {
    transform: scale(0.98);
}

#hsb-cal-prev {
    left: 0;
}

#hsb-cal-next {
    right: 0;
}

#hsb-cal-prev::before,
#hsb-cal-next::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #1f2937;
    border-right: 2px solid #1f2937;
}

#hsb-cal-prev::before {
    margin-left: 6px;
    transform: rotate(-135deg);
}

#hsb-cal-next::before {
    margin-right: 6px;
    transform: rotate(45deg);
}

.hotel-sidebar-calendar__titles {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.hotel-sidebar-calendar__titles span:first-child {
    display: block;
    color: #111827;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
}

.hotel-sidebar-calendar__titles span:last-child {
    display: none;
}

.hotel-sidebar-calendar__months {
    display: block;
}

.hotel-sidebar-calendar__month:nth-child(2) {
    display: none;
}

.hotel-sidebar-calendar__weekdays {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0;
    margin-bottom: 8px;
}

.hotel-sidebar-calendar__weekdays span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    color: #333;
    font-size: 13px;
    line-height: 1;
    font-weight: 500;
    text-align: center;
}

.hotel-sidebar-calendar__grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 1px;
    background: #e5e7eb4d;
}

.hotel-sidebar-calendar__grid > button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    padding: 0;
    margin: 0;
    border: 1px solid #e3e6eb;
    border-right: 0;
    border-bottom: 0;
    border-radius: 0;
    background: #fff;
    color: #222;
    font-size: 15px;
    line-height: 1;
    font-weight: 500;
    appearance: none;
    box-shadow: none;
    cursor: pointer;
}

.hotel-sidebar-calendar__grid > button:nth-child(7n) {
    border-right: 1px solid #e3e6eb;
}

.hotel-sidebar-calendar__grid > button:nth-last-child(-n + 7) {
    border-bottom: 1px solid #e3e6eb;
}

.hotel-sidebar-calendar__grid > button.is-empty {
    visibility: hidden;
    background: #fff;
    cursor: default;
}

.hotel-sidebar-calendar__grid > button.is-disabled {
    color: #c9c9c9;
    background: #fafafa;
    cursor: default;
}

.hotel-sidebar-calendar__grid > button:hover:not(:disabled):not(.is-selected):not(.is-in-range) {
    background: #f7fafc;
}

.hotel-sidebar-calendar__grid > button.is-today:not(.is-selected):not(.is-in-range) {
    color: #111827;
    font-weight: 700;
}

.hotel-sidebar-calendar__grid > button.is-in-range {
    background: #76ca95;
    color: #fff;
    font-weight: 700;
}

.hotel-sidebar-calendar__grid > button.is-selected,
.hotel-sidebar-calendar__grid > button.is-start,
.hotel-sidebar-calendar__grid > button.is-end {
    background: #41b86b;
    color: #fff;
    font-weight: 700;
}

/* =========================================================
   SIDEBAR GUESTS
   ========================================================= */

.hotel-sidebar-guests {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 60;
    width: 100%;
    padding: 14px;
    border: 1px solid var(--hotel-line-strong);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--hotel-shadow-lg);
}

.hotel-sidebar-guests__panel[hidden] {
    display: none !important;
}

.hotel-sidebar-guests__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 48px;
}

.hotel-sidebar-guests__row + .hotel-sidebar-guests__row {
    margin-top: 10px;
}

.hotel-sidebar-guests__row span {
    color: #2e3748;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 500;
}

.hotel-sidebar-guests__counter {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hotel-sidebar-guests__counter button {
    width: 34px;
    height: 34px;
    border: 1px solid #d6e1ef;
    border-radius: 9px;
    background: #fff;
    color: var(--hotel-blue);
    font-size: 21px;
    cursor: pointer;
}

.hotel-sidebar-guests__counter button:disabled {
    color: #c0c7d2;
    cursor: default;
}

.hotel-sidebar-guests__counter span {
    min-width: 20px;
    text-align: center;
}

.hotel-sidebar-guests__ages,
.hotel-sidebar-guests__rooms-config {
    margin-top: 12px;
}

.booking-guests-room {
    padding: 12px;
    border: 1px solid #e5ebf4;
    border-radius: 12px;
}

.booking-guests-room + .booking-guests-room {
    margin-top: 10px;
}

.booking-guests-room-title {
    margin: 0 0 10px;
    color: #2a3342;
    font-size: 14px;
    font-weight: 700;
}

.booking-guests-ages,
.booking-guests-room .booking-guests-ages {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 10px;
}

.booking-guests-age-select {
    width: 100%;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid #d6e1ef;
    border-radius: 10px;
    background: #fff;
    color: #2f3442;
    font-size: 14px;
}

/* =========================================================
   SIDEBAR ROOM PICKER
   ========================================================= */

.hotel-sidebar-room {
    position: relative;
    z-index: 1;
    padding: 16px;
    background: #fff;
}

.hotel-sidebar-room + .hotel-sidebar-room {
    border-top: 10px solid #f3f6fb;
}

.hotel-sidebar-room.is-selected {
    z-index: 30;
}

.hotel-sidebar-room.is-open {
    z-index: 50;
}

.hotel-sidebar-room__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
}

.hotel-sidebar-room__title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 1 1 auto;
}

.hotel-sidebar-room__info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 14px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #2f80ed;
    cursor: pointer;
    flex: 0 0 14px;
    appearance: none;
    box-shadow: none;
}

.hotel-sidebar-room__info-icon svg {
    display: block;
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.hotel-sidebar-room__title {
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #2f80ed;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
}

.hotel-sidebar-room__price-current {
    color: #2f80ed;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    white-space: nowrap;
}

.hotel-sidebar-room.is-selected .hotel-sidebar-room__info-icon,
.hotel-sidebar-room.is-selected .hotel-sidebar-room__title,
.hotel-sidebar-room.is-selected .hotel-sidebar-room__price-current {
    color: #35c56c;
}

.hotel-sidebar-room__price-from-label {
    color: #333;
    font-weight: 500;
}

.hotel-sidebar-room.is-selected .hotel-sidebar-room__title,
.hotel-sidebar-room.is-selected .hotel-sidebar-room__info-icon,
.hotel-sidebar-room.is-selected .hotel-sidebar-room__price-current {
    color: #3fbe6d;
}

.hotel-sidebar-room:not(.is-selected) .hotel-sidebar-room__title,
.hotel-sidebar-room:not(.is-selected) .hotel-sidebar-room__price-current {
    color: rgb(47, 125, 221);
}

.hotel-sidebar-room__selected-rate,
.hotel-sidebar-room__select-trigger {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 58px;
    padding: 0 14px;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: border-color var(--hotel-transition), box-shadow var(--hotel-transition), background-color var(--hotel-transition);
}

.hotel-sidebar-room__selected-rate {
    gap: 12px;
    border: 1.5px solid #3fbe6d;
    box-shadow: 0 4px 10px rgba(63, 190, 109, 0.14);
}

.hotel-sidebar-room__select-trigger {
    gap: 12px;
    border: 1.5px solid var(--hotel-blue);
}

.hotel-sidebar-room__selected-rate-icon,
.hotel-sidebar-room__select-trigger-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}

.hotel-sidebar-room__selected-rate-icon {
    color: #3fbe6d;
}

.hotel-sidebar-room__select-trigger-icon,
.hotel-sidebar-room__select-trigger-arrow {
    color: var(--hotel-blue);
}

.hotel-sidebar-room__selected-rate-icon svg,
.hotel-sidebar-room__select-trigger-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.hotel-sidebar-room__selected-rate-text,
.hotel-sidebar-room__select-trigger-text {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-align: center;
    color: #3f4653;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.hotel-sidebar-room__select-trigger-arrow {
    flex: 0 0 auto;
    font-size: 12px;
    line-height: 1;
    transition: transform var(--hotel-transition);
}

.hotel-sidebar-room.is-open .hotel-sidebar-room__select-trigger-arrow {
    transform: rotate(180deg);
}

.hotel-sidebar-room__rates {
    position: absolute;
    top: calc(100% - 8px);
    left: 16px;
    right: 16px;
    z-index: 60;
    overflow: hidden;
    border: 1.5px solid var(--hotel-blue);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(19, 37, 63, 0.14);
}

.hotel-sidebar-room__rates[hidden] {
    display: none !important;
}

.hotel-sidebar-rate {
    display: block;
    width: 100%;
    padding: 16px;
    border: 0;
    background: #fff;
    cursor: pointer;
    text-align: left;
}

.hotel-sidebar-rate + .hotel-sidebar-rate {
    border-top: 1px solid #ebf0f6;
}

.hotel-sidebar-rate__content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.hotel-sidebar-rate__meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.hotel-sidebar-rate__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    line-height: 1.25;
}

.hotel-sidebar-rate__meta-item.is-positive {
    color: #3fbe6d;
}

.hotel-sidebar-rate__meta-item.is-negative {
    color: var(--hotel-red);
}

.hotel-sidebar-rate__meta-icon {
    width: 14px;
    text-align: center;
    font-weight: 700;
    flex: 0 0 14px;
}

.hotel-sidebar-rate__price {
    color: #3fbe6d;
    font-size: 14px;
    line-height: 1.1;
    font-weight: 700;
}

.hotel-sidebar-rate__radio {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    margin-top: 4px;
    border: 1.5px solid #c8cfd9;
    border-radius: 50%;
    background: #fff;
    flex: 0 0 26px;
}

.hotel-sidebar-rate__radio span {
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: transparent;
}

.hotel-sidebar-rate__radio.is-selected span {
    background: var(--hotel-blue);
}

/* =========================================================
   ROOM CHOICES MODAL
   ========================================================= */

.hotel-room-modal[hidden] {
    display: none !important;
}

.hotel-room-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.hotel-room-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.52);
}

.hotel-room-modal__dialog {
    position: relative;
    z-index: 2;
    width: min(100%, 820px);
    max-height: calc(100vh - 40px);
    margin: 150px auto;
    overflow: auto;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
}

.hotel-room-modal__close {
    position: absolute;
    top: 8px;
    right: 10px;
    z-index: 5;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.hotel-room-modal__close svg {
    display: block;
    width: 20px;
    height: 20px;
    margin: 0 auto;
}

.hotel-room-modal__header {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 48px 0 16px;
    background: var(--hotel-blue);
}

.hotel-room-modal__title {
    margin: 0;
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
}

.hotel-room-modal__subhead {
    padding: 8px 14px;
    text-align: center;
    background: #edf5ff;
    color: var(--hotel-blue);
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
}

.hotel-room-modal__rates {
    padding: 0;
    background: #fff;
}

.hotel-room-modal__rate {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 24px;
    border-top: 8px solid #f2f5fa;
    cursor: pointer;
    transition: background-color var(--hotel-transition);
}

.hotel-room-modal__rate:first-child {
    border-top: 0;
}

.hotel-room-modal__rate-left {
    display: flex;
    gap: 16px;
    min-width: 0;
    flex: 1 1 auto;
}

.hotel-room-modal__rate-thumb {
    width: 78px;
    min-width: 78px;
    height: 66px;
    overflow: hidden;
    border-radius: 2px;
    background: #dfe6ef;
}

.hotel-room-modal__rate-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.06);
}

.hotel-room-modal__rate-meta {
    min-width: 0;
    flex: 1 1 auto;
}

.hotel-room-modal__rate-lines {
    display: grid;
    gap: 6px;
    margin-bottom: 8px;
}

.hotel-room-modal__line {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #2f3137;
    font-size: 15px;
    line-height: 1.28;
    transition: color var(--hotel-transition);
}

.hotel-room-modal__line-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 13px;
    min-width: 13px;
    height: 13px;
    flex: 0 0 13px;
}

.hotel-room-modal__line-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.hotel-room-modal__line--positive .hotel-room-modal__line-icon {
    color: var(--hotel-green);
}

.hotel-room-modal__line--negative .hotel-room-modal__line-icon {
    color: #ff6b6b;
}

.hotel-room-modal__rate-price {
    display: inline-block;
    color: var(--hotel-green);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
}

.hotel-room-modal__rate-right {
    display: flex;
    align-items: flex-start;
    padding-top: 4px;
    flex: 0 0 auto;
}

.hotel-room-modal__radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.hotel-room-modal__fake-radio {
    position: relative;
    display: inline-block;
    width: 28px;
    height: 28px;
    border: 1.5px solid #b9b9b9;
    border-radius: 999px;
    background: #fff;
    flex: 0 0 28px;
}

.hotel-room-modal__radio:checked + .hotel-room-modal__fake-radio::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: var(--hotel-blue);
}

.hotel-room-modal__rate:has(.hotel-room-modal__radio:checked) .hotel-room-modal__line {
    color: var(--hotel-green);
}

.hotel-room-modal__rate:has(.hotel-room-modal__radio:checked) .hotel-room-modal__line--negative .hotel-room-modal__line-icon {
    color: #ff6b6b;
}

.hotel-room-modal__rate:has(.hotel-room-modal__radio:checked) .hotel-room-modal__line--positive .hotel-room-modal__line-icon {
    color: var(--hotel-green);
}

.hotel-room-modal__footer {
    padding: 10px 24px 18px;
    border-top: 8px solid #f2f5fa;
    background: #fff;
}

.hotel-room-modal__select {
    width: 100%;
    min-height: 46px;
    border: 0;
    border-radius: 10px;
    background: #41b86b;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
}

.hotel-room-modal__select:hover {
    background: #39ab61;
}

html.hotel-room-modal-open,
body.hotel-room-modal-open {
    overflow: hidden;
}

/* =========================================================
   ROOM DETAILS MODAL
   ========================================================= */

.hotel-room-details[hidden] {
    display: none !important;
}

.hotel-room-details {
    position: fixed;
    inset: 0;
    z-index: 10000;
}

.hotel-room-details__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.52);
}

.hotel-room-details__dialog {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    width: min(100%, 850px);
    height: calc(100vh - 60px);
    max-height: calc(100vh - 34px);
    margin: 45px auto;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
}

.hotel-room-details__close {
    position: absolute;
    top: 9px;
    right: 12px;
    z-index: 10;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.hotel-room-details__close svg {
    display: block;
    width: 21px;
    height: 21px;
    margin: 0 auto;
}

.hotel-room-details__header {
    position: relative;
    z-index: 5;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 52px 0 18px;
    background: var(--hotel-blue);
    border-radius: 12px 12px 0 0;
}

.hotel-room-details__title {
    color: #fff;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
}

.hotel-room-details__body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    background: #fff;
}

.hotel-room-details__body::-webkit-scrollbar {
    width: 8px;
}

.hotel-room-details__body::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.22);
    border-radius: 999px;
}

.hotel-room-details__panel {
    padding: 0 14px 14px;
    background: #fff;
}

.hotel-room-details__gallery {
    padding: 10px 14px 0;
    background: #fff;
}

.hotel-room-details__ratebar {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding: 0 16px;
    margin: 0;
    border-radius: 18px 18px 0 0;
    background: var(--hotel-blue);
    color: #fff;
}

.hotel-room-details__ratebar[hidden] {
    display: none !important;
}

.hotel-room-details__ratebar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
}

.hotel-room-details__ratebar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
}

.hotel-room-details__ratebar-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.hotel-room-details__stage {
    position: relative;
    height: 344px;
    overflow: hidden;
    border-radius: 0 0 14px 14px;
    background: #0f172a;
}

.hotel-room-details__ratebar[hidden] + .hotel-room-details__stage {
    border-radius: 14px;
}

.hotel-room-details__stage::before,
.hotel-room-details__stage::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    backdrop-filter: blur(12px);
}

.hotel-room-details__stage::before {
    left: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0) 100%);
}

.hotel-room-details__stage::after {
    right: 0;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0) 100%);
}

.hotel-room-details__slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}

.hotel-room-details__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hotel-room-details__image {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.hotel-room-details__nav {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 42px;
    height: 54px;
    margin-top: -27px;
    border: 0;
    background: rgba(0, 0, 0, 0.22);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(2px);
}

.hotel-room-details__nav svg {
    display: block;
    width: 18px;
    height: 18px;
    margin: 0 auto;
}

.hotel-room-details__nav--prev {
    left: 0;
    border-radius: 0 12px 12px 0;
}

.hotel-room-details__nav--next {
    right: 0;
    border-radius: 12px 0 0 12px;
}

.hotel-room-details__thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 8px 0 0;
    margin-bottom: 2px;
}

.hotel-room-details__thumbs::-webkit-scrollbar {
    height: 7px;
}

.hotel-room-details__thumbs::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.18);
    border-radius: 999px;
}

.hotel-room-details__thumb {
    width: 94px;
    min-width: 94px;
    height: 52px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    background: #dfe6ef;
    cursor: pointer;
    transition: border-color var(--hotel-transition), box-shadow var(--hotel-transition);
}

.hotel-room-details__thumb.is-active {
    border-color: #ffffff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.28);
}

.hotel-room-details__thumb-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hotel-room-details__section {
    padding: 18px 14px 2px;
}

.hotel-room-details__section-title {
    margin: 0 0 18px;
    color: var(--hotel-blue);
    font-size: 21px;
    line-height: 1.2;
    font-weight: 700;
}

.hotel-room-details__features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 28px;
}

.hotel-room-details__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--hotel-blue);
    font-size: 15px;
    line-height: 1.35;
    font-weight: 500;
}

.hotel-room-details__feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    min-width: 18px;
    height: 18px;
    color: var(--hotel-blue);
    flex: 0 0 18px;
}

.hotel-room-details__feature-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.hotel-room-details__amenities {
    columns: 3;
    column-gap: 34px;
}

.hotel-room-details__amenity {
    break-inside: avoid;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: #4b4f58;
    font-size: 15px;
    line-height: 1.4;
}

.hotel-room-details__amenity-check {
    color: var(--hotel-green);
    font-weight: 700;
    line-height: 1.2;
}

html.hotel-room-details-open,
body.hotel-room-details-open {
    overflow: hidden;
}

/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1200px) {
    .hotel-single__main,
    .hotel-single-layout,
    .hotel-single__split-grid {
        grid-template-columns: 1fr;
    }

    .hotel-single__sidebar {
        position: static;
    }

    .hotel-single__intro-summary {
        float: none;
        width: 100%;
        margin: 0 0 22px;
    }

    .hotel-trust-strip__items {
        gap: 20px;
    }

    .hotel-summary-ref-grid {
        gap: 22px 26px;
    }

    .hotel-how-grid,
    .hotel-guarantee-grid {
        grid-template-columns: 1fr;
    }

    .hotel-popular-amenities,
    .hotel-similar-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hotel-all-amenities {
        columns: 2;
    }

    .hotel-how-box {
        padding: 28px 28px 30px;
    }

    .hotel-how-box__intro {
        font-size: 20px;
    }

    .hotel-how-donor__grid {
        column-gap: 36px;
        row-gap: 28px;
    }
}

@media (max-width: 1199px) {
    .hotel-sidebar-calendar {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .hotel-single-layout {
        grid-template-columns: 1fr;
    }

    .hotel-single-layout__sidebar {
        order: -1;
    }

    .hotel-sidebar-booking {
        position: static;
        max-height: none;
    }

    .hotel-sidebar-calendar {
        position: relative;
        top: 10px;
        left: 0;
        padding: 18px 18px 16px;
        max-width: 100%;
    }

    .hotel-sidebar-calendar__nav {
        min-height: 44px;
        margin-bottom: 8px;
    }

    .hotel-sidebar-calendar__nav > button {
        width: 48px;
        height: 42px;
    }

    .hotel-sidebar-calendar__titles span:first-child {
        font-size: 17px;
    }

    .hotel-sidebar-calendar__weekdays span {
        font-size: 12px;
    }

    .hotel-sidebar-calendar__grid > button {
        min-height: 48px;
        height: 48px;
        font-size: 14px;
    }

    .hotel-sidebar-booking__body-scroll,
    .hotel-sidebar-booking__rooms {
        overflow: visible;
    }
}

/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 767px) {
    .hotel-single {
        padding-top: 12px;
    }

    .hotel-single__container {
        padding: 0 14px;
    }

    .hotel-single__title {
        font-size: 30px;
    }

    .hotel-section__title {
        font-size: 28px;
    }

    .hotel-card-box {
        padding: 18px;
        border-radius: 16px;
    }

    .hotel-donor-gallery__grid {
        grid-template-columns: 1fr;
    }

    .hotel-donor-gallery__main {
        min-height: 300px;
        height: 300px;
    }

    .hotel-donor-gallery__side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(2, 132px);
        min-height: auto;
        height: auto;
        gap: 4px;
    }

    .hotel-donor-gallery__thumb,
    .hotel-donor-gallery__thumb--empty {
        height: 132px;
    }

    .hotel-donor-gallery__rating {
        top: 16px;
        left: 16px;
        gap: 8px;
    }

    .hotel-donor-gallery__rating-score {
        font-size: 24px;
    }

    .hotel-donor-gallery__rating-reviews {
        font-size: 13px;
    }

    .hotel-donor-gallery__actions {
        left: 16px;
        right: 16px;
        bottom: 14px;
    }

    .hotel-donor-gallery__action {
        min-height: 40px;
        padding: 0 12px;
        font-size: 14px;
    }

    .hotel-gallery-modal__dialog {
        padding: 16px 12px 12px;
    }

    .hotel-gallery-modal__topbar {
        flex-direction: column;
        align-items: flex-start;
        padding-right: 56px;
        margin-bottom: 12px;
    }

    .hotel-gallery-modal__stage {
        grid-template-columns: 48px minmax(0, 1fr) 48px;
        gap: 8px;
    }

    .hotel-gallery-modal__nav {
        width: 42px;
        height: 42px;
    }

    .hotel-gallery-modal__thumb {
        flex-basis: 84px;
        width: 84px;
        height: 58px;
    }

    .hotel-trust-strip {
        padding: 14px 0 12px;
    }

    .hotel-trust-strip__items {
        grid-template-columns: 1fr;
        gap: 14px;
        align-items: start;
    }

    .hotel-trust-strip__icon {
        width: 30px;
        min-width: 30px;
        flex-basis: 30px;
    }

    .hotel-trust-strip__label {
        font-size: 16px;
    }

    .hotel-description-block__short p,
    .hotel-description-block__full p {
        font-size: 17px;
        line-height: 1.8;
    }

    .hotel-summary-ref-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .hotel-summary-ref-item__icon-wrap {
        width: 36px;
        min-width: 36px;
        flex-basis: 36px;
    }

    .hotel-summary-ref-item__label,
    .hotel-summary-ref-item__value {
        font-size: 15px;
    }

    .hotel-rooms-track {
        gap: 16px;
    }

    .hotel-room-card {
        width: 286px;
        min-width: 286px;
    }

    .hotel-room-card__media,
    .hotel-room-card__slide,
    .hotel-room-card__image,
    .hotel-room-card__placeholder {
        height: 204px;
    }

    .hotel-room-card__content {
        min-height: 170px;
        padding: 12px 14px 14px;
    }

    .hotel-room-card__facts {
        gap: 14px 10px;
    }

    .hotel-room-card__footer {
        padding: 0 14px;
    }

    .hotel-popular-amenities,
    .hotel-similar-grid,
    .hotel-booking-field--double {
        grid-template-columns: 1fr;
    }

    .hotel-all-amenities {
        columns: 1;
    }

    .hotel-review-card {
        grid-template-columns: 1fr;
    }

    .hotel-booking-sidebar__footer,
    .hotel-sidebar-booking__footer {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .hotel-booking-sidebar__cta,
    .hotel-sidebar-booking__cta {
        width: 100%;
        min-width: 0;
    }

    .hotel-sidebar-search {
        padding: 14px 14px 8px;
    }

    .hotel-sidebar-search__row-head {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hotel-sidebar-search__field,
    .hotel-sidebar-search__dual-trigger .hotel-sidebar-search__field {
        min-height: 50px;
    }

    .hotel-sidebar-search__field-value {
        font-size: 15px;
    }

    .hotel-sidebar-room__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .hotel-sidebar-room__price-wrap {
        text-align: left;
    }

    .hotel-sidebar-room__selected-rate,
    .hotel-sidebar-room__select-trigger {
        min-height: 54px;
        padding: 0 12px;
    }

    .hotel-sidebar-room__selected-rate-text,
    .hotel-sidebar-room__select-trigger-text {
        font-size: 15px;
    }

    .hotel-sidebar-room__rates {
        left: 12px;
        right: 12px;
    }

    .hotel-room-modal__dialog {
        width: calc(100% - 16px);
        max-height: calc(100vh - 16px);
        margin: 8px auto;
    }

    .hotel-room-modal__header {
        min-height: 44px;
        padding: 0 42px 0 12px;
    }

    .hotel-room-modal__title {
        font-size: 16px;
    }

    .hotel-room-modal__subhead {
        padding: 8px 12px;
        font-size: 15px;
    }

    .hotel-room-modal__rate {
        padding: 16px 14px;
        gap: 12px;
    }

    .hotel-room-modal__rate-left {
        gap: 12px;
    }

    .hotel-room-modal__rate-thumb {
        width: 70px;
        min-width: 70px;
        height: 58px;
    }

    .hotel-room-modal__line {
        font-size: 14px;
    }

    .hotel-room-modal__rate-price {
        font-size: 15px;
    }

    .hotel-room-modal__fake-radio {
        width: 26px;
        height: 26px;
        flex-basis: 26px;
    }

    .hotel-room-modal__radio:checked + .hotel-room-modal__fake-radio::after {
        top: 5px;
        left: 5px;
        width: 14px;
        height: 14px;
    }

    .hotel-room-modal__footer {
        padding: 10px 14px 16px;
    }

    .hotel-room-modal__select {
        min-height: 44px;
        font-size: 16px;
    }

    .hotel-room-details__dialog {
        width: calc(100% - 14px);
        height: calc(100vh - 14px);
        max-height: calc(100vh - 14px);
        margin: 7px auto;
        border-radius: 12px;
    }

    .hotel-room-details__header {
        min-height: 46px;
        padding: 0 42px 0 12px;
    }

    .hotel-room-details__title {
        font-size: 16px;
    }

    .hotel-room-details__panel {
        padding: 0 8px 10px;
    }

    .hotel-room-details__gallery {
        padding: 8px 8px 0;
    }

    .hotel-room-details__ratebar {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 6px;
        min-height: auto;
        padding: 10px 12px;
        border-radius: 14px 14px 0 0;
    }

    .hotel-room-details__stage {
        height: 248px;
        border-radius: 0 0 12px 12px;
    }

    .hotel-room-details__thumb {
        width: 76px;
        min-width: 76px;
        height: 48px;
    }

    .hotel-room-details__section {
        padding: 14px 8px 2px;
    }

    .hotel-room-details__section-title {
        font-size: 18px;
    }

    .hotel-room-details__features {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hotel-room-details__amenities {
        columns: 1;
    }

    .hotel-room-details__amenity {
        font-size: 14px;
    }

    .hotel-how-box {
        padding: 22px 18px;
    }

    .hotel-how-box__title {
        margin-bottom: 10px;
        font-size: 24px;
    }

    .hotel-how-box__intro {
        font-size: 18px;
        line-height: 1.5;
    }

    .hotel-how-donor--desktop {
        display: none;
    }

    .hotel-how-donor-mobile {
        display: block;
        margin-top: 20px;
    }

    .hotel-how-donor-mobile__item {
        overflow: hidden;
        border: 1px solid #dce6f3;
        border-radius: 14px;
        background: #fff;
    }

    .hotel-how-donor-mobile__item + .hotel-how-donor-mobile__item {
        margin-top: 12px;
    }

    .hotel-how-donor-mobile__summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        padding: 16px 16px;
        list-style: none;
        cursor: pointer;
    }

    .hotel-how-donor-mobile__summary::-webkit-details-marker {
        display: none;
    }

    .hotel-how-donor-mobile__summary-left {
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 0;
        color: #2f80ed;
        font-size: 16px;
        line-height: 1.35;
        font-weight: 700;
    }

    .hotel-how-donor-mobile__mobile-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 10px;
        background: #eef3fb;
        color: #2f80ed;
        flex: 0 0 42px;
    }

    .hotel-how-donor-mobile__mobile-icon svg {
        display: block;
        width: 20px;
        height: 20px;
        fill: currentColor;
    }

    .hotel-how-donor-mobile__item:first-child .hotel-how-donor-mobile__mobile-icon svg {
        width: 19px;
        height: 22px;
    }

    .hotel-how-donor-mobile__chevron {
        position: relative;
        width: 18px;
        height: 18px;
        flex: 0 0 18px;
    }

    .hotel-how-donor-mobile__chevron::before {
        content: "";
        position: absolute;
        top: 4px;
        left: 4px;
        width: 9px;
        height: 9px;
        border-right: 2px solid #2f80ed;
        border-bottom: 2px solid #2f80ed;
        transform: rotate(45deg);
        transition: transform 0.2s ease;
    }

    .hotel-how-donor-mobile__item[open] .hotel-how-donor-mobile__chevron::before {
        transform: rotate(-135deg);
        top: 8px;
    }

    .hotel-how-donor-mobile__content {
        padding: 0 16px 16px 16px;
        color: #111827;
        font-size: 15px;
        line-height: 1.6;
    }
}

/* =========================================================
   TRAVEL DETAILS — FIX UNDER CURRENT HTML
   ========================================================= */

.hotel-sidebar-booking__head {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-height: 46px !important;
    padding: 0 18px !important;
    margin: 0 !important;

    background: #3b7fdd !important;
    border-radius: 18px 18px 0 0 !important;

    color: #ffffff !important;
    font-size: 16px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    text-align: center !important;

    border: 0 !important;
    box-shadow: none !important;
}