/*
 * FILE: detail.css
 * OWNS: All detail page styles — hotel (.hd-*), tour (.td-*), car (.listing-gallery-*, .bc_detail_car)
 * LOADED ON: Hotel, Tour, Car detail pages only
 * DO NOT ADD: Global styles, search forms, listing cards, portal styles
 */


/* ══════════════════════════════════════════════════════════════════════
   SHARED DETAIL PAGE CHROME (.td-*)
   Tour detail + Car detail — sticky nav, booking form, reviews, map, related
   ══════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════════
   GLOBAL DETAIL PAGE LAYOUT — Standardized across Tour, Hotel, Car
   Brand: #038a52 (green primary), #f47c04 (orange accent)
   Style: Airbnb-inspired, clean, no gradients, minimal shadows
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Page Base ── */
.td-page { background: #fff; }
.td-page .bc_content { padding-top: 0; }

/* ── Breadcrumb Bar ── */
.td-breadcrumb-bar { padding: 16px 0 0; }
.td-breadcrumb { font-size: 13px; color: #717171; display: flex; align-items: center; gap: 0; }
.td-breadcrumb a { color: #222; text-decoration: none; font-weight: 500; }
.td-breadcrumb a:hover { text-decoration: underline; }
.td-breadcrumb .sep { margin: 0 8px; font-size: 9px; color: #b0b0b0; }

/* ── Photo Grid ── */
.td-photo-grid-wrap { padding: 16px 0 0; }
.td-photo-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr; gap: 8px;
    height: 420px; border-radius: 16px; overflow: hidden; position: relative;
}
.td-photo-grid.td-pg-fewer { grid-template-columns: 1fr; grid-template-rows: 1fr; }
.td-pg-item { overflow: hidden; cursor: pointer; }
.td-pg-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.td-pg-item:hover img { transform: scale(1.03); }
.td-pg-main { grid-row: 1 / 3; }
.td-pg-mid { grid-row: 1 / 3; }
.td-pg-solo { grid-column: 1 / -1; grid-row: 1 / -1; }
.td-show-all-btn {
    position: absolute; bottom: 20px; left: 20px;
    background: #fff; border: 1px solid #222; border-radius: 8px;
    padding: 8px 16px; font-size: 14px; font-weight: 600; color: #222;
    cursor: pointer; display: flex; align-items: center; gap: 8px;
    transition: all .2s; z-index: 2;
}
.td-show-all-btn:hover { background: #f7f7f7; }
@media (max-width: 767px) {
    .td-photo-grid { height: 260px; grid-template-columns: 1fr; grid-template-rows: 1fr; }
    .td-pg-mid, .td-pg-tr, .td-pg-br { display: none; }
    .td-pg-main { grid-column: 1; grid-row: 1; }
}

/* ── Title Section ── 
.td-title-section { padding: 24px 0 20px; }
.td-title-row { display: flex; justify-content: space-between; align-items: flex-start; }
.td-title-left { flex: 1; }
.td-title-right { display: flex; gap: 10px; flex-shrink: 0; margin-left: 20px; }
.td-cat-badge {
    display: inline-block; font-size: 12px; font-weight: 600; color: #222;
    border: 1px solid #ddd; border-radius: 20px; padding: 4px 14px; margin-bottom: 10px;
}
.td-main-title { font-size: 28px; font-weight: 700; color: #222; margin: 0 0 10px; line-height: 1.3; }
.td-title-actions { display: inline-flex; gap: 8px; vertical-align: middle; margin-left: 10px; }
.td-title-actions .td-action-btn { font-size: 14px; vertical-align: middle; }
.td-title-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: 15px; color: #222; }
.td-inline-rating { display: flex; align-items: center; gap: 4px; font-weight: 600; }
.td-inline-rating i { color: #222; font-size: 13px; }
.td-dot-sep { color: #717171; }
.td-inline-location { color: #717171; text-decoration: underline; }
.td-inline-location i { color: #717171; margin-right: 2px; }
a.td-view-on-map { color: #1a73e8; font-weight: 500; text-decoration: none; }
a.td-view-on-map:hover { text-decoration: underline; opacity: .85; }
a.td-view-on-map i { color: #1a73e8; }
.td-host-row { display: flex; align-items: center; gap: 14px; margin-top: 20px; padding-top: 20px; border-top: 1px solid #ebebeb; }
.td-host-avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.td-host-avatar img { width: 100%; height: 100%; object-fit: cover; }
.td-host-avatar .initial {
    display: flex; align-items: center; justify-content: center;
    width: 100%; height: 100%; background: #222; color: #fff; font-size: 18px; font-weight: 700;
}
.td-host-text span { font-size: 13px; color: #717171; display: block; }
.td-host-text strong { font-size: 16px; color: #222; }
.td-action-btn {
    width: 36px; height: 36px; border-radius: 50%; border: 1px solid #ddd;
    background: #fff; display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 14px; color: #222; transition: all .2s;
}
.td-action-btn:hover { background: #f7f7f7; }
.td-action-btn.service-wishlist.active { color: #dc2626; border-color: #dc2626; }
.td-action-btn.service-wishlist.active i::before { content: "\f004"; font-weight: 900; }
@media (max-width: 767px) {
    .td-main-title { font-size: 22px; }
    .td-title-row { flex-direction: column; gap: 12px; }
    .td-title-right { margin-left: 0; }
}
*/
/* ── Quick Info Strip ── */
.td-info-strip {
    display: flex; flex-wrap: wrap; gap: 28px; padding: 20px 0;
    margin-bottom: 32px;
}
.td-info-item { display: flex; align-items: center; gap: 10px; }
.td-info-icon {
    width: 38px; height: 38px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0;
}
.td-info-label { font-size: 11px; text-transform: uppercase; letter-spacing: .4px; color: #717171; font-weight: 600; }
.td-info-value { font-size: 14px; font-weight: 600; color: #222; }
@media (max-width: 576px) {
    .td-info-strip { gap: 16px; }
    .td-info-item { flex: 0 0 calc(50% - 8px); }
}

/* ── Sections ── */
.td-section { margin-bottom: 36px; }
.td-section-title {
    font-size: 22px; font-weight: 700; color: #222; margin: 0 0 18px;
    padding-bottom: 0;
    display: flex; align-items: center; gap: 8px;
}
.td-section-title i { color: #038a52; font-size: 16px; }


/* ── Overview ── */
.td-overview { font-size: 16px; line-height: 1.8; color: #484848; }
.td-overview p { margin-bottom: 14px; }

/* ── Include/Exclude (Tour) ── */
.td-inc-exc { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.td-inc-head { font-size: 14px; font-weight: 700; margin: 0 0 10px; display: flex; align-items: center; gap: 6px; }
.td-inc-head.inc { color: #038a52; }
.td-inc-head.exc { color: #717171; }
.td-inc-row { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; font-size: 15px; color: #717171; }
.td-inc-row i.inc { color: #038a52; margin-top: 3px; font-size: 14px; }
.td-inc-row i.exc { color: #717171; margin-top: 3px; font-size: 14px; }
@media (max-width: 576px) { .td-inc-exc { grid-template-columns: 1fr; } }

/* ── Itinerary Timeline (Tour) ── */
.td-itin-list { position: relative; padding-left: 0; }
.td-itin-list::before {
    content: ''; position: absolute;
    left: 27px; top: 56px; bottom: 14px;
    width: 2px;
    background: linear-gradient(to bottom, #038a52 0%, #f47c04 60%, #1e293b 100%);
    border-radius: 2px;
}
.td-itin-item { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding-bottom: 28px; position: relative; }
.td-itin-item:last-child { padding-bottom: 0; }
.td-itin-label { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 1; }
.td-itin-day-badge {
    width: 56px; height: 56px; border-radius: 50%;
    background: #038a52; color: #fff;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    flex-shrink: 0; box-shadow: 0 4px 14px rgba(3,138,82,0.35);
}
.td-itin-item:nth-child(3n+2) .td-itin-day-badge { background: #f47c04; box-shadow: 0 4px 14px rgba(244,124,4,0.35); }
.td-itin-item:nth-child(3n+3) .td-itin-day-badge { background: #1e293b; box-shadow: 0 4px 14px rgba(30,41,59,0.25); }
.td-itin-day-word { font-size: 9px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.85; font-weight: 600; line-height: 1; }
.td-itin-day-num { font-size: 20px; font-weight: 700; line-height: 1.15; }
.td-itin-body { background: #fff; border: 1px solid #e9ecef; border-radius: 14px; padding: 20px 24px; box-shadow: 0 2px 14px rgba(0,0,0,.05); }
.td-itin-subtitle { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #038a52; margin-bottom: 5px; }
.td-itin-title { font-size: 16px; font-weight: 700; color: #1e293b; margin: 0 0 10px; }
.td-itin-desc { font-size: 14px; color: #64748b; line-height: 1.75; font-style: normal; }
.td-itin-desc p { margin-bottom: 6px; }
.td-itin-desc ul { padding-left: 18px; margin: 0; }
.td-itin-desc li { margin-bottom: 4px; }
/* Activities timeline list */
.td-itin-activities { list-style: none; padding: 0; margin: 0; }
.td-itin-act-row {
    display: flex; align-items: baseline; gap: 10px;
    padding: 7px 0;
    border-bottom: 1px dashed #e9ecef;
    font-size: 14px;
}
.td-itin-act-row:last-child { border-bottom: none; }
.td-itin-act-time {
    flex-shrink: 0;
    min-width: 76px;
    font-size: 12px;
    font-weight: 700;
    color: #038a52;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 6px;
    padding: 2px 8px;
    text-align: center;
    white-space: nowrap;
}
.td-itin-act-text { color: #1e293b; font-weight: 500; flex: 1; }
.td-itin-act-notes { color: #94a3b8; font-size: 13px; font-style: italic; white-space: nowrap; }
/* Plain-string activities: show a dot bullet when no time badge */
.td-itin-act-row:not(:has(.td-itin-act-time))::before {
    content: '';
    flex-shrink: 0;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #038a52;
    margin-top: 2px;
}
.td-itin-img { margin-top: 14px; border-radius: 10px; overflow: hidden; max-height: 220px; }
.td-itin-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 576px) {
    .td-itin-list::before { left: 21px; top: 44px; }
    .td-itin-item { grid-template-columns: 44px 1fr; gap: 14px; }
    .td-itin-day-badge { width: 44px; height: 44px; }
    .td-itin-day-num { font-size: 15px; }
    .td-itin-body { padding: 14px 16px; }
}

/* ── FAQ Accordion ── */
.td-faq-item { border-bottom: 1px solid #ebebeb; }
.td-faq-item:last-child { border-bottom: none; }
.td-faq-q {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 0; cursor: pointer; font-size: 16px; font-weight: 600; color: #222;
}
.td-faq-q:hover { color: #222; }
.td-faq-q .arrow { transition: transform .3s; color: #717171; font-size: 12px; }
.td-faq-item.active .td-faq-q { color: #222; }
.td-faq-item.active .td-faq-q .arrow { transform: rotate(180deg); color: #222; }
.td-faq-a { padding: 0 0 14px; font-size: 15px; line-height: 1.7; color: #484848; display: none; }
.td-faq-item.active .td-faq-a { display: block; }

/* ── Attributes ── */
.td-attr-list { display: flex; flex-wrap: wrap; gap: 10px; }
.td-attr-tag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 14px; border: 1px solid #ebebeb; border-radius: 8px;
    font-size: 14px; color: #484848;
}
.td-attr-tag i { color: #222; }
.td-attr-tag img { width: 18px; height: 18px; object-fit: contain; }

/* ── Map (inline, within content column) ── */
.td-map { border-radius: 12px; overflow: hidden; height: 360px; border: 1px solid #ebebeb; }
.td-map #map_content { height: 100%; }

/* ══════════════════════════════════════════════════════════════════════════
   MAP SECTION — Contained within 2-column layout
   ══════════════════════════════════════════════════════════════════════════ */
.td-map-fullwidth {
    padding: 0px 0 0;
    margin-top: 8px;
}
.td-map-fullwidth .td-section-title {
    margin-bottom: 6px;
}
.td-map-fullwidth .td-map-address {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 16px;
}
.td-map-fullwidth .td-map-address i {
    color: #f47c04;
    margin-right: 4px;
}
.td-map-fullwidth .td-map-canvas {
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #ebebeb;
}
.td-map-fullwidth .td-map-canvas #map_content {
    height: 100%;
    width: 100%;
}
@media (max-width: 767px) {
    .td-map-fullwidth .td-map-canvas { height: 280px; }
}

/* ── Related Items Carousel ── */
.td-related { padding: 40px 0; margin-top: 8px; }
.td-related-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.td-related-title { font-size: 22px; font-weight: 700; color: #222; margin: 0; }
.td-related-nav { display: flex; gap: 8px; }
.td-related-nav .td-nav-arrow {
    width: 40px; height: 40px; border-radius: 50%; border: 1px solid #ddd;
    background: #fff; display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 14px; color: #222; transition: all .2s; padding: 0;
}
.td-related-nav .td-nav-arrow:hover { background: #038a52; border-color: #038a52; color: #fff; }
.td-related-nav .td-nav-arrow:disabled,
.td-related-nav .td-nav-arrow.disabled { opacity: .35; cursor: default; pointer-events: none; }
.td-related-wrap { position: relative; overflow: hidden; }
.td-related-scroll {
    display: flex; gap: 20px; overflow-x: scroll; scroll-snap-type: x mandatory;
    padding-bottom: 0; -webkit-overflow-scrolling: touch; scroll-behavior: smooth;
    -ms-overflow-style: none; scrollbar-width: none;
}
.td-related-scroll::-webkit-scrollbar { height: 0 !important; display: none !important; }
.td-related-scroll > .td-related-item { flex: 0 0 280px; scroll-snap-align: start; }
.td-related-item .item-loop,
.td-related-item .tm-card {
    border-radius: 12px; overflow: hidden; border: 1px solid #ebebeb;
    height: 100%; transition: box-shadow .2s; background: #fff;
}
.td-related-item .item-loop:hover,
.td-related-item .tm-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.08); }
.td-related-item .item-loop .featured-image { height: 180px; overflow: hidden; }
.td-related-item .item-loop .featured-image img { width: 100%; height: 100%; object-fit: cover; }
.td-related-item .item-loop .item-title { font-size: 15px; font-weight: 600; }
.td-related-item .item-loop .item-title a { color: #222; text-decoration: none; }
.td-related-item .item-loop .item-title a:hover { color: #f47c04; }
/* tm-card inside related */
.td-related-item .tm-card__image { position: relative; height: 180px; overflow: hidden; }
.td-related-item .tm-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.td-related-item .tm-card:hover .tm-card__image img { transform: scale(1.05); }
.td-related-item .tm-card__image .no-image { height: 100%; display: flex; align-items: center; justify-content: center; background: #f5f5f5; color: #b0b0b0; font-size: 36px; }
.td-related-item .tm-card__badge { position: absolute; top: 10px; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 4px; z-index: 1; }
.td-related-item .tm-card__badge--category { left: 10px; background: #fff; color: #222; box-shadow: 0 1px 4px rgba(0,0,0,.1); }
.td-related-item .tm-card__badge--discount { top: auto; bottom: 10px; left: 10px; background: #f47c04; color: #fff; }
.td-related-item .tm-card__review-badge { position: absolute; bottom: 10px; left: 10px; background: rgba(0,0,0,.65); color: #fff; font-size: 12px; font-weight: 600; padding: 4px 8px; border-radius: 4px; display: flex; align-items: center; gap: 4px; }
.td-related-item .tm-card__review-badge i { color: #fbbf24; font-size: 11px; }
.td-related-item .tm-card__review-badge span { font-weight: 400; opacity: .85; }
.td-related-item .tm-card__body { padding: 14px; display: flex; flex-direction: column; }
.td-related-item .tm-card__title { font-size: 15px; font-weight: 600; margin: 0 0 6px; line-height: 1.3; }
.td-related-item .tm-card__title a { color: #222; text-decoration: none; }
.td-related-item .tm-card__title a:hover { color: #f47c04; }
.td-related-item .tm-card__location { font-size: 13px; color: #717171; display: flex; align-items: center; gap: 4px; margin-bottom: 8px; }
.td-related-item .tm-card__location i { color: #f47c04; font-size: 11px; }
.td-related-item .tm-card__divider { height: 1px; background: #ebebeb; margin: 4px 0 8px; }
.td-related-item .tm-card__specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.td-related-item .tm-card__spec { font-size: 12px; color: #717171; display: flex; align-items: center; gap: 3px; }
.td-related-item .tm-card__spec i { font-size: 10px; color: #038a52; }
.td-related-item .tm-card__footer { display: flex; justify-content: space-between; align-items: center; padding-top: 8px; border-top: 1px solid #ebebeb; margin-top: auto; }
.td-related-item .tm-card__price { display: flex; flex-direction: column; }
.td-related-item .tm-card__price-original { font-size: 12px; color: #717171; text-decoration: line-through; }
.td-related-item .tm-card__price-amount { font-size: 16px; font-weight: 700; color: #222; }
.td-related-item .tm-card__price-unit { font-size: 11px; color: #717171; }
.td-related-item .tm-card__book-btn {
    font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: 6px;
    background: #038a52; color: #fff; text-decoration: none; transition: all .2s; white-space: nowrap;
}
.td-related-item .tm-card__book-btn:hover { background: #f47c04; color: #fff; }

/* ── Sidebar (Sticky) ── */
.td-sidebar { position: sticky; top: 90px; z-index: 10; }

/* ── Enquiry modal container fix ── */
.td-enquiry-modal-container .modal { z-index: 1060 !important; }
/* Backdrop is appended to <body>, not inside the container — target it globally */
.modal-backdrop { z-index: 1050 !important; }
#enquiry_form_modal { z-index: 1060 !important; }

/* ── Booking Form Card ── */
.td-page .bc_single_book_wrap { margin-bottom: 20px; }
#bc_tour_book_app { position: relative; }
#bc_tour_book_app .daterangepicker { left: 0 !important; right: auto !important; }
.td-page .bc_single_book {
    border: 1px solid #e5e7eb; border-radius: 16px; overflow: visible;
    background: #fff; box-shadow: 0 4px 24px rgba(0,0,0,.08); position: relative;
}
.td-page .bc_single_book .form-head {
    padding: 24px 24px 18px; display: flex; flex-direction: column; gap: 12px;
    border-bottom: none; background: transparent;
}
.td-page .bc_single_book .form-head .form-head-top { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.td-page .bc_single_book .form-head .price-from-label { font-size: 13px; color: #64748b; font-weight: 400; }
.td-page .bc_single_book .form-head .price { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.td-page .bc_single_book .form-head .price .label,
.td-page .bc_single_book .form-head .price span.label { display: none; }
.td-page .bc_single_book .form-head .price .value { display: flex; align-items: baseline; gap: 6px; }
.td-page .bc_single_book .form-head .price .onsale { font-size: 15px; color: #ffffff; text-decoration: line-through; }
.td-page .bc_single_book .form-head .price .text-lg,
.td-page .bc_single_book .form-head .price .text-price { font-size: 28px !important; font-weight: 500; color: #1e293b; line-height: 1; }
.td-page .bc_single_book .form-head .price-unit { font-size: 15px; font-weight: 400; color: #64748b; }
.td-page .bc_single_book .form-head-rating {
    display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600;
    color: #1e293b; background: #fefce8; padding: 6px 12px; border-radius: 8px; width: fit-content;
}
.td-page .bc_single_book .form-head-rating i { color: #f59e0b; font-size: 13px; }
.td-page .bc_single_book .form-head-rating .rating-score { font-weight: 700; }
.td-page .bc_single_book .form-head-rating .rating-count { color: #64748b; font-weight: 400; font-size: 13px; }
/* Tabs */
.td-page .bc_single_book .nav-enquiry {
    display: flex; border-bottom: 2px solid #f1f5f9; padding: 0; margin: 0 24px;
    background: transparent; gap: 0;
}
.td-page .bc_single_book .nav-enquiry .enquiry-item {
    flex: 1; text-align: center; padding: 14px 10px; font-size: 13px; font-weight: 600;
    cursor: pointer; border-bottom: 2px solid transparent; color: #94a3b8;
    text-transform: uppercase; letter-spacing: .5px; transition: all .2s; margin-bottom: -2px;
    display: flex; align-items: center; justify-content: center; gap: 6px;
}
.td-page .bc_single_book .nav-enquiry .enquiry-item i { font-size: 14px; }
.td-page .bc_single_book .nav-enquiry .enquiry-item:hover { color: #1e293b; background: #f8fafc; }
.td-page .bc_single_book .nav-enquiry .enquiry-item.active { color: #038a52; border-bottom-color: #038a52; background: transparent; }
/* Content */
.td-page .bc_single_book .form-content { padding: 20px 24px 12px; }
.td-page .bc_single_book .form-group { margin-bottom: 0; }
.td-page .bc_single_book .form-group > label,
.td-page .bc_single_book .check-in-wrapper > label,
.td-page .bc_single_book .guest-wrapper > .flex-grow-1 > label {
    font-size: 11px !important; color: #64748b !important;
    text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; font-weight: 600 !important;
}
.td-page .bc_single_book .render { font-size: 14px; color: #1e293b; line-height: 1.4; }
.td-page .bc_single_book .check-in-render { font-size: 14px; color: #1e293b; margin-top: 2px; }
/* Date field */
.td-page .bc_single_book .form-date-field {
    border: 1.5px solid #e5e7eb; border-radius: 12px 12px 12px 12px; margin-bottom: 18px; padding-bottom: 0;
    background: #fff; transition: border-color .2s, box-shadow .2s;
}
.td-page .bc_single_book .form-date-field:hover,
.td-page .bc_single_book .form-date-field:focus-within { border-color: #038a52; box-shadow: 0 0 0 3px rgba(3,138,82,.06); }
.td-page .bc_single_book .date-wrapper {
    padding: 12px 18px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.td-page .bc_single_book .date-icon-wrap {
    width: 36px; height: 36px; border-radius: 10px; background: #f0fdf4; color: #038a52;
    display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0;
}
.td-page .bc_single_book .check-in-wrapper { flex: 1; }
.td-page .bc_single_book .date-wrapper .arrow { color: #94a3b8; font-size: 14px; transition: transform .2s; }
.td-page .bc_single_book .date-wrapper:hover .arrow { color: #1e293b; }
/* Guest selector */
.td-page .bc_single_book .form-guest-search {
    border: 1.5px solid #e5e7eb; border-radius: 12px 12px 12px 12px;
    padding: 6px 6px; margin-bottom: 20px; margin-top: 20px; transition: border-color .2s, box-shadow .2s;
}
.td-page .bc_single_book .form-guest-search:hover,
.td-page .bc_single_book .form-guest-search:focus-within { border-color: #038a52; box-shadow: 0 0 0 3px rgba(3,138,82,.06); }
.td-page .bc_single_book .guest-wrapper { padding: 8px 8px; }
.td-page .bc_single_book .guest-wrapper .render { margin-top: 2px; }
.td-page .bc_single_book .input-number-group { display: flex; align-items: center; gap: 8px; }
.td-page .bc_single_book .input-number-group i {
    font-size: 28px; cursor: pointer; color: #94a3b8; transition: all .15s;
    width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
}
.td-page .bc_single_book .input-number-group i:hover { color: #038a52; border-color: #038a52; }
.td-page .bc_single_book .input-number-group i:active { transform: scale(.92); }
.td-page .bc_single_book .input-number-group input,
.td-page .bc_single_book .input-number-group .input input {
    width: 40px; text-align: center; border: none; font-weight: 600; font-size: 16px;
    color: #1e293b; background: transparent; -moz-appearance: textfield; appearance: textfield;
}
.td-page .bc_single_book .input-number-group input::-webkit-outer-spin-button,
.td-page .bc_single_book .input-number-group input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.td-page .bc_single_book .input-number-group input:focus { outline: none; }
/* Extra prices */
.td-page .bc_single_book .form-section-group { padding: 0 24px 8px; }
.td-page .bc_single_book .form-section-group.form-group-padding { padding: 12px 24px 8px; border-top: 1px solid #f1f5f9; margin-top: 4px; }
.td-page .bc_single_book .form-section-title,
.td-page .bc_single_book h4.form-section-title {
    font-size: 12px !important; font-weight: 700; text-transform: uppercase; letter-spacing: .4px;
    color: #94a3b8; margin: 10px 0 8px; padding: 0;
}
.td-page .bc_single_book .extra-price-wrap { padding: 8px 0; font-size: 14px; color: #1e293b; }
.td-page .bc_single_book .extra-price-wrap label {
    text-transform: none !important; letter-spacing: 0 !important;
    font-size: 14px !important; font-weight: 400 !important; color: #1e293b !important; margin-bottom: 0;
}
.td-page .bc_single_book .extra-price-wrap .unit { font-weight: 500; color: #1e293b; font-size: 14px; }
.td-page .bc_single_book .extra-price-wrap input[type="checkbox"] {
    accent-color: #038a52; width: 16px; height: 16px; margin-right: 6px; vertical-align: middle; cursor: pointer;
}
.td-page .bc_single_book .extra-price-wrap .icofont-info-circle,
.td-page .bc_single_book .extra-price-wrap i[data-toggle="tooltip"] { font-size: 13px; color: #cbd5e1; margin-left: 3px; cursor: help; }
.td-page .bc_single_book .extra-price-wrap .icofont-info-circle:hover,
.td-page .bc_single_book .extra-price-wrap i[data-toggle="tooltip"]:hover { color: #64748b; }
/* Sale badge — hidden; price already shows discount */
.td-page .bc_single_book .tour-sale-box { display: none; }
/* Total */
.td-page .bc_single_book .form-section-total { padding: 18px 24px; border-top: 1px solid #f1f5f9; margin: 0; background: transparent; }
.td-page .bc_single_book .form-section-total li { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; font-size: 15px; }
.td-page .bc_single_book .form-section-total li label {
    font-size: 15px !important; font-weight: 400 !important; color: #64748b !important;
    text-transform: none !important; letter-spacing: 0 !important; text-decoration: none;
}
.td-page .bc_single_book .form-section-total li:last-child label { font-weight: 600 !important; color: #1e293b !important; }
.td-page .bc_single_book .form-section-total .price { font-weight: 700; color: #1e293b; font-size: 15px; }
/* Reserve button */
.td-page .bc_single_book .form-book .submit-group { padding: 8px 24px 12px; }
.td-page .bc_single_book .submit-group .btn,
.td-page .bc_single_book .submit-group a.btn {
    width: 100%; border-radius: 12px; padding: 16px 18px; font-size: 16px; font-weight: 700;
    background: linear-gradient(135deg, #038a52 0%, #026f42 100%) !important;
    border-color: #038a52 !important; color: #fff !important;
    transition: all .25s; display: flex; align-items: center; justify-content: center; gap: 8px;
    text-decoration: none; text-transform: uppercase; letter-spacing: .8px;
    box-shadow: none;
}
.td-page .bc_single_book .submit-group .btn:hover,
.td-page .bc_single_book .submit-group a.btn:hover {
    background: linear-gradient(135deg, #f47c04 0%, #e06b00 100%) !important;
    border-color: #f47c04 !important; box-shadow: none;
    transform: translateY(-1px);
}
.td-page .bc_single_book .submit-group .btn:active,
.td-page .bc_single_book .submit-group a.btn:active { transform: translateY(0); }
.td-page .bc_single_book .submit-group .btn .fa-lock { font-size: 12px; opacity: .7; }
.td-page .bc_single_book .submit-group .btn.btn-success {
    background: linear-gradient(135deg, #038a52 0%, #026f42 100%) !important;
    border-color: #038a52 !important;
}
.td-page .bc_single_book .submit-group .btn.disabled,
.td-page .bc_single_book .submit-group a.btn.disabled {
    opacity: .5; cursor: not-allowed; transform: none !important; box-shadow: none !important;
}
.td-page .bc_single_book .submit-group .book-note-text {
    text-align: center; font-size: 13px; color: #94a3b8; margin: 10px 0 0; font-weight: 400;
}
.td-page .bc_single_book .submit-group .alert-text { font-size: 13px; border-radius: 8px; padding: 10px 14px; margin-top: 10px; }
.td-page .bc_single_book .submit-group .alert-text.danger { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.td-page .bc_single_book .submit-group .alert-text.success { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
/* Enquiry button */
.td-page .bc_single_book .form-send-enquiry { padding: 20px 24px 24px; }
.td-page .bc_single_book .form-send-enquiry .btn {
    width: 100%; border-radius: 12px; padding: 16px; font-size: 16px; font-weight: 700;
    background: transparent; border: 2px solid #038a52; color: #038a52;
    transition: all .25s; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.td-page .bc_single_book .form-send-enquiry .btn:hover {
    background: #038a52; color: #fff; box-shadow: 0 4px 14px rgba(3,138,82,.2);
}
/* Trust Badges */
.td-page .bc_single_book .trust-badges {
    display: flex; justify-content: center; gap: 20px; padding: 16px 24px 22px;
    border-top: 1px solid #f1f5f9;
}
.td-page .bc_single_book .trust-badge-item {
    display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center;
}
.td-page .bc_single_book .trust-badge-item i {
    font-size: 18px; color: #038a52; width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: #f0fdf4; border-radius: 50%;
}
.td-page .bc_single_book .trust-badge-item span {
    font-size: 11px; font-weight: 600; color: #64748b; letter-spacing: .2px; line-height: 1.3;
}
/* Fixed date */
.td-page .bc_single_book .form-date-field .d-flex.p-2 { padding: 0 !important; }
.td-page .bc_single_book .form-date-field .py-3 { padding: 16px 18px !important; }
.td-page .bc_single_book .form-date-field .font-weight-bold { font-size: 11px; text-transform: uppercase; letter-spacing: .5px; color: #64748b; margin-bottom: 4px; font-weight: 700; }
.td-page .bc_single_book .form-date-field .border-left { border-left: 1px solid #f1f5f9 !important; }
.td-page .bc_single_book .form-date-field .border-top { border-top: 1px solid #f1f5f9 !important; }
/* Dropdown */
.td-page .bc_single_book .custom-select {
    border: 1px solid #e5e7eb; border-radius: 10px; font-size: 14px; padding: 10px 14px;
    color: #1e293b; background-color: #fff; transition: border-color .2s;
}
.td-page .bc_single_book .custom-select:focus { border-color: #038a52; box-shadow: none; }
.td-page .bc_single_book .discount-by-people .unit,
.td-page .bc_single_book .extra-price-wrap .flex-shrink-0 .unit { white-space: nowrap; }
.td-page [v-cloak] { display: none !important; }
[v-cloak] { display: none !important; }

/* ── Vendor Widget ── */
.td-page .owner-info.widget-box {
    border: 1px solid #e5e7eb; border-radius: 16px; padding: 0; margin-bottom: 18px;
    overflow: hidden; background: #fff;
}
.td-page .owner-info .owner-info-header {
    padding: 12px 20px 10px; border-bottom: 1px solid #f1f5f9;
}
.td-page .owner-info .owner-info-badge {
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px;
    color: #64748b;
}
.td-page .owner-info .media { display: flex; align-items: center; gap: 14px; padding: 18px 20px 14px; }
.td-page .owner-info .avatar-cover {
    width: 52px; height: 52px; border-radius: 50%;
    background-size: cover; background-position: center; display: block; flex-shrink: 0;
    position: relative; border: 2px solid #e5e7eb;
}
.td-page .owner-info .avatar-verified-dot {
    position: absolute; bottom: -2px; right: -2px; width: 20px; height: 20px; border-radius: 50%;
    background: #038a52; color: #fff; display: flex; align-items: center; justify-content: center;
    font-size: 9px; border: 2px solid #fff;
}
.td-page .owner-info .media-heading { font-size: 15px; font-weight: 700; margin: 0 0 2px; }
.td-page .owner-info .media-heading a { color: #1e293b; text-decoration: none; }
.td-page .owner-info .media-heading a:hover { color: #038a52; }
.td-page .owner-info .media-body p {
    font-size: 12px; color: #94a3b8; margin: 0;
    display: flex; align-items: center; gap: 4px;
}
.td-page .owner-info .media-body p i { font-size: 11px; color: #cbd5e1; }
.td-page .owner-info .btn-message-host {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: calc(100% - 40px); margin: 0 20px 18px;
    padding: 10px 16px; border-radius: 10px; font-size: 13px; font-weight: 600;
    color: #1e293b; background: #f8fafc; border: 1.5px solid #e5e7eb;
    text-decoration: none; transition: all .2s;
}
.td-page .owner-info .btn-message-host:hover {
    background: #f0fdf4; border-color: #038a52; color: #038a52;
}
.td-page .owner-info .btn-message-host i { font-size: 15px; }
/* Legacy: hide old chat button style */
.td-page .owner-info .bc_start_chat { display: none; }

/* ── Open Hours ── */
.td-page .open-hour-item {
    display: flex; justify-content: space-between; padding: 6px 0;
    font-size: 13px; color: #475569;
}
.td-page .open-hour-item.current { font-weight: 700; color: #038a52; }

/* ── Reviews ── */
.td-page .bc-reviews { padding-top: 24px; }
.td-page .bc-reviews > h3 { font-size: 22px; font-weight: 700; color: #222; margin-bottom: 24px; padding-bottom: 0; }
.td-page .bc-reviews .review-box { margin-bottom: 28px; padding: 24px; border: 1px solid #ebebeb; border-radius: 12px; background: #fafafa; }
.td-page .bc-reviews .review-box-score { text-align: left; }
.td-page .bc-reviews .review-score { font-size: 48px; font-weight: 500; color: #222; line-height: 1; }
.td-page .bc-reviews .review-score .per-total { font-size: 18px; font-weight: 400; color: #717171; }
.td-page .bc-reviews .review-score-text { font-size: 16px; font-weight: 600; color: #222; margin-top: 4px; }
.td-page .bc-reviews .review-score-base { font-size: 14px; color: #717171; margin-top: 2px; }
.td-page .bc-reviews .review-sumary .item { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.td-page .bc-reviews .review-sumary .label { font-size: 14px; font-weight: 500; color: #222; min-width: 80px; }
.td-page .bc-reviews .review-sumary .progress { flex: 1; height: 4px; border-radius: 2px; background: #ddd; }
.td-page .bc-reviews .review-sumary .percent { height: 100%; border-radius: 2px; background: #222; }
.td-page .bc-reviews .review-sumary .number { font-size: 14px; color: #717171; min-width: 20px; text-align: right; }
.td-page .bc-reviews .review-item { padding: 20px 0; border-bottom: 1px solid #ebebeb; }
.td-page .bc-reviews .review-item:last-child { border-bottom: none; }
.td-page .bc-reviews .review-item-head .media { display: flex; align-items: center; gap: 12px; }
.td-page .bc-reviews .review-item-head .avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.td-page .bc-reviews .review-item-head .avatar-text {
    width: 44px; height: 44px; border-radius: 50%; background: #222; color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700;
}
.td-page .bc-reviews .review-item-head .media-heading { font-size: 16px; font-weight: 600; color: #222; margin: 0; }
.td-page .bc-reviews .review-item-head .date { font-size: 13px; color: #717171; }
.td-page .bc-reviews .review-item-body { margin-top: 12px; }
.td-page .bc-reviews .review-item-body .title { font-size: 16px; font-weight: 600; color: #222; margin: 0 0 6px; }
.td-page .bc-reviews .review-star { display: flex; gap: 2px; list-style: none; padding: 0; margin: 0 0 8px; }
.td-page .bc-reviews .review-star li i { color: #222; font-size: 12px; }
.td-page .bc-reviews .review-item-body .detail { font-size: 15px; color: #484848; line-height: 1.7; }
/* Review form */
.td-page .bc-reviews .review-form { margin-top: 32px; padding: 28px; border: 1px solid #ebebeb; border-radius: 12px; background: #fafafa; }
.td-page .bc-reviews .review-form .title-form { font-size: 20px; font-weight: 700; color: #222; margin-bottom: 20px; }
.td-page .bc-reviews .review-form h3 { font-size: 20px; border: none; padding: 0; margin-bottom: 16px; }
.td-page .bc-reviews .review-form .form-control {
    border: 1px solid #b0b0b0; border-radius: 8px; padding: 12px 16px; font-size: 15px;
    color: #222; background: #fff;
}
.td-page .bc-reviews .review-form .form-control:focus { border-color: #222; box-shadow: none; outline: none; }
.td-page .bc-reviews .review-form .form-control::placeholder { color: #b0b0b0; }
.td-page .bc-reviews .review-form textarea.form-control { min-height: 100px; }
.td-page .bc-reviews .review-items .item { margin-bottom: 12px; }
.td-page .bc-reviews .review-items .item label { font-size: 14px; font-weight: 500; color: #222; margin-bottom: 4px; display: block; }
.td-page .bc-reviews .review-items .rates { display: flex; gap: 4px; }
.td-page .bc-reviews .review-items .rates i { font-size: 22px; cursor: pointer; transition: color .15s; color: #ddd; }
.td-page .bc-reviews .review-items .rates i.fa-star { color: #222; }
.td-page .bc-reviews .review-items .rates i:hover { color: #222; }
.td-page .bc-reviews .review-form #submit,
.td-page .bc-reviews .review-form .btn {
    background: #038a52; border-color: #038a52; color: #fff;
    border-radius: 8px; padding: 12px 32px; font-size: 16px; font-weight: 600;
    transition: all .2s; margin-top: 16px;
}
.td-page .bc-reviews .review-form #submit:hover,
.td-page .bc-reviews .review-form .btn:hover { background: #f47c04; border-color: #f47c04; }
.td-page .bc-reviews .review-form .btn-primary,
.td-page .bc-reviews .review-form .btn-success { background: #038a52; border-color: #038a52; }
.td-page .bc-reviews .review-form .btn-primary:hover,
.td-page .bc-reviews .review-form .btn-success:hover { background: #f47c04; border-color: #f47c04; }
.td-page .bc-reviews .review-pag-wrapper { margin-top: 20px; text-align: center; }
.td-page .bc-reviews .review-pag-text { font-size: 14px; color: #717171; }
.td-page .bc-reviews .review-message { margin-top: 24px; padding: 20px; border: 1px solid #ebebeb; border-radius: 12px; font-size: 15px; color: #484848; text-align: center; }
.td-page .bc-reviews .review-message a { color: #222; font-weight: 600; text-decoration: underline; }
.td-page .bc-reviews .review_upload_item { width: 100%; height: 80px; border-radius: 8px; background-size: cover; background-position: center; cursor: pointer; }
.td-page .bc-reviews .review_upload_btn { border: 2px dashed #ddd; border-radius: 8px; padding: 16px; text-align: center; cursor: pointer; }
.td-page .bc-reviews .review_upload_btn:hover { border-color: #b0b0b0; }

/* ── Rating attributes: flex row when textarea is full-width ── */
.review-items--flex { display: flex; flex-wrap: wrap; gap: 16px 32px; }
.review-items--flex .item { margin-bottom: 0; min-width: 110px; }

/* ══════════════════════════════════════════════════════════════
   REVIEW LISTING REDESIGN (.tm-reviews)
   ══════════════════════════════════════════════════════════════ */
.tm-reviews { }

/* ── Score summary banner ── */
.tm-review-summary {
    display: flex;
    align-items: center;
    gap: 32px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 28px;
}
.tm-review-score-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 110px;
    flex-shrink: 0;
}
.tm-score-big {
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
    color: #111827;
    letter-spacing: -2px;
}
.tm-score-stars { display: flex; gap: 3px; margin: 6px 0 4px; }
.tm-score-stars .fa-star     { color: #f47c04; font-size: 16px; }
.tm-score-stars .fa-star-half-o { color: #f47c04; font-size: 16px; }
.tm-score-stars .fa-star-o   { color: #ddd; font-size: 16px; }
.tm-score-count { font-size: 12px; color: #6b7280; white-space: nowrap; }

/* bars side */
.tm-review-bars-side { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.tm-bar-row { display: flex; align-items: center; gap: 10px; }
.tm-bar-label { font-size: 13px; color: #374151; min-width: 72px; text-align: right; flex-shrink: 0; }
.tm-bar-track { flex: 1; height: 8px; background: #f3f4f6; border-radius: 99px; overflow: hidden; }
.tm-bar-fill  { height: 100%; background: #038a52; border-radius: 99px; transition: width 0.4s; }
.tm-bar-count { font-size: 12px; color: #6b7280; min-width: 36px; flex-shrink: 0; }

.tm-no-reviews-yet { color: #6b7280; font-size: 14px; margin-bottom: 20px; }

/* ── Individual review cards ── */
.tm-review-list { display: flex; flex-direction: column; gap: 0; }
.tm-review-card {
    padding: 24px 0;
    border-bottom: 1px solid #f3f4f6;
}
.tm-review-card:last-child { border-bottom: none; }

.tm-review-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.tm-review-avatar-wrap { flex-shrink: 0; }
.tm-review-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    object-fit: cover;
}
.tm-review-avatar-initials {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: #038a52;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tm-review-user-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.tm-review-name { font-size: 15px; font-weight: 600; color: #111827; }
.tm-review-date { font-size: 12px; color: #9ca3af; }
.tm-review-badge {
    background: #038a52;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}
.tm-review-badge .fa { font-size: 11px; }

.tm-review-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 6px;
}
.tm-review-stars { display: flex; gap: 2px; margin-bottom: 8px; }
.tm-review-stars .fa-star     { color: #f47c04; font-size: 14px; }
.tm-review-stars .fa-star-o   { color: #ddd; font-size: 14px; }
.tm-review-text { font-size: 14px; color: #374151; line-height: 1.7; margin: 0; }

/* photo thumbnails */
.tm-review-photos { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.tm-review-photo {
    width: 64px; height: 64px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    border: 1px solid #e5e7eb;
    transition: opacity 0.2s;
}
.tm-review-photo:hover { opacity: 0.85; }
.tm-no-reviews { padding: 24px 0; color: #9ca3af; font-size: 14px; text-align: center; }

/* ── Availability calendar: live states ── */
.avail-cal-wrap { display: flex; gap: 32px; }
.avail-cal-loading { text-align: center; padding: 40px; color: #9ca3af; font-size: 24px; }
.avail-cal-month { flex: 1; }
.avail-cal-table td.avail-open { background: #f0fdf4; }
.avail-cal-table td.avail-open .avail-day { color: #038a52; font-weight: 600; }
.avail-cal-table td.avail-blocked { background: #fff7ed; }
.avail-cal-table td.avail-blocked .avail-day { color: #f47c04; font-weight: 600; text-decoration: line-through; }
.avail-cal-table td.avail-booked .avail-day { color: #9ca3af; text-decoration: line-through; }
.avail-price { display: block; font-size: 9px; color: #038a52; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.2; margin-top: 1px; }
/* legend */
.avail-cal-legend { display: flex; gap: 20px; margin-top: 16px; flex-wrap: wrap; }
.avail-legend-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #6b7280; }
.avail-legend-dot { width: 12px; height: 12px; border-radius: 3px; flex-shrink: 0; }
.avail-legend-dot.avail-open    { background: #038a52; }
.avail-legend-dot.avail-blocked { background: #f47c04; }
.avail-legend-dot.avail-booked  { background: #9ca3af; }

@media (max-width: 640px) {
    .tm-review-summary { flex-direction: column; gap: 20px; padding: 20px; }
    .tm-bar-label { min-width: 56px; font-size: 12px; }
    .avail-cal-wrap { flex-direction: column; gap: 16px; }
}

/* ── Enquiry Modal ── */
.td-page .modal .modal-content {
    border-radius: 14px; border: none;
    box-shadow: 0 25px 80px rgba(0,0,0,.18); overflow: hidden;
}
.td-page .modal .modal-header {
    border-bottom: none; padding: 22px 28px 16px;
    background: linear-gradient(135deg, #f0fdf4 0%, #fafffe 60%, #fff 100%);
}
.td-page .modal .modal-title {
    font-size: 18px; font-weight: 700; color: #1e293b;
    display: flex; align-items: center; gap: 8px;
}
.td-page .modal .modal-title::before {
    content: '\f0e0'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    font-size: 14px; color: #038a52;
    width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center;
    background: rgba(3,138,82,.08); border-radius: 8px;
}
.td-page .modal .modal-header .close {
    font-size: 20px; color: #9ca3af; opacity: 1;
    width: 32px; height: 32px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    transition: all .2s; padding: 0; margin: 0;
}
.td-page .modal .modal-header .close:hover { color: #1e293b; background: rgba(0,0,0,.04); }
.td-page .modal .modal-body { padding: 8px 28px 24px; }
.td-page .modal .modal-body .form-group { margin-bottom: 16px; }
.td-page .modal .form-control {
    border: 1.5px solid #e5e7eb; border-radius: 10px; padding: 12px 16px; font-size: 14px;
    color: #1e293b; transition: border-color .2s, box-shadow .2s;
    background: #fff;
}
.td-page .modal .form-control:focus {
    border-color: #038a52; box-shadow: 0 0 0 3px rgba(3,138,82,.08); outline: none;
    background: #fff;
}
.td-page .modal .form-control::placeholder { color: #94a3b8; }
.td-page .modal textarea.form-control { min-height: 90px; resize: vertical; }
/* intl-tel-input phone field */
.td-page .modal .iti { width: 100%; }
.td-page .modal .iti .form-control { padding-left: 52px !important; }
.td-page .modal .iti__flag-container {
    border-right: 1px solid #f1f5f9; border-radius: 10px 0 0 10px; overflow: hidden;
}
.td-page .modal .iti__selected-flag {
    padding: 0 8px 0 14px; border-radius: 10px 0 0 10px;
    transition: background .2s;
}
.td-page .modal .iti__selected-flag:hover { background: rgba(0,0,0,.02); }
.td-page .modal .iti__country-list {
    border-radius: 10px; border: 1px solid #e5e7eb;
    box-shadow: 0 8px 30px rgba(0,0,0,.12); max-height: 200px;
}
.td-page .modal .iti__country { padding: 8px 12px; font-size: 13px; }
.td-page .modal .iti__country:hover { background: #f0fdf4; }
.td-page .modal .iti__selected-dial-code { font-size: 13px; font-weight: 600; color: #374151; }
/* reCAPTCHA */
.td-page .modal .bc-recaptcha { margin-top: 6px; }
.td-page .modal .message_box { margin-top: 10px; }
.td-page .modal .message_box .alert { border-radius: 10px; font-size: 13px; padding: 10px 16px; }
/* Modal footer */
.td-page .modal .modal-footer {
    border-top: 1px solid #f1f5f9; padding: 16px 28px;
    gap: 10px; background: #fafbfc;
}
.td-page .modal .modal-footer .btn-secondary {
    border-radius: 10px; padding: 11px 22px; font-size: 13px; font-weight: 600;
    background: #fff; border: 1.5px solid #e5e7eb; color: #64748b;
    transition: all .2s;
}
.td-page .modal .modal-footer .btn-secondary:hover { background: #f8fafc; border-color: #cbd5e1; color: #475569; }
.td-page .modal .btn-primary,
.td-page .modal .btn-submit-enquiry {
    background: #038a52 !important; border-color: #038a52 !important;
    border-radius: 10px; font-weight: 700; color: #fff !important;
    padding: 11px 28px; font-size: 14px; text-transform: uppercase; letter-spacing: .3px;
    box-shadow: 0 4px 12px rgba(3,138,82,.2); transition: all .25s;
}
.td-page .modal .btn-primary:hover,
.td-page .modal .btn-submit-enquiry:hover {
    background: #f47c04 !important; border-color: #f47c04 !important;
    box-shadow: 0 4px 12px rgba(244,124,4,.25); transform: translateY(-1px);
}
.td-page .modal .btn-submit-enquiry .icon-loading { margin-left: 6px; }


/* ── Mobile Book Bar ── */
.td-page .bc-more-book-mobile {
    z-index: 99; border-top: 1px solid #ebebeb;
    box-shadow: 0 -4px 20px rgba(0,0,0,.08); background: #fff;
}
.td-page .bc-more-book-mobile .container { display: flex; align-items: center; justify-content: space-between; padding: 10px 15px; }
.td-page .bc-more-book-mobile .left .g-price { display: flex; align-items: baseline; gap: 6px; }
.td-page .bc-more-book-mobile .left .prefix .fr_text { font-size: 11px; color: #717171; text-transform: uppercase; letter-spacing: .5px; }
.td-page .bc-more-book-mobile .left .price .onsale { font-size: 13px; color: #717171; text-decoration: line-through; }
.td-page .bc-more-book-mobile .left .price .text-price { font-size: 22px; font-weight: 500; color: #222; }
.td-page .bc-more-book-mobile .right .btn-primary,
.td-page .bc-more-book-mobile .right .btn {
    background: #038a52; border-color: #038a52; color: #fff;
    border-radius: 8px; font-weight: 600; font-size: 14px;
    padding: 10px 24px; transition: all .2s;
}
.td-page .bc-more-book-mobile .right .btn:hover { background: #f47c04; border-color: #f47c04; }

/* ── Global Overrides ── */
.td-page .form-control { border-radius: 10px; }
.td-page .form-control:focus { border-color: #038a52; box-shadow: none; }
.td-page .btn-primary { background: #038a52; border-color: #038a52; color: #fff; }
.td-page .btn-primary:hover { background: #f47c04; border-color: #f47c04; color: #fff; }

/* ── Availability Calendar & Daterangepicker ── */
.td-page .daterangepicker,
.td-page .bravo_single_book .daterangepicker { border-radius: 12px; border: 1px solid #ddd; box-shadow: 0 6px 20px rgba(0,0,0,.1); }
.td-page .daterangepicker .calendar { max-width: 50%; }
.td-page .daterangepicker .drp-calendar { padding: 12px; }
.td-page .daterangepicker .calendar-table th { font-size: 12px; font-weight: 600; color: #222; padding: 8px; }
.td-page .daterangepicker .calendar-table td { font-size: 14px; font-weight: 500; padding: 8px; border-radius: 50%; height: 36px; width: 36px; text-align: center; }
.td-page .daterangepicker td.active,
.td-page .daterangepicker td.active:hover { background: #222 !important; color: #fff !important; border-radius: 50%; }
.td-page .daterangepicker td.in-range { background: #f0f0f0 !important; color: #222; }
.td-page .daterangepicker td.start-date { border-radius: 50% !important; }
.td-page .daterangepicker td.end-date { border-radius: 50% !important; }
.td-page .daterangepicker .month { font-size: 15px; font-weight: 700; color: #222; }
.td-page .daterangepicker .prev, .td-page .daterangepicker .next { font-size: 14px; color: #222; }
.td-page .daterangepicker td.available:hover { background: #f0f0f0 !important; border-radius: 50%; }
.td-page .daterangepicker td.off { color: #ddd; }

/* ══════════════════════════════════════════════════════════════════════════
   CAR-SPECIFIC OVERRIDES (when using td-page class)
   ══════════════════════════════════════════════════════════════════════════ */

/* Car details card sections */
.td-page .listingSection__wrap {
    padding: 28px 0; margin-bottom: 0;
    border-bottom: none;
}
.td-page .listingSection__wrap + .listingSection__wrap {
    border-top: 1px solid #f1f5f9;
}
.td-page .listingSection__wrap h2 {
    font-size: 22px; font-weight: 700; color: #222; margin: 0 0 4px;
}
.td-page .listing-divider-sm { height: 1px; background: #f1f5f9; margin: 16px 0; }
.td-page .listing-sub-text { font-size: 14px; color: #717171; }

/* Car title bar */
.td-page .listing-title-top {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px;
}
.td-page .listing-badge {
    display: inline-block; font-size: 12px; font-weight: 600; color: #222;
    border: 1px solid #ddd; border-radius: 20px; padding: 4px 14px;
}
.td-page .listing-title-actions { display: flex; gap: 8px; }
.td-page .listing-action-btn {
    width: 36px; height: 36px; border-radius: 50%; border: 1px solid #ddd;
    background: #fff; display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 14px; color: #222; transition: all .2s;
}
.td-page .listing-action-btn:hover { background: #f7f7f7; }
.td-page .listing-action-btn--wishlist.active { color: #dc2626; border-color: #dc2626; }
.td-page .listing-title { font-size: 28px; font-weight: 700; color: #222; margin: 0 0 10px; line-height: 1.3; }
.td-page .listing-meta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.td-page .listing-meta-row--spread { justify-content: space-between; }
.td-page .listing-meta-item { display: inline-flex; align-items: center; gap: 4px; font-size: 14px; color: #717171; }
.td-page .listing-star-icon { color: #f59e0b; }

/* Car specs */
.td-page .listing-specs-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 16px; }
.td-page .listing-specs-row .spec-item { display: flex; align-items: center; gap: 6px; font-size: 14px; color: #484848; }
.td-page .listing-specs-row .spec-item i { color: #038a52; font-size: 14px; }
.td-page .listing-specs-row .spec-item-img { width: 18px; height: 18px; object-fit: contain; }

/* Car included items */
.td-page .listing-included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.td-page .listing-included-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #484848; }
.td-page .listing-included-item i { color: #038a52; }

/* Car checklist table */
.td-page .listing-checklist-table { border: 1px solid #ebebeb; border-radius: 12px; overflow: hidden; }
.td-page .checklist-table-row { display: flex; padding: 12px 16px; border-bottom: 1px solid #f1f5f9; }
.td-page .checklist-table-row:last-child { border-bottom: none; }
.td-page .checklist-table-label { flex: 0 0 40%; font-weight: 600; font-size: 14px; color: #222; }
.td-page .checklist-table-value { flex: 1; font-size: 14px; color: #484848; }

/* Car FAQ */
.td-page .listing-faq-item { border-bottom: 1px solid #ebebeb; }
.td-page .listing-faq-item:last-child { border-bottom: none; }
.td-page .listing-faq-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 0; cursor: pointer; font-size: 16px; font-weight: 600; color: #222;
}
.td-page .listing-faq-header i { transition: transform .3s; color: #717171; font-size: 12px; }
.td-page .listing-faq-item.open .listing-faq-header i { transform: rotate(180deg); color: #222; }
.td-page .listing-faq-body { display: none; padding: 0 0 14px; font-size: 15px; line-height: 1.7; color: #484848; }
.td-page .listing-faq-item.open .listing-faq-body { display: block; }

/* Car pickup card (sidebar) */
.td-page .listing-pickup-card {
    border: 1px solid #e5e7eb; border-radius: 12px; padding: 20px; margin-bottom: 16px;
    background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.td-page .listing-pickup-card h3 { font-size: 16px; font-weight: 700; color: #222; margin: 0 0 16px; }
.td-page .pickup-timeline { position: relative; padding-left: 20px; }
.td-page .pickup-timeline::before {
    content: ''; position: absolute; left: 5px; top: 8px; bottom: 8px;
    width: 2px; background: #e5e7eb;
}
.td-page .pickup-timeline-item { position: relative; margin-bottom: 16px; }
.td-page .pickup-timeline-item:last-child { margin-bottom: 0; }
.td-page .pickup-timeline-dot {
    position: absolute; left: -20px; top: 4px; width: 12px; height: 12px;
    border-radius: 50%; background: #038a52; border: 2px solid #fff;
    box-shadow: 0 0 0 2px #038a52;
}
.td-page .pickup-timeline-label { font-size: 11px; text-transform: uppercase; letter-spacing: .5px; color: #717171; font-weight: 600; }
.td-page .pickup-timeline-address { font-size: 14px; color: #222; font-weight: 500; display: block; margin-top: 2px; }

/* Car description */
.td-page .listing-description { font-size: 16px; line-height: 1.8; color: #484848; }

/* Car availability calendar */
.td-page .listing-availability-calendar { margin-top: 12px; }
.td-page .avail-cal-wrap { display: flex; gap: 20px; }
.td-page .avail-cal-month { flex: 1; }
.td-page .avail-cal-month-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.td-page .avail-cal-month-title { font-size: 16px; font-weight: 700; color: #222; }
.td-page .avail-cal-arrow {
    width: 32px; height: 32px; border-radius: 50%; border: 1px solid #ddd;
    background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
    font-size: 12px; color: #222; transition: all .2s;
}
.td-page .avail-cal-arrow:hover { background: #f7f7f7; }
.td-page .avail-cal-arrow.disabled { opacity: .3; cursor: default; }
.td-page .avail-cal-table { width: 100%; border-collapse: collapse; }
.td-page .avail-cal-table th { font-size: 12px; font-weight: 600; color: #717171; padding: 8px; text-align: center; }
.td-page .avail-cal-table td { padding: 6px; text-align: center; font-size: 14px; color: #222; }
.td-page .avail-cal-table td span { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; }
.td-page .avail-cal-table td:hover span { background: #f0f0f0; }
.td-page .avail-cal-table td.avail-today span { font-weight: 700; border: 2px solid #222; }
.td-page .avail-cal-table td.avail-past { color: #ddd; }
.td-page .avail-cal-table td.avail-past:hover span { background: transparent; }
@media (max-width: 576px) {
    .td-page .avail-cal-wrap { flex-direction: column; }
}

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Mobile Book Bar: show on ≤991px ── */
@media (max-width: 991px) {
    .td-page .bc-more-book-mobile {
        display: flex !important;
        position: fixed;
        bottom: 0; left: 0; right: 0;
        z-index: 300;
        background: #fff;
        border-top: 1px solid #ebebeb;
        box-shadow: 0 -4px 20px rgba(0,0,0,.08);
        padding: 0;
    }
    .td-sidebar {
        position: relative !important;
        top: 0 !important;
        margin-top: 32px;
    }
    .td-map-fullwidth .td-map-canvas {
        height: 350px;
    }
    /* Pad bottom of page so fixed bar doesn't cover content */
    .td-page .bc_content { padding-bottom: 80px; }
}
@media (max-width: 767px) {
    .td-title-section { padding: 16px 0 12px; }
    .td-info-strip { padding: 16px 0; margin-bottom: 20px; }
    .td-section { margin-bottom: 24px; }
    .td-section-title { font-size: 18px; }
    .td-related { padding: 24px 0; }
    .td-map-fullwidth { padding: 32px 0 0; }

    /* Photo grid tablet intermediate */
    .td-photo-grid { height: 300px; }

    /* Title and actions stack */
    .td-main-title { font-size: 22px; }

    /* Info strip: 2 columns */
    .td-info-strip { gap: 16px; }
    .td-info-item { flex: 0 0 calc(50% - 8px); }

    /* Action buttons: minimum 44px touch target */
    .td-action-btn {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    /* Related scroll items smaller for better peek */
    .td-related-scroll > .td-related-item {
        flex: 0 0 260px;
    }

    /* Booking form tighter padding */
    .td-page .bc_single_book .form-head { padding: 16px 16px 14px; }
    .td-page .bc_single_book .form-content { padding: 14px 16px 10px; }
    .td-page .bc_single_book .date-wrapper { padding: 10px 14px; }
    .td-page .bc_single_book .form-guest-search { padding: 6px 14px; }
    .td-page .bc_single_book .form-section-group { padding: 0 16px 8px; }
    .td-page .bc_single_book .form-section-group.form-group-padding { padding: 10px 16px 8px; }
    .td-page .bc_single_book .nav-enquiry { margin: 0 16px; }
    .td-page .bc_single_book .form-section-total { padding: 14px 16px; }
    .td-page .bc_single_book .form-book .submit-group { padding: 8px 16px 8px; }
    .td-page .bc_single_book .trust-badges { padding: 12px 16px 16px; gap: 12px; }
    .td-page .bc_single_book .trust-badge-item i { width: 30px; height: 30px; font-size: 14px; }
    .td-page .bc_single_book .trust-badge-item span { font-size: 10px; }
    .td-page .bc_single_book .form-head .price .text-lg,
    .td-page .bc_single_book .form-head .price .text-price { font-size: 24px !important; }
    .td-page .owner-info .btn-message-host { width: calc(100% - 32px); margin: 0 16px 14px; }

    /* Enquiry modal responsive */
    .td-page .modal .modal-dialog { margin: 10px; }
    .td-page .modal .modal-body { padding: 8px 16px 16px; }
    .td-page .modal .modal-header { padding: 16px; }
    .td-page .modal .modal-footer { padding: 12px 16px; }

    /* Reviews compact */
    .td-page .bc-reviews .review-box { padding: 16px; }
    .td-page .bc-reviews .review-score { font-size: 36px; }
    .td-page .bc-reviews .review-form { padding: 16px; }
}

/* ── Tablet detail layout (768-991px) ── */
@media (min-width: 768px) and (max-width: 991px) {
    .td-photo-grid { height: 340px; }
    .td-main-title { font-size: 24px; }
    .td-info-strip { gap: 20px; }
    .td-info-item { flex: 0 0 calc(50% - 10px); }
}

/* ── Small mobile fixes (≤576px) ── */
@media (max-width: 576px) {
    .td-related-scroll > .td-related-item {
        flex: 0 0 240px;
    }
    .td-map-fullwidth .td-map-canvas { height: 220px; }
    /* Daterangepicker mobile overflow */
    .td-page .daterangepicker {
        max-height: 90vh;
        overflow-y: auto;
    }
    .td-page .daterangepicker .calendar {
        max-width: 100%;
    }
    /* Info strip: full width per item on very small screens */
    .td-info-item { flex: 0 0 100%; }
    /* Photo grid even shorter */
    .td-photo-grid { height: 220px; }
    /* Review summary stack */
    .td-page .bc-reviews .review-box { flex-direction: column; }
}

/* ── Prevent content overflow ── */
.td-page .bc_content { overflow-x: hidden; max-width: 100%; }
.td-page, .td-page * { box-sizing: border-box; }
.td-overview { overflow-wrap: break-word; word-wrap: break-word; }
.td-overview img { max-width: 100%; height: auto; }
.td-overview table { max-width: 100%; overflow-x: auto; display: block; }
.td-overview iframe { max-width: 100%; }

/* ═══════════════════════════════════════════════════════════════
   TRIPMANGA — New Feature Styles (2026-05)
   Sticky Nav · Sidebar Map · Guest Photos · Reviews · Coupon
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. Sticky Section Nav ── */
.td-sticky-nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.td-sticky-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.td-sticky-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.td-sticky-nav-list::-webkit-scrollbar { display: none; }
.td-snav-link {
    display: block;
    padding: 14px 16px;
    font-size: 13.5px;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
}
.td-snav-link:hover,
.td-snav-link.active {
    color: #038a52;
    border-bottom-color: #038a52;
    text-decoration: none;
}
.td-snav-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.td-snav-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 13px;
    color: #444;
    cursor: pointer;
    white-space: nowrap;
    transition: background .15s, color .15s;
}
.td-snav-btn:hover { background: #ebebeb; }
.td-snav-btn.active { color: #e74c3c; }
.td-snav-btn-label { display: none; }
@media (min-width: 768px) { .td-snav-btn-label { display: inline; } }

/* ── Anchor scroll offset (account for sticky nav height) ── */
#section-overview,
#section-included,
#section-itinerary,
#section-faqs,
#section-location,
#section-reviews,
#section-operator {
    scroll-margin-top: 60px;
}

/* ── 2. Sidebar Map ── */
.td-sidebar-map {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 16px;
}
.td-sidebar-section-title {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    padding: 14px 16px 10px;
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
}
.td-sidebar-section-title i { color: #038a52; margin-right: 6px; }
.td-map-address-sm {
    font-size: 13px;
    color: #666;
    padding: 8px 16px 0;
    margin: 0;
}
.td-map-address-sm i { color: #e74c3c; margin-right: 4px; }
.td-sidebar-map-canvas {
    height: 220px;
    margin-top: 10px;
}
.td-sidebar-map-canvas #map_content { height: 100%; }
.td-sidebar-map-link {
    display: block;
    text-align: center;
    padding: 8px;
    font-size: 12.5px;
    color: #038a52;
    border-top: 1px solid #f0f0f0;
    text-decoration: none;
}
.td-sidebar-map-link:hover { background: #f9f9f9; text-decoration: none; }

/* ── Remove old full-width map gap (sidebar map is used instead) ── */
.td-map-fullwidth { display: none !important; }

/* ── 3. Reviews — Verified Badge & Note ── */
.review-heading-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}
.review-heading-row h3 { margin: 0; }
.review-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #e8f8f1;
    color: #038a52;
    border: 1px solid #b7e4ce;
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 12.5px;
    font-weight: 600;
}
.review-verified-note {
    font-size: 12.5px;
    color: #777;
    margin-bottom: 20px;
    padding: 10px 14px;
    background: #f8f9fa;
    border-left: 3px solid #038a52;
    border-radius: 0 6px 6px 0;
    line-height: 1.5;
}
.review-verified-note i { color: #038a52; margin-right: 5px; }

/* ── 4. Past Guest Photos Section ── */
.review-guest-photos {
    margin-bottom: 24px;
    padding: 16px;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 10px;
}
.review-guest-photos-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px;
}
.review-guest-photos-title i { color: #e74c3c; margin-right: 6px; }
.review-guest-photos-count { font-weight: 400; color: #888; font-size: 13px; }
.review-guest-photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 8px;
}
.review-guest-photo-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    background: #eee;
}
.review-guest-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}
.review-guest-photo-item:hover img { transform: scale(1.05); }
.review-guest-photo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    opacity: 0;
    transition: opacity .2s;
}
.review-guest-photo-item:hover .review-guest-photo-overlay { opacity: 1; }

/* ── 5. Coupon / Voucher Field ── */
.td-coupon-wrap {
    margin: 4px 24px 0;
    border-top: 1px solid #f0f2f5;
    padding-top: 10px;
}
.td-coupon-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #038a52;
    cursor: pointer;
    padding: 8px 12px;
    background: #f0faf5;
    border: 1px solid #c6e9d8;
    border-radius: 7px;
    user-select: none;
    transition: background .15s;
}
.td-coupon-toggle:hover { background: #e2f5ec; }
.td-coupon-toggle i:first-child { font-size: 13px; }
.td-coupon-chevron { margin-left: auto; font-size: 11px; transition: transform .2s; }
.td-coupon-toggle.open { border-radius: 7px 7px 0 0; border-bottom-color: transparent; }
.td-coupon-toggle.open .td-coupon-chevron { transform: rotate(180deg); }
.td-coupon-field {
    padding: 10px 12px 12px;
    border: 1px solid #c6e9d8;
    border-top: none;
    border-radius: 0 0 7px 7px;
    background: #fff;
}
.td-coupon-field .input-group-append .btn { border-radius: 0 6px 6px 0; }
.td-coupon-msg {
    font-size: 12.5px;
    margin-top: 5px;
    padding: 6px 10px;
    border-radius: 5px;
}
.td-coupon-msg.success { background: #e8f8f1; color: #038a52; }
.td-coupon-msg.error   { background: #fff0f0; color: #c0392b; }

/* ── 6. Booking Confirm Actions ── */
.booking-confirm-actions { margin-top: 20px; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }


/* ══════════════════════════════════════════════════════════════════════
   HOTEL DETAIL PAGE (.hd-*)
   ══════════════════════════════════════════════════════════════════════ */

/* ========================================================================
   TRIPMANGA HOTEL DETAIL PAGE - PROFESSIONAL DESIGN v2
   Complete redesign with gallery, two-column layout, room booking
   ======================================================================== */

:root {
    --hd-primary: #038a52;
    --hd-primary-dark: #026a3e;
    --hd-orange: #f47c04;
    --hd-orange-dark: #d96e00;
    --hd-text: #1a1a2e;
    --hd-text-secondary: #555;
    --hd-text-muted: #999;
    --hd-border: #e5e7eb;
    --hd-bg: #f8fafb;
    --hd-white: #fff;
    --hd-radius: 8px;
    --hd-radius-sm: 4px;
    --hd-shadow: 0 1px 3px rgba(0,0,0,0.08);
    --hd-shadow-lg: 0 4px 16px rgba(0,0,0,0.1);
    --hd-transition: all 0.25s ease;
    --hd-container: 1280px;
    --hd-font: Poppins, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ========================================================================
   CONTAINER
   ======================================================================== */

/* Global Poppins font for all hotel detail elements */
.hd-gallery-hero,
.hd-nav-tabs,
.hd-container,
.hd-section,
.hd-sidebar,
.hd-pol-card,
.hd-faq-item {
    font-family: var(--hd-font);
}

.hd-container {
    max-width: var(--hd-container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================================================
   GALLERY HERO
   ======================================================================== */

.hd-gallery-hero {
    position: relative;
    max-width: var(--hd-container);
    margin: 0 auto;
    padding: 24px 20px 0;
}

.hd-gallery-grid {
    display: grid;
    gap: 4px;
    border-radius: var(--hd-radius);
    overflow: hidden;
    max-height: 460px;
}

.hd-gallery-grid.gallery-count-1 {
    grid-template-columns: 1fr;
}

.hd-gallery-grid.gallery-count-2 {
    grid-template-columns: 1fr 1fr;
}

.hd-gallery-grid.gallery-count-3 {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.hd-gallery-grid.gallery-count-3 .hd-gallery-main {
    grid-row: 1 / 3;
}

.hd-gallery-grid.gallery-count-4,
.hd-gallery-grid.gallery-count-5 {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.hd-gallery-grid.gallery-count-4 .hd-gallery-main,
.hd-gallery-grid.gallery-count-5 .hd-gallery-main {
    grid-row: 1 / 3;
}

.hd-gallery-cell {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 140px;
}

.hd-gallery-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hd-gallery-cell:hover img {
    transform: scale(1.05);
}

.hd-gallery-more {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.hd-btn-all-photos {
    position: absolute;
    bottom: 16px;
    right: 36px;
    background: rgba(255,255,255,0.95);
    border: none;
    padding: 10px 18px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    color: var(--hd-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--hd-shadow-lg);
    transition: var(--hd-transition);
    z-index: 5;
}

.hd-btn-all-photos:hover {
    background: #fff;
    transform: translateY(-2px);
}

.hd-gallery-placeholder {
    height: 300px;
    background: var(--hd-bg);
    border-radius: var(--hd-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--hd-text-muted);
}

.hd-gallery-placeholder i {
    font-size: 48px;
}

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

.hd-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.hd-lightbox.active {
    display: flex;
}

.hd-lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

.hd-lightbox-close {
    position: absolute;
    top: 16px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
}

.hd-lightbox-close:hover {
    color: var(--hd-orange);
}

.hd-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    width: 48px;
    height: 48px;
    font-size: 20px;
    cursor: pointer;
    border-radius: var(--hd-radius-sm);
    transition: var(--hd-transition);
    z-index: 10;
}

.hd-lightbox-nav:hover {
    background: rgba(255,255,255,0.3);
}

.hd-lightbox-prev { left: 16px; }
.hd-lightbox-next { right: 16px; }

.hd-lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

/* ========================================================================
   BREADCRUMBS
   ======================================================================== */

.hd-breadcrumbs {
    padding: 12px 0;
    font-size: 13px;
    color: var(--hd-text-muted);
}

.hd-breadcrumbs a {
    color: var(--hd-text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.hd-breadcrumbs a:hover {
    color: var(--hd-primary);
}

.hd-breadcrumb-sep {
    margin: 0 6px;
    color: var(--hd-border);
}

.hd-breadcrumb-current {
    color: var(--hd-text);
    font-weight: 500;
}

/* ========================================================================
   TITLE BAR
   ======================================================================== 

.hd-title-bar {
    padding: 20px 0 16px;
    border-bottom: 1px solid var(--hd-border);
}

.hd-title-bar .hd-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
}

.hd-title-left {
    flex: 1;
    min-width: 0;
}

.hd-star-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 6px;
}

.hd-star-rating i {
    font-size: 14px;
    color: #ddd;
}

.hd-star-rating i.active {
    color: #f5a623;
}

.hd-star-text {
    font-size: 12px;
    color: var(--hd-text-muted);
    margin-left: 6px;
}

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

.hd-meta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hd-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--hd-text-secondary);
    text-decoration: none;
}

.hd-meta-item i {
    color: var(--hd-primary);
    font-size: 14px;
}

.hd-meta-reviews:hover {
    color: var(--hd-primary);
}

.hd-view-on-map {
    color: var(--hd-primary);
    font-weight: 500;
    cursor: pointer;
    transition: opacity .15s;
}
.hd-view-on-map:hover {
    opacity: .8;
    text-decoration: underline;
}

.hd-review-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--hd-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    min-width: 32px;
}

.hd-title-right {
    flex-shrink: 0;
    text-align: right;
}
.hd-title-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 10px;
}

.hd-price-from {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hd-price-label {
    font-size: 12px;
    color: var(--hd-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hd-price-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--hd-orange);
    line-height: 1.1;
}

.hd-price-original {
    font-size: 16px;
    color: var(--hd-text-muted);
    margin-right: 4px;
}

.hd-price-unit {
    font-size: 13px;
    color: var(--hd-text-muted);
    font-weight: 400;
}

/* ========================================================================
   NAVIGATION TABS
   ======================================================================== */

.hd-nav-tabs {
    background: var(--hd-white);
    border-bottom: 1px solid var(--hd-border);
    z-index: 100;
    transition: box-shadow 0.2s;
    width: 100%;
}

.hd-nav-tabs.hd-nav-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    max-width: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* inner flex row: scrollable links + right-side actions */
.hd-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}

.hd-nav-scroll {
    display: flex;
    flex: 1;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.hd-nav-scroll::-webkit-scrollbar {
    display: none;
}

.hd-nav-tab {
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--hd-text-secondary);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: var(--hd-transition);
}

.hd-nav-tab:hover {
    color: var(--hd-primary);
}

.hd-nav-tab.active {
    color: var(--hd-primary);
    border-bottom-color: var(--hd-primary);
}

/* right-side actions (wishlist button) */
.hd-nav-actions {
    flex-shrink: 0;
    padding-left: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hd-nav-wishlist {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--hd-border);
    background: var(--hd-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: var(--hd-text-secondary);
    transition: var(--hd-transition);
}
.hd-nav-wishlist:hover { color: #dc2626; border-color: #dc2626; }
.hd-nav-wishlist.active { color: #dc2626; border-color: #dc2626; background: #fff0f0; }
.hd-nav-wishlist.active i::before { content: "\f004"; font-weight: 900; }


/* ========================================================================
   TWO-COLUMN LAYOUT
   ======================================================================== */

.hd-layout {
    display: flex;
    gap: 32px;
    padding: 28px 0 40px;
}

.hd-main {
    flex: 1;
    min-width: 0;
}

.hd-sidebar {
    flex: 0 0 360px;
}

.hd-sidebar-sticky {
    position: sticky;
    top: 80px;
}

/* ========================================================================
   SECTIONS
   ======================================================================== */

.hd-section {
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--hd-border);
}

.hd-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.hd-section-heading {
    font-size: 24px;
    font-weight: 500;
    color: var(--hd-text);
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 10px;
    font-family: var(--hd-font);
}

.hd-section-heading i {
    color: #f47c04;
    font-size: 24px;
}

/* ========================================================================
   HIGHLIGHTS
   ======================================================================== */

.hd-highlights {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hd-highlight-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--hd-bg);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--hd-text-secondary);
}

.hd-highlight-chip i {
    color: var(--hd-primary);
    font-size: 14px;
}

/* ========================================================================
   OVERVIEW
   ======================================================================== */

.hd-overview-content {
    font-size: 14px;
    line-height: 1.8;
    color: var(--hd-text-secondary);
}

.hd-overview-tagline {
    font-size: 16px;
    font-weight: 600;
    color: var(--hd-text);
    margin: 0 0 16px;
    line-height: 1.5;
}

.hd-neighbourhood-section {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--hd-border);
}

.hd-subsection-heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--hd-text);
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hd-subsection-heading i {
    color: var(--hd-primary);
    font-size: 16px;
}

.hd-overview-content p {
    margin: 0 0 12px;
}

.hd-overview-content ul {
    padding-left: 0;
    list-style: none;
}

.hd-overview-content ul li::before {
    content: "✓";
    color: var(--hd-primary);
    font-weight: 700;
    margin-right: 8px;
}

/* ========================================================================
   ROOM SEARCH BAR — 4-Column Professional Layout
   ======================================================================== */

.hd-room-search {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 0;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: visible;
}

.hd-room-search-field {
    padding: 12px 16px;
    border-right: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    transition: background 0.15s;
}

.hd-room-search-field:hover {
    background: #f8f9fa;
}

.hd-room-search-field:last-child {
    border-right: none;
}

.hd-room-search-field label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    color: #1a2b48;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    cursor: pointer;
}

.hd-room-search-field label i {
    color: #1a2b48;
    font-size: 12px;
}

.hd-search-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Date display text */
.hd-date-display {
    font-size: 15px;
    font-weight: 400;
    color: #1a2b48;
    line-height: 1.4;
    padding: 4px 0;
}

/* Hidden date input (for daterangepicker) */
.hd-date-trigger {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
}

/* Guests summary text */
.hd-guests-summary {
    font-size: 15px;
    font-weight: 400;
    color: #1a2b48;
    line-height: 1.4;
    padding: 4px 0;
    flex: 1;
}

.hd-guests-arrow {
    font-size: 14px;
    color: #1a2b48;
    transition: transform 0.2s;
}

.hd-guests-arrow.hd-arrow-up {
    transform: rotate(180deg);
}

/* ---- Guests Popup ---- */
.hd-guests-popup {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 340px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    z-index: 100;
    cursor: default;
    animation: hdPopupIn 0.15s ease-out;
}

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

.hd-guests-popup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.hd-guests-popup-close {
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    font-size: 18px;
    color: #1a2b48;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.15s;
    padding: 0;
}

.hd-guests-popup-close:hover {
    background: #f3f4f6;
}

.hd-guests-popup-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a2b48;
}

.hd-guests-popup-body {
    padding: 4px 20px;
    max-height: 360px;
    overflow-y: auto;
}

.hd-guests-room {
    padding: 14px 0;
    border-bottom: 1px solid #f3f4f6;
}

.hd-guests-room:last-child {
    border-bottom: none;
}

.hd-guests-room-label {
    font-size: 13px;
    font-weight: 700;
    color: #1a2b48;
    margin-bottom: 10px;
}

.hd-guests-popup .hd-guest-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: #1a2b48;
}

.hd-guest-age-note {
    font-size: 11px;
    color: #6b7280;
    margin-top: 1px;
}

.hd-guests-popup .hd-counter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hd-guests-popup .hd-counter-btn {
    width: 32px;
    height: 32px;
    border: 2px solid #d1d5db;
    background: #fff;
    border-radius: 50%;
    font-size: 18px;
    color: #1a2b48;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    line-height: 1;
    padding: 0;
}

.hd-guests-popup .hd-counter-btn:hover {
    border-color: #1a2b48;
    background: #f9fafb;
}

.hd-guests-popup .hd-counter-val {
    font-weight: 700;
    min-width: 24px;
    text-align: center;
    font-size: 16px;
    color: #1a2b48;
}

.hd-guests-room-remove {
    text-align: right;
    padding-top: 6px;
}

.hd-guests-room-remove button {
    background: none;
    border: none;
    color: #1a2b48;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

.hd-guests-room-remove button:hover {
    color: #d32f2f;
}

.hd-guests-popup-footer {
    padding: 14px 20px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hd-guests-add-room {
    background: none;
    border: none;
    color: #1a2b48;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    text-align: right;
}

.hd-guests-add-room:hover {
    color: var(--hd-primary);
}

.hd-guests-done-btn {
    width: 100%;
    padding: 14px;
    background: #1a2b48;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s;
}

.hd-guests-done-btn:hover {
    background: #0f1d33;
}

/* General inputs */
.hd-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--hd-border);
    border-radius: var(--hd-radius-sm);
    font-size: 14px;
    color: var(--hd-text);
    background: var(--hd-white);
    outline: none;
    transition: border-color 0.2s;
    font-family: var(--hd-font);
}

.hd-input:focus {
    border-color: var(--hd-primary);
}

.hd-textarea {
    resize: vertical;
    min-height: 60px;
}

/* Legacy guest controls (used elsewhere) */
.hd-guests-field .hd-guest-controls {
    background: transparent;
    border: none;
    padding: 0;
}

.hd-guest-controls {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hd-guest-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 0;
    font-size: 13px;
    color: var(--hd-text);
}

.hd-counter {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hd-counter-btn {
    width: 26px;
    height: 26px;
    border: 1px solid var(--hd-border);
    background: var(--hd-white);
    border-radius: 50%;
    font-size: 15px;
    color: var(--hd-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--hd-transition);
    line-height: 1;
    padding: 0;
}

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

.hd-counter-val {
    font-weight: 700;
    min-width: 18px;
    text-align: center;
    font-size: 14px;
}

/* Check Availability button column */
.hd-search-action-field {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px 16px;
    border-right: none;
    cursor: default;
}

.hd-search-action-field:hover {
    background: transparent;
}

.hd-btn-check {
    padding: 12px 28px;
    background: #f47c04;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--hd-transition);
    white-space: nowrap;
    justify-content: center;
    height: 100%;
}

.hd-btn-check:hover {
    background: #038a52;
}

/* ========================================================================
   ROOM LOADING
   ======================================================================== */

.hd-rooms-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 40px 0;
    color: var(--hd-text-muted);
    font-size: 14px;
}

.hd-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid var(--hd-border);
    border-top-color: var(--hd-primary);
    border-radius: 50%;
    animation: hd-spin 0.8s linear infinite;
}

@keyframes hd-spin {
    to { transform: rotate(360deg); }
}

/* ========================================================================
   ROOM CARDS — Expedia-style vertical cards in 3-column grid
   ======================================================================== */

.hd-rooms-count {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--hd-text-muted);
}

.hd-rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.hd-room-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--hd-border);
    border-radius: var(--hd-radius);
    overflow: hidden;
    background: var(--hd-white);
    transition: var(--hd-transition);
}

.hd-room-card:hover {
    border-color: var(--hd-primary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* --- Image / Carousel --- */
.hd-room-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f0f0f0;
}

.hd-room-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hd-room-card:hover .hd-room-card-image img {
    transform: scale(1.03);
}

.hd-room-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 40px;
}

/* Carousel nav arrows */
.hd-room-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.85);
    color: #222;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.2s, background 0.2s;
    padding: 0;
}

.hd-room-card:hover .hd-room-carousel-nav {
    opacity: 1;
}

.hd-room-carousel-nav:hover {
    background: #fff;
    border-color: #ddd;
}

.hd-room-carousel-prev { left: 8px; }
.hd-room-carousel-next { right: 8px; }

/* Gallery badge — bottom-right */
.hd-room-gallery-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

/* "Our lowest price" badge */
.hd-room-lowest-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--hd-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 0 0 8px 0;
    z-index: 2;
}

/* --- Card body --- */
.hd-room-card-body {
    flex: 1;
    padding: 16px 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
}

.hd-room-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--hd-text);
    margin: 0 0 4px;
    line-height: 1.3;
}

.hd-room-category-badge {
    display: inline-block;
    align-self: flex-start;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    background: #f47c04;
    border: none;
    border-radius: 4px;
    padding: 2px 10px;
    margin-bottom: 8px;
    text-transform: capitalize;
}

.hd-room-description {
    font-size: 13px;
    color: var(--hd-text-secondary);
    line-height: 1.5;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hd-room-modal-description {
    font-size: 14px;
    color: var(--hd-text-secondary);
    line-height: 1.7;
    margin: 0;
    padding: 0 28px 20px;
    border-bottom: 1px solid #f1f5f9;
}

.hd-room-modal-description p {
    margin: 0 0 8px;
}

.hd-room-modal-description p:last-child {
    margin-bottom: 0;
}

/* --- Feature list (vertical, icon + text per row) --- */
.hd-room-feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.hd-room-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--hd-text-secondary);
    line-height: 1.4;
}

.hd-room-feature-item i {
    flex-shrink: 0;
    width: 16px;
    text-align: center;
    color: var(--hd-primary);
    font-size: 13px;
}

/* "More details" link */
.hd-room-more-details {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--hd-text);
    margin-top: 12px;
    transition: color 0.2s;
}

.hd-room-more-details:hover {
    color: var(--hd-primary);
}

.hd-room-more-details i {
    font-size: 10px;
}

/* --- Card Footer (price + reserve) --- */
.hd-room-card-footer {
    padding: 12px 16px 16px;
    border-top: 1px solid var(--hd-border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hd-room-footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.hd-room-availability {
    flex-shrink: 0;
}

.hd-room-left-text {
    font-size: 12px;
    font-weight: 600;
    color: #d32f2f;
}

.hd-room-pricing {
    text-align: right;
}

.hd-room-price-amount {
    font-size: 22px;
    font-weight: 500;
    color: var(--hd-text);
}

.hd-room-price-amount .unit {
    font-size: 12px;
    font-weight: 400;
    color: var(--hd-text-muted);
}

/* Room select (inline) */
.hd-room-select-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.hd-room-select {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hd-select {
    padding: 8px 12px;
    border: 1px solid var(--hd-border);
    border-radius: var(--hd-radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--hd-text);
    background: var(--hd-white);
    cursor: pointer;
    outline: none;
}

.hd-select:focus {
    border-color: var(--hd-primary);
}

.hd-room-select-label {
    font-size: 12px;
    color: var(--hd-text-muted);
    white-space: nowrap;
}

/* Book button */
.hd-room-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 10px 16px;
    background: #038a52;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
}

.hd-room-book-btn:hover {
    background: #f47c04;
    color: #fff;
}

.hd-room-book-btn:disabled,
.hd-room-book-btn.disabled {
    background: #d1d5db;
    cursor: not-allowed;
}

.hd-room-footer-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
    
}

/* Sold out */
.hd-room-sold-out {
    text-align: right;
}

.hd-room-sold-out span {
    font-size: 14px;
    font-weight: 700;
    color: #d32f2f;
}

/* No rooms */
.hd-no-rooms {
    text-align: center;
    padding: 32px;
    color: var(--hd-text-muted);
}

.hd-no-rooms i {
    font-size: 32px;
    display: block;
    margin-bottom: 8px;
}

/* "+N more amenities" link on room card */
.hd-room-feature-more {
    color: var(--hd-primary) !important;
    font-weight: 600;
    font-size: 12px !important;
    cursor: pointer;
}

.hd-room-feature-more i {
    font-size: 10px !important;
    color: var(--hd-primary) !important;
}

/* ========================================================================
   ROOM INFORMATION MODAL — Premium Slide-in Panel
   ======================================================================== */

/* Overlay with frosted-glass backdrop */
/* Hidden by default — Vue's v-if controls visibility once mounted */
[v-if].hd-room-modal-overlay,
.hd-room-modal-overlay[v-if] { display: none; }

.hd-room-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    justify-content: flex-end;
    animation: hd-modal-fade-in 0.25s ease-out;
}

@keyframes hd-modal-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Modal panel — elegant slide from right */
.hd-room-modal {
    width: 100%;
    max-width: 700px;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.18);
    animation: hd-modal-slide-in 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes hd-modal-slide-in {
    from { transform: translateX(100%); opacity: 0.7; }
    to   { transform: translateX(0);    opacity: 1; }
}

/* ── Header ── */
.hd-room-modal-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    background: linear-gradient(135deg, #1a2b48 0%, #0f3a2e 100%);
    flex-shrink: 0;
}

.hd-room-modal-close {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.12);
    font-size: 22px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
    padding: 0;
    flex-shrink: 0;
}

.hd-room-modal-close:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.4);
}

.hd-room-modal-title {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    letter-spacing: 0.01em;
}

/* ── Scrollable body ── */
.hd-room-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    scroll-behavior: smooth;
}

.hd-room-modal-body::-webkit-scrollbar {
    width: 6px;
}

.hd-room-modal-body::-webkit-scrollbar-track {
    background: transparent;
}

.hd-room-modal-body::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

.hd-room-modal-body::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* ── Gallery ── */
.hd-room-modal-gallery {
    width: 100%;
    background: #111827;
}

.hd-room-modal-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.hd-room-modal-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* ── Carousel nav buttons ── */
.hd-room-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    color: #1a2b48;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 0;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.hd-room-modal-nav:hover {
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    transform: translateY(-50%) scale(1.05);
}

.hd-room-modal-nav-prev { left: 14px; }
.hd-room-modal-nav-next { right: 14px; }

/* ── Room name ── */
.hd-room-modal-name {
    font-size: 24px;
    font-weight: 700;
    color: #1a2b48;
    margin: 0;
    padding: 24px 28px 0;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

/* ── Top amenities — 3-column highlight grid ── */
.hd-room-modal-top-amenities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 20px 28px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    background: #fafbfc;
}

.hd-room-modal-amenity-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 16px 10px;
    border-bottom: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    transition: background 0.2s;
}

.hd-room-modal-amenity-chip:hover {
    background: #f0fdf4;
}

.hd-room-modal-amenity-chip:nth-child(3n) {
    border-right: none;
}

.hd-room-modal-amenity-chip:nth-last-child(-n+3) {
    border-bottom: none;
}

.hd-room-modal-amenity-chip:last-child {
    border-bottom: none;
}

.hd-room-modal-amenity-chip i {
    font-size: 22px;
    color: #038a52;
}

.hd-room-modal-amenity-chip span {
    font-size: 12px;
    color: #374151;
    line-height: 1.3;
    font-weight: 500;
}

/* ── Room specs list ── */
.hd-room-modal-specs {
    list-style: none;
    padding: 0 28px;
    margin: 0 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
}

.hd-room-modal-specs li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #1a2b48;
    line-height: 1.4;
    padding: 8px 12px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #f1f5f9;
}

.hd-room-modal-specs li i {
    width: 20px;
    text-align: center;
    font-size: 16px;
    color: #038a52;
    flex-shrink: 0;
}

/* ── Room amenities categorized section ── */
.hd-room-modal-amenities-section {
    padding: 0 28px 24px;
}

.hd-room-modal-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a2b48;
    margin: 0 0 20px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
    letter-spacing: -0.01em;
}

.hd-room-modal-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.hd-room-modal-category {
    background: #fafbfc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.hd-room-modal-category:hover {
    border-color: #c7d2fe;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hd-room-modal-cat-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f1f5f9;
}

.hd-room-modal-cat-header i {
    font-size: 18px;
    color: #038a52;
}

.hd-room-modal-cat-header strong {
    font-size: 14px;
    font-weight: 700;
    color: #1a2b48;
}

.hd-room-modal-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hd-room-modal-cat-list li {
    font-size: 13px;
    color: #374151;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hd-room-modal-cat-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #038a52;
    flex-shrink: 0;
}

/* ── Portal per-room amenities list ── */
.hd-room-modal-portal-amenities {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.hd-room-modal-portal-amenities li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #374151;
    line-height: 1.5;
    padding: 6px 10px;
    background: #f8fafc;
    border-radius: 6px;
}

.hd-room-modal-portal-amenities li i {
    color: #038a52;
    font-size: 14px;
    flex-shrink: 0;
}

/* ── Room options — booking card ── */
.hd-room-modal-options {
    padding: 0 28px 28px;
}

.hd-room-modal-options-card {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px;
    background: linear-gradient(135deg, #fafbfc 0%, #f0fdf4 100%);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.hd-room-modal-options-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 16px;
}

.hd-room-modal-avail {
    flex-shrink: 0;
}

.hd-room-modal-price-row {
    text-align: right;
}

.hd-room-modal-price {
    font-size: 26px;
    font-weight: 700;
    color: #1a2b48;
}

.hd-room-modal-price .unit {
    font-size: 13px;
    font-weight: 400;
    color: #6b7280;
}

.hd-room-modal-reserve-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hd-room-modal-reserve-btn {
    flex: 1;
    padding: 14px 0;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #038a52 0%, #027a48 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    transition: all 0.25s;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 8px rgba(3, 138, 82, 0.2);
}

.hd-room-modal-reserve-btn:hover {
    background: linear-gradient(135deg, #027a48 0%, #016a3e 100%);
    box-shadow: 0 4px 16px rgba(3, 138, 82, 0.3);
    transform: translateY(-1px);
}

.hd-room-modal-nocharge {
    text-align: center;
    font-size: 12px;
    color: #6b7280;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.hd-room-modal-nocharge::before {
    content: '🔒';
    font-size: 11px;
}

/* ── Modal mobile responsive ── */
@media (max-width: 768px) {
    .hd-room-modal {
        max-width: 100%;
    }

    .hd-room-modal-name {
        font-size: 20px;
        padding: 18px 18px 0;
    }

    .hd-room-modal-top-amenities {
        grid-template-columns: repeat(2, 1fr);
        margin: 16px 18px;
    }

    .hd-room-modal-amenity-chip:nth-child(3n) {
        border-right: 1px solid #e5e7eb;
    }

    .hd-room-modal-amenity-chip:nth-child(2n) {
        border-right: none;
    }

    .hd-room-modal-specs {
        padding: 0 18px;
        grid-template-columns: 1fr;
    }

    .hd-room-modal-amenities-section {
        padding: 0 18px 18px;
    }

    .hd-room-modal-categories {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hd-room-modal-options {
        padding: 0 18px 18px;
    }
}

/* ========================================================================
   EXTRA SERVICES
   ======================================================================== */

/* ── Reserve button (replaces per-card Book Now + rooms dropdown) ── */
.hd-room-reserve-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 10px 16px;
    background: #fff;
    color: #038a52;
    border: 2px solid #038a52;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.hd-room-reserve-btn:hover { background: #f0fdf4; }
.hd-room-reserve-btn.is-selected { background: #038a52; color: #fff; border-color: #038a52; }
.hd-room-reserve-btn.is-selected:hover { background: #027040; }
.hd-room-sold-badge { text-align: center; padding: 10px; font-size: 13px; color: #9ca3af; font-weight: 600; }

/* ── Rooms counter row in Guests popup ── */
.hd-guest-row--rooms {
    padding: 12px 0;
    border-bottom: none;
    margin-bottom: 0;
}
.hd-guest-row-label { font-size: 15px; font-weight: 600; color: #111827; }
.hd-guests-popup-divider { height: 1px; background: #f3f4f6; margin: 4px 0 8px; }

/* ── Additional Services in sidebar ── */
.hd-extra-services--sidebar {
    margin: 0 0 16px;
    padding: 14px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
}
.hd-extra-services--sidebar .hd-extra-title { font-size: 13px; color: #374151; }
.hd-extra-item-top { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.hd-extra-breakdown { width: 100%; padding: 3px 0 6px 24px; }
.hd-extra-formula { font-size: 12px; color: #6b7280; }
.hd-extra-formula strong { color: #038a52; font-weight: 700; }
.hd-extra-subtotal { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; padding-top: 10px; border-top: 2px solid #e5e7eb; }
.hd-extra-subtotal-label { font-size: 13px; font-weight: 700; color: #111827; }
.hd-extra-subtotal-amount { font-size: 14px; font-weight: 800; color: #038a52; }

.hd-extra-services {
    margin-top: 16px;
    padding: 16px;
    background: var(--hd-bg);
    border-radius: var(--hd-radius);
}

.hd-extra-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--hd-text);
    margin: 0 0 12px;
}

.hd-extra-item {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
    border-bottom: 1px solid var(--hd-border);
}

.hd-extra-item:last-child {
    border-bottom: none;
}

.hd-extra-check {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
}

.hd-extra-check input[type="checkbox"] {
    accent-color: var(--hd-primary);
    width: 16px;
    height: 16px;
}

.hd-extra-price {
    font-size: 13px;
    font-weight: 600;
    color: var(--hd-orange);
}

/* ========================================================================
   AMENITIES GRID (Categorized)
   ======================================================================== */

.hd-amenities-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 32px;
}

.hd-amenity-category {
    min-width: 0;
}

.hd-amenity-cat-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--hd-text);
    margin: 0 0 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--hd-border);
}

.hd-amenity-cat-items {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hd-amenity-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 13px;
    color: var(--hd-text-secondary);
}

.hd-amenity-item i {
    color: var(--hd-primary);
    font-size: 15px;
    flex-shrink: 0;
}

/* ========================================================================
   POLICIES
   ======================================================================== */

/* Legacy (keep for fallback) */
.hd-policies-list { background: transparent; }
.hd-policy-row { display: grid; grid-template-columns: 160px 1fr; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--hd-border); font-size: 13px; }
.hd-policy-row:last-child { border-bottom: none; }
.hd-policy-key { font-weight: 600; color: var(--hd-text); }
.hd-policy-value { color: var(--hd-text-secondary); line-height: 1.5; }

/* New policy card grid */
.hd-pol-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.hd-pol-card {
    display: flex;
    gap: 16px;
    background: #fafbfc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    transition: box-shadow .2s;
}
.hd-pol-card:hover {
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.hd-pol-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}
.hd-pol-card-body {
    flex: 1;
    min-width: 0;
}
.hd-pol-card-body h4 {
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
}
.hd-pol-tag {
    display: inline-block;
    background: #f0fdf4;
    color: #038a52;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid #bbf7d0;
    margin-bottom: 8px;
}
.hd-pol-rich {
    font-size: 13px;
    line-height: 1.65;
    color: #334155;
    margin-bottom: 6px;
}
.hd-pol-rich:last-child { margin-bottom: 0; }
.hd-pol-rich p { margin: 0 0 6px; }
.hd-pol-rich ul,
.hd-pol-rich ol { margin: 4px 0 8px 18px; padding: 0; }
.hd-pol-rich li { margin-bottom: 2px; }
.hd-pol-muted {
    color: #64748b;
    font-style: italic;
}
.hd-pol-times {
    display: flex;
    gap: 24px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.hd-pol-time-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hd-pol-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #94a3b8;
}
.hd-pol-val {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
}
.hd-pol-val small {
    font-weight: 400;
    font-size: 12px;
    color: #64748b;
}
.hd-pol-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    background: #f1f5f9;
    color: #475569;
    padding: 4px 10px;
    border-radius: 6px;
    margin: 3px 4px 3px 0;
}
.hd-pol-badge-green {
    background: #f0fdf4;
    color: #038a52;
}
.hd-pol-inline {
    font-size: 13px;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 4px;
}
.hd-pol-inline:last-child { margin-bottom: 0; }
.hd-pol-inline strong {
    color: #1e293b;
}
.hd-pol-rule {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #334155;
    padding: 5px 0;
}
.hd-pol-rule i {
    width: 20px;
    text-align: center;
    color: #64748b;
    font-size: 14px;
}
.hd-pol-sub {
    font-size: 13px;
    color: #475569;
    margin: 8px 0 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.hd-pol-sub:first-child { margin-top: 0; }
.hd-pol-sub i { color: #94a3b8; font-size: 13px; }

/* ========================================================================
   FAQs ACCORDION
   ======================================================================== */

.hd-faq-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: start;
}
.hd-faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow .2s;
}
.hd-faq-item:hover {
    box-shadow: 0 1px 8px rgba(0,0,0,.05);
}
.hd-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    text-align: left;
    line-height: 1.4;
    outline: none;
}
.hd-faq-q:focus,
.hd-faq-q:focus-visible {
    outline: none;
    box-shadow: none;
}
.hd-faq-q:hover { color: #f47c04; }
.hd-faq-arrow {
    font-size: 12px;
    color: #94a3b8;
    transition: transform .25s;
    flex-shrink: 0;
}
.hd-faq-item.open .hd-faq-arrow {
    transform: rotate(180deg);
}
.hd-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}
.hd-faq-item.open .hd-faq-a {
    max-height: 600px;
}
.hd-faq-a-inner {
    padding: 0 18px 16px;
    font-size: 13px;
    line-height: 1.65;
    color: #475569;
    border-top: 1px solid #f1f5f9;
    padding-top: 12px;
}
.hd-faq-a-inner p { margin: 0 0 6px; }
.hd-faq-a-inner ul,
.hd-faq-a-inner ol { margin: 4px 0 8px 18px; padding: 0; }
.hd-faq-a-inner li { margin-bottom: 2px; }

/* ========================================================================
   SURROUNDING AREA — Tabbed Layout
   ======================================================================== */

/* Legacy classes (keep for backward compat) */
.hd-surrounding-list { display: flex; flex-direction: column; gap: 8px; }
.hd-surrounding-item { padding: 10px 12px; background: var(--hd-bg); border-radius: var(--hd-radius-sm); }
.hd-surrounding-name { font-size: 13px; font-weight: 600; color: var(--hd-text); display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.hd-surrounding-name i { color: var(--hd-primary); }
.hd-surrounding-distance { font-size: 12px; color: var(--hd-primary); font-weight: 500; }
.hd-surrounding-desc { font-size: 12px; color: var(--hd-text-secondary); margin: 4px 0 0; line-height: 1.5; }

/* Area description */
.hd-surr-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #475569;
    margin: 0 0 20px;
    padding: 14px 18px;
    background: #f8fafc;
    border-left: 3px solid var(--hd-primary);
    border-radius: 0 8px 8px 0;
}

/* Category tab bar */
.hd-surr-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0;
}
.hd-surr-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: color .2s, border-color .2s;
    white-space: nowrap;
    font-family: var(--hd-font);
}
.hd-surr-tab:hover {
    color: #1e293b;
}
.hd-surr-tab:focus, .hd-surr-tab:focus-visible {
    outline: none;
    box-shadow: none;
}
.hd-surr-tab.active {
    color: var(--hd-primary);
    border-bottom-color: var(--hd-primary);
}
/* Unique category tab colors */
.hd-surr-tab[data-surr-cat="attractions"].active { color: #3b82f6; border-bottom-color: #3b82f6; }
.hd-surr-tab[data-surr-cat="transport"].active { color: #6366f1; border-bottom-color: #6366f1; }
.hd-surr-tab[data-surr-cat="dining"].active { color: #f47c04; border-bottom-color: #f47c04; }
.hd-surr-tab[data-surr-cat="shopping"].active { color: #ec4899; border-bottom-color: #ec4899; }
.hd-surr-tab[data-surr-cat="nature"].active { color: #22c55e; border-bottom-color: #22c55e; }
.hd-surr-tab[data-surr-cat="health"].active { color: #ef4444; border-bottom-color: #ef4444; }
.hd-surr-tab[data-surr-cat="business"].active { color: #8b5cf6; border-bottom-color: #8b5cf6; }
.hd-surr-tab[data-surr-cat="other"].active { color: #64748b; border-bottom-color: #64748b; }
.hd-surr-tab[data-surr-cat="attractions"].active .hd-surr-tab-count { background: #eff6ff; color: #3b82f6; }
.hd-surr-tab[data-surr-cat="transport"].active .hd-surr-tab-count { background: #eef2ff; color: #6366f1; }
.hd-surr-tab[data-surr-cat="dining"].active .hd-surr-tab-count { background: #fff7ed; color: #f47c04; }
.hd-surr-tab[data-surr-cat="shopping"].active .hd-surr-tab-count { background: #fdf2f8; color: #ec4899; }
.hd-surr-tab[data-surr-cat="nature"].active .hd-surr-tab-count { background: #f0fdf4; color: #22c55e; }
.hd-surr-tab[data-surr-cat="health"].active .hd-surr-tab-count { background: #fef2f2; color: #ef4444; }
.hd-surr-tab[data-surr-cat="business"].active .hd-surr-tab-count { background: #f5f3ff; color: #8b5cf6; }
.hd-surr-tab[data-surr-cat="other"].active .hd-surr-tab-count { background: #f8fafc; color: #64748b; }
.hd-surr-tab-icon {
    font-size: 16px;
    line-height: 1;
}
.hd-surr-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    background: #f1f5f9;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
    padding: 0 5px;
}
.hd-surr-tab.active .hd-surr-tab-count {
    background: #ecfdf5;
    color: var(--hd-primary);
}

/* Place cards grid */
.hd-surr-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.hd-surr-place {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: #fafbfc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    transition: box-shadow .2s, border-color .2s;
}
.hd-surr-place.has-image {
    flex-direction: column;
    gap: 0;
    padding: 0;
    overflow: hidden;
}
.hd-surr-place.has-image .hd-surr-place-info {
    padding: 12px 16px;
}
.hd-surr-place:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.hd-surr-place-icon {
    font-size: 22px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border-radius: 10px;
    flex-shrink: 0;
}
.hd-surr-place-info {
    flex: 1;
    min-width: 0;
}
.hd-surr-place-name {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.3;
}
.hd-surr-place-dist {
    font-size: 12px;
    color: var(--hd-primary);
    font-weight: 500;
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.hd-surr-place-dist i {
    font-size: 11px;
    color: #94a3b8;
}
.hd-surr-place-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 10px;
}
.hd-surr-place-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.hd-surr-place:hover .hd-surr-place-img img {
    transform: scale(1.05);
}
.hd-surr-place-desc {
    font-size: 12px;
    color: #64748b;
    line-height: 1.6;
    margin-top: 6px;
}

/* ========================================================================
   MAP
   ======================================================================== */

.hd-location-address {
    font-size: 13px;
    color: var(--hd-text-secondary);
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hd-location-address i {
    color: var(--hd-primary);
}

.hd-map-container {
    height: 320px;
    border-radius: var(--hd-radius);
    overflow: hidden;
    background: #eee;
}

.hd-map-container #map_content {
    width: 100%;
    height: 100%;
}

/* ========================================================================
   REVIEWS
   ======================================================================== */

.hd-review-summary {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--hd-bg);
    border-radius: var(--hd-radius);
}

.hd-review-score-box {
    flex: 0 0 120px;
    text-align: center;
    padding: 16px;
    background: linear-gradient(135deg, var(--hd-primary) 0%, var(--hd-primary-dark) 100%);
    border-radius: var(--hd-radius);
    color: #fff;
}

.hd-review-number {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.hd-review-label {
    font-size: 13px;
    font-weight: 500;
    margin-top: 4px;
    opacity: 0.9;
}

.hd-review-count {
    font-size: 11px;
    opacity: 0.7;
    margin-top: 4px;
}

.hd-review-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.hd-review-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hd-review-bar-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--hd-text-secondary);
    min-width: 40px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.hd-review-bar-label i {
    color: #f5a623;
    font-size: 11px;
}

.hd-review-bar-track {
    flex: 1;
    height: 8px;
    background: var(--hd-border);
    border-radius: 4px;
    overflow: hidden;
}

.hd-review-bar-fill {
    height: 100%;
    background: var(--hd-primary);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.hd-review-bar-count {
    font-size: 12px;
    color: var(--hd-text-muted);
    min-width: 20px;
    text-align: right;
}

.hd-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hd-review-item {
    padding: 16px;
    background: var(--hd-white);
    border: 1px solid var(--hd-border);
    border-radius: var(--hd-radius);
}

.hd-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.hd-review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--hd-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hd-text-muted);
    font-size: 20px;
    flex-shrink: 0;
}

.hd-review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hd-review-meta {
    flex: 1;
}

.hd-review-author {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--hd-text);
}

.hd-review-date {
    font-size: 12px;
    color: var(--hd-text-muted);
}

.hd-review-rating-badge {
    background: var(--hd-primary);
    color: #fff;
    padding: 4px 10px;
    border-radius: var(--hd-radius-sm);
    font-size: 13px;
    font-weight: 700;
}

.hd-review-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--hd-text);
    margin: 0 0 6px;
}

.hd-review-text {
    font-size: 13px;
    color: var(--hd-text-secondary);
    line-height: 1.7;
    margin: 0;
}

.hd-review-pagination {
    margin-top: 16px;
    text-align: center;
}

/* ========================================================================
   SIDEBAR - BOOKING CARD
   ======================================================================== */

.hd-booking-card {
    background: var(--hd-white);
    border: 1px solid var(--hd-border);
    border-radius: var(--hd-radius);
    padding: 20px;
    box-shadow: var(--hd-shadow);
    margin-bottom: 16px;
}

.hd-booking-price-header {
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--hd-border);
}

.hd-booking-price-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--hd-text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.hd-booking-price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.hd-booking-price-old {
    font-size: 14px;
    color: var(--hd-text-muted);
}

.hd-booking-price-current {
    font-size: 28px;
    font-weight: 700;
    color: var(--hd-orange);
}

.hd-booking-price-per {
    font-size: 13px;
    color: var(--hd-text-muted);
}

/* Booking Summary */
.hd-booking-summary {
    margin-bottom: 16px;
    padding: 12px;
    background: var(--hd-bg);
    border-radius: var(--hd-radius-sm);
}

.hd-summary-line {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 13px;
    color: var(--hd-text-secondary);
}

.hd-summary-total {
    display: flex;
    justify-content: space-between;
    padding: 10px 0 0;
    margin-top: 8px;
    border-top: 1px solid var(--hd-border);
    font-size: 15px;
    font-weight: 700;
    color: var(--hd-text);
}

.hd-total-amount {
    color: var(--hd-orange);
}

.hd-deposit-info {
    display: flex;
    justify-content: space-between;
    padding: 6px 0 0;
    font-size: 12px;
    color: var(--hd-primary);
    font-weight: 500;
}

/* Buttons */
.hd-booking-form {
    margin-bottom: 0;
}

.hd-booking-message {
    padding: 10px;
    border-radius: var(--hd-radius-sm);
    font-size: 13px;
    margin-bottom: 8px;
}

.hd-booking-message.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.hd-booking-message.success {
    background: #f0fdf4;
    color: var(--hd-primary);
    border: 1px solid #bbf7d0;
}

.hd-btn-book {
    width: 100%;
    padding: 14px;
    background: var(--hd-primary);
    color: #fff;
    border: none;
    border-radius: var(--hd-radius-sm);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--hd-transition);
}

.hd-btn-book:hover:not(:disabled) {
    background: var(--hd-primary-dark);
}

.hd-btn-book:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ========================================================================
   ENQUIRY
   ======================================================================== */

.hd-enquiry-section {
    margin-top: 12px;
}

.hd-enquiry-divider {
    text-align: center;
    position: relative;
    margin: 12px 0;
}

.hd-enquiry-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--hd-border);
}

.hd-enquiry-divider span {
    position: relative;
    background: var(--hd-white);
    padding: 0 12px;
    font-size: 12px;
    color: var(--hd-text-muted);
}

.hd-btn-enquiry {
    width: 100%;
    padding: 12px;
    background: transparent;
    color: var(--hd-primary);
    border: 1px solid var(--hd-primary);
    border-radius: var(--hd-radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--hd-transition);
}

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

.hd-enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hd-btn-enquiry-submit {
    width: 100%;
    padding: 12px;
    background: var(--hd-primary);
    color: #fff;
    border: none;
    border-radius: var(--hd-radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--hd-transition);
}

.hd-btn-enquiry-submit:hover:not(:disabled) {
    background: var(--hd-primary-dark);
}

.hd-btn-enquiry-submit:disabled {
    opacity: 0.5;
}

.hd-enquiry-success {
    text-align: center;
    padding: 16px;
    color: var(--hd-primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.hd-enquiry-success i {
    font-size: 20px;
}

/* ========================================================================
   HOST CARD
   ======================================================================== */

.hd-host-card {
    background: var(--hd-white);
    border: 1px solid var(--hd-border);
    border-radius: var(--hd-radius);
    padding: 16px;
}

.hd-host-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hd-host-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--hd-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hd-text-muted);
    font-size: 22px;
    flex-shrink: 0;
}

.hd-host-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hd-host-label {
    font-size: 11px;
    color: var(--hd-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hd-host-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--hd-text);
}

.hd-host-since {
    font-size: 11px;
    color: var(--hd-text-muted);
    margin-top: 2px;
}

.hd-host-bio {
    font-size: 13px;
    line-height: 1.6;
    color: var(--hd-text-secondary);
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--hd-border);
}

.hd-host-details {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hd-host-detail-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--hd-text-secondary);
}

.hd-host-detail-row i {
    color: var(--hd-primary);
    font-size: 14px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.hd-host-detail-row a {
    color: var(--hd-primary);
    text-decoration: none;
}

.hd-host-detail-row a:hover {
    color: var(--hd-orange);
}

/* Online Presence Section */
.hd-host-presence {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--hd-border);
}

.hd-host-presence-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--hd-text-muted);
    margin-bottom: 12px;
}

.hd-host-presence-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hd-presence-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    transition: var(--hd-transition);
}

.hd-presence-icon:hover {
    transform: translateY(-2px);
}

.hd-presence-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: var(--hd-transition);
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.hd-presence-icon:hover .hd-presence-circle {
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transform: scale(1.08);
}

.hd-presence-circle i {
    color: #fff !important;
}

.hd-presence-name {
    font-size: 11px;
    font-weight: 500;
    color: var(--hd-text-muted);
    line-height: 1;
}

.hd-presence-icon:hover .hd-presence-name {
    color: var(--hd-text);
}

/* Share Button */
.hd-host-actions {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--hd-border);
}

.hd-host-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 16px;
    border-radius: var(--hd-radius);
    border: none;
    background: var(--hd-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--hd-transition);
}

.hd-host-share-btn:hover {
    background: var(--hd-orange);
    color: #fff;
}

.hd-host-share-btn i {
    font-size: 16px;
}

/* ========================================================================
   RELATED HOTELS (Full Card Style)
   ======================================================================== */

.hd-related {
    padding: 32px 0 40px;
    background: var(--hd-bg);
    margin-top: 20px;
}

.hd-related-header {
    margin-bottom: 20px;
}

.hd-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Card */
.hd-rcard {
    background: var(--hd-white);
    border-radius: var(--hd-radius);
    overflow: hidden;
    box-shadow: var(--hd-shadow);
    transition: var(--hd-transition);
    display: flex;
    flex-direction: column;
}

.hd-rcard:hover {
    transform: translateY(-4px);
    box-shadow: var(--hd-shadow-lg);
}

/* Card Image */
.hd-rcard-image {
    position: relative;
    height: 190px;
    background: #f0f0f0;
    overflow: hidden;
}

.hd-rcard-image a {
    display: block;
    height: 100%;
}

.hd-rcard-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hd-rcard:hover .hd-rcard-image img {
    transform: scale(1.05);
}

.hd-rcard-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #ccc;
}

.hd-rcard-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: #999;
    transition: var(--hd-transition);
    z-index: 2;
}

.hd-rcard-wishlist:hover,
.hd-rcard-wishlist.active {
    color: #dc2626;
    background: #fff;
}

.hd-rcard-star-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--hd-orange);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 3px;
    z-index: 2;
}

.hd-rcard-star-badge i {
    font-size: 9px;
}

.hd-rcard-discount {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--hd-primary);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
}

/* Card Body */
.hd-rcard-body {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hd-rcard-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 6px;
    line-height: 1.3;
}

.hd-rcard-title a {
    color: var(--hd-text);
    text-decoration: none;
}

.hd-rcard-title a:hover {
    color: var(--hd-orange);
}

.hd-rcard-location {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    font-size: 12px;
    color: var(--hd-text-muted);
    margin-bottom: 10px;
    line-height: 1.4;
}

.hd-rcard-location i {
    color: var(--hd-primary);
    font-size: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.hd-rcard-divider {
    height: 1px;
    background: var(--hd-border);
    margin-bottom: 10px;
}

/* Specs */
.hd-rcard-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 10px;
    margin-bottom: 12px;
}

.hd-rcard-spec {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--hd-text-secondary);
}

.hd-rcard-spec i {
    color: var(--hd-text-muted);
    font-size: 12px;
    flex-shrink: 0;
}

/* Footer */
.hd-rcard-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--hd-border);
}

.hd-rcard-price {
    display: flex;
    flex-direction: column;
}

.hd-rcard-price-old {
    font-size: 11px;
    color: var(--hd-text-muted);
}

.hd-rcard-price-amount {
    font-size: 18px;
    font-weight: 700;
    color: var(--hd-text);
}

.hd-rcard-price-unit {
    font-size: 11px;
    color: var(--hd-text-muted);
    font-weight: 400;
}

.hd-rcard-book-btn {
    padding: 8px 16px;
    border: 2px solid #038a52;
    border-radius: var(--hd-radius-sm);
    color: #038a52;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--hd-transition);
}

.hd-rcard-book-btn:hover {
    background: #f47c04;
    border-color: #f47c04;
    color: #fff;
}

/* ========================================================================
   REVIEW FORM
   ======================================================================== */

.hd-review-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hd-review-form-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hd-review-form-rating label {
    font-size: 13px;
    font-weight: 600;
    color: var(--hd-text);
}

.hd-star-select {
    display: flex;
    gap: 4px;
}

.hd-star-select .icofont-star {
    font-size: 22px;
    color: #d1d5db;
    cursor: pointer;
    transition: color 0.15s;
}

.hd-star-select .icofont-star.active {
    color: #f5a623;
}

.hd-star-select .icofont-star:hover {
    color: #f5a623;
}

.hd-review-form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hd-review-form-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--hd-text);
}

.hd-review-form-field small {
    font-weight: 400;
    color: var(--hd-text-muted);
}

.hd-input-file {
    font-size: 13px;
    color: var(--hd-text-secondary);
}

.hd-btn-submit-review {
    align-self: flex-start;
    padding: 12px 24px;
    background: #038a52;
    color: #fff;
    border: none;
    border-radius: var(--hd-radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--hd-transition);
}

.hd-btn-submit-review:hover {
    background: #f47c04;
}

.hd-review-login-prompt {
    text-align: center;
    padding: 24px;
    background: var(--hd-bg);
    border-radius: var(--hd-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hd-review-login-prompt i {
    font-size: 28px;
    color: var(--hd-text-muted);
}

.hd-review-login-prompt p {
    font-size: 14px;
    color: var(--hd-text-secondary);
    margin: 0;
}

.hd-review-login-prompt a {
    color: var(--hd-primary);
    font-weight: 600;
    text-decoration: none;
}

.hd-review-login-prompt a:hover {
    color: var(--hd-orange);
}

/* ========================================================================
   RESPONSIVE DESIGN
   ======================================================================== */

@media (max-width: 1024px) {
    .hd-layout {
        flex-direction: column;
    }

    .hd-sidebar {
        flex: none;
        width: 100%;
    }

    .hd-sidebar-sticky {
        position: relative;
        top: auto;
        max-height: none;
        overflow-y: visible;
    }

    .hd-gallery-grid.gallery-count-4,
    .hd-gallery-grid.gallery-count-5 {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }

    .hd-gallery-grid.gallery-count-4 .hd-gallery-main,
    .hd-gallery-grid.gallery-count-5 .hd-gallery-main {
        grid-row: auto;
    }

    .hd-title {
        font-size: 22px;
    }

    .hd-rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hd-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hd-gallery-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        max-height: none;
    }

    .hd-gallery-cell {
        min-height: 200px;
    }

    .hd-gallery-grid .hd-gallery-cell:not(.hd-gallery-main) {
        display: none;
    }

    .hd-gallery-grid .hd-gallery-main {
        grid-row: auto !important;
    }

    .hd-title-bar .hd-container {
        flex-direction: column;
        gap: 12px;
    }

    .hd-title-right {
        text-align: left;
    }

    .hd-price-from {
        flex-direction: row;
        align-items: baseline;
        gap: 6px;
    }

    .hd-title {
        font-size: 20px;
    }

    .hd-room-search {
        grid-template-columns: 1fr 1fr;
        border-radius: 8px;
    }

    .hd-room-search-field {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }

    .hd-room-search-field:nth-child(odd) {
        border-right: 1px solid #e5e7eb;
    }

    .hd-room-search-field:nth-child(n+3) {
        border-bottom: none;
    }

    .hd-search-action-field {
        padding: 12px 16px;
    }

    .hd-guests-popup {
        left: auto;
        right: 0;
    }

    .hd-rooms-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hd-room-card-image {
        aspect-ratio: 16 / 9;
    }

    .hd-room-carousel-nav {
        opacity: 1;
    }

    .hd-amenities-categories {
        grid-template-columns: 1fr 1fr;
    }

    .hd-policy-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .hd-pol-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hd-pol-card {
        padding: 16px;
    }

    .hd-pol-times {
        flex-direction: column;
        gap: 10px;
    }

    .hd-faq-list {
        grid-template-columns: 1fr;
    }

    .hd-surr-tabs {
        gap: 4px;
    }
    .hd-surr-tab {
        padding: 10px 14px;
        font-size: 12px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .hd-surr-grid {
        grid-template-columns: 1fr;
    }

    .hd-review-summary {
        flex-direction: column;
    }

    .hd-review-score-box {
        flex: none;
    }

    .hd-related-grid {
        grid-template-columns: 1fr;
    }

    .hd-map-container {
        height: 240px;
    }
}

@media (max-width: 480px) {
    .hd-container {
        padding: 0 14px;
    }

    .hd-gallery-hero {
        padding: 16px 0 0;
    }

    .hd-gallery-grid {
        border-radius: 0;
    }

    .hd-gallery-cell {
        min-height: 180px;
    }

    .hd-title {
        font-size: 18px;
    }

    .hd-price-value {
        font-size: 22px;
    }

    .hd-section-heading {
        font-size: 16px;
    }

    .hd-booking-price-current {
        font-size: 24px;
    }

    .hd-room-search {
        grid-template-columns: 1fr;
    }

    .hd-room-search-field {
        border-right: none !important;
        border-bottom: 1px solid #e5e7eb;
    }

    .hd-room-search-field:last-child {
        border-bottom: none;
    }

    .hd-guests-popup {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        min-width: 100%;
        border-radius: 16px 16px 0 0;
        max-height: 80vh;
    }

    .hd-guests-popup-body {
        max-height: 50vh;
    }

    .hd-room-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .hd-room-select-inline {
        margin-left: 0;
        width: 100%;
    }

    .hd-rcard-image {
        height: 170px;
    }

    .hd-rcard-specs {
        grid-template-columns: 1fr;
    }

    .hd-rcard-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .hd-rcard-book-btn {
        width: 100%;
        text-align: center;
    }

    .hd-amenities-categories {
        grid-template-columns: 1fr;
    }

    .hd-lightbox-nav {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

/* ========================================================================
   PRINT STYLES
   ======================================================================== */

@media print {
    .hd-nav-tabs,
    .hd-sidebar,
    .hd-lightbox,
    .hd-btn-all-photos {
        display: none !important;
    }

    .hd-layout {
        display: block;
    }

    .hd-gallery-grid {
        max-height: 300px;
    }
}

/* ============================================================
   Room Availability Mini-Calendar (per room card)
   ============================================================ */
.hd-room-avail-toggle {
    padding: 6px 16px 12px;
    text-align: center;
    border-top: 1px solid #f1f5f9;
}
.hd-room-avail-toggle a {
    font-size: 13px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
}
.hd-room-avail-toggle a:hover {
    color: #f47c04;
}
.hd-room-avail-toggle a i {
    margin-right: 4px;
}

.hd-room-avail-cal {
    border-top: 1px solid #e2e8f0;
    padding: 12px 14px;
    background: #fafbfc;
}

.hd-avail-cal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.hd-avail-cal-month {
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

.hd-avail-cal-nav {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #000;
    transition: all .15s;
}
.hd-avail-cal-nav:hover {
    background: #038a52;
    color: #fff;
    border-color: #038a52;
}

.hd-avail-cal-loading {
    text-align: center;
    padding: 20px 0;
}
.hd-spinner-sm {
    width: 24px;
    height: 24px;
    border: 3px solid #e2e8f0;
    border-top-color: #038a52;
    border-radius: 50%;
    animation: hd-spin .6s linear infinite;
    margin: 0 auto;
}
@keyframes hd-spin { to { transform: rotate(360deg); } }

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

.hd-avail-wd {
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    color: #000;
    padding: 4px 0;
    text-transform: uppercase;
}

.hd-avail-day {
    text-align: center;
    padding: 4px 2px;
    border-radius: 6px;
    min-height: 42px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: default;
    transition: background .15s;
}

.hd-avail-day-num {
    font-size: 12px;
    font-weight: 600;
    color: #000;
    line-height: 1;
}
.hd-avail-day-price {
    font-size: 9px;
    font-weight: 600;
    color: #333;
    margin-top: 1px;
    line-height: 1;
}

.hd-avail-other {
    opacity: 0.3;
}
.hd-avail-other .hd-avail-day-num {
    color: #999;
}

.hd-avail-green {
    background: #dcfce7;
}
.hd-avail-green .hd-avail-day-num { color: #166534; }

.hd-avail-amber {
    background: #fef3c7;
}
.hd-avail-amber .hd-avail-day-num { color: #92400e; }

.hd-avail-red {
    background: #fee2e2;
}
.hd-avail-red .hd-avail-day-num { color: #991b1b; }
.hd-avail-red .hd-avail-day-price { color: #991b1b; }

.hd-avail-today .hd-avail-day-num {
    background: #038a52;
    color: #fff;
    width: 22px;
    height: 22px;
    line-height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hd-avail-cal-legend {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    justify-content: center;
}
.hd-avail-leg {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 600;
    color: #000;
}
.hd-avail-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.hd-avail-dot-green { background: #22c55e; }
.hd-avail-dot-amber { background: #f59e0b; }
.hd-avail-dot-red { background: #ef4444; }

/* ========================================================================
   HOTEL DETAIL RESPONSIVE FIXES — Overflow, Touch Targets, Spacing
   ======================================================================== */

/* Prevent content overflow */
.hd-main { min-width: 0; overflow-x: hidden; }
.hd-layout { min-width: 0; overflow-x: hidden; }
.hd-container { min-width: 0; overflow-x: hidden; }

/* Booking price overflow on small screens */
@media (max-width: 480px) {
    .hd-booking-price-current {
        font-size: 20px;
        word-break: break-all;
    }
}

/* Room book button: full width between 481-767px */
@media (min-width: 481px) and (max-width: 767px) {
    .hd-rcard-book-btn {
        width: 100%;
        text-align: center;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .hd-rcard-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Nav tabs horizontal scroll on mobile */
@media (max-width: 767px) {
    .hd-nav-tabs .hd-nav-inner {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .hd-nav-tabs .hd-nav-inner::-webkit-scrollbar { display: none; }
    .hd-nav-tabs .hd-nav-link {
        white-space: nowrap;
        flex-shrink: 0;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
}

/* Room search form inner spacing on mobile */
@media (max-width: 768px) {
    .hd-room-search-field {
        padding: 12px 14px;
    }
    .hd-room-search-label {
        font-size: 10px;
    }
    .hd-room-search-value {
        font-size: 13px;
    }
}

/* Gallery hero: prevent overflow */
.hd-gallery-hero { overflow: hidden; }
.hd-gallery-grid { overflow: hidden; }

/* ══════════════════════════════════════════════════════════════════════════
   MOBILE STICKY BOOK BAR
   ══════════════════════════════════════════════════════════════════════════ */
.hd-mobile-book-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 300;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 20px rgba(0,0,0,.08);
    padding: 12px 16px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.hd-mobile-book-bar__from {
    font-size: 11px; color: #717171; text-transform: uppercase; letter-spacing: .5px;
    margin-right: 4px;
}
.hd-mobile-book-bar__amount {
    font-size: 22px; font-weight: 500; color: #1e293b;
}
.hd-mobile-book-bar__per {
    font-size: 13px; color: #717171; font-weight: 400;
}
.hd-mobile-book-bar__btn {
    background: #038a52; color: #fff !important; border: none;
    border-radius: 8px; padding: 12px 24px; font-size: 14px; font-weight: 600;
    text-decoration: none; white-space: nowrap; transition: all .2s;
    display: inline-flex; align-items: center; justify-content: center;
}
.hd-mobile-book-bar__btn:hover { background: #f47c04; text-decoration: none; }
@media (max-width: 1024px) {
    .hd-mobile-book-bar { display: flex; }
    /* Pad bottom so content isn't hidden behind the bar */
    .hd-page { padding-bottom: 80px; }
}
@media (max-width: 480px) {
    .hd-mobile-book-bar { padding: 10px 12px; }
    .hd-mobile-book-bar__amount { font-size: 18px; }
    .hd-mobile-book-bar__btn { padding: 10px 18px; font-size: 13px; }
}


/* ══════════════════════════════════════════════════════════════════════
   CAR DETAIL PAGE (.listing-gallery-*, .bc_detail_car)
   ══════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════════
   CAR DETAIL PAGE — Chisfis / Airbnb-style Layout
   Brand: #038a52 (green primary), #f47c04 (orange accent)
   Style: Plain, no gradients, minimal shadows
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Base ──────────────────────────────────────────────────────────────────── */
.bc_detail_car {
    background: #fff;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #111827;
}

/* ── Sticky Nav → Content spacing ─────────────────────────────────────────── */
.bc_detail_car .bc_content { padding-top: 24px; }

/* ── Photo Gallery Mosaic ──────────────────────────────────────────────────── */
.listing-gallery-header {
    padding-top: 24px;
}
.listing-gallery-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 210px 210px;
    gap: 8px;
    border-radius: 16px;
    overflow: hidden;
}

/* 4 images: left tall, center 2 stacked, right tall */
.listing-gallery-grid--4 .gallery-cell--0 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}
.listing-gallery-grid--4 .gallery-cell--1 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}
.listing-gallery-grid--4 .gallery-cell--2 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}
.listing-gallery-grid--4 .gallery-cell--3 {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
}

/* 3 images: main 2x2, two side 1x1 stacked */
.listing-gallery-grid--3 .gallery-cell--0 {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}
.listing-gallery-grid--3 .gallery-cell--1 {
    grid-column: 3 / 5;
    grid-row: 1 / 2;
}
.listing-gallery-grid--3 .gallery-cell--2 {
    grid-column: 3 / 5;
    grid-row: 2 / 3;
}

/* 2 images: side by side */
.listing-gallery-grid--2 {
    grid-template-columns: 1fr 1fr;
}
.listing-gallery-grid--2 .gallery-cell--0 {
    grid-row: 1 / 3;
}
.listing-gallery-grid--2 .gallery-cell--1 {
    grid-row: 1 / 3;
}

/* 1 image: full width */
.listing-gallery-grid--1 {
    grid-template-columns: 1fr;
    grid-template-rows: 400px;
}
.listing-gallery-grid--1 .gallery-cell--0 {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
}

.gallery-cell {
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.gallery-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gallery-cell:hover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.04);
    transition: opacity 0.2s;
}

.gallery-show-all {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #fff;
    border: none;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    transition: background 0.2s, box-shadow 0.2s;
}
.gallery-show-all:hover {
    background: #f3f4f6;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}
.gallery-show-all i {
    font-size: 15px;
}

/* ── All-Photos Lightbox Overlay ───────────────────────────────────────────── */
.gallery-lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #000;
    flex-direction: column;
}
.gallery-lightbox-overlay.is-open {
    display: flex;
}
.gallery-lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.gallery-lightbox-close:hover {
    background: rgba(255,255,255,0.3);
}
.gallery-lightbox-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 20px;
}
.gallery-lightbox-main img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    user-select: none;
}
.gallery-lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.gallery-lightbox-arrow:hover {
    background: rgba(255,255,255,0.25);
}
.gallery-lightbox-arrow--prev {
    left: 16px;
}
.gallery-lightbox-arrow--next {
    right: 16px;
}
.gallery-lightbox-thumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px 16px;
    overflow-x: auto;
    background: rgba(0,0,0,0.6);
}
.gallery-lightbox-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    border: 2px solid transparent;
    transition: opacity 0.2s, border-color 0.2s;
}
.gallery-lightbox-thumb.is-active {
    opacity: 1;
    border-color: #fff;
}
.gallery-lightbox-thumb:hover {
    opacity: 0.85;
}
.gallery-lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-lightbox-counter {
    position: absolute;
    top: 20px;
    left: 20px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 500;
    z-index: 5;
}

.gallery-video-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    cursor: pointer;
    z-index: 2;
    text-decoration: none;
}
.gallery-video-btn:hover {
    background: #e5e7eb;
    color: #111827;
    text-decoration: none;
}
.gallery-video-btn i {
    font-size: 18px;
    color: #038a52;
}

/* ── Main 2-Column Layout ──────────────────────────────────────────────────── */
.listing-layout {
    display: flex;
    flex-direction: row;
    margin-top: 44px;
}
.listing-content-col {
    flex: 1 1 0%;
    min-width: 0;
    padding-right: 40px;
}
.listing-sidebar-col {
    flex: 0 0 360px;
    max-width: 360px;
    min-width: 300px;
}
.listing-sidebar-sticky {
    position: sticky;
    top: 24px;
}

/* ── Section Wraps (Card-style) ─────────────────────────────────────────── */
.listingSection__wrap {
    padding: 28px;
    border-radius: 16px;
    margin-bottom: 16px;
    background: #fff;
}
.listingSection__wrap:last-child {
    margin-bottom: 0;
}
.listingSection__wrap h2 {
    font-size: 22px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 8px;
}
.listing-section-heading {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 10px;
}
.listing-divider-sm {
    width: 56px;
    height: 0;
    margin: 16px 0;
}
.listing-sub-text {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: #6b7280;
}

/* ── Tabs Component ────────────────────────────────────────────────────────── */
.listingSection__tabbed {
    padding: 0;
    overflow: hidden;
}
.listing-tabs {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
    background: #fafbfc;
}
.listing-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s;
}
.listing-tab i {
    font-size: 14px;
}
.listing-tab:hover {
    color: #038a52;
}
.listing-tab.is-active {
    color: #038a52;
    border-bottom-color: #038a52;
    background: #fff;
    font-weight: 600;
}
.listing-tab-content {
    display: none;
    padding: 28px;
}
.listing-tab-content.is-active {
    display: block;
}

/* ── Title & Meta ──────────────────────────────────────────────────────────── */
.listingSection__title {
    position: relative;
}
.listing-title-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.listing-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #f3f4f6;
    color: #374151;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #e5e7eb;
}
.listing-title-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.listing-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s;
    font-size: 18px;
}
.listing-action-btn--wishlist {
    color: #f47c04;
    border: 1px solid #f47c04;
}
.listing-action-btn--wishlist:hover {
    background: rgba(244, 124, 4, 0.1);
}
.listing-action-btn--wishlist.active {
    background: #ef4444;
    border-color: #ef4444;
    color: #fff;
}
.listing-action-btn--wishlist.active i {
    color: #fff;
}
.listing-action-btn--share {
    color: #038a52;
    border: 1px solid #038a52;
}
.listing-action-btn--share:hover {
    background: rgba(3, 138, 82, 0.1);
}
.listing-title {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px;
    line-height: 1.3;
}
.listing-meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 14px;
    color: #6b7280;
}
.listing-meta-row--spread {
    justify-content: space-between;
    gap: 12px;
}
.listing-meta-left,
.listing-meta-right {
    display: flex;
    align-items: center;
    gap: 4px;
}
.listing-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.listing-meta-item i {
    font-size: 14px;
}
.listing-star-icon {
    color: #f47c04 !important;
}
.listing-dot {
    margin: 0 4px;
    color: #d1d5db;
}

/* ── Hosted By ─────────────────────────────────────────────────────────────── */
.listing-hosted-by {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}
.listing-host-avatar {
    position: relative;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: visible;
}
.listing-host-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.listing-host-verified {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: #038a52;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.listing-host-verified i {
    color: #fff;
    font-size: 8px;
}
.listing-host-text {
    font-size: 15px;
    color: #374151;
}
.listing-host-text strong {
    color: #111827;
    font-weight: 600;
}

/* ── Included in the Price ─────────────────────────────────────────────────── */
.listing-included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 32px;
}
.listing-included-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
}
.listing-included-item i {
    color: #6b7280;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ── Pickup & Dropoff Card ─────────────────────────────────────────────────── */
.listing-pickup-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
}
.listing-pickup-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 20px;
}
.pickup-timeline {
    position: relative;
    padding-left: 24px;
}
.pickup-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    border-left: 2px dashed #d1d5db;
}
.pickup-timeline-item {
    position: relative;
    padding-bottom: 24px;
}
.pickup-timeline-item:last-child {
    padding-bottom: 0;
}
.pickup-timeline-dot {
    position: absolute;
    left: -24px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    background: #fff;
}
.pickup-timeline-item:first-child .pickup-timeline-dot {
    border-color: #111827;
}
.pickup-timeline-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.pickup-timeline-label {
    font-size: 13px;
    color: #6b7280;
}
.pickup-timeline-address {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}

/* ── Share Popup Overlay ───────────────────────────────────────────────────── */
.share-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99998;
    background: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
}
.share-overlay.is-open {
    display: flex;
}
.share-popup {
    background: #fff;
    border-radius: 16px;
    width: 90%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 24px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.share-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.share-popup-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}
.share-popup-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #f3f4f6;
    color: #374151;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s;
}
.share-popup-close:hover {
    background: #e5e7eb;
}
.share-popup-preview {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: #f9fafb;
    border-radius: 12px;
    margin-bottom: 24px;
}
.share-popup-preview img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}
.share-popup-preview-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.share-popup-preview-text strong {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}
.share-popup-preview-text span {
    font-size: 13px;
    color: #6b7280;
}
.share-popup-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.share-link-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    color: #111827;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s;
}
.share-link-item:hover {
    background: #f3f4f6;
    color: #111827;
    text-decoration: none;
}
.share-link-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.share-link-icon i {
    font-size: 18px;
    color: #374151;
}
.share-copy-toast {
    text-align: center;
    padding: 10px;
    margin-top: 12px;
    background: #038a52;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
}
.share-copy-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Specs Row ─────────────────────────────────────────────────────────────── */
.listing-specs-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 28px;
}
.spec-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    text-align: left;
    font-size: 14px;
    color: #374151;
}
.spec-item i {
    font-size: 15px;
    color: #038a52 !important;
}
/* Smaller variant used inside tabbed card */
.listing-specs-row--sm {
    flex-wrap: wrap;
    gap: 12px 20px;
}
.listing-specs-row--sm .spec-item {
    font-size: 13px;
    gap: 6px;
}
.listing-specs-row--sm .spec-item i {
    font-size: 14px;
    color: #038a52 !important;
}
.listing-specs-row--sm .spec-item .spec-item-img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
}

/* ── Attributes (Vehicle Parameters) ───────────────────────────────────────── */
.bc_detail_car .g-attributes {
    padding: 28px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    margin-bottom: 16px;
    background: #fff;
}
.bc_detail_car .g-attributes h3 {
    font-size: 22px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 8px;
    padding-bottom: 0;
    border-bottom: none;
}
.bc_detail_car .g-attributes h3::after {
    content: '';
    display: block;
    width: 56px;
    height: 1px;
    background: #d1d5db;
    margin-top: 16px;
}
.bc_detail_car .g-attributes .list-attributes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    margin-top: 16px;
}
.bc_detail_car .g-attributes .list-attributes .item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #374151;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
}
.bc_detail_car .g-attributes .list-attributes .item i {
    font-size: 20px;
    color: #038a52;
    width: 28px;
    text-align: center;
    flex-shrink: 0;
}
.bc_detail_car .g-attributes .list-attributes .item img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

/* ── Description ───────────────────────────────────────────────────────────── */
.listing-description {
    font-size: 15px;
    color: #374151;
    line-height: 1.75;
}
.listing-description p {
    margin-bottom: 12px;
}

/* ── FAQ ───────────────────────────────────────────────────────────────────── */
.listing-faq-list {
    margin: 0;
}
.listing-faq-item {
    border-bottom: 1px solid #f3f4f6;
}
.listing-faq-item:last-child {
    border-bottom: none;
}
.listing-faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}
.listing-faq-header i {
    font-size: 12px;
    color: #9ca3af;
    transition: transform 0.2s;
}
.listing-faq-item.open .listing-faq-header i {
    transform: rotate(180deg);
}
.listing-faq-body {
    display: none;
    padding: 0 0 14px;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}
.listing-faq-item.open .listing-faq-body {
    display: block;
}

/* ── Map ───────────────────────────────────────────────────────────────────── */
.listing-map-box {
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
    border: 1px solid #e5e7eb;
}
.listing-map-box #map_content {
    width: 100%;
    height: 100%;
}

/* ── Owner + Things Grid ───────────────────────────────────────────────────── */
.listing-full-width {
    margin-top: 16px;
}
.listing-two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

/* ── Checklist (Things to know) ────────────────────────────────────────────── */
.listing-checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.checklist-item {
    padding: 0;
}
.checklist-title {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}
.checklist-desc {
    font-size: 14px;
    color: #6b7280;
}

/* ── Owner Card (vendor include) ───────────────────────────────────────────── */
.bc_detail_car .owner-info {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 0;
}
.bc_detail_car .owner-info .media .media-left img {
    border-radius: 50%;
    width: 56px;
    height: 56px;
    object-fit: cover;
}
.bc_detail_car .owner-info .owner-name a {
    color: #111827;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
}

/* ── Review Section ────────────────────────────────────────────────────────── */
.bc_detail_car .review-list-all {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 0;
}
.bc_detail_car .review-list-all h3,
.bc_detail_car .bc-review-list h4 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

/* ── Booking Sidebar ───────────────────────────────────────────────────────── */
.bc_detail_car .bc_single_book_wrap {
    position: static;
}
.bc_detail_car .bc_single_book {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: visible;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* ── Price Header ──────────────────────────────────────────────────────────── */
.bc_detail_car .bc_single_book .form-head {
    background: #fff;
    padding: 20px 20px 16px;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 14px 14px 0 0;
}
.bc_detail_car .bc_single_book .form-head .price {
    display: flex;
    align-items: baseline;
    gap: 3px;
}
.bc_detail_car .bc_single_book .form-head .price .onsale {
    font-size: 13px;
    color: #9ca3af;
    text-decoration: line-through;
    margin-right: 4px;
}
.bc_detail_car .bc_single_book .form-head .price .amount {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    line-height: 1;
}
.bc_detail_car .bc_single_book .form-head .price .period {
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
}
.bc_detail_car .bc_single_book .form-head .form-head-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
}
.bc_detail_car .bc_single_book .form-head .form-head-rating .fa-star {
    color: #f47c04;
    font-size: 12px;
}
.bc_detail_car .bc_single_book .form-head .form-head-rating .rating-score {
    font-weight: 600;
    color: #111827;
}
.bc_detail_car .bc_single_book .form-head .form-head-rating .rating-count {
    color: #6b7280;
    font-weight: 400;
}

/* ── Book / Enquiry Tabs ───────────────────────────────────────────────────── */
.bc_detail_car .bc_single_book .nav-enquiry {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
}
.bc_detail_car .bc_single_book .nav-enquiry .enquiry-item {
    flex: 1;
    text-align: center;
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.bc_detail_car .bc_single_book .nav-enquiry .enquiry-item.active {
    color: #111827;
    border-bottom-color: #111827;
}
.bc_detail_car .bc_single_book .nav-enquiry .enquiry-item:hover {
    color: #111827;
}

/* ── Form Body ─────────────────────────────────────────────────────────────── */
.bc_detail_car .bc_single_book .form-book {
    padding: 0;
}
.bc_detail_car .bc_single_book .form-content {
    padding: 16px 20px 0;
}

/* ── Date Picker Field ─────────────────────────────────────────────────────── */
.bc_detail_car .bc_single_book .form-date-field {
    margin-bottom: 12px;
    position: relative;
}
.bc_detail_car .bc_single_book .date-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
}
.bc_detail_car .bc_single_book .date-wrapper:hover {
    border-color: #038a52;
}
.bc_detail_car .bc_single_book .date-wrapper:focus-within,
.bc_detail_car .bc_single_book .date-wrapper:active {
    border-color: #038a52;
    box-shadow: 0 0 0 2px rgba(3,138,82,0.08);
}
.bc_detail_car .bc_single_book .date-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0fdf4;
    border-radius: 8px;
    color: #038a52;
    font-size: 14px;
}
.bc_detail_car .bc_single_book .date-text {
    flex: 1;
    min-width: 0;
}
.bc_detail_car .bc_single_book .date-value {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.bc_detail_car .bc_single_book .date-note {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 4px;
    padding-left: 2px;
}

/* ── Number Input ──────────────────────────────────────────────────────────── */
.bc_detail_car .bc_single_book .form-guest-search {
    margin-bottom: 12px;
}
.bc_detail_car .bc_single_book .guest-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #fff;
}
.bc_detail_car .bc_single_book .guest-wrapper label {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    margin: 0;
}
.bc_detail_car .bc_single_book .input-number-group {
    display: flex;
    align-items: center;
    gap: 2px;
}
.bc_detail_car .bc_single_book .num-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d1d5db;
    border-radius: 50%;
    background: #fff;
    color: #9ca3af;
    font-size: 10px;
    cursor: pointer;
    transition: all 0.15s;
    padding: 0;
    line-height: 1;
}
.bc_detail_car .bc_single_book .num-btn:hover {
    border-color: #9ca3af;
    color: #6b7280;
    background: #f9fafb;
}
.bc_detail_car .bc_single_book .num-input {
    width: 32px;
    text-align: center;
    border: none;
    background: none;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    -moz-appearance: textfield;
}
.bc_detail_car .bc_single_book .num-input::-webkit-inner-spin-button,
.bc_detail_car .bc_single_book .num-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ── Extra Prices & Fees ───────────────────────────────────────────────────── */
.bc_detail_car .bc_single_book .form-extras {
    padding: 10px 0;
    border-top: 1px solid #f3f4f6;
}
.bc_detail_car .bc_single_book .form-extras .extras-title {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 6px;
}
.bc_detail_car .bc_single_book .extras-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0;
}
.bc_detail_car .bc_single_book .extras-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 400;
    color: #374151;
    margin: 0;
}
.bc_detail_car .bc_single_book .extras-label input[type="checkbox"] {
    accent-color: #038a52;
    width: 15px;
    height: 15px;
    cursor: pointer;
}
.bc_detail_car .bc_single_book .extras-label small {
    font-size: 11px;
    color: #9ca3af;
}
.bc_detail_car .bc_single_book .extras-label .icofont-info-circle {
    color: #9ca3af;
    font-size: 12px;
    cursor: help;
}
.bc_detail_car .bc_single_book .extras-price {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
    white-space: nowrap;
}

/* ── Total ─────────────────────────────────────────────────────────────────── */
.bc_detail_car .bc_single_book .form-total {
    margin: 0;
    padding: 14px 20px;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
}
.bc_detail_car .bc_single_book .total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 0;
}
.bc_detail_car .bc_single_book .total-row .total-label {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}
.bc_detail_car .bc_single_book .total-row .total-price {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}
.bc_detail_car .bc_single_book .total-row--secondary .total-label {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
}
.bc_detail_car .bc_single_book .total-row--secondary .total-price {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
}

/* ── Reserve Button ────────────────────────────────────────────────────────── */
.bc_detail_car .bc_single_book .submit-group {
    padding: 14px 20px 20px;
}
.bc_detail_car .bc_single_book .btn-reserve {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #fff !important;
    background: #038a52;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    text-decoration: none;
    letter-spacing: 0;
}
.bc_detail_car .bc_single_book .btn-reserve:hover {
    background: #026b3f;
    transform: translateY(-1px);
}
.bc_detail_car .bc_single_book .btn-reserve:active {
    transform: translateY(0);
}
.bc_detail_car .bc_single_book .btn-reserve.disabled {
    opacity: 0.6;
    pointer-events: none;
}
.bc_detail_car .bc_single_book .btn-reserve .fa-lock {
    font-size: 12px;
    opacity: 0.7;
}
.bc_detail_car .bc_single_book .submit-group .alert-text {
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 8px;
    margin-top: 8px;
}
.bc_detail_car .bc_single_book .submit-group .alert-text.danger {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}
.bc_detail_car .bc_single_book .submit-group .alert-text.success {
    background: #f0fdf4;
    color: #038a52;
    border: 1px solid #bbf7d0;
}

/* ── Enquiry Button ────────────────────────────────────────────────────────── */
.bc_detail_car .bc_single_book .form-send-enquiry {
    padding: 14px 20px 20px;
}
.bc_detail_car .bc_single_book .form-send-enquiry .btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    background: #111827;
    border-color: #111827;
    color: #fff;
}
.bc_detail_car .bc_single_book .form-send-enquiry .btn-primary:hover {
    background: #1f2937;
    border-color: #1f2937;
}

/* ── Related Cars Carousel ─────────────────────────────────────────────────── */
.bc_detail_car .bc-list-car-related {
    padding: 40px 0 24px;
}
.bc_detail_car .bc-list-car-related h2 {
    font-size: 22px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 20px;
    padding-bottom: 0;
    border-bottom: none;
    display: flex;
    align-items: center;
}
.bc_detail_car .bc-list-car-related h2 i {
    color: #038a52;
    margin-right: 10px;
    font-size: 20px;
}

/* Carousel wrapper with side arrows */
.bc-related-carousel {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 12px;
}

/* Navigation arrows — positioned on the sides */
.bc-related-nav__btn {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #374151;
    font-size: 14px;
    align-self: center;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.bc-related-nav__btn:hover:not(:disabled) {
    background: #038a52;
    border-color: #038a52;
    color: #fff;
    box-shadow: 0 2px 8px rgba(3,138,82,0.25);
}
.bc-related-nav__btn:disabled {
    opacity: 0.3;
    cursor: default;
}

/* Scrollable track */
.bc-related-track {
    flex: 1;
    min-width: 0;
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}
.bc-related-track::-webkit-scrollbar {
    display: none;
}

/* Each slide */
.bc-related-slide {
    flex: 0 0 calc(33.333% - 11px);
    min-width: 0;
    scroll-snap-align: start;
}

/* Force vertical card layout inside slides */
.bc_detail_car .bc-list-car-related .tm-card {
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s;
}
.bc_detail_car .bc-list-car-related .tm-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.bc_detail_car .bc-list-car-related .tm-card__image {
    height: 190px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}
.bc_detail_car .bc-list-car-related .tm-card__image img {
    width: 100%; height: 100%; object-fit: cover;
}
.bc_detail_car .bc-list-car-related .tm-card__body {
    padding: 14px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.bc_detail_car .bc-list-car-related .tm-card__title {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    line-height: 1.3;
    margin: 0;
    text-decoration: none;
}
.bc_detail_car .bc-list-car-related .tm-card__title a { color: #111827; text-decoration: none; }
.bc_detail_car .bc-list-car-related .tm-card__title a:hover { color: #038a52; }
.bc_detail_car .bc-list-car-related .tm-card__location { font-size: 12px; color: #6b7280; }
.bc_detail_car .bc-list-car-related .tm-card__specs { flex-wrap: wrap; gap: 6px; font-size: 12px; color: #374151; }
.bc_detail_car .bc-list-car-related .tm-card__price { font-size: 15px; font-weight: 700; color: #111827; margin-top: auto; padding-top: 8px; }
.bc_detail_car .bc-list-car-related .tm-card__price .book-now,
.bc_detail_car .bc-list-car-related a.book-now { color: #038a52; font-size: 13px; font-weight: 600; text-decoration: none; }
.bc_detail_car .bc-list-car-related a.book-now:hover { text-decoration: underline; }

/* ── Mobile Bottom Bar ─────────────────────────────────────────────────────── */
.bc_detail_car .bc-more-book-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    padding: 0;
    display: none;
}
.bc_detail_car .bc-more-book-mobile .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    max-width: 100%;
}
.bc_detail_car .bc-more-book-mobile .left {
    flex: 1;
}
.bc_detail_car .bc-more-book-mobile .g-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.bc_detail_car .bc-more-book-mobile .g-price .prefix .fr_text {
    font-size: 12px;
    color: #6b7280;
}
.bc_detail_car .bc-more-book-mobile .g-price .price .onsale {
    font-size: 13px;
    color: #9ca3af;
    text-decoration: line-through;
    margin-right: 4px;
}
.bc_detail_car .bc-more-book-mobile .g-price .price .text-price {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
}
.bc_detail_car .bc-more-book-mobile .right .btn-primary,
.bc_detail_car .bc-more-book-mobile .right .bc-button-book-mobile {
    background: #038a52;
    border: none;
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}
.bc_detail_car .bc-more-book-mobile .right .btn-primary:hover,
.bc_detail_car .bc-more-book-mobile .right .bc-button-book-mobile:hover {
    background: #026b3f;
}

/* ── Pick-up Checklist Table ────────────────────────────────────────────────── */
.listing-checklist-table {
    display: flex;
    flex-direction: column;
}
.checklist-table-row {
    display: flex;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid #f3f4f6;
    gap: 24px;
}
.checklist-table-row:last-child {
    border-bottom: none;
}
.checklist-table-label {
    flex: 0 0 180px;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}
.checklist-table-value {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    line-height: 1.5;
}

/* ── Availability Calendar ─────────────────────────────────────────────────── */
.listing-availability-calendar {
    position: relative;
}
/* Two-month grid */
.avail-cal-wrap {
    display: flex;
    gap: 32px;
}
.avail-cal-month {
    flex: 1;
    min-width: 0;
}
.avail-cal-month-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    position: relative;
}
.avail-cal-month-header .avail-cal-month-title {
    flex: 1;
    text-align: center;
}
.avail-cal-month-header .avail-cal-prev {
    position: absolute;
    left: 0;
}
.avail-cal-month-header .avail-cal-next {
    position: absolute;
    right: 0;
}
.avail-cal-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #374151;
    font-size: 13px;
    cursor: pointer;
    transition: all .2s;
}
.avail-cal-arrow:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}
.avail-cal-arrow.disabled,
.avail-cal-arrow:disabled {
    opacity: .35;
    cursor: not-allowed;
    pointer-events: none;
}
.avail-cal-month-title {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}
.avail-cal-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 4px;
    text-align: center;
    table-layout: fixed;
}
.avail-cal-table th {
    font-size: 13px;
    font-weight: 500;
    color: #9ca3af;
    padding: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: .3px;
}
.avail-cal-table td {
    font-size: 14px;
    color: #374151;
    padding: 0;
    height: 40px;
    vertical-align: middle;
    cursor: default;
}
.avail-cal-table td span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: background .15s, color .15s;
}
.avail-cal-table td.avail-past {
    color: #d1d5db;
}
.avail-cal-table td.avail-past span {
    color: #d1d5db;
}
.avail-cal-table td.avail-today span {
    background: #038a52;
    color: #fff;
    font-weight: 600;
}
.avail-cal-table td:not(.avail-past):not(.avail-today):hover span {
    background: #f3f4f6;
    color: #111827;
}

/* ── Hide old daterangepicker styles if calendar plugin present ─── */
.listing-availability-calendar .daterangepicker {
    display: none !important;
}

/* ── Checklist Grid (Things to know) ────────────────────────────────────────── */
.listing-checklist--grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 32px;
}

/* ── Hide old unused elements ──────────────────────────────────────────────── */
.bc_detail_car .g-header {
    display: none;
}

/* ── Tour Gallery Lightbox ─────────────────────────────────────────────────── */
.td-gallery-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    flex-direction: column;
}
.td-gallery-modal.active { display: flex; }
.td-gm-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.93); }
.td-gm-content { position: relative; display: flex; flex-direction: column; width: 100%; height: 100%; overflow: hidden; }
.td-gm-track-wrap { flex: 1; overflow: hidden; display: flex; align-items: center; }
.td-gm-track { display: flex; width: 100%; height: 100%; transition: transform .35s ease; will-change: transform; }
.td-gm-slide { flex: 0 0 100%; display: flex; align-items: center; justify-content: center; padding: 56px 80px 12px; box-sizing: border-box; }
.td-gm-slide img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 4px; display: block; user-select: none; -webkit-user-drag: none; }
.td-gm-close {
    position: absolute; top: 12px; right: 14px;
    width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.35); background: rgba(0,0,0,.55);
    color: #fff; font-size: 16px; cursor: pointer;
    display: flex; align-items: center; justify-content: center; z-index: 2; transition: background .2s;
}
.td-gm-close:hover { background: rgba(0,0,0,.85); }
.td-gm-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 46px; height: 46px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.35); background: rgba(0,0,0,.55);
    color: #fff; font-size: 16px; cursor: pointer;
    display: flex; align-items: center; justify-content: center; z-index: 2; transition: background .2s;
}
.td-gm-nav:hover { background: rgba(0,0,0,.85); }
.td-gm-prev { left: 14px; }
.td-gm-next { right: 14px; }
.td-gm-counter {
    position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,.85); font-size: 13px; font-weight: 600;
    background: rgba(0,0,0,.45); padding: 3px 14px; border-radius: 20px;
    pointer-events: none; white-space: nowrap;
}
.td-gm-thumbs {
    display: flex; gap: 6px; padding: 8px 14px 12px;
    overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; flex-shrink: 0;
}
.td-gm-thumbs::-webkit-scrollbar { height: 3px; }
.td-gm-thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,.3); border-radius: 3px; }
.td-gm-thumb {
    flex: 0 0 72px; height: 52px; border-radius: 5px; overflow: hidden;
    cursor: pointer; scroll-snap-align: start; opacity: .55;
    border: 2px solid transparent; transition: opacity .2s, border-color .2s;
}
.td-gm-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.td-gm-thumb:hover { opacity: .85; }
.td-gm-thumb.is-active { opacity: 1; border-color: #038a52; }
@media (max-width: 767px) {
    .td-gm-slide { padding: 48px 12px 8px; }
    .td-gm-prev { left: 6px; }
    .td-gm-next { right: 6px; }
    .td-gm-nav { width: 38px; height: 38px; font-size: 14px; }
    .td-gm-thumb { flex: 0 0 58px; height: 44px; }
}

/* ── Full-width Sections ───────────────────────────────────────────────────── */
.listing-fullwidth-section {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid #e5e7eb;
}
.listing-fullwidth-section h2 {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

/* ── Full-width Location / Map ─────────────────────────────────────────────── */
.listing-fullwidth-location .listing-map-box--fullwidth {
    width: 100%;
    height: 540px;
    min-height: 520px;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 8px;
}
.listing-fullwidth-location .listing-map-box--fullwidth #map_content {
    width: 100%;
    height: 100%;
    min-height: 100%;
    border-radius: 16px;
}

/* ── Reviews Two-Column Layout ─────────────────────────────────────────────── */
.listing-reviews-layout {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

/* Host Card (left) */
.listing-host-card {
    flex: 0 0 320px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 24px;
    position: sticky;
    top: 100px;
}
.host-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.host-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}
.host-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}
.host-avatar-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #038a52;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}
.host-name {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 2px;
}
.host-verified {
    color: #038a52;
    font-size: 16px;
    margin-left: 4px;
    vertical-align: middle;
}
.host-rating {
    font-size: 13px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}
.host-rating i {
    color: #f5a623;
    font-size: 12px;
}
.host-rating strong {
    color: #111827;
    font-weight: 600;
}
.host-rating-sep {
    margin: 0 2px;
}

.host-badges {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #111827;
}
.host-badge i {
    margin-right: 4px;
    color: #6b7280;
}
.host-badge-sep {
    color: #d1d5db;
}

.host-bio {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
}

.host-details {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.host-details li {
    font-size: 14px;
    color: #374151;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.host-details li i {
    color: #6b7280;
    width: 18px;
    text-align: center;
    font-size: 15px;
}

.host-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.host-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all .2s;
}
.host-btn--outline {
    border: 1px solid #111827;
    color: #111827;
    background: #fff;
}
.host-btn--outline:hover {
    background: #f9fafb;
    color: #111827;
    text-decoration: none;
}

.host-divider {
    height: 1px;
    background: #e5e7eb;
    margin-bottom: 16px;
}

.host-report {
    font-size: 14px;
    color: #6b7280;
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.host-report:hover {
    color: #374151;
}

/* Reviews content (right) */
.listing-reviews-content {
    flex: 1;
    min-width: 0;
}
.listing-reviews-content .bc-reviews {
    border: none;
    padding: 0;
    margin: 0;
}
.listing-reviews-content .bc-reviews > h3 {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}
/* Overall star rating below title */
.listing-reviews-content .review-box {
    margin-bottom: 24px;
}
.listing-reviews-content .review-box .review-score {
    font-size: 20px;
}
/* Review list items */
.listing-reviews-content .review-list {
    margin-top: 0;
}
.listing-reviews-content .review-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 24px 0;
}
.listing-reviews-content .review-item:last-child {
    border-bottom: none;
}
.listing-reviews-content .review-item-head .media {
    display: flex;
    align-items: center;
    gap: 12px;
}
.listing-reviews-content .review-item-head .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.listing-reviews-content .review-item-head .avatar-text {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: #374151;
}
.listing-reviews-content .review-item-head .media-heading {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}
.listing-reviews-content .review-item-head .date {
    font-size: 13px;
    color: #9ca3af;
}
.listing-reviews-content .review-item-body {
    margin-top: 8px;
}
.listing-reviews-content .review-item-body .detail {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin-top: 6px;
}
.listing-reviews-content .review-star {
    display: inline-flex;
    gap: 2px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.listing-reviews-content .review-star li {
    font-size: 14px;
    color: #f5a623;
}
/* Star row with name */
.listing-reviews-content .review-item-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.listing-reviews-content .review-item-head .review-star {
    margin-top: 4px;
}
/* Review form input */
.listing-reviews-content .review-form {
    border: none;
    padding: 0;
    margin-top: 16px;
}
/* View more button */
.listing-reviews-content .review-pag-wrapper {
    text-align: center;
    padding: 20px 0;
}
.listing-reviews-content .bc-pagination .pagination {
    justify-content: center;
}

/* ── Professional Review Form ───────────────────────────────────────────────── */
.listing-reviews-content .review-form {
    border: none;
    padding: 0;
    margin-top: 32px;
    border-top: 1px solid #e5e7eb;
    padding-top: 32px;
}
.listing-reviews-content .review-form .title-form {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}
.listing-reviews-content .review-form .form-wrapper {
    background: #f9fafb;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e5e7eb;
}
.listing-reviews-content .review-form .form-control {
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    color: #111827;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
}
.listing-reviews-content .review-form .form-control:focus {
    border-color: #038a52;
    box-shadow: 0 0 0 3px rgba(3, 138, 82, .1);
    outline: none;
}
.listing-reviews-content .review-form .form-control::placeholder {
    color: #9ca3af;
}
.listing-reviews-content .review-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}
.listing-reviews-content .review-form .review-items .item {
    margin-bottom: 12px;
}
.listing-reviews-content .review-form .review-items .item label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 4px;
}
.listing-reviews-content .review-form .review-items .rates i {
    font-size: 18px;
    cursor: pointer;
    transition: color .15s;
}
.listing-reviews-content .review-form .review-items .rates i.grey {
    color: #d1d5db;
}
.listing-reviews-content .review-form .review-items .rates i:hover,
.listing-reviews-content .review-form .review-items .rates i.fa-star {
    color: #f5a623;
}
.listing-reviews-content .review-form input[type="submit"],
.listing-reviews-content .review-form .btn {
    background: #038a52;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
}
.listing-reviews-content .review-form input[type="submit"]:hover,
.listing-reviews-content .review-form .btn:hover {
    background: #026b3f;
}
.listing-reviews-content .review-form .review_upload_wrap {
    margin-top: 16px;
    padding: 16px;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}
.listing-reviews-content .review-message {
    margin-top: 24px;
    padding: 20px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 14px;
    color: #374151;
    text-align: center;
}
.listing-reviews-content .review-message a {
    color: #038a52;
    font-weight: 600;
}

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .listing-layout {
        flex-direction: column;
    }
    .listing-content-col {
        flex: none;
        max-width: 100%;
        padding-right: 0;
    }
    .listing-sidebar-col {
        flex: none;
        max-width: 100%;
        min-width: 0;
        margin-top: 32px;
    }
    .listing-sidebar-sticky {
        position: static;
    }
    .listing-two-col-grid {
        grid-template-columns: 1fr;
    }
    .bc_detail_car .bc-more-book-mobile {
        display: block;
    }
    .listing-content-col {
        padding-bottom: 80px;
    }
    .listing-included-grid {
        grid-template-columns: 1fr;
    }
    .listing-checklist--grid {
        grid-template-columns: 1fr;
    }
    .checklist-table-label {
        flex: 0 0 140px;
    }
    .listing-reviews-layout {
        gap: 32px;
    }
    .listing-host-card {
        flex: 0 0 280px;
        position: static;
    }
    .listing-fullwidth-location .listing-map-box--fullwidth {
        height: 700px;
        min-height: 600px;
    }
}

@media (max-width: 767px) {
    .listing-gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 280px;
        border-radius: 8px;
    }
    .listing-gallery-grid .gallery-cell {
        display: none;
    }
    .listing-gallery-grid .gallery-cell--0 {
        display: block;
        grid-column: 1 / -1;
        grid-row: 1;
    }
    .gallery-show-all {
        bottom: 12px;
        left: 12px;
        font-size: 13px;
        padding: 6px 12px;
    }
    .gallery-video-btn {
        bottom: 12px;
        right: 12px;
        font-size: 13px;
        padding: 6px 12px;
    }
    .listing-title {
        font-size: 22px;
    }
    .listing-layout {
        margin-top: 24px;
    }
    .listing-specs-row {
        gap: 16px;
    }
    .listingSection__wrap {
        padding: 20px;
    }
    .listing-pickup-card {
        padding: 20px;
    }
    .bc_detail_car .g-attributes .list-attributes {
        grid-template-columns: 1fr;
    }
    .share-popup {
        width: 95%;
        padding: 20px;
    }
    .checklist-table-row {
        flex-direction: column;
        gap: 4px;
    }
    .checklist-table-label {
        flex: none;
        font-size: 13px;
    }
    .listing-reviews-layout {
        flex-direction: column;
        gap: 0;
    }
    .listing-host-card {
        flex: none;
        width: 100%;
        position: static;
        margin-bottom: 32px;
    }
    .host-card-header {
        flex-direction: row;
    }
    .listing-fullwidth-section {
        margin-top: 32px;
        padding-top: 32px;
    }
    .listing-fullwidth-location .listing-map-box--fullwidth {
        height: 500px;
        min-height: 400px;
    }
    .avail-cal-wrap {
        flex-direction: column;
        gap: 24px;
    }
    .bc-related-slide {
        flex: 0 0 100%;
    }
    .bc_detail_car .bc-list-car-related .car-card__image {
        height: 180px;
        min-height: 160px;
    }
    .bc_detail_car .bc-list-car-related .car-card__image img {
        max-height: 160px;
    }
    .bc_detail_car .bc-list-car-related .car-card__content {
        padding: 10px 12px;
    }
    .bc_detail_car .bc-list-car-related .car-card__title {
        font-size: 13px;
    }
    .bc_detail_car .bc-list-car-related .car-card__specs {
        gap: 6px;
        margin: 6px 0;
    }
    .bc_detail_car .bc-list-car-related .car-card__spec {
        font-size: 11px;
    }
    .bc_detail_car .bc-list-car-related .car-card__features {
        display: none;
    }
    .bc_detail_car .bc-list-car-related .car-card__price-amount {
        font-size: 16px;
    }
    .bc_detail_car .bc-list-car-related .car-card__route {
        font-size: 10px;
    }
    .bc-related-nav__btn {
        flex: 0 0 34px;
        width: 34px;
        height: 34px;
        font-size: 12px;
    }
    .bc-related-carousel {
        gap: 8px;
    }
    .listing-gallery-header {
        padding-top: 12px;
    }
    .bc_detail_car .bc_single_book .form-head {
        padding: 16px 16px 12px;
    }
    .bc_detail_car .bc_single_book .form-head .price .amount {
        font-size: 20px;
    }
    .bc_detail_car .bc_single_book .form-content {
        padding: 12px 16px 0;
    }
    .bc_detail_car .bc_single_book .form-total {
        padding: 12px 16px;
    }
    .bc_detail_car .bc_single_book .submit-group {
        padding: 12px 16px 16px;
    }
}
@media (max-width: 480px) {
    .bc-related-slide {
        flex: 0 0 100%;
    }
    .bc_detail_car .bc-list-car-related .car-card__image {
        height: 180px;
        min-height: 160px;
    }
    .bc_detail_car .bc-list-car-related .car-card__image img {
        max-height: 160px;
    }
    .bc_detail_car .bc-list-car-related .car-card__content {
        padding: 12px 14px;
    }
    .bc_detail_car .bc-list-car-related .car-card__title {
        font-size: 13px;
    }
    .bc_detail_car .bc-list-car-related .car-card__features {
        display: flex;
    }
    .bc_detail_car .bc-list-car-related .car-card__price-amount {
        font-size: 16px;
    }
    .bc_detail_car .bc-list-car-related h2 {
        font-size: 18px;
    }
    .bc-related-nav__btn {
        flex: 0 0 30px;
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

/* ── Enquiry Modal Fix ─────────────────────────────────────────────────────── */
/* Modal is moved to <body> via JS to escape stacking context */
#enquiry_form_modal {
    z-index: 1060 !important;
}
#enquiry_form_modal .modal-content {
    border-radius: 14px;
    border: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    overflow: hidden;
}
#enquiry_form_modal .modal-header {
    padding: 16px 20px;
    border-bottom: 1px solid #f3f4f6;
    background: #fff;
}
#enquiry_form_modal .modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}
#enquiry_form_modal .modal-body {
    padding: 20px;
}
#enquiry_form_modal .modal-body .form-control {
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 14px;
    color: #111827;
    transition: border-color 0.2s;
}
#enquiry_form_modal .modal-body .form-control:focus {
    border-color: #038a52;
    box-shadow: 0 0 0 2px rgba(3,138,82,0.08);
    outline: none;
}
#enquiry_form_modal .modal-body textarea.form-control {
    min-height: 80px;
    resize: vertical;
}
#enquiry_form_modal .modal-footer {
    padding: 16px 20px;
    border-top: 1px solid #f3f4f6;
    background: #f9fafb;
}
#enquiry_form_modal .modal-footer .btn-secondary {
    border-radius: 10px;
    font-size: 14px;
    padding: 8px 16px;
}
#enquiry_form_modal .modal-footer .btn-primary,
#enquiry_form_modal .modal-footer .btn-submit-enquiry {
    background: #038a52;
    border-color: #038a52;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
}
#enquiry_form_modal .modal-footer .btn-primary:hover,
#enquiry_form_modal .modal-footer .btn-submit-enquiry:hover {
    background: #026b3f;
    border-color: #026b3f;
}

/* ── Mobile Sticky Bar Fix ─────────────────────────────────────────────────── */
/* Ensure mobile bottom bar does not overlap modals */
body.modal-open .bc_detail_car .bc-more-book-mobile {
    z-index: 1 !important;
}

/* ── Mobile Booking Panel (slide-up sheet) ─────────────────────────────────── */
.mobile-book-panel {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1055;
}
.mobile-book-panel.is-open {
    display: block;
}

/* Semi-transparent backdrop */
.mobile-book-panel__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    animation: mbpFadeIn .25s ease;
}

/* The white slide-up sheet */
.mobile-book-panel__sheet {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 92vh;
    background: #fff;
    border-radius: 18px 18px 0 0;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    animation: mbpSlideUp .3s ease forwards;
    box-shadow: 0 -4px 24px rgba(0,0,0,.12);
}
.mobile-book-panel.is-open .mobile-book-panel__sheet {
    transform: translateY(0);
}

/* Header bar with title + close */
.mobile-book-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}
.mobile-book-panel__title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}
.mobile-book-panel__close {
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #6b7280;
    cursor: pointer;
    transition: background .15s, color .15s;
}
.mobile-book-panel__close:hover {
    background: #f3f4f6;
    color: #111827;
}

/* Scrollable body containing the booking form */
.mobile-book-panel__body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex: 1 1 auto;
    padding: 16px 16px 24px;
}

/* Inside the panel, remove card shadow / border so it fits flush */
.mobile-book-panel__body .bc_single_book_wrap {
    display: block !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    margin: 0 !important;
    position: static !important;
    height: auto !important;
    overflow: visible !important;
    width: auto !important;
    z-index: auto !important;
}
.mobile-book-panel__body .listing_sidebar {
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
}
.mobile-book-panel__body .form-book__card {
    box-shadow: none !important;
    border: none !important;
}

/* Hide mobile bar when panel is open */
.mobile-book-panel.is-open ~ .bc-more-book-mobile,
body .mobile-book-panel.is-open ~ .bc-more-book-mobile {
    z-index: 1 !important;
}
body.mobile-book-open .bc-more-book-mobile {
    display: none !important;
}

@keyframes mbpSlideUp {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
}
@keyframes mbpFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   Mobile Booking Panel — Form Styles
   (re-scope .bc_detail_car selectors for when the form lives inside the panel)
   ═══════════════════════════════════════════════════════════════════════════════ */
.mobile-book-panel__body .bc_single_book {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: visible;
    box-shadow: none;
}

/* Price Header */
.mobile-book-panel__body .bc_single_book .form-head {
    background: #fff;
    padding: 16px 16px 14px;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 14px 14px 0 0;
}
.mobile-book-panel__body .bc_single_book .form-head .price {
    display: flex;
    align-items: baseline;
    gap: 3px;
}
.mobile-book-panel__body .bc_single_book .form-head .price .onsale {
    font-size: 13px;
    color: #9ca3af;
    text-decoration: line-through;
    margin-right: 4px;
}
.mobile-book-panel__body .bc_single_book .form-head .price .amount {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    line-height: 1;
}
.mobile-book-panel__body .bc_single_book .form-head .price .period {
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
}
.mobile-book-panel__body .bc_single_book .form-head .form-head-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
}
.mobile-book-panel__body .bc_single_book .form-head .form-head-rating .fa-star {
    color: #f47c04;
    font-size: 12px;
}
.mobile-book-panel__body .bc_single_book .form-head .form-head-rating .rating-score {
    font-weight: 600;
    color: #111827;
}
.mobile-book-panel__body .bc_single_book .form-head .form-head-rating .rating-count {
    color: #6b7280;
    font-weight: 400;
}

/* Book / Enquiry Tabs */
.mobile-book-panel__body .bc_single_book .nav-enquiry {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
}
.mobile-book-panel__body .bc_single_book .nav-enquiry .enquiry-item {
    flex: 1;
    text-align: center;
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: color .15s, border-color .15s;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.mobile-book-panel__body .bc_single_book .nav-enquiry .enquiry-item.active {
    color: #111827;
    border-bottom-color: #111827;
}
.mobile-book-panel__body .bc_single_book .nav-enquiry .enquiry-item:hover {
    color: #111827;
}

/* Form Body */
.mobile-book-panel__body .bc_single_book .form-book {
    padding: 0;
}
.mobile-book-panel__body .bc_single_book .form-content {
    padding: 14px 16px 0;
}

/* Date Picker */
.mobile-book-panel__body .bc_single_book .form-date-field {
    margin-bottom: 12px;
    position: relative;
}
.mobile-book-panel__body .bc_single_book .date-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s;
    background: #fff;
}
.mobile-book-panel__body .bc_single_book .date-wrapper:hover {
    border-color: #038a52;
}
.mobile-book-panel__body .bc_single_book .date-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0fdf4;
    border-radius: 8px;
    color: #038a52;
    font-size: 14px;
}
.mobile-book-panel__body .bc_single_book .date-text {
    flex: 1;
    min-width: 0;
}
.mobile-book-panel__body .bc_single_book .date-value {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mobile-book-panel__body .bc_single_book .date-note {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 4px;
    padding-left: 2px;
}

/* Number Input */
.mobile-book-panel__body .bc_single_book .form-guest-search {
    margin-bottom: 12px;
}
.mobile-book-panel__body .bc_single_book .guest-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #fff;
}
.mobile-book-panel__body .bc_single_book .guest-wrapper label {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    margin: 0;
}
.mobile-book-panel__body .bc_single_book .input-number-group {
    display: flex;
    align-items: center;
    gap: 2px;
}
.mobile-book-panel__body .bc_single_book .num-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d1d5db;
    border-radius: 50%;
    background: #fff;
    color: #9ca3af;
    font-size: 10px;
    cursor: pointer;
    transition: all .15s;
    padding: 0;
    line-height: 1;
}
.mobile-book-panel__body .bc_single_book .num-btn:hover {
    border-color: #9ca3af;
    color: #6b7280;
    background: #f9fafb;
}
.mobile-book-panel__body .bc_single_book .num-input {
    width: 32px;
    text-align: center;
    border: none;
    background: none;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    -moz-appearance: textfield;
}
.mobile-book-panel__body .bc_single_book .num-input::-webkit-inner-spin-button,
.mobile-book-panel__body .bc_single_book .num-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Extra Prices & Fees */
.mobile-book-panel__body .bc_single_book .form-extras {
    padding: 10px 0;
    border-top: 1px solid #f3f4f6;
}
.mobile-book-panel__body .bc_single_book .form-extras .extras-title {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 6px;
}
.mobile-book-panel__body .bc_single_book .extras-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0;
}
.mobile-book-panel__body .bc_single_book .extras-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 400;
    color: #374151;
    margin: 0;
}
.mobile-book-panel__body .bc_single_book .extras-label input[type="checkbox"] {
    accent-color: #038a52;
    width: 15px;
    height: 15px;
    cursor: pointer;
}
.mobile-book-panel__body .bc_single_book .extras-label small {
    font-size: 11px;
    color: #9ca3af;
}
.mobile-book-panel__body .bc_single_book .extras-label .icofont-info-circle {
    color: #9ca3af;
    font-size: 12px;
    cursor: help;
}
.mobile-book-panel__body .bc_single_book .extras-price {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
    white-space: nowrap;
}

/* Total */
.mobile-book-panel__body .bc_single_book .form-total {
    margin: 0;
    padding: 14px 16px;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
}
.mobile-book-panel__body .bc_single_book .total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 0;
}
.mobile-book-panel__body .bc_single_book .total-row .total-label {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}
.mobile-book-panel__body .bc_single_book .total-row .total-price {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}
.mobile-book-panel__body .bc_single_book .total-row--secondary .total-label {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
}
.mobile-book-panel__body .bc_single_book .total-row--secondary .total-price {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
}

/* Reserve Button */
.mobile-book-panel__body .bc_single_book .submit-group {
    padding: 14px 16px 16px;
}
.mobile-book-panel__body .bc_single_book .btn-reserve {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #fff !important;
    background: #038a52;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background .2s, transform .1s;
    text-decoration: none;
    letter-spacing: 0;
}
.mobile-book-panel__body .bc_single_book .btn-reserve:hover {
    background: #026b3f;
}
.mobile-book-panel__body .bc_single_book .btn-reserve.disabled {
    opacity: 0.6;
    pointer-events: none;
}
.mobile-book-panel__body .bc_single_book .btn-reserve .fa-lock {
    font-size: 12px;
    opacity: 0.7;
}
.mobile-book-panel__body .bc_single_book .submit-group .alert-text {
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 8px;
    margin-top: 8px;
}
.mobile-book-panel__body .bc_single_book .submit-group .alert-text.danger {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}
.mobile-book-panel__body .bc_single_book .submit-group .alert-text.success {
    background: #f0fdf4;
    color: #038a52;
    border: 1px solid #bbf7d0;
}

/* Enquiry Button */
.mobile-book-panel__body .bc_single_book .form-send-enquiry {
    padding: 14px 16px 16px;
}
.mobile-book-panel__body .bc_single_book .form-send-enquiry .btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    background: #111827;
    border-color: #111827;
    color: #fff;
}
.mobile-book-panel__body .bc_single_book .form-send-enquiry .btn-primary:hover {
    background: #1f2937;
    border-color: #1f2937;
}

/* Date field arrow & sub-label — hide in mobile panel too */
.mobile-book-panel__body .bc_single_book .form-date-field .fa-angle-down,
.mobile-book-panel__body .bc_single_book .form-date-field .render,
.mobile-book-panel__body .bc_single_book .form-date-field .date-wrapper > i.fa-angle-down {
    display: none !important;
}
.mobile-book-panel__body .bc_single_book .form-group > label:first-child {
    display: none;
}

/* ═══════════════════════════════════════════════════════════
   Car Quick Specs Strip
   ═══════════════════════════════════════════════════════════ */
.car-quick-specs {
    display: flex;
    border: 1px solid #e7ecf2;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}
.car-quick-spec-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 16px 10px;
    border-right: 1px solid #e7ecf2;
    text-align: center;
}
.car-quick-spec-item:last-child { border-right: none; }
.car-quick-spec-item i { font-size: 18px; color: #038a52; }
.car-quick-spec-item .spec-val { font-size: 14px; font-weight: 700; color: #111827; line-height: 1.2; }
.car-quick-spec-item .spec-label { font-size: 11px; color: #6b7280; }

/* ═══════════════════════════════════════════════════════════
   Car Attribute Groups
   ═══════════════════════════════════════════════════════════ */
.car-attr-groups { display: flex; flex-direction: column; gap: 22px; }
.car-attr-group {}
.car-attr-group-title {
    font-weight: 700;
    font-size: 13px;
    color: #111827;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.car-attr-group-title i { color: #038a52; font-size: 14px; }
.car-attr-group-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 8px;
}
.car-attr-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 13px;
    color: #374151;
    border: 1px solid transparent;
    transition: border-color .15s;
}
.car-attr-item:hover { border-color: #d1fae5; }
.car-attr-img { width: 20px; height: 20px; object-fit: contain; flex-shrink: 0; }
.car-attr-item > i { color: #038a52; font-size: 14px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   Ride Fare Selector (booking sidebar)
   ═══════════════════════════════════════════════════════════ */
.ride-fare-selector {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 14px;
}
.ride-fare-selector__title {
    font-weight: 700;
    font-size: 13px;
    color: #1e293b;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.ride-fare-selector__title i { color: #038a52; }
.ride-fare-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 8px;
    background: #fff;
    transition: border-color .15s, background .15s;
}
.ride-fare-option:last-of-type { margin-bottom: 0; }
.ride-fare-option:hover { border-color: #038a52; background: #f0fdf4; }
.ride-fare-option.is-selected { border-color: #038a52; background: #f0fdf4; }
.ride-fare-option__check {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: transparent;
    font-size: 10px;
    transition: border-color .15s, background .15s, color .15s;
}
.ride-fare-option.is-selected .ride-fare-option__check {
    border-color: #038a52;
    background: #038a52;
    color: #fff;
}
.ride-fare-option__body { flex: 1; min-width: 0; }
.ride-fare-option__name { display: block; font-size: 13px; font-weight: 600; color: #111827; }
.ride-fare-option__desc { display: block; font-size: 11px; color: #6b7280; margin-top: 1px; }
.ride-fare-option__price {
    font-size: 14px;
    font-weight: 700;
    color: #038a52;
    white-space: nowrap;
    flex-shrink: 0;
}
.ride-fare-option__price small { font-size: 10px; font-weight: 400; color: #6b7280; }
.ride-fare-driver-note {
    margin-top: 10px;
    font-size: 12px;
    color: #038a52;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 575px) {
    .car-quick-specs { flex-wrap: wrap; }
    .car-quick-spec-item { flex: 0 0 33.333%; border-bottom: 1px solid #e7ecf2; }
    .car-attr-group-items { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   Vehicle Features Accordion
   ═══════════════════════════════════════════════════════════ */
.car-attr-accordion { display: flex; flex-direction: column; }
.car-acc-group {
    border: 1px solid #e7ecf2;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}
.car-acc-group:last-child { margin-bottom: 0; }
.car-acc-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: #f8fafc;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    transition: background .15s;
}
.car-acc-header:hover { background: #f0fdf4; }
.car-acc-group.is-open .car-acc-header { background: #f0fdf4; color: #038a52; }
.car-acc-header__icon { color: #038a52; font-size: 15px; width: 18px; flex-shrink: 0; }
.car-acc-header__title { flex: 1; }
.car-acc-header__count {
    font-size: 11px;
    font-weight: 500;
    color: #6b7280;
    background: #e7ecf2;
    border-radius: 20px;
    padding: 2px 8px;
    margin-right: 4px;
}
.car-acc-group.is-open .car-acc-header__count { background: #d1fae5; color: #038a52; }
.car-acc-header__chevron {
    font-size: 12px;
    color: #9ca3af;
    transition: transform .25s ease;
}
.car-acc-group.is-open .car-acc-header__chevron { transform: rotate(180deg); color: #038a52; }
.car-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}
.car-acc-group.is-open .car-acc-body { max-height: 600px; }
.car-acc-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 8px;
    padding: 14px 16px;
    border-top: 1px solid #e7ecf2;
}
.car-acc-items .car-attr-item {
    background: #fff;
    border: 1px solid #f1f5f9;
}
.car-acc-items .car-attr-item > i { color: #038a52; }

/* ═══════════════════════════════════════════════════════════
   "You Might Also Like" — Improved Section Header
   ═══════════════════════════════════════════════════════════ */
.bc_detail_car .bc-list-car-related {
    padding: 40px 0 48px;
}
.bc_detail_car .bc-list-car-related h2 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    padding: 0;
}
.bc_detail_car .bc-list-car-related h2 i { color: #038a52; font-size: 20px; }
.bc-related-section-eyebrow {
    font-size: 12px;
    font-weight: 600;
    color: #038a52;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 6px;
    display: block;
}
.bc-related-section-divider {
    height: 3px;
    width: 40px;
    background: #038a52;
    border-radius: 2px;
    margin: 10px 0 24px;
}

/* ═══════════════════════════════════════════════════════════
   Booking form: date display after selection
   ═══════════════════════════════════════════════════════════ */
.td-page .bc_single_book .date-value.has-date {
    font-weight: 600;
    color: #1f2937;
}

/* Ride fare: per-unit note */
.ride-fare-per-unit-note {
    margin-top: 8px;
    padding: 8px 12px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 8px;
    font-size: 12px;
    color: #92400e;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.5;
}
.ride-fare-per-unit-note i { color: #f59e0b; margin-top: 1px; flex-shrink: 0; }

@media (max-width: 575px) {
    .car-acc-items { grid-template-columns: 1fr 1fr; }
}