/**
 * Property page styles
 * Layout and mobile-sheet styles moved to:
 * assets/css/single-lc_property.css
 *
 * This file temporarily keeps only booking widget overrides
 * to avoid regressions during migration.
 */

/* ===== Booking widget calendar override (mobile first) ===== */

.lc-booking-card .lc-booking-calendar,
.lc-property-sidebar .lc-booking-calendar {
    width: 100%;
}

.lc-booking-card .lc-booking-calendar .fc,
.lc-property-sidebar .lc-booking-calendar .fc {
    font-size: 12px;
}

.lc-booking-card .lc-booking-calendar .fc-scrollgrid,
.lc-property-sidebar .lc-booking-calendar .fc-scrollgrid {
    border-collapse: collapse !important;
}

.lc-booking-card .lc-booking-calendar .fc-daygrid-body-natural .fc-daygrid-day-events,
.lc-property-sidebar .lc-booking-calendar .fc-daygrid-body-natural .fc-daygrid-day-events {
    margin-bottom: 0 !important;
}

.lc-booking-card .lc-booking-calendar .fc-daygrid-day-frame,
.lc-property-sidebar .lc-booking-calendar .fc-daygrid-day-frame {
    min-height: 34px !important;
    height: 34px !important;
    padding: 2px !important;
}

.lc-booking-card .lc-booking-calendar .fc-daygrid-day-top,
.lc-property-sidebar .lc-booking-calendar .fc-daygrid-day-top {
    justify-content: center;
    padding-top: 2px;
}

.lc-booking-card .lc-booking-calendar td,
.lc-booking-card .lc-booking-calendar th,
.lc-property-sidebar .lc-booking-calendar td,
.lc-property-sidebar .lc-booking-calendar th {
    vertical-align: top !important;
}

.lc-booking-card .lc-booking-calendar .fc-col-header-cell-cushion,
.lc-property-sidebar .lc-booking-calendar .fc-col-header-cell-cushion {
    font-size: 11px;
    padding: 4px 1px !important;
}

.lc-booking-card .lc-booking-date-summary,
.lc-property-sidebar .lc-booking-date-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.lc-booking-card .lc-booking-date-chip,
.lc-property-sidebar .lc-booking-date-chip {
    min-height: 52px;
    padding: 8px 10px;
    border-radius: 12px;
}

.lc-booking-card .lc-booking-date-chip-value,
.lc-property-sidebar .lc-booking-date-chip-value {
    display: block;
    margin-top: 4px;
    font-weight: 600;
    font-size: 13px;
}

@media (min-width: 768px) {
    .lc-booking-card .lc-booking-calendar .fc,
    .lc-property-sidebar .lc-booking-calendar .fc {
        font-size: 13px;
    }

    .lc-booking-card .lc-booking-calendar .fc-daygrid-day-frame,
    .lc-property-sidebar .lc-booking-calendar .fc-daygrid-day-frame {
        min-height: 36px !important;
        height: 36px !important;
        padding: 2px 3px !important;
    }

    .lc-booking-card .lc-booking-calendar .fc-col-header-cell-cushion,
    .lc-property-sidebar .lc-booking-calendar .fc-col-header-cell-cushion {
        font-size: 12px;
        padding: 5px 2px !important;
    }

    .lc-booking-card .lc-booking-date-chip,
    .lc-property-sidebar .lc-booking-date-chip {
        min-height: 54px;
        padding: 9px 12px;
    }
}

@media (min-width: 1024px) {
    .lc-booking-card .lc-booking-calendar .fc,
    .lc-property-sidebar .lc-booking-calendar .fc {
        font-size: 14px;
    }

    .lc-booking-card .lc-booking-calendar .fc-daygrid-day-frame,
    .lc-property-sidebar .lc-booking-calendar .fc-daygrid-day-frame {
        min-height: 38px !important;
        height: 38px !important;
        padding: 2px 4px !important;
    }

    .lc-booking-card .lc-booking-calendar .fc-col-header-cell-cushion,
    .lc-property-sidebar .lc-booking-calendar .fc-col-header-cell-cushion {
        font-size: 12px;
        padding: 6px 2px !important;
    }

    .lc-booking-card .lc-booking-date-chip,
    .lc-property-sidebar .lc-booking-date-chip {
        min-height: 56px;
        padding: 10px 12px;
    }

    .lc-booking-card .lc-booking-date-chip-value,
    .lc-property-sidebar .lc-booking-date-chip-value {
        font-size: 14px;
    }
}

