/* =====================================================
 * Hotel Detail – Slider & Summary Card
 * Cruise sayfa yapısının hotel detayına uyarlanmış halidir.
 * ===================================================== */

/* ----- Booking page – summary card hero with background image ----- */
.hotel-booking-hero-image {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 150px;
}
.hotel-booking-hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(12,44,122,.88) 0%, rgba(15,23,42,.72) 100%);
    pointer-events: none;
    border-radius: inherit;
}
.hotel-booking-hero-image > * { position: relative; z-index: 1; }

/* ----- Listing slider (basit galeri – 1..7 görsel) ----- */
.hotel-listing-slider {
    margin-bottom: 24px;
}

.hotel-listing-slider .owl-stage-outer,
.hotel-listing-slider .owl-stage,
.hotel-listing-slider .owl-item {
    height: 480px;
}

.hotel-listing-slider .owl-item img,
.hotel-listing-slider img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    border-radius: 25px;
}

/* Owl yüklenmeden önce flash'ı engellemek için ilk görsel dışında diğerlerini gizle */
.hotel-listing-slider:not(.owl-loaded) img:not(:first-child) {
    display: none;
}

.hotel-listing-slider:not(.owl-loaded) {
    height: 480px;
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .hotel-listing-slider,
    .hotel-listing-slider .owl-stage-outer,
    .hotel-listing-slider .owl-stage,
    .hotel-listing-slider .owl-item,
    .hotel-listing-slider:not(.owl-loaded) {
        height: 360px;
    }
    .hotel-listing-slider .owl-item img,
    .hotel-listing-slider img {
        height: 360px;
    }
}

@media (max-width: 575.98px) {
    .hotel-listing-slider,
    .hotel-listing-slider .owl-stage-outer,
    .hotel-listing-slider .owl-stage,
    .hotel-listing-slider .owl-item,
    .hotel-listing-slider:not(.owl-loaded) {
        height: 260px;
    }
    .hotel-listing-slider .owl-item img,
    .hotel-listing-slider img {
        height: 260px;
    }
}

/* ----- Karmaşık galeri (8+ görsel) – cruise.css üzerinden gelen .cx-gallery'yi kullanır ----- */
.hotel-cx-gallery {
    margin-bottom: 24px;
}

.hotel-cx-gallery .cx-gallery-grid {
    /* Cruise sayfasında JS ile sidebar yüksekliğine eşitlenir.
       Hotel'de ise sabit yükseklik tercih edilir. */
    height: 480px;
}

@media (max-width: 991.98px) {
    .hotel-cx-gallery .cx-gallery-grid {
        height: auto;
    }
}

/* ----- Listing header (slider altındaki başlık) ----- */
.listing-content .hotel-listing-slider + .listing-header,
.listing-content .hotel-cx-gallery + .listing-header {
    margin-top: 8px;
}