/* ===== Booking date chips redesign ===== */

.lc-booking-date-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
    width: 100%;
}

.lc-booking-date-chip {
    min-width: 0;
    width: 100%;
    background: #07141c;
    border-radius: 14px;
    padding: 10px 12px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.35);
    transition: all 0.2s ease;
}

.lc-booking-date-chip-label {
    display: block;
    font-size: 12px;
    color: #d4b06a;
    margin-bottom: 6px;
}

.lc-booking-date-chip input {
    width: 100%;
    box-sizing: border-box;
    border: none;
    outline: none;
    background: #e9e9e9;
    color: #222;
    font-size: 14px;
    padding: 10px 12px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
}

.lc-booking-date-chip input:focus {
    box-shadow: 0 0 0 2px rgba(212,176,106,0.3);
}

.lc-booking-date-chip input::placeholder {
    color: #888;
}

.lc-booking-date-chip:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.45);
}

.lc-booking-date-chip.active {
    box-shadow: 0 0 0 2px rgba(226, 196, 142, 0.6);
}

.lc-booking-date-chip.active input {
    background: #fff;
    color: #000;
}

@media (max-width: 768px) {
    .lc-booking-date-summary {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 8px;
    }

    .lc-booking-date-chip {
        min-width: 0;
        max-width: none;
        width: 100%;
        padding: 10px 10px;
    }

    .lc-booking-date-chip input {
        font-size: 12px;
        padding: 7px 8px;
    }
}

/* =========================================
   AMENITIES TEASER + MODAL
   ========================================= */

.lc-amenities-display-title {
    color: #E2C48E;
    margin: 0 0 14px;
    font-family: 'DM Serif Display', serif;
    font-size: 32px;
}

.lc-amenities-display-teaser {
    display: none;
}

.lc-amenities-display-open {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: #0B1014;
    border: 1px solid rgba(226,196,142,.35);
    border-radius: 14px;
    color: #E2C48E;
    text-align: left;
    cursor: pointer;
}

.lc-amenities-display-open-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #f3d9a6, #cda45a 65%, #8d6a2b 100%);
    color: #1a1f24;
    box-shadow: 0 4px 12px rgba(0,0,0,.28);
}

.lc-amenities-display-open-icon i {
    font-size: 18px;
}

.lc-amenities-display-open-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lc-amenities-display-open-text strong {
    color: #E2C48E;
    font-size: 14px;
    line-height: 1.2;
}

.lc-amenities-display-open-text small {
    color: #C2C2C2;
    font-size: 12px;
    line-height: 1.2;
}

.lc-amenities-display-desktop-preview {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Fila de borde a borde (2026-07-07, pedido del dueño): auto-fit reparte las
   miniaturas por TODO el ancho; con muchas, salta de fila y cada fila sigue
   ocupando el ancho completo. Nada de columnas fijas (la vieja repeat(3,64px)
   dibujaba una «pirámide» a la izquierda). */
.lc-amenities-display-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(76px, 1fr));
    gap: 16px 8px;
    width: 100%;
    justify-items: center;
}

.lc-amenities-display-preview-item {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 64px;
    min-width: 64px;
    cursor: pointer;
    text-align: center;
}

.lc-amenities-display-preview-item img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    display: block;
    border-radius: 14px;
    margin: 0 auto;
    background: #1a1f24;
    border: 1px solid rgba(226,196,142,.18);
    box-shadow: 0 4px 10px rgba(0,0,0,.18);
}

.lc-amenities-display-preview-caption {
    display: block;
    width: 64px;
    font-size: 11px;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
}

.lc-amenities-display-preview-cta {
    display: none;
}

.lc-amenities-modal {
    display: none;
}

body.lc-amenities-modal-open .lc-amenities-modal[aria-hidden="false"] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lc-amenities-modal {
    position: fixed;
    inset: 0;
    z-index: 4200;
}

.lc-amenities-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.58);
    backdrop-filter: blur(2px);
    z-index: 4201;
}

.lc-amenities-modal-dialog {
    /* Centrado por FLEX del modal (sin transform: el transform creaba un clip-context
       que recortaba el lightbox interno → la foto se veía a medias). */
    position: relative;
    width: min(720px, calc(100vw - 48px));
    max-height: 86vh;
    overflow: hidden;
    border-radius: 20px;
    background: #1a1f24;
    border: 1px solid rgba(226,196,142,.35);
    box-shadow: 0 20px 48px rgba(0,0,0,.5);
    display: flex;
    flex-direction: column;
    z-index: 4202;
}

.lc-amenities-modal-head {
    position: relative;
    padding: 16px 18px 10px;
    border-bottom: 1px solid rgba(226,196,142,.18);
}

.lc-amenities-modal-head h4 {
    margin: 0 0 4px;
    color: #E2C48E;
    font-size: 18px;
}

.lc-amenities-modal-head p {
    margin: 0;
    color: #cfcfcf;
    font-size: 12px;
}

.lc-amenities-modal-body {
    padding: 14px 16px 16px;
    overflow-y: auto;
}

.lc-amenities-modal-group {
    padding: 8px 0 14px;
    border-bottom: 1px solid rgba(226,196,142,.12);
    scroll-margin-top: 14px;
}

.lc-amenities-modal-group:last-child {
    border-bottom: none;
}

.lc-amenities-modal-group-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 10px;
    color: #E2C48E;
    font-size: 14px;
}

.lc-amenities-modal-group-focus {
    background: rgba(226,196,142,.08);
    border-radius: 12px;
    box-shadow: 0 0 0 1px rgba(226,196,142,.18) inset;
}

.lc-amenities-modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
    gap: 12px;
}

.lc-amenities-modal-photo {
    display: flex;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

.lc-amenities-modal-photo img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(226,196,142,.28);
    background: #0B1014;
}

.lc-amenities-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #E2C48E;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 4203;
}

body.lc-amenities-modal-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    /* Móvil (2026-07-07): la rejilla de minifotos también se muestra — antes
       preview Y teaser estaban display:none a la vez → sección VACÍA (solo el
       título, «no se despliega nada»). auto-fit da ~4 por fila en 375px. */
    .lc-amenities-display-desktop-preview {
        display: block;
    }

    .lc-amenities-display-preview-grid {
        grid-template-columns: repeat(auto-fit, minmax(66px, 1fr));
        gap: 12px 6px;
    }

   .lc-amenities-display-teaser {
    display: none !important;
}

    .lc-amenities-modal-dialog {
        width: calc(100vw - 24px);
        max-height: 88vh;
    }
}

@media (min-width: 769px) {
    .lc-amenities-display-teaser {
        display: none;
    }

    .lc-amenities-display-desktop-preview {
        display: block;
    }
}

/* =========================================
   AMENITIES LIGHTBOX
   ========================================= */

.lc-amenities-lightbox {
    display: none;
}

.lc-amenities-lightbox[aria-hidden="false"] {
    display: block;
}

.lc-amenities-lightbox {
    /* FIXED al viewport (no absolute dentro del diálogo): así la foto ampliada ocupa toda
       la pantalla y NO la recorta el overflow del diálogo. */
    position: fixed;
    inset: 0;
    z-index: 4300;
}

.lc-amenities-lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.72);
    z-index: 4301;
}

.lc-amenities-lightbox-dialog {
    position: absolute;
    inset: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4302;
}