/* ----- Konaklama Özeti kartı ----- */
.hotel-detail-summary-card {
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 24px;
    background: var(--color-white, #fff);
    box-shadow: 0 16px 38px rgba(15, 23, 42, .08);
    overflow: hidden;
}

.hotel-detail-summary-card__hero {
    position: relative;
    padding: 22px 22px 18px;
    background: var(--theme-color, #0f172a);
    color: #fff;
}

.hotel-detail-summary-card__hero small {
    display: block;
    opacity: .85;
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 6px;
    font-weight: 700;
}

.hotel-detail-summary-card__hero strong {
    display: block;
    font-family: var(--heading-font, inherit);
    font-size: 22px;
    line-height: 1.3;
    color: #fff;
}

.hotel-detail-summary-card__stars {
    margin-top: 8px;
    display: inline-flex;
    gap: 4px;
    color: #facc15;
    font-size: 13px;
}

.hotel-detail-summary-card__price {
    padding: 18px 22px;
    border-bottom: 1px solid rgba(15, 23, 42, .06);
    background: #fff;
}

.hotel-detail-summary-card__price small {
    display: block;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.hotel-detail-summary-card__price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.hotel-detail-summary-card__price-row strong {
    font-family: var(--heading-font, inherit);
    font-size: 28px;
    color: var(--theme-color, #0f172a);
    line-height: 1;
}

.hotel-detail-summary-card__price-old {
    color: #94a3b8;
    text-decoration: line-through;
    font-size: 14px;
}

.hotel-detail-summary-card__price-meta {
    display: block;
    margin-top: 6px;
    color: #64748b !important;
    font-size: 12px;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-weight: 500 !important;
}

.hotel-detail-summary-card__campaign {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(34, 197, 94, .12);
    color: #15803d;
    font-size: 12px;
    font-weight: 700;
}

.hotel-detail-summary-card__body {
    padding: 20px 22px;
}

.hotel-detail-summary-list {
    display: grid;
    gap: 0;
}

.hotel-detail-summary-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(15, 23, 42, .08);
}

.hotel-detail-summary-row:last-child {
    border-bottom: 0;
}

.hotel-detail-summary-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    flex: 0 0 auto;
}

.hotel-detail-summary-row span i {
    color: var(--theme-color, #14b8a6);
    font-size: 14px;
}

.hotel-detail-summary-row strong {
    display: block;
    color: var(--color-dark, #0f172a);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-align: right;
    flex: 1 1 auto;
    min-width: 0;
}

.hotel-detail-summary-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
    font-size: 12px;
    font-weight: 700;
}

.hotel-detail-summary-badge.is-active {
    background: rgba(34, 197, 94, .14);
    color: #15803d;
}

.hotel-detail-summary-rooms {
    margin-top: 18px;
    padding: 16px;
    border-radius: 18px;
    background: #f8fafc;
}

.hotel-detail-summary-rooms__head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--color-dark, #0f172a);
    font-weight: 700;
    font-size: 14px;
}

.hotel-detail-summary-rooms__head i {
    color: var(--theme-color, #14b8a6);
}

.hotel-detail-summary-rooms__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.hotel-detail-summary-rooms__list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .05);
    font-size: 13px;
}

.hotel-detail-summary-rooms__list li span {
    color: var(--color-dark, #0f172a);
    font-weight: 600;
}

.hotel-detail-summary-rooms__list li em {
    color: #64748b;
    font-style: normal;
    font-size: 12px;
    font-weight: 600;
}

.hotel-detail-summary-cta i {
    margin-right: 6px;
}

@media (max-width: 1199.98px) {
    .hotel-detail-summary-card {
        margin-top: 24px;
    }
}

/* ----- İletişim kutusu (sidebar) ----- */
.hotel-detail-contact-card {
    margin-top: 18px;
    padding: 22px;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .05);
}

.hotel-detail-contact-card__head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.hotel-detail-contact-card__head i {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #f1f5f9;
    color: var(--theme-color, #14b8a6);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.hotel-detail-contact-card__head h5 {
    margin: 0;
    font-size: 17px;
    color: #0f172a;
    font-weight: 700;
}

.hotel-detail-contact-card > p {
    margin: 0 0 14px;
    color: #64748b;
    font-size: 13.5px;
    line-height: 1.65;
}

.hotel-detail-contact-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.hotel-detail-contact-card__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #f8fafc;
    font-size: 14px;
}

.hotel-detail-contact-card__list li i {
    color: var(--theme-color, #14b8a6);
    font-size: 14px;
}

.hotel-detail-contact-card__list li a {
    color: #0f172a;
    font-weight: 600;
    text-decoration: none;
}

.hotel-detail-contact-card__list li a:hover {
    color: var(--theme-color, #14b8a6);
}

/* =====================================================
 * Hotel Detail – Availability & Room Search Card
 * Used by: views/hotel/partials/roomSearchComp.php
 * Preserves all data-hotel-* JS hooks; only restyles the
 * surrounding structure with a project-aligned design.
 * ===================================================== */

.hotel-search-card {
    --hsc-field-h: 78px;
    position: relative;
    margin-top: 22px;
    padding: 26px 26px 22px 30px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 24px;
    box-shadow: 0 18px 44px rgba(15, 23, 42, .08);
}

.hotel-search-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    border-radius: 24px 0 0 24px;
    background: linear-gradient(180deg, var(--theme-color, #14b8a6) 0%, var(--color-dark, #0f172a) 100%);
    pointer-events: none;
}

.hotel-search-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 22px;
}

.hotel-search-card__title-wrap {
    flex: 1 1 auto;
    min-width: 0;
}

.hotel-search-card__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(20, 184, 166, .12);
    color: var(--theme-color, #0f766e);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hotel-search-card__title {
    margin: 10px 0 6px;
    font-family: var(--heading-font, inherit);
    font-size: 22px;
    line-height: 1.3;
    color: var(--color-dark, #0f172a);
}

.hotel-search-card__desc {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
    max-width: 560px;
}

.hotel-search-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex-shrink: 0;
}

.hotel-search-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    color: var(--color-dark, #0f172a);
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(15, 23, 42, .04);
}

.hotel-search-pill i {
    color: var(--theme-color, #14b8a6);
    font-size: 14px;
}

.hotel-search-pill b {
    font-weight: 800;
    color: var(--color-dark, #0f172a);
}

/* ----- Form grid ----- */
.hotel-search-card__form {
    position: relative;
}

.hotel-search-card .hotel-search-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.hotel-search-card .hotel-search-col-dates,
.hotel-search-card .hotel-search-col-rooms {
    min-width: 0;
    display: flex;
}

.hotel-search-card .hotel-search-col-submit {
    min-width: 0;
    display: flex;
    justify-content: flex-end;
    margin-top: 6px;
}

.hotel-search-card .hotel-search-col-dates  > *,
.hotel-search-card .hotel-search-col-rooms  > * { width: 100%; }

.hotel-search-card .hotel-search-col-submit { align-items: stretch; }

/* ----- Field shell (date, guest trigger) ----- */
.hotel-search-card .hotel-search-field,
.hotel-search-card .passenger-class {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    /* min-height: var(--hsc-field-h); */
    min-height: 93px; 
    padding: 10px 14px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 16px;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    cursor: pointer;
}

.hotel-search-card .hotel-search-field:hover,
.hotel-search-card .passenger-class:hover {
    border-color: rgba(20, 184, 166, .45);
    box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
}

.hotel-search-card .passenger-box.show .passenger-class {
    border-color: var(--theme-color, #14b8a6);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, .12);
}

.hotel-search-card .hotel-search-field__icon {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(20, 184, 166, .12);
    color: var(--theme-color, #0f766e);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.hotel-search-card .hotel-search-field__body {
    flex: 1 1 auto;
    min-width: 0;
}

.hotel-search-card .hotel-search-field__body label,
.hotel-search-card .form-group label {
    display: block;
    margin: 0 0 4px;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.hotel-search-card .form-control.date-picker {
    border: 0;
    padding: 0;
    height: auto;
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-dark, #0f172a);
    background: transparent;
    box-shadow: none;
    cursor: pointer;
}

.hotel-search-card .form-control.date-picker:focus {
    box-shadow: none;
    background: transparent;
}

.hotel-search-card .form-group-icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.hotel-search-card .hotel-search-field__hint {
    margin-top: 6px;
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
}

.hotel-search-card .hotel-search-field__value {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-dark, #0f172a);
    line-height: 1.3;
}

.hotel-search-card .hotel-search-field__caret {
    color: #94a3b8;
    font-size: 13px;
    transition: transform .18s ease;
}

.hotel-search-card .passenger-box.show .hotel-search-field__caret {
    transform: rotate(180deg);
    color: var(--theme-color, #0f766e);
}

/* ----- Date row with separator ----- */
.hotel-search-card .search-form-date.hotel-search-date-row {
    display: flex;
    width: 100%;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 16px;
    padding: 0;
    /* min-height: var(--hsc-field-h); */
    min-height: 93px; 

}

.hotel-search-card .hotel-search-date-row .hotel-search-field {
    flex: 1 1 50%;
    min-width: 0;
    border: 0;
    border-radius: 16px;
    background: transparent;
    box-shadow: none;
    min-height: calc(var(--hsc-field-h) - 2px);
}

.hotel-search-card .hotel-search-date-row .hotel-search-field:hover {
    background: rgba(20, 184, 166, .06);
    box-shadow: none;
}

.hotel-search-card .hotel-search-date-divider {
    flex: 0 0 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 14px;
    align-self: center;
}


/* JS still relies on these names for click targeting */
.hotel-search-card .search-form-date .search-form-journey > *,
.hotel-search-card .search-form-date .search-form-return > * {
    pointer-events: none;
}
.hotel-search-card .search-form-date .search-form-journey,
.hotel-search-card .search-form-date .search-form-return,
.hotel-search-card .date-picker {
    cursor: pointer;
    pointer-events: auto;
}

/* ----- CTA ----- */
.hotel-search-card .hotel-search-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-width: 0;
    min-height: 0;
    padding: 10px 22px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
}

.hotel-search-card .hotel-search-card__cta i {
    margin: 0;
}

.hotel-search-card .hotel-search-card__cta-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    font-size: 12px;
    line-height: 1;
}

.hotel-search-card .hotel-search-card__cta-icon i {
    line-height: 1;
}

.hotel-search-card .hotel-search-card__cta-text {
    display: inline-block;
    white-space: nowrap;
}

/* ----- Note ----- */
.hotel-search-card__note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 16px 0 0;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(15, 23, 42, .03);
    color: #475569;
    font-size: 13px;
    line-height: 1.6;
}

.hotel-search-card__note i {
    color: var(--theme-color, #0f766e);
    font-size: 14px;
    margin-top: 2px;
}

/* ----- Room dropdown ----- */
.hotel-search-card .hotel-room-dropdown {
    min-width: 340px;
    width: max-content;
    max-width: min(420px, calc(100vw - 40px));
    max-height: 70vh;
    overflow-y: auto;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 22px 50px rgba(15, 23, 42, .14);
    background: #fff;
    z-index: 1050;
}

.hotel-search-card .hotel-room-dropdown__head {
    padding: 0 4px 10px;
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(15, 23, 42, .06);
}

.hotel-search-card .hotel-room-dropdown__head strong {
    display: block;
    font-size: 14px;
    color: var(--color-dark, #0f172a);
    margin-bottom: 2px;
}

.hotel-search-card .hotel-room-dropdown__head small {
    color: #64748b;
    font-size: 12px;
}

.hotel-search-card .hotel-room-dropdown__foot {
    padding-top: 10px;
    background: transparent !important;
}

.hotel-search-card .hotel-room-builder-item {
    padding: 0 0 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(15, 23, 42, .06);
}

.hotel-search-card .hotel-room-builder-item:last-child {
    border-bottom: 0;
    margin-bottom: 4px;
    padding-bottom: 4px;
}

.hotel-search-card .hotel-room-child-ages {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.hotel-search-card .hotel-room-child-age-item label {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-dark, #0f172a);
    letter-spacing: 0;
    text-transform: none;
}

/* ----- Room builder item ----- */
.hotel-search-card .hotel-room-builder-item.dropdown-item {
    background: transparent;
    color: inherit;
}

.hotel-search-card .hotel-room-builder-item.dropdown-item:hover,
.hotel-search-card .hotel-room-builder-item.dropdown-item:focus {
    background: transparent;
}

.hotel-search-card .hotel-room-builder-item h6 {
    font-size: 14px;
    font-weight: 800;
    color: var(--color-dark, #0f172a);
    margin: 0;
}

.hotel-search-card .hotel-room-builder-item .btn-link.text-danger {
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 8px;
    background: rgba(239, 68, 68, .08);
    color: #dc2626 !important;
    transition: background-color .15s ease;
}

.hotel-search-card .hotel-room-builder-item .btn-link.text-danger:hover {
    background: rgba(239, 68, 68, .16);
}

/* ----- Passenger qty controls inside dropdown ----- */
.hotel-search-card .passenger-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 0;
}

.hotel-search-card .passenger-info h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark, #0f172a);
    margin: 0;
}

.hotel-search-card .passenger-qty {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 12px;
}

.hotel-search-card .passenger-qty .hotel-room-qty-btn,
.hotel-search-card .hotel-room-qty-btn {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 9px;
    background: #fff;
    color: var(--color-dark, #0f172a);
    box-shadow: 0 1px 3px rgba(15, 23, 42, .08);
    font-size: 13px;
    line-height: 1;
    cursor: pointer;
    transition: background-color .15s ease, color .15s ease, transform .15s ease;
}

.hotel-search-card .hotel-room-qty-btn:hover {
    background: var(--theme-color, #14b8a6);
    color: #fff;
}

.hotel-search-card .hotel-room-qty-btn:active {
    transform: scale(.95);
}

.hotel-search-card .hotel-room-qty-btn:disabled {
    opacity: .5;
    cursor: not-allowed;
}

.hotel-search-card .passenger-qty .qty-amount {
    width: 36px;
    border: 0;
    background: transparent;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark, #0f172a);
    padding: 0;
    box-shadow: none;
    pointer-events: none;
}

/* ----- Add Room button ----- */
.hotel-search-card .hotel-room-dropdown__foot.dropdown-item {
    padding: 10px 4px 4px;
}

.hotel-search-card .hotel-room-dropdown__foot.dropdown-item:hover,
.hotel-search-card .hotel-room-dropdown__foot.dropdown-item:focus {
    background: transparent;
}

.hotel-search-card .hotel-room-dropdown__foot .theme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 12px;
}

.hotel-search-card .hotel-room-dropdown__foot .theme-btn i {
    margin: 0;
}

/* ===== Responsive ===== */
@media (max-width: 1199.98px) {
    .hotel-search-card .hotel-search-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }
    .hotel-search-card .hotel-search-col-submit {
        grid-column: 1 / -1;
        justify-content: flex-end;
    }
    .hotel-search-card .hotel-search-card__cta {
        min-height: 60px;
        width: auto;
    }
}

@media (max-width: 767.98px) {
    .hotel-search-card {
        padding: 20px 18px 18px;
        border-radius: 20px;
    }
    .hotel-search-card__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 18px;
    }
    .hotel-search-card__title { font-size: 20px; }
    .hotel-search-card .hotel-search-grid { gap: 12px; }
    .hotel-search-card .search-form-date.hotel-search-date-row {
        flex-direction: column;
        padding: 8px;
        gap: 6px;
    }
    .hotel-search-card .hotel-search-date-row .hotel-search-field {
        flex: 1 1 auto;
        min-height: 72px;
        background: rgba(15, 23, 42, .02);
        border-radius: 14px;
    }
    .hotel-search-card .hotel-search-date-divider {
        flex: 0 0 auto;
        height: 24px;
        transform: rotate(90deg);
    }
    .hotel-search-card .hotel-search-field,
    .hotel-search-card .passenger-class {
        min-height: 72px;
        border-radius: 16px;
    }
    .hotel-search-card .hotel-room-dropdown {
        min-width: calc(100vw - 60px);
    }
    .hotel-search-card .hotel-room-child-ages {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .hotel-search-card .hotel-search-field__icon {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    .hotel-search-card .form-control.date-picker {
        font-size: 16px;
    }
}


/* =====================================================
   Hotel Detail – Room Cards (cruise-inspired vertical layout)
   ===================================================== */
.hotel-detail-room-card {
    display: grid;
    grid-template-columns: minmax(280px, 360px) 1fr;
    gap: 0;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(15, 23, 42, .06);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    margin-bottom: 22px;
}

.hotel-detail-room-card:hover {
    border-color: rgba(20, 184, 166, .35);
    box-shadow: 0 22px 46px rgba(15, 23, 42, .1);
    transform: translateY(-2px);
}

.hotel-detail-room-card.is-selected {
    border-color: var(--theme-color, #14b8a6);
    box-shadow: 0 22px 48px rgba(20, 184, 166, .18);
}

/* ---- Media column ---- */
.hotel-detail-room-card__media {
    position: relative;
    background: #f1f5f9;
    overflow: hidden;
    min-height: 240px;
}

.hotel-detail-room-card__media > img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.hotel-detail-room-card:hover .hotel-detail-room-card__media > img {
    transform: scale(1.04);
}

.hotel-detail-room-card__media-tags {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    z-index: 2;
}

.hotel-detail-room-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    backdrop-filter: blur(6px);
    background: rgba(15, 23, 42, .72);
    color: #fff;
}

.hotel-detail-room-card__tag.is-soft {
    background: rgba(255, 255, 255, .92);
    color: #0f172a;
}

.hotel-detail-room-card__tag.is-discount {
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: #fff;
    box-shadow: 0 8px 20px rgba(239, 68, 68, .28);
}

.hotel-detail-room-card__tag i {
    font-size: 11px;
}

.hotel-detail-room-card__thumbs {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: flex;
    gap: 6px;
    z-index: 2;
}

.hotel-detail-room-card__thumb {
    position: relative;
    flex: 1 1 0;
    aspect-ratio: 1 / 1;
    max-width: 64px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, .85);
    background: #e2e8f0;
}

.hotel-detail-room-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hotel-detail-room-card__thumb.has-more img {
    filter: brightness(.55);
}

.hotel-detail-room-card__thumb-more {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

/* ---- Body column ---- */
.hotel-detail-room-card__body {
    padding: 22px 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
}

.hotel-detail-room-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.hotel-detail-room-card__title-wrap {
    flex: 1 1 auto;
    min-width: 0;
}

.hotel-detail-room-card__eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(20, 184, 166, .1);
    color: #0f766e;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.hotel-detail-room-card__title {
    margin: 0 0 6px;
    font-size: 20px;
    line-height: 1.25;
    color: #0f172a;
    font-weight: 800;
}

.hotel-detail-room-card__summary {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.55;
}

/* Price block */
.hotel-detail-room-card__price {
    flex: 0 0 auto;
    text-align: right;
    min-width: 160px;
    padding-left: 12px;
    border-left: 1px dashed rgba(15, 23, 42, .12);
}

.hotel-detail-room-card__price small {
    display: block;
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
}

.hotel-detail-room-card__price-old {
    display: block;
    color: #94a3b8;
    text-decoration: line-through;
    font-size: 13px;
    line-height: 1.2;
    min-height: 16px;
}

.hotel-detail-room-card__price-new {
    display: block;
    color: #0f172a;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.1;
    margin: 2px 0 6px;
}

.hotel-detail-room-card__price-meta {
    display: block;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 600;
}

/* Specs row */
.hotel-detail-room-card__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hotel-detail-room-card__specs span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 11px;
    border-radius: 999px;
    background: #f8fafc;
    color: #334155;
    font-size: 12px;
    font-weight: 700;
}

.hotel-detail-room-card__specs span i {
    color: var(--theme-color, #0f766e);
    font-size: 12px;
}

.hotel-detail-room-card__specs span.is-policy {
    background: rgba(34, 197, 94, .1);
    color: #15803d;
}

.hotel-detail-room-card__specs span.is-policy i {
    color: #15803d;
}

/* Amenities */
.hotel-detail-room-card__amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    padding: 12px 14px;
    background: #f8fafc;
    border-radius: 14px;
}

.hotel-detail-room-card__amenity {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #334155;
    font-size: 13px;
    font-weight: 600;
}

.hotel-detail-room-card__amenity i {
    color: #14b8a6;
    font-size: 13px;
}

/* Campaign block */
.hotel-detail-room-card__campaign {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(239, 68, 68, .08), rgba(249, 115, 22, .12));
    border: 1px dashed rgba(239, 68, 68, .35);
}

.hotel-detail-room-card__campaign-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #ef4444;
    font-size: 14px;
    box-shadow: 0 6px 14px rgba(239, 68, 68, .18);
}

.hotel-detail-room-card__campaign-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.hotel-detail-room-card__campaign-text strong {
    color: #b91c1c;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
}

.hotel-detail-room-card__campaign-text small {
    color: #9a3412;
    font-size: 12px;
    font-weight: 600;
}

/* Footer */
.hotel-detail-room-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 14px;
    margin-top: auto;
    border-top: 1px solid rgba(15, 23, 42, .06);
}

.hotel-detail-room-card__status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.hotel-detail-room-card__status.is-success {
    background: rgba(34, 197, 94, .12);
    color: #15803d;
}

.hotel-detail-room-card__status.is-warning {
    background: rgba(245, 158, 11, .14);
    color: #b45309;
}

.hotel-detail-room-card__status.is-muted {
    background: #e2e8f0;
    color: #475569;
}

.hotel-detail-room-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.hotel-detail-room-card__cta i {
    font-size: 12px;
}

/* Section heading wrapper for grouped rooms */
.hotel-room-section + .hotel-room-section {
    margin-top: 26px;
}

.hotel-room-section__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
    padding: 0 4px;
}

.hotel-room-section__eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: #e0f2fe;
    color: #075985;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.hotel-room-section__head h5 {
    margin: 6px 0 0;
    font-size: 22px;
    color: #0f172a;
    font-weight: 800;
}

.hotel-room-section__head p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .hotel-detail-room-card {
        grid-template-columns: 1fr;
    }
    .hotel-detail-room-card__media {
        min-height: 220px;
        max-height: 260px;
    }
    .hotel-detail-room-card__media > img {
        min-height: 220px;
        max-height: 260px;
    }
}

@media (max-width: 767.98px) {
    .hotel-detail-room-card__body {
        padding: 18px;
        gap: 12px;
    }
    .hotel-detail-room-card__head {
        flex-direction: column;
        gap: 10px;
    }
    .hotel-detail-room-card__price {
        text-align: left;
        padding-left: 0;
        border-left: 0;
        border-top: 1px dashed rgba(15, 23, 42, .12);
        padding-top: 10px;
        width: 100%;
    }
    .hotel-detail-room-card__price-new {
        font-size: 22px;
    }
    .hotel-detail-room-card__footer {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .hotel-detail-room-card__cta {
        justify-content: center;
        width: 100%;
    }
    .hotel-room-section__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

/* =====================================================
   Hotel detail – About / Amenities / Location
   ===================================================== */
.hotel-about { padding: 28px; border-radius: 22px; background: #fff; border: 1px solid var(--border-info-color2, rgba(0,0,0,.05)); box-shadow: var(--box-shadow, 0 0 40px 5px rgba(0,0,0,.05)); }
.hotel-about + .hotel-about { margin-top: 22px; }
.hotel-about__head { margin-bottom: 18px; }
.hotel-about__eyebrow { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--theme-color, #24BDC7); margin-bottom: 8px; }
.hotel-about__title { font-size: 22px; line-height: 1.3; color: var(--color-dark, #0C2C7A); margin: 0 0 8px; font-family: var(--heading-font, inherit); }
.hotel-about__lead { color: var(--body-text-color, #475569); font-size: 15px; line-height: 1.7; margin: 0; }
.hotel-about__lead i { color: var(--theme-color, #24BDC7); margin-right: 6px; }
.hotel-about__content { margin-top: 18px; }

/* Compact info row (Check-in/out + Phone + Email + Region) */
.hotel-about__info-row { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin-top: 4px; }
.hotel-about__info-card { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border: 1px solid var(--border-info-color2, rgba(0,0,0,.06)); border-radius: 14px; background: #fff; transition: var(--transition2, all .25s ease); }
.hotel-about__info-card:hover { border-color: var(--theme-color, #24BDC7); }
.hotel-about__info-icon { width: 40px; height: 40px; flex: none; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; background: var(--theme-bg-light, rgba(37,189,199,.08)); color: var(--theme-color, #24BDC7); font-size: 16px; }
.hotel-about__info-body { min-width: 0; display: flex; flex-direction: column; }
.hotel-about__info-label { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #94a3b8; margin-bottom: 2px; }
.hotel-about__info-value { font-size: 14px; font-weight: 600; color: var(--color-dark, #0C2C7A); line-height: 1.4; word-break: break-word; }
a.hotel-about__info-value:hover { color: var(--theme-color, #24BDC7); }

/* Compact combined check-in / check-out card */
.hotel-about__info-card--checktimes { padding: 12px 18px; gap: 0; justify-content: space-between; }
.hotel-about__check { display: flex; flex-direction: column; flex: 1 1 0; min-width: 0; }
.hotel-about__check-label { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #94a3b8; margin-bottom: 4px; display: inline-flex; align-items: center; gap: 6px; }
.hotel-about__check-label i { color: var(--theme-color, #24BDC7); font-size: 12px; }
.hotel-about__check strong { font-size: 18px; font-weight: 700; color: var(--color-dark, #0C2C7A); line-height: 1; font-feature-settings: "tnum"; }
.hotel-about__check-divider { width: 1px; align-self: stretch; background: var(--border-info-color2, rgba(0,0,0,.08)); margin: 0 16px; }

/* Chip groups (themes / hotel types / tags) */
.hotel-about__chip-groups { margin-top: 22px; padding-top: 22px; border-top: 1px dashed var(--border-info-color2, rgba(0,0,0,.08)); display: flex; flex-direction: column; gap: 14px; }
.hotel-about__chip-group { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.hotel-about__chip-label { font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #64748b; min-width: 140px; }
.hotel-about__chip-list { display: flex; flex-wrap: wrap; gap: 8px; }
.hotel-about__chip { display: inline-flex; align-items: center; gap: 6px; padding: 7px 12px; border-radius: 999px; background: #f8fafc; border: 1px solid var(--border-info-color2, rgba(0,0,0,.05)); color: #334155; font-size: 13px; font-weight: 600; line-height: 1; }
.hotel-about__chip i { color: var(--theme-color, #24BDC7); font-size: 12px; }

/* Sections list (sections_json) */
.hotel-about__sections { display: flex; flex-direction: column; gap: 18px; }
.hotel-about__section-block { padding: 18px 20px; border: 1px solid var(--border-info-color2, rgba(0,0,0,.06)); border-radius: 16px; background: #fcfcfd; }
.hotel-about__section-title { font-size: 16px; color: var(--color-dark, #0C2C7A); margin: 0 0 10px; font-family: var(--heading-font, inherit); }

/* Amenity grid (refined, single accent color) */
.hotel-amenity-grid { display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.hotel-amenity-item { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--border-info-color2, rgba(0,0,0,.06)); border-radius: 14px; background: #fff; transition: var(--transition2, all .25s ease); }
.hotel-amenity-item:hover { border-color: var(--theme-color, #24BDC7); transform: translateY(-1px); }
.hotel-amenity-item__icon { width: 36px; height: 36px; flex: none; display: inline-flex; align-items: center; justify-content: center; border-radius: 10px; background: var(--theme-bg-light, rgba(37,189,199,.08)); color: var(--theme-color, #24BDC7); font-size: 15px; }
.hotel-amenity-item__icon img { width: 18px; height: 18px; object-fit: contain; }
.hotel-amenity-item__name { font-size: 14px; font-weight: 600; color: var(--color-dark, #0C2C7A); line-height: 1.35; }

@media (max-width: 991.98px) {
    .hotel-about { padding: 22px; }
    .hotel-about__title { font-size: 20px; }
}

@media (max-width: 575.98px) {
    .hotel-about { padding: 18px; border-radius: 18px; }
    .hotel-about__info-row { grid-template-columns: 1fr; }
    .hotel-about__chip-group { flex-direction: column; align-items: flex-start; gap: 8px; }
    .hotel-about__chip-label { min-width: 0; }
    .hotel-about__check-divider { margin: 0 12px; }
    .hotel-about__check strong { font-size: 16px; }
}

/* =====================================================
 * Hotel List – Filter Panel, Sort, Result Card
 * Cruise list desenleriyle uyumlu, tema değişkenleriyle.
 * ===================================================== */

/* ---- Filter Panel: Range Slider (cruise paterni) ---- */
.hotel-filter-panel .price-range-slider { margin-bottom: 0; }
.hotel-filter-panel .price-range-info { margin-bottom: 15px; }
.hotel-filter-panel .priceRange {
    background: transparent;
    border: 0;
    font-weight: 800;
    outline: none;
    color: var(--theme-color);
    font-size: 14px;
    width: auto;
}
.hotel-filter-panel .price-range-slider label {
    color: var(--color-dark);
    font-weight: 500;
}
.hotel-filter-panel .hotel-range-slider.ui-widget.ui-widget-content {
    background: #E6E9EC;
    border: 0;
    border-radius: 50px;
    padding: 0;
    height: 0.4em;
}
.hotel-filter-panel .hotel-range-slider .ui-slider-handle {
    top: -0.36em !important;
    border-radius: 50px;
    background: var(--color-white) !important;
    border: 4px solid var(--theme-color) !important;
    width: 1.1em;
    height: 1.1em;
    outline: none;
    cursor: pointer;
}
.hotel-filter-panel .hotel-range-slider .ui-widget-header {
    background: var(--theme-color);
}
.hotel-filter-panel .form-check-input:checked {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}
.hotel-filter-panel .form-check-label {
    color: var(--color-dark);
    cursor: pointer;
}
.hotel-filter-panel .form-check-label span {
    color: var(--body-text-color);
    font-size: 12px;
    margin-left: 4px;
}
.hotel-filter-panel .booking-title {
    font-family: var(--heading-font, inherit);
}

/* ---- Mobile filter/sort tools row ---- */
.hotel-mobile-tools {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.hotel-mobile-tools .theme-btn {
    flex: 1;
    justify-content: center;
    min-width: 0;
    padding: 10px 12px;
    font-size: 13px;
}
.theme-btn-outline {
    background: var(--color-white, #fff);
    border: 1px solid rgba(15, 23, 42, .12);
    color: var(--color-dark, #0f172a);
}
.theme-btn-outline:hover {
    background: var(--theme-bg-light, #f8fafc);
    border-color: var(--theme-color);
    color: var(--theme-color);
}

/* ---- Desktop sort bar ---- */
.hotel-sort-desktop {
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.hotel-sort-desktop h5 {
    margin: 0;
    font-family: var(--heading-font, inherit);
}
.hotel-sort-select-wrap {
    min-width: 240px;
}
.hotel-sort-select-wrap .nice-select,
.hotel-sort-select-wrap .select {
    min-width: 240px;
    width: 100%;
}
.hotel-sort-select-wrap .nice-select .list {
    min-width: 240px;
    width: 100%;
}

/* ---- Mobile-only result count summary ---- */
.hotel-results-summary {
    margin-bottom: 16px;
}
.hotel-results-summary h5 {
    margin: 0;
    font-family: var(--heading-font, inherit);
    font-size: 18px;
    color: var(--color-dark);
}

/* ---- Mobile sort fullscreen panel ---- */
.hotel-mobile-sort-backdrop {
    background: rgba(15, 23, 42, .55);
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transition: opacity .2s ease;
    z-index: 1040;
    display: none;
}
.hotel-mobile-sort-backdrop.is-visible {
    display: block;
    opacity: 1;
    pointer-events: auto;
}
.hotel-mobile-sort-panel {
    background: var(--color-white, #fff);
    position: fixed;
    inset: 0;
    z-index: 1050;
    padding: 24px 20px calc(24px + env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform .25s ease;
    overflow-y: auto;
    margin-bottom: 0;
    border-radius: 0;
    box-shadow: none;
    border: 0;
}
.hotel-mobile-sort-panel.is-open {
    transform: translateY(0);
}
.hotel-mobile-sort-panel-head {
    align-items: center;
    border-bottom: 1px solid rgba(15, 23, 42, .08);
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 14px;
}
.hotel-mobile-sort-panel-head strong {
    font-family: var(--heading-font, inherit);
    font-size: 18px;
    color: var(--color-dark);
}
.hotel-mobile-sort-panel-close {
    background: transparent;
    border: 0;
    color: var(--color-dark);
    font-size: 22px;
    line-height: 1;
    padding: 4px 8px;
    cursor: pointer;
}
.hotel-mobile-sort-options {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.hotel-mobile-sort-option {
    align-items: center;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 12px;
    color: var(--color-dark);
    cursor: pointer;
    display: flex;
    font-family: var(--body-font, inherit);
    font-size: 15px;
    font-weight: 600;
    justify-content: space-between;
    padding: 14px 16px;
    text-align: left;
    transition: background .15s, border-color .15s, color .15s;
    width: 100%;
}
.hotel-mobile-sort-option:hover {
    background: var(--theme-bg-light, #f8fafc);
    color: var(--theme-color);
}
.hotel-mobile-sort-option i {
    opacity: 0;
    color: var(--theme-color);
    font-size: 16px;
}
.hotel-mobile-sort-option.is-active {
    background: rgba(36, 189, 199, .08);
    border-color: var(--theme-color);
    color: var(--theme-color);
}
.hotel-mobile-sort-option.is-active i { opacity: 1; }

/* ---- Result Card ---- */
.hotel-results-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.hotel-list-item { width: 100%; }
.hotel-result-card {
    background: var(--color-white, #fff);
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 22px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, .08);
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}
.hotel-result-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(15, 23, 42, .12);
}
.hotel-result-card__media {
    position: relative;
    overflow: hidden;
    min-height: 240px;
}
.hotel-result-card__media img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.hotel-result-card:hover .hotel-result-card__media img {
    transform: scale(1.04);
}
.hotel-result-card__media-tags {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}
.hotel-result-card__tag {
    align-items: center;
    background: var(--color-white, #fff);
    border-radius: 999px;
    color: var(--color-dark);
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    gap: 6px;
    padding: 6px 12px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, .12);
}
.hotel-result-card__tag i { font-size: 11px; }
.hotel-result-card__tag.is-soft {
    background: rgba(15, 23, 42, .82);
    color: var(--color-white, #fff);
}
.hotel-result-card__tag.is-discount {
    background: var(--theme-color);
    color: var(--color-white, #fff);
}
.hotel-result-card .add-wishlist {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-white, #fff);
    color: var(--color-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(15, 23, 42, .14);
    z-index: 2;
    transition: color .15s;
}
.hotel-result-card .add-wishlist.is-active,
.hotel-result-card .add-wishlist:hover { color: #ef4444; }

.hotel-result-card__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 22px 24px;
    min-width: 0;
}
.hotel-result-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}
.hotel-result-card__title-wrap { min-width: 0; flex: 1; }
.hotel-result-card__stars {
    color: #f59e0b;
    display: inline-flex;
    gap: 2px;
    font-size: 12px;
    margin-bottom: 4px;
}
.hotel-result-card__title {
    margin: 0 0 4px;
    font-family: var(--heading-font, inherit);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-dark);
}
.hotel-result-card__title a { color: inherit; }
.hotel-result-card__title a:hover { color: var(--theme-color); }
.hotel-result-card__location {
    align-items: center;
    color: var(--body-text-color);
    display: flex;
    font-size: 13px;
    gap: 6px;
    margin: 0;
}
.hotel-result-card__location i { color: var(--theme-color); }
.hotel-result-card__summary {
    color: var(--body-text-color);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hotel-result-card__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.hotel-result-card__specs li {
    align-items: center;
    color: var(--color-dark);
    display: inline-flex;
    font-size: 13px;
    font-weight: 600;
    gap: 6px;
}
.hotel-result-card__specs li i {
    color: var(--theme-color);
    font-size: 14px;
}
.hotel-result-card__specs li.is-policy { color: #16a34a; }
.hotel-result-card__specs li.is-policy i { color: #16a34a; }
.hotel-result-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.hotel-result-card__chip {
    align-items: center;
    background: var(--theme-bg-light, #f8fafc);
    border-radius: 999px;
    color: var(--color-dark);
    display: inline-flex;
    font-size: 12px;
    font-weight: 600;
    gap: 6px;
    padding: 5px 10px;
}
.hotel-result-card__chip i {
    color: var(--theme-color);
    font-size: 11px;
}
.hotel-result-card__chip.is-amenity {
    background: rgba(22, 163, 74, .08);
    color: #166534;
}
.hotel-result-card__chip.is-amenity i { color: #16a34a; }
.hotel-result-card__campaign {
    align-items: center;
    background: linear-gradient(135deg, rgba(36, 189, 199, .08), rgba(36, 189, 199, .02));
    border: 1px dashed rgba(36, 189, 199, .35);
    border-radius: 14px;
    display: flex;
    gap: 12px;
    padding: 12px 14px;
}
.hotel-result-card__campaign-icon {
    align-items: center;
    background: var(--theme-color);
    border-radius: 10px;
    color: var(--color-white, #fff);
    display: inline-flex;
    height: 36px;
    justify-content: center;
    width: 36px;
    flex-shrink: 0;
}
.hotel-result-card__campaign strong {
    color: var(--color-dark);
    display: block;
    font-size: 14px;
    line-height: 1.3;
}
.hotel-result-card__campaign small {
    color: var(--body-text-color);
    font-size: 12px;
}
.hotel-result-card__footer {
    align-items: flex-end;
    border-top: 1px solid rgba(15, 23, 42, .06);
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-top: 8px;
    padding-top: 16px;
}
.hotel-result-card__status {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
}
.hotel-result-card__status .is-available {
    align-items: center;
    color: #16a34a;
    display: inline-flex;
    font-weight: 700;
    gap: 6px;
}
.hotel-result-card__status .is-request {
    align-items: center;
    color: #d97706;
    display: inline-flex;
    font-weight: 700;
    gap: 6px;
}
.hotel-result-card__status small {
    color: var(--body-text-color);
    font-size: 12px;
}
.hotel-result-card__price {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    flex-shrink: 0;
}
.hotel-result-card__price small {
    color: var(--body-text-color);
    font-size: 12px;
    margin-bottom: 2px;
}
.hotel-result-card__price-old {
    color: #94a3b8;
    font-size: 13px;
    text-decoration: line-through;
}
.hotel-result-card__price-new {
    color: var(--theme-color);
    font-family: var(--heading-font, inherit);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.1;
}
.hotel-result-card__cta {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ---- Empty state ---- */
.hotel-list-card__empty {
    text-align: center;
    padding: 40px 20px;
    background: var(--color-white, #fff);
    border-radius: 22px;
    border: 1px dashed rgba(15, 23, 42, .12);
}
.hotel-list-card__empty .theme-btn { margin-top: 14px; }

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .hotel-result-card {
        grid-template-columns: 1fr;
    }
    .hotel-result-card__media,
    .hotel-result-card__media img {
        min-height: 200px;
        max-height: 240px;
    }
    .hotel-result-card__body { padding: 18px; }
    .hotel-result-card__title { font-size: 18px; }
    .hotel-result-card__price-new { font-size: 20px; }
}

@media (max-width: 575.98px) {
    .hotel-result-card__footer {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .hotel-result-card__price {
        text-align: left;
        align-items: flex-start;
    }
    .hotel-result-card__cta { align-self: stretch; justify-content: center; }
    .hotel-mobile-tools .theme-btn { font-size: 12px; padding: 9px 10px; }
}

/* =====================================================
   Hotel Confirmation (Voucher)
   ===================================================== */
.hotel-cf-header { text-align: center; padding: 0 0 10px; margin-bottom: 10px; }
.hotel-cf-icon { margin-bottom: 20px; }
.hotel-cf-icon i {
    display: inline-flex; align-items: center; justify-content: center;
    width: 80px; height: 80px; font-size: 40px;
    border-radius: 50%; background: var(--theme-color); color: #fff;
}
.hotel-cf-header h3 { font-family: var(--heading-font); font-weight: 700; color: var(--color-dark); margin: 0 0 10px; }
.hotel-cf-header p { color: var(--body-text-color); margin: 0 auto 20px; max-width: 600px; }
.hotel-cf-ref-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 22px; border-radius: 50px;
    background: var(--theme-bg-light); border: 1px solid var(--theme-color);
    font-size: 15px;
}
.hotel-cf-ref-badge i { color: var(--theme-color); }
.hotel-cf-ref-badge span { color: var(--body-text-color); }
.hotel-cf-ref-badge strong { color: var(--color-dark); font-weight: 700; }

/* Hero Image */
.hotel-cf-hero {
    position: relative; border-radius: 15px; overflow: hidden;
    margin-bottom: 25px; min-height: 280px; background: var(--color-dark);
}
.hotel-cf-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hotel-cf-hero-overlay {
    position: relative; z-index: 1;
    display: flex; flex-direction: column; justify-content: flex-end;
    min-height: 280px; padding: 24px;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, .7) 100%);
    color: #fff;
}
.hotel-cf-hero-tag {
    display: inline-block; align-self: flex-start;
    padding: 5px 14px; border-radius: 50px;
    background: var(--theme-color);
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
    margin-bottom: 10px;
}
.hotel-cf-hero-overlay h4 {
    margin: 0 0 6px; font-family: var(--heading-font);
    font-size: 26px; font-weight: 700; color: #fff;
}
.hotel-cf-hero-overlay p { margin: 0; font-size: 14px; color: rgba(255, 255, 255, .85); }
.hotel-cf-hero-stars { margin: 4px 0 8px; display: flex; gap: 3px; }
.hotel-cf-hero-stars i { color: var(--color-yellow); font-size: 13px; }

/* Cards */
.hotel-cf-card,
.hotel-cf-side-card {
    background: #fff; border-radius: 15px; box-shadow: var(--box-shadow);
    padding: 25px; margin-bottom: 25px;
}
.hotel-cf-card-title {
    font-family: var(--heading-font); font-size: 16px; font-weight: 700;
    color: var(--color-dark); margin: 0 0 18px;
    display: flex; align-items: center; gap: 8px;
}
.hotel-cf-card-title i { color: var(--theme-color); font-size: 18px; }
.hotel-cf-card-head {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; margin-bottom: 18px;
}
.hotel-cf-link { font-weight: 600; font-size: 14px; color: var(--theme-color); }
.hotel-cf-link:hover { color: var(--color-dark); }

/* Facts */
.hotel-cf-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.hotel-cf-fact {
    padding: 14px 16px; border-radius: 10px;
    background: rgba(0, 0, 0, .02); border: 1px solid var(--border-info-color);
}
.hotel-cf-fact span {
    display: block; font-size: 12px; font-weight: 600;
    text-transform: uppercase; letter-spacing: .04em;
    color: var(--body-text-color); margin-bottom: 4px;
}
.hotel-cf-fact strong { display: block; font-size: 15px; color: var(--color-dark); }
.hotel-cf-fact strong small { font-weight: 500; color: var(--body-text-color); margin-left: 2px; }

/* Room Distribution */
.hotel-cf-room-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.hotel-cf-room-card {
    border: 1px solid var(--border-info-color); border-radius: 12px;
    overflow: hidden; background: #fff; display: flex; flex-direction: column;
}
.hotel-cf-room-media { height: 170px; overflow: hidden; background: var(--color-gray); }
.hotel-cf-room-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.hotel-cf-room-body { padding: 14px 16px; }
.hotel-cf-room-body strong { display: block; margin: 0 0 6px; font-size: 15px; color: var(--color-dark); }
.hotel-cf-room-body span { display: block; font-size: 13px; color: var(--body-text-color); }
.hotel-cf-room-body span i { color: var(--theme-color); margin-right: 4px; }
.hotel-cf-room-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.hotel-cf-room-meta span {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 4px 10px; border-radius: 50px;
    background: var(--theme-color-light); color: var(--color-dark);
    font-size: 12px; font-weight: 600;
}
.hotel-cf-room-meta span i { color: var(--theme-color); font-size: 11px; }

/* Travelers */
.hotel-cf-travelers { display: flex; flex-direction: column; gap: 10px; }
.hotel-cf-traveler {
    display: flex; gap: 12px; align-items: center;
    padding: 14px; border-radius: 10px;
    background: rgba(0, 0, 0, .02); border: 1px solid var(--border-info-color);
}
.hotel-cf-traveler-avatar {
    flex: 0 0 42px; height: 42px; border-radius: 50%;
    background: var(--theme-color-light); color: var(--theme-color);
    display: inline-flex; align-items: center; justify-content: center; font-size: 16px;
}
.hotel-cf-traveler-body { flex: 1; }
.hotel-cf-traveler-body strong { display: block; font-size: 15px; color: var(--color-dark); }
.hotel-cf-traveler-body span { display: block; font-size: 13px; color: var(--body-text-color); }
.hotel-cf-traveler-body small {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 12px; color: var(--body-text-color); margin-right: 8px;
}
.hotel-cf-traveler-body small i { color: var(--theme-color); }
.hotel-cf-traveler-state {
    flex: 0 0 auto; display: inline-flex; align-items: center; gap: 4px;
    padding: 6px 12px; border-radius: 50px;
    background: rgba(21, 212, 201, .12); color: var(--color-green);
    font-size: 12px; font-weight: 700; text-transform: uppercase; white-space: nowrap;
}

/* Map */
.hotel-cf-map {
    border-radius: 10px; overflow: hidden; height: 320px;
    border: 1px solid var(--border-info-color); background: #f8fafc;
}
.hotel-cf-map iframe { display: block; width: 100%; height: 100%; border: 0; }
.hotel-cf-map-address {
    padding: 14px 16px; margin-top: 14px;
    border-radius: 10px; background: rgba(0, 0, 0, .02);
    border: 1px solid var(--border-info-color);
}
.hotel-cf-map-address strong {
    display: flex; align-items: center; gap: 6px;
    margin-bottom: 6px; color: var(--color-dark); font-size: 14px;
}
.hotel-cf-map-address strong i { color: var(--theme-color); }
.hotel-cf-map-address p { margin: 0; color: var(--body-text-color); font-size: 14px; }

/* Sidebar */
.hotel-cf-sidebar { position: sticky; top: 100px; }
.hotel-cf-side-card { margin-bottom: 20px; }

/* Info List */
.hotel-cf-info-list { list-style: none; margin: 0; padding: 0; }
.hotel-cf-info-list li {
    display: flex; justify-content: space-between; gap: 12px;
    padding: 10px 0; border-bottom: 1px solid var(--border-info-color);
}
.hotel-cf-info-list li:last-child { border-bottom: none; padding-bottom: 0; }
.hotel-cf-info-list span { color: var(--body-text-color); font-size: 14px; }
.hotel-cf-info-list strong { color: var(--color-dark); text-align: right; font-size: 14px; word-break: break-word; }

/* Price List */
.hotel-cf-price-list { list-style: none; margin: 0; padding: 0; }
.hotel-cf-price-list li {
    display: flex; justify-content: space-between; align-items: center;
    gap: 12px; padding: 10px 0; border-bottom: 1px dashed var(--border-info-color);
}
.hotel-cf-price-list li:last-child { border-bottom: none; }
.hotel-cf-price-list li strong { display: block; font-size: 14px; color: var(--color-dark); }
.hotel-cf-price-list li small { display: block; font-size: 12px; color: var(--body-text-color); }
.hotel-cf-price-list li b { color: var(--color-dark); font-size: 14px; white-space: nowrap; }
.hotel-cf-price-list li.hotel-cf-price-discount b { color: var(--color-red); }
.hotel-cf-price-total {
    display: flex; justify-content: space-between; align-items: center;
    gap: 12px; padding-top: 14px; margin-top: 4px;
    border-top: 2px solid var(--color-dark);
}
.hotel-cf-price-total span { font-size: 15px; font-weight: 600; color: var(--color-dark); }
.hotel-cf-price-total strong { font-size: 20px; font-weight: 800; color: var(--theme-color); }

/* Responsive */
@media (max-width: 1199.98px) {
    .hotel-cf-room-grid { grid-template-columns: 1fr; }
}
@media (max-width: 991.98px) {
    .hotel-cf-sidebar { position: static; }
}
@media (max-width: 767.98px) {
    .hotel-cf-hero,
    .hotel-cf-hero-overlay { min-height: 220px; }
    .hotel-cf-hero-overlay { padding: 18px; }
    .hotel-cf-hero-overlay h4 { font-size: 22px; }
    .hotel-cf-facts { grid-template-columns: 1fr; }
    .hotel-cf-map { height: 240px; }
    .hotel-cf-header h3 { font-size: 22px; }
    .hotel-cf-traveler { flex-wrap: wrap; }
    .hotel-cf-traveler-state { margin-left: 54px; }
}