.lc-amenities-lightbox-image-wrap {
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
    padding: 18px;
    border-radius: 18px;
    background: #11181d;
    border: 1px solid rgba(226,196,142,.25);
    box-shadow: 0 12px 32px rgba(0,0,0,.45);
}

.lc-amenities-lightbox-image {
    display: block;
    /* El lightbox es fixed al viewport → la foto puede usar todo el alto/ancho de la
       pantalla (menos márgenes) y se ve COMPLETA (object-fit conserva la proporción). */
    max-width: 92vw;
    max-height: 88vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

.lc-amenities-lightbox-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,.10);
    color: #E2C48E;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    z-index: 4303;
}

@media (max-width: 768px) {
    .lc-amenities-lightbox-dialog {
        inset: 10px;
    }

    .lc-amenities-lightbox-image-wrap {
        padding: 12px;
        border-radius: 14px;
    }

    .lc-amenities-lightbox-image {
        max-width: 94vw;
        max-height: 84vh;
    }}

/* =========================================
   HOST EDIT BAR
   ========================================= */

.lc-host-edit-bar {
    position: sticky;
    top: 12px;
    z-index: 50;
    display: flex;
    justify-content: flex-end;
    margin: 0 0 18px;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(15, 15, 15, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(226, 196, 142, 0.28);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.22),
        0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.lc-host-edit-bar .lc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        opacity 0.18s ease;
}

.lc-host-edit-bar .lc-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.lc-host-edit-bar .lc-btn:active {
    transform: translateY(0);
}

.lc-host-edit-bar .lc-btn i {
    font-size: 14px;
}

@media (max-width: 768px) {
    .lc-host-edit-bar {
        top: 8px;
        margin: 0 0 14px;
        padding: 10px;
        border-radius: 16px;
    }

    .lc-host-edit-bar .lc-btn {
        width: 100%;
        min-height: 48px;
        font-size: 15px;
    }
}

/* ============================================================
   HOTEL PAGE — lc-hotel-page
   ============================================================ */
.lc-hotel-page { color: #C2C2C2; }

/* ① Hero gallery */
.lc-hotel-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; border-radius: 16px; overflow: hidden; max-height: 420px; margin-bottom: 20px; }
.lc-hotel-hero-main { position: relative; grid-column: 1; grid-row: 1 / 3; }
.lc-hotel-hero-main img { width: 100%; height: 100%; object-fit: cover; display: block; max-height: 420px; }
.lc-hotel-gallery-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,.55); color: #fff; border: none; padding: 8px 14px; font-size: 22px; cursor: pointer; border-radius: 8px; z-index: 2; transition: background .2s; }
.lc-hotel-gallery-btn:hover { background: rgba(0,0,0,.8); }
.lc-hotel-gallery-prev { left: 10px; }
.lc-hotel-gallery-next { right: 10px; }
.lc-hotel-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.lc-hotel-hero-thumb { position: relative; cursor: pointer; overflow: hidden; }
.lc-hotel-hero-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .25s; }
.lc-hotel-hero-thumb:hover img { transform: scale(1.04); }
.lc-hotel-hero-more span { position: absolute; inset: 0; background: rgba(0,0,0,.55); color: #fff; font-size: 18px; font-weight: 700; display: flex; align-items: center; justify-content: center; pointer-events: none; }

/* ② Header bar */
.lc-hotel-header-bar { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; padding: 20px 0 16px; border-bottom: 1px solid rgba(226,196,142,.25); margin-bottom: 20px; flex-wrap: wrap; }
.lc-hotel-title { color: #E2C48E; margin: 0 0 6px; } /* tamano: escala del tema, LC_TIPO_V1 */
.lc-hotel-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: .9rem; color: #aaa; }
.lc-hotel-location { color: #aaa; }
.lc-hotel-badge-new { background: #E2C48E; color: #0B1014; border-radius: 999px; padding: 2px 10px; font-size: .75rem; font-weight: 700; }
.lc-hotel-header-cta { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; flex-shrink: 0; }
.lc-hotel-price-from { font-size: .9rem; color: #aaa; text-align: right; }
.lc-hotel-price-from strong { font-size: 1.4rem; color: #E2C48E; }
.lc-hotel-cta-btn { white-space: nowrap; }

/* ③ Body: main + sidebar */
.lc-hotel-body { display: grid; grid-template-columns: 1fr 340px; gap: 24px; align-items: start; }
.lc-hotel-main { min-width: 0; }
.lc-hotel-main h2 { font-size: 1.25rem; color: #E2C48E; margin: 28px 0 14px; padding-bottom: 6px; border-bottom: 1px solid rgba(226,196,142,.2); }

/* ④ Room cards */
.lc-hotel-rooms-list { display: flex; flex-direction: column; gap: 12px; }
.lc-hotel-room-card { background: #1a1f24; border: 1px solid rgba(226,196,142,.25); border-radius: 14px; overflow: hidden; transition: border-color .2s; }
.lc-hotel-room-card:hover { border-color: rgba(226,196,142,.5); }
.lc-hotel-room-header { display: grid; grid-template-columns: 120px 1fr auto; gap: 12px; align-items: center; padding: 14px; cursor: pointer; }
.lc-hotel-room-photo { width: 120px; height: 84px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.lc-hotel-room-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lc-hotel-room-photo-placeholder { width: 120px; height: 84px; background: rgba(226,196,142,.08); display: flex; align-items: center; justify-content: center; color: #555; font-size: 2rem; border-radius: 8px; }
.lc-hotel-room-name { font-size: 1rem; color: #E2C48E; margin: 0 0 6px; }
.lc-hotel-room-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.lc-hotel-tag { background: rgba(226,196,142,.12); border: 1px solid rgba(226,196,142,.2); border-radius: 999px; padding: 2px 8px; font-size: .75rem; color: #C2C2C2; }
.lc-hotel-room-meals { font-size: .8rem; color: #8ee6a0; margin-top: 6px; }
.lc-hotel-room-right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.lc-hotel-room-price strong { font-size: 1.2rem; color: #E2C48E; }
.lc-hotel-room-price small { font-size: .75rem; color: #888; }
.lc-hotel-room-units { font-size: .75rem; color: #aaa; }
.lc-hotel-room-book-btn { background: #E2C48E; color: #0B1014; border: none; border-radius: 8px; padding: 8px 16px; font-weight: 700; cursor: pointer; font-size: .85rem; white-space: nowrap; transition: opacity .2s; }
.lc-hotel-room-book-btn:hover { opacity: .85; }
.lc-hotel-room-chevron { color: #E2C48E; font-size: .9rem; }
.lc-hotel-room-body-inner { padding: 0 14px 14px 14px; border-top: 1px solid rgba(226,196,142,.15); }
.lc-hotel-room-extras { display: flex; gap: 16px; color: #aaa; font-size: .85rem; margin: 10px 0; }
.lc-hotel-room-book-cta { margin-top: 12px; }
.lc-hotel-rooms-empty { color: #888; font-style: italic; }

/* ⑤ Sidebar */
.lc-hotel-sidebar { position: sticky; top: 20px; }
.lc-hotel-sidebar-sticky { display: flex; flex-direction: column; gap: 16px; }
.lc-hotel-sidebar-ad { min-height: 200px; border-radius: 12px; overflow: hidden; }
.lc-hotel-ad-placeholder { background: rgba(226,196,142,.06); border: 1px dashed rgba(226,196,142,.25); display: flex; align-items: center; justify-content: center; color: #555; font-size: .8rem; text-align: center; padding: 16px; border-radius: 12px; }

/* Similar hotels */
.lc-hotel-similar-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.lc-hotel-sim-card { display: flex; align-items: center; gap: 12px; background: #1a1f24; border: 1px solid rgba(226,196,142,.2); border-radius: 12px; padding: 12px; text-decoration: none; color: inherit; transition: border-color .2s; }
.lc-hotel-sim-card:hover { border-color: #E2C48E; }
.lc-hotel-sim-icon { font-size: 1.6rem; color: #E2C48E; flex-shrink: 0; }
.lc-hotel-sim-info { display: flex; flex-direction: column; gap: 2px; }
.lc-hotel-sim-info strong { color: #E2C48E; font-size: .9rem; }
.lc-hotel-sim-info span { font-size: .8rem; color: #aaa; }
.lc-hotel-sim-price { color: #8ee6a0 !important; font-weight: 600; }

/* Mobile hotel layout */
@media (max-width: 900px) {
    .lc-hotel-body { grid-template-columns: 1fr; }
    .lc-hotel-sidebar { position: static; }
    .lc-hotel-hero { grid-template-columns: 1fr; max-height: 260px; }
    .lc-hotel-hero-grid { display: none; }
    .lc-hotel-header-bar { flex-direction: column; }
    .lc-hotel-header-cta { align-items: flex-start; }
    .lc-hotel-room-header { grid-template-columns: 90px 1fr; }
    .lc-hotel-room-right { display: none; }
    .lc-hotel-room-header::after { content: "▼"; color: #E2C48E; font-size: .8rem; position: absolute; right: 14px; }
    .lc-hotel-room-card { position: relative; }
    /* «Похожие» — 2 в ряд, как в маркетплейсах (не 1 гигантский блок) */
    .lc-hotel-similar-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ============================================================
   SINGLE PROPERTY — visitor greeting + rating + cancel policy
   ============================================================ */

/* Greeting banner */
.lc-visitor-greeting {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, rgba(91,163,255,.12), rgba(91,163,255,.04));
    border-left: 3px solid #5ba3ff;
    border-radius: 8px;
    padding: 10px 16px;
    margin: 0 0 16px;
    font-size: .9rem;
    color: #ccd;
}
.lc-visitor-flag { font-size: 1.5rem; line-height: 1; flex-shrink: 0; }
.lc-visitor-text strong { color: #fff; }

/* Host edit bar — secondary button */
.lc-host-edit-bar .lc-btn-secondary {
    background: rgba(255,255,255,.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,.25);
}
.lc-host-edit-bar .lc-btn-secondary:hover { background: rgba(255,255,255,.2); }

/* Real rating display */
.lc-rating-stars { display: inline-flex; gap: 2px; vertical-align: middle; }
.lc-rating-score { font-weight: 700; color: #f59e0b; margin-left: 4px; font-size: .95rem; }
.lc-rating-count { color: #888; font-size: .82rem; margin-left: 4px; }

/* Cancellation policy */
.lc-property-cancel-policy {
    margin: 24px 0;
    padding: 18px 20px;
    background: rgba(255,255,255,.04);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.1);
}
.lc-property-cancel-policy h3 { margin: 0 0 10px; font-size: 1rem; color: #ddd; }
.lc-cancel-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.lc-cancel-flexible    { background: rgba(34,197,94,.18); color: #4ade80; }
.lc-cancel-moderate    { background: rgba(234,179,8,.18);  color: #facc15; }
.lc-cancel-strict      { background: rgba(249,115,22,.18); color: #fb923c; }
.lc-cancel-non_refundable { background: rgba(239,68,68,.18); color: #f87171; }

/* ── FIX: booking date fields final lock ───────────────── */
.lc-booking-form .lc-booking-dates,
.lc-hotel-booking-form .lc-booking-dates {
    display: block !important;
    margin-bottom: 16px;
}

.lc-booking-form .lc-booking-date-summary,
.lc-hotel-booking-form .lc-booking-date-summary {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 10px !important;
    width: 100% !important;
}

.lc-booking-form .lc-booking-date-chip,
.lc-hotel-booking-form .lc-booking-date-chip {
    min-width: 0 !important;
    max-width: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.lc-booking-form .lc-booking-date-chip input,
.lc-hotel-booking-form .lc-booking-date-chip input {
    width: 100% !important;
    box-sizing: border-box !important;
}
.lc-cancel-desc { margin: 0; font-size: .88rem; color: #aaa; line-height: 1.5; }