/*
 * 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;
}


/* ── Tour Summary teaser ── */
.td-tour-summary {
    background: #f0faf5;
    border-left: 4px solid #038a52;
    border-radius: 0 10px 10px 0;
    padding: 14px 18px;
    margin-bottom: 28px;
}
.td-tour-summary p {
    font-size: 16px;
    line-height: 1.7;
    color: #1a2b48;
    margin: 0;
    font-weight: 500;
}

/* ── Tour Highlights bullet list ── */
.td-highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
}
.td-highlights-list li {
    font-size: 15px;
    color: #2d3748;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 0;
}
@media (max-width: 600px) {
    .td-highlights-list { grid-template-columns: 1fr; }
}

/* ── Tour Details meta grid ── */
.td-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
}
.td-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #f8fafc;
    border-radius: 10px;
    padding: 12px 14px;
}
.td-meta-icon {
    width: 32px;
    height: 32px;
    background: #e8f5ee;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #038a52;
    font-size: 13px;
}
.td-meta-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #94a3b8;
    margin-bottom: 2px;
}
.td-meta-value {
    font-size: 14px;
    font-weight: 600;
    color: #1a2b48;
}

/* ── Activity / Not-Allowed tag lists ── */
.td-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.td-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: #e8f5ee;
    color: #038a52;
    border: 1px solid #c3e6d3;
}
.td-tag--no {
    background: #fff0f0;
    color: #c0392b;
    border-color: #f5c6c6;
}

/* ── 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: 10px;
}

.td-itin-desc p:last-child {
    margin-bottom: 0;
}

.td-itin-desc ul {
    list-style: disc;
    padding-left: 22px;
    margin: 0 0 10px;
}

.td-itin-desc ol {
    list-style: decimal;
    padding-left: 22px;
    margin: 0 0 10px;
}

.td-itin-desc ul ul {
    list-style: circle;
    margin-bottom: 4px;
}

.td-itin-desc ol ol,
.td-itin-desc ul ol {
    list-style: lower-alpha;
    margin-bottom: 4px;
}

.td-itin-desc li {
    margin-bottom: 4px;
}

.td-itin-desc li>p {
    margin: 0;
}

.td-itin-desc h1,
.td-itin-desc h2,
.td-itin-desc h3,
.td-itin-desc h4,
.td-itin-desc h5,
.td-itin-desc h6 {
    color: #1e293b;
    font-weight: 700;
    margin: 14px 0 8px;
    line-height: 1.3;
}

.td-itin-desc h1:first-child,
.td-itin-desc h2:first-child,
.td-itin-desc h3:first-child,
.td-itin-desc h4:first-child,
.td-itin-desc h5:first-child,
.td-itin-desc h6:first-child {
    margin-top: 0;
}

.td-itin-desc h1 {
    font-size: 20px;
}

.td-itin-desc h2 {
    font-size: 18px;
}

.td-itin-desc h3 {
    font-size: 16px;
}

.td-itin-desc h4,
.td-itin-desc h5,
.td-itin-desc h6 {
    font-size: 14px;
}

.td-itin-desc strong,
.td-itin-desc b {
    color: #1e293b;
    font-weight: 700;
}

.td-itin-desc a {
    color: #038a52;
    text-decoration: underline;
}

.td-itin-desc blockquote {
    margin: 10px 0;
    padding: 8px 16px;
    border-left: 3px solid #038a52;
    background: #f0fdf4;
    color: #1e293b;
    font-style: italic;
    border-radius: 0 6px 6px 0;
}

.td-itin-desc table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
    font-size: 13px;
}

.td-itin-desc table td,
.td-itin-desc table th {
    border: 1px solid #e9ecef;
    padding: 6px 10px;
}

.td-itin-desc table th {
    background: #f8fafc;
    color: #1e293b;
}

.td-itin-desc img {
    max-width: 100%;
    border-radius: 8px;
    margin: 8px 0;
}

.td-itin-desc hr {
    border: none;
    border-top: 1px solid #e9ecef;
    margin: 12px 0;
}

/* 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;
    height: 220px;
}

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

/* ── Accommodation stops ── */
.td-accom-list { display: flex; flex-direction: column; gap: 16px; }
.td-accom-item {
    display: flex;
    gap: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}
.td-accom-img {
    width: 140px;
    flex-shrink: 0;
}
.td-accom-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.td-accom-body {
    padding: 14px 16px;
    flex: 1;
}
.td-accom-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a2b48;
    margin-bottom: 4px;
}
.td-accom-loc {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.td-accom-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.td-accom-tag {
    font-size: 12px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 20px;
    padding: 3px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.td-accom-tag--meal { background: #e8f5ee; color: #038a52; }
@media (max-width: 576px) {
    .td-accom-item { flex-direction: column; }
    .td-accom-img { width: 100%; height: 160px; }
}

/* ── Itinerary: You will be visiting ── */
.td-itin-visiting {
    font-size: 13px;
    color: #038a52;
    font-weight: 500;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ── Itinerary: Meal Plan tags ── */
.td-itin-meals {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}
.td-meal-tag {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: .03em;
}
.td-meal-B { background: #fef9e8; color: #b45309; border: 1px solid #fde68a; }
.td-meal-L { background: #e8f5ee; color: #038a52; border: 1px solid #bbf7d0; }
.td-meal-D { background: #eef2ff; color: #4338ca; border: 1px solid #c7d2fe; }

/* ── Itinerary: End marker ── */
.td-itin-end {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0 6px 0;
    margin-top: 8px;
    border-top: 2px dashed #e2e8f0;
}
.td-itin-end-badge {
    background: #0f172a;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}
.td-itin-end-text {
    font-size: 13px;
    color: #94a3b8;
    font-style: italic;
}

@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 ──
   Cards reuse the canonical .tm-card component (tm-filter.css) so the
   design stays in sync with the search/listing pages instead of drifting
   as a hand-maintained duplicate. Only carousel chrome lives here.
*/
.td-related {
    padding: 48px 0;
    margin-top: 16px;
    border-top: 1px solid #eef0f2;
}

.td-related-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.td-related-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a2b48;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.td-related-title::before {
    content: "\f14e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 16px;
    color: #038a52;
}

.td-related-nav {
    display: flex;
    gap: 10px;
}

.td-related-nav .td-nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e2e5e9;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: #1a2b48;
    transition: all .2s;
    padding: 0;
    box-shadow: 0 1px 3px rgba(16, 24, 40, .06);
}

.td-related-nav .td-nav-arrow:hover {
    background: #038a52;
    border-color: #038a52;
    color: #fff;
    box-shadow: 0 4px 10px rgba(3, 138, 82, .25);
}

.td-related-nav .td-nav-arrow:disabled,
.td-related-nav .td-nav-arrow.disabled {
    opacity: .35;
    cursor: default;
    pointer-events: none;
    box-shadow: none;
}

.td-related-wrap {
    position: relative;
    overflow: hidden;
    margin: 0 -6px;
}

.td-related-scroll {
    display: flex;
    gap: 20px;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    padding: 6px;
    -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 290px;
    scroll-snap-align: start;
    display: flex;
}

/* Related cards get a touch more lift than the flat listing-page cards
   since they sit inside a carousel and need to read as distinct tiles. */
.td-related-item .tm-card {
    box-shadow: 0 1px 2px rgba(16, 24, 40, .04);
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.td-related-item .tm-card:hover {
    box-shadow: 0 12px 24px rgba(16, 24, 40, .1);
    transform: translateY(-3px);
}

/* ── Sidebar (Sticky) ── */
.td-sidebar {
    position: static;
}

/* ── Modal z-index fix ──
   Bootstrap 4 default: backdrop=1040, modal=1050.
   We keep backdrop at 1040 so all modals (1050+) naturally float above it.
   Page-specific modals needing extra lift use 1060+.
*/
.modal-backdrop {
    z-index: 1040 !important;
}

.modal {
    z-index: 1055 !important;
}

.td-enquiry-modal-container .modal {
    z-index: 1060 !important;
}

#enquiry_form_modal {
    z-index: 1060 !important;
}

#globalShareModal {
    z-index: 1060 !important;
}

#login,
#register {
    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: 22px !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 .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 .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 {
    outline: none;
    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 {
    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 {
    box-shadow: none;
    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: 18px;
    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 {
    outline: none;
    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;
    }

    /* Push chatbot launcher above the fixed mobile book bar (~70px) */
    .td-page #cb-launcher,
    .bc_detail_hotel #cb-launcher,
    .bc_detail_car #cb-launcher {
        bottom: 90px !important;
    }
    .td-page #cb-panel,
    .bc_detail_hotel #cb-panel,
    .bc_detail_car #cb-panel {
        bottom: 160px !important;
    }
}

@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: 19px !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: clip;
    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);
    margin-bottom: 24px;
}

.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;
    align-items: center;
}

.td-snav-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    background: #fff;
    border: 1.5px solid #d1d5db;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    white-space: nowrap;
    transition: all .2s;
    line-height: 1;
}

.td-snav-btn:hover {
    background: #f9fafb;
    border-color: #9ca3af;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
}

/* Wishlist default */
.td-snav-btn--wish:hover {
    border-color: #f87171;
    color: #dc2626;
}

/* Wishlist saved/active state */
.td-snav-btn--wish.active {
    background: #fff1f2;
    border-color: #dc2626;
    color: #dc2626;
}

.td-snav-btn--wish.active .td-snav-heart {
    font-weight: 900;
}

/* Share button accent */
.td-snav-btn--share:hover {
    border-color: #038a52;
    color: #038a52;
}

/* Label: hidden on mobile, visible from md up */
.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 now uses shared .td-snav-btn pill styles */


/* ========================================================================
   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: 120px;
    align-self: flex-start;
    height: auto;
    max-height: none;
    overflow: visible;
}

/* ========================================================================
   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 {
    outline: none;
}

.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 {
    outline: none;
}

.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;

}

/* Per-room quantity stepper (multi-room) */
.hd-room-qty {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid #d7e0da;
    border-radius: 8px;
    overflow: hidden;
}

.hd-room-qty-btn {
    width: 34px;
    height: 38px;
    border: 0;
    background: #f6f9f7;
    color: #038a52;
    font-size: 13px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .15s ease;
}

.hd-room-qty-btn:hover:not(:disabled) {
    background: #e8f5ee;
}

.hd-room-qty-btn:disabled {
    color: #b7c4bc;
    cursor: not-allowed;
}

.hd-room-qty-val {
    min-width: 34px;
    text-align: center;
    font-weight: 700;
    color: #14253c;
    font-size: 14px;
}

/* Itemised multi-room list in the booking sidebar */
.hd-summary-rooms {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 10px;
    margin-bottom: 8px;
    border-bottom: 1px dashed #e1e8e3;
}

.hd-summary-room {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.hd-summary-room-main {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.hd-summary-room-name {
    font-size: 13px;
    font-weight: 600;
    color: #14253c;
    line-height: 1.25;
}

.hd-summary-room-meta {
    font-size: 12px;
    color: #7a9186;
}

.hd-summary-room-side {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.hd-summary-room-amt {
    font-size: 13px;
    font-weight: 700;
    color: #14253c;
}

.hd-summary-room-remove {
    border: 0;
    background: none;
    color: #b7c4bc;
    cursor: pointer;
    font-size: 13px;
    line-height: 1;
    padding: 2px;
    transition: color .15s ease;
}

.hd-summary-room-remove:hover {
    color: #e0413b;
}

/* 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;
    justify-content: center;
    gap: 12px;
}

.hd-room-modal-reserve-btn {
    padding: 10px 28px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #038a52 0%, #027a48 100%);
    color: #fff;
    font-size: 14px;
    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: "\f023";
    /* fa-lock */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    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)
   ======================================================================== */

/* Masonry-style columns so category cards pack and balance regardless of how
   many amenities each one has (no big gaps when one group has 10 and another 2). */
.hd-amenities-categories {
    column-count: 3;
    column-gap: 32px;
}

.hd-amenity-category {
    min-width: 0;
    display: inline-block;
    width: 100%;
    margin-bottom: 28px;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
}

.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 */
/* ── Policy Cards ── */
.hd-pol-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.hd-pol-card {
    display: flex;
    gap: 14px;
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 14px;
    padding: 20px;
    transition: box-shadow .18s, border-color .18s;
    align-items: flex-start;
}

.hd-pol-card:hover {
    box-shadow: 0 4px 18px rgba(3, 138, 82, .08);
    border-color: #c6e6d9;
}

/* Icon: primary = #038a52, alternate = #f47c04 */
.hd-pol-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #038a52;
    color: #fff;
    font-size: 17px;
    flex-shrink: 0;
    margin-top: 2px;
}

.hd-pol-icon-alt {
    background: #f47c04;
}

.hd-pol-card-body {
    flex: 1;
    min-width: 0;
}

/* Header row */
.hd-pol-head {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.hd-pol-head h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.hd-pol-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 9px;
    border-radius: 20px;
    border: 1px solid rgba(3, 138, 82, .3);
    background: rgba(3, 138, 82, .08);
    color: #038a52;
    white-space: nowrap;
}

/* Times */
.hd-pol-times {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.hd-pol-time-item {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.hd-pol-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: #999;
}

.hd-pol-val {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.hd-pol-fee {
    font-size: 11px;
    color: #777;
    display: block;
    margin-top: 1px;
}

/* Badges */
.hd-pol-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 8px;
}

.hd-pol-badges:empty {
    display: none;
}

.hd-pol-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 500;
    background: rgba(3, 138, 82, .07);
    color: #038a52;
    padding: 3px 9px;
    border-radius: 6px;
    white-space: nowrap;
}

.hd-pol-badge i {
    font-size: 11px;
}

/* Stay stats */
.hd-pol-stats {
    display: flex;
    gap: 16px;
    margin-top: 2px;
}

.hd-pol-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(3, 138, 82, .05);
    border: 1px solid rgba(3, 138, 82, .18);
    border-radius: 10px;
    padding: 10px 22px;
    min-width: 80px;
}

.hd-pol-stat-num {
    font-size: 30px;
    font-weight: 800;
    color: #038a52;
    line-height: 1;
}

.hd-pol-stat-label {
    font-size: 11px;
    color: #555;
    margin-top: 3px;
    text-align: center;
}

/* Rules list */
.hd-pol-rules-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    margin-bottom: 8px;
}

.hd-pol-rule {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #333;
    padding: 4px 0;
}

.hd-pol-rule i {
    width: 18px;
    text-align: center;
    color: #f47c04;
    font-size: 13px;
    flex-shrink: 0;
}

/* Key-value table */
.hd-pol-kv-list {
    display: flex;
    flex-direction: column;
    border: 1px solid #e8edf3;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}

.hd-pol-kv {
    display: flex;
    gap: 8px;
    font-size: 12.5px;
    padding: 6px 10px;
    border-bottom: 1px solid #f4f6f8;
}

.hd-pol-kv:last-child {
    border-bottom: none;
}

.hd-pol-kv>span:first-child {
    font-weight: 600;
    color: #555;
    min-width: 90px;
    flex-shrink: 0;
}

.hd-pol-kv>span:last-child {
    color: #1a1a1a;
}

/* Brief preview text */
.hd-pol-brief {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* View Policy button */
.hd-pol-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #f47c04;
    background: rgba(244, 124, 4, .08);
    border: 1px solid rgba(244, 124, 4, .25);
    border-radius: 6px;
    padding: 5px 12px;
    cursor: pointer;
    transition: background .15s, color .15s;
    text-decoration: none;
}

.hd-pol-view-btn:hover {
    background: #f47c04;
    color: #fff;
    border-color: #f47c04;
}

.hd-pol-view-btn i {
    font-size: 11px;
}

/* ── Policy Modal ── */
.hd-pol-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hd-pol-modal-overlay.hd-pol-modal-active {
    display: flex;
}

.hd-pol-modal-box {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 600px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
    overflow: hidden;
}

.hd-pol-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: #038a52;
    color: #fff;
    flex-shrink: 0;
}

.hd-pol-modal-head span {
    font-size: 16px;
    font-weight: 700;
}

.hd-pol-modal-close {
    background: rgba(255, 255, 255, .2);
    border: none;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
}

.hd-pol-modal-close:hover {
    background: rgba(255, 255, 255, .35);
}

.hd-pol-modal-body {
    padding: 22px 24px;
    overflow-y: auto;
    font-size: 14px;
    line-height: 1.75;
    color: #333;
}

.hd-pol-modal-body p {
    margin: 0 0 8px;
}

.hd-pol-modal-body p:last-child {
    margin-bottom: 0;
}

.hd-pol-modal-body ul,
.hd-pol-modal-body ol {
    margin: 4px 0 10px 20px;
    padding: 0;
}

.hd-pol-modal-body li {
    margin-bottom: 4px;
}

.hd-pol-modal-body strong {
    color: #1a1a1a;
}

.hd-pol-modal-body>p>strong {
    display: block;
    color: #038a52;
    font-size: 13px;
    margin-bottom: 4px;
    border-bottom: 1px solid #e8edf3;
    padding-bottom: 4px;
}

/* ========================================================================
   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-name a {
    color: inherit;
    text-decoration: none;
}

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

.hd-host-avatar {
    display: block;
}

.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 {
        column-count: 2;
    }

    .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 {
        column-count: 1;
    }

    .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. Use `clip` not `hidden` - `hidden` creates an
   implicit scroll container on the y-axis (per CSS spec) which breaks
   position:sticky on any descendant. `clip` clips visually without creating
   a scroll container, so the sidebar sticky still works. */
.hd-main {
    min-width: 0;
    overflow-x: clip;
}

.hd-layout {
    min-width: 0;
    overflow-x: clip;
}

.hd-container {
    min-width: 0;
    overflow-x: clip;
}

/* 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: 18px;
    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: 15px;
    }

    .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: 96px;
    align-self: flex-start;
    height: auto;
    max-height: none;
    overflow: visible;
}

/* ── 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-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: 13px;
    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 {
    box-shadow: none;
    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 {
    box-shadow: none;
    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-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;
    }
}

/* ═══════════════════════════════════════════════════════════
   Vendor Directory Page  (/vendors)
   ═══════════════════════════════════════════════════════════ */

/* ── Carousel Hero ─────────────────────────────────────────── */
#vendorHeroCarousel {
    width: 100%;
    overflow: hidden;
    border: none !important;
    box-shadow: none !important;
}

.vendor-hero-carousel .carousel-item {
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.vendor-hero-carousel .carousel-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .25) 0%, rgba(0, 0, 0, .52) 100%);
}

.vendor-hero-carousel .carousel-caption,
.vendor-hero-carousel .carousel-item .carousel-caption {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px 40px;
}

.vendor-hero-carousel .carousel-caption h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: .5rem;
    text-align: center;
    width: 100%;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .35);
}

.vendor-hero-carousel .carousel-caption p {
    font-size: 1.05rem;
    opacity: .95;
    max-width: 560px;
    text-align: center;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .30);
}

/* ── Filter Bar ─────────────────────────────────────────────── */
.vendor-filter-bar {
    background: #fff;
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: -30px;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .10);
}

.vendor-filter-bar .form-control:focus {
    outline: none;
    box-shadow: none;
}

/* ── Vendor Cards ────────────────────────────────────────────── */
.vendor-card {
    border-radius: 14px;
    transition: transform .2s, box-shadow .2s;
    overflow: hidden;
}

.vendor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, .13) !important;
}

.vendor-card__head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 18px 14px;
    border-bottom: 1px solid #f0f4f1;
}

.vendor-card__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e8f5ee;
    flex-shrink: 0;
}

.vendor-card__meta {
    flex: 1;
    min-width: 0;
}

.vendor-card__name-link {
    font-size: .92rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.25;
    display: block;
    margin: 0 0 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    transition: color .15s;
}

.vendor-card__name-link:hover {
    color: #f47c04;
    text-decoration: none;
}

.vendor-card__verified {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: .73rem;
    color: #f47c04;
    font-weight: 600;
    margin-bottom: 5px;
}

.vendor-type-badge {
    font-size: .65rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    background: #e8f5ee !important;
    color: #038a52 !important;
}

.vendor-info-row {
    font-size: .8rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 5px;
}

.vendor-info-row i {
    color: #64748b;
    width: 13px;
    flex-shrink: 0;
}

.vendor-info-row a {
    color: #475569;
    text-decoration: none;
    transition: color .15s;
}

.vendor-info-row a:hover {
    color: #f47c04;
}

.vendor-card-divider {
    border-top: 1px solid #f0f4f1;
    margin: 10px 0;
}

/* ═══════════════════════════════════════════════════════════
   Vendor Directory Page v2  - Professional redesign
   ═══════════════════════════════════════════════════════════ */

/* ── Hero ──────────────────────────────────────────────────── */
.vd-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 88px 0 80px;
    border-bottom: none;
}

.vd-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4, 52, 44, .75) 0%, rgba(3, 138, 82, .45) 100%);
    z-index: 1;
}

.vd-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    gap: 0;
}

.vd-hero__text {
    width: 100%;
}

.vd-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .30);
    font-size: .72rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: .05em;
    backdrop-filter: blur(4px);
}

.vd-hero__title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .25);
}

.vd-hero__sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .88);
    line-height: 1.75;
    margin-bottom: 32px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, .20);
}

.vd-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ── CTA Buttons ─────────────────────────────────────────── */
.vd-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #038a52;
    color: #fff;
    border: 2px solid #038a52;
    padding: 12px 26px;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .18s;
    cursor: pointer;
}

.vd-btn-primary:hover {
    background: #026b40;
    border-color: #026b40;
    color: #fff;
    text-decoration: none;
}

.vd-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .55);
    padding: 12px 26px;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .18s;
    cursor: pointer;
    backdrop-filter: blur(4px);
}

.vd-btn-ghost:hover {
    background: rgba(255, 255, 255, .22);
    border-color: #fff;
    color: #fff;
    text-decoration: none;
}

@media (max-width: 767px) {
    .vd-hero {
        padding: 60px 0 52px;
    }

    .vd-hero__title {
        font-size: 1.75rem;
    }

    .vd-hero__inner {
        padding: 0 8px;
    }
}

/* ── Stats Bar ─────────────────────────────────────────────── */
.vd-stats {
    background: #fff;
    border-bottom: 1px solid #e8f5ee;
    padding: 22px 0;
}

.vd-stats__inner {
    display: flex;
}

.vd-stat {
    flex: 1;
    text-align: center;
    padding: 0 16px;
    border-right: 1px solid #e8f5ee;
}

.vd-stat:last-child {
    border-right: none;
}

.vd-stat__num {
    font-size: 1.65rem;
    font-weight: 700;
    color: #038a52;
    line-height: 1;
}

.vd-stat__lbl {
    font-size: .72rem;
    color: #64748b;
    margin-top: 5px;
}

/* ── Section headings (shared) ──────────────────────────────── */
.vd-label {
    font-size: .68rem;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.vd-heading {
    font-size: 1.45rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.vd-sub {
    font-size: .9rem;
    color: #475569;
    line-height: 1.75;
    max-width: 580px;
    margin-bottom: 28px;
}

/* ── Categories ────────────────────────────────────────────── */
.vd-cats {
    padding: 52px 0;
    border-bottom: 1px solid #f0f4f1;
    text-align: center !important;
}

.vd-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.vd-cat-card {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 30px 22px 24px;
    background: #fff;
    display: block;
    text-decoration: none;
    text-align: center;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.vd-cat-card:hover {
    border-color: #038a52;
    box-shadow: 0 6px 24px rgba(3, 138, 82, .10);
    transform: translateY(-3px);
    text-decoration: none;
}

.vd-cat-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.4rem;
}

.vd-cat-name {
    font-size: .95rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 6px;
}

.vd-cat-desc {
    font-size: .8rem;
    color: #64748b;
    line-height: 1.65;
}

.vd-cat-tag {
    display: inline-block;
    margin-top: 14px;
    font-size: .68rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
}

@media (max-width: 767px) {
    .vd-cat-grid {
        grid-template-columns: 1fr;
    }
}

/* ── How It Works ──────────────────────────────────────────── */
.vd-how {
    background: #f8fafc;
    padding: 52px 0;
    border-top: 1px solid #f0f4f1;
    border-bottom: 1px solid #f0f4f1;
}

.vd-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 28px;
}

.vd-step {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 26px 22px;
}

.vd-step__num {
    width: 32px;
    height: 32px;
    background: #038a52;
    color: #fff;
    border-radius: 50%;
    font-size: .8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.vd-step__title {
    font-size: .92rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 6px;
}

.vd-step__desc {
    font-size: .8rem;
    color: #64748b;
    line-height: 1.7;
}

@media (max-width: 767px) {
    .vd-steps {
        grid-template-columns: 1fr;
    }
}

/* ── Filter Bar ────────────────────────────────────────────── */
.vd-filter {
    background: #fff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 18px 0;
}

.vd-filter__row {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: nowrap;
}

.vd-search {
    flex: 1;
    position: relative;
    min-width: 180px;
}

.vd-search i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
}

.vd-search input {
    padding-left: 36px;
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding-top: 9px;
    padding-bottom: 9px;
    font-size: .85rem;
    color: #1e293b;
    background: #f8fafc;
    transition: border-color .15s;
}

.vd-search input:focus {
    outline: none;
    background: #fff;
    box-shadow: none;
}

.vd-pills {
    display: flex;
    gap: 6px;
    flex-wrap: nowrap;
    flex-shrink: 0;
}

.vd-pill {
    padding: 7px 16px;
    font-size: .78rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background: transparent;
    cursor: pointer;
    color: #475569;
    text-decoration: none;
    display: inline-block;
    transition: all .15s;
    white-space: nowrap;
}

.vd-pill:hover {
    background: #e8f5ee;
    border-color: #038a52;
    color: #044d30;
    text-decoration: none;
}

.vd-pill.active {
    background: #e8f5ee;
    border-color: #038a52;
    color: #044d30;
    font-weight: 600;
}

.vd-sort-select {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 9px 12px;
    font-size: .82rem;
    color: #475569;
    background: #f8fafc;
    width: auto;
    min-width: 140px;
    flex-shrink: 0;
}

.vd-sort-select:focus {
    outline: none;
}

@media (max-width: 900px) {
    .vd-filter__row {
        flex-wrap: wrap;
    }

    .vd-pills {
        flex-wrap: wrap;
        flex-shrink: 1;
    }

    .vd-sort-select {
        width: 100%;
        min-width: unset;
    }
}

/* ── Listing ───────────────────────────────────────────────── */
.vd-listing {
    background: #f8fafc;
    padding: 36px 0 60px;
}

.vd-listing__hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.vd-listing__count {
    font-size: .85rem;
    color: #64748b;
}

.vd-listing__count a {
    color: #038a52;
}

.vd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 18px;
}

/* ── Vendor Card v3 ────────────────────────────────────────── */
.vd-card {
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    padding: 22px;
    text-decoration: none;
    color: inherit;
    transition: transform .18s, box-shadow .18s, border-color .18s;
    cursor: pointer;
    position: relative;
}

.vd-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .08);
    border-color: #038a52;
    text-decoration: none;
    color: inherit;
}

/* ── Top row: avatar + name block + badge ── */
.vd-card__top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.vd-card__avatar-wrap {
    flex-shrink: 0;
}

.vd-card__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e8f5ee;
}

.vd-card__avatar-init {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.vd-card__nameblock {
    flex: 1;
    min-width: 0;
}

.vd-card__name {
    font-size: .95rem;
    font-weight: 700;
    color: #1a2332;
    display: block;
    line-height: 1.3;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vd-card__verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .7rem;
    color: #038a52;
    font-weight: 600;
}

.vd-card__badge {
    font-size: .62rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── Divider ── */
.vd-card__divider {
    height: 1px;
    background: #f0f4f8;
    margin-bottom: 14px;
}

/* ── Rating row ── */
.vd-card__rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.vd-card__stars {
    color: #f59e0b;
    font-size: .8rem;
    letter-spacing: 1px;
}

.vd-card__stars .vd-star-empty {
    color: #d1d5db;
}

.vd-card__rating-num {
    font-size: .88rem;
    font-weight: 700;
    color: #1a2332;
}

.vd-card__review-count {
    font-size: .75rem;
    color: #94a3b8;
}

.vd-no-reviews {
    font-style: italic;
}

.vd-card__new-badge {
    background: #f47c04;
    color: #fff;
    font-size: .62rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    letter-spacing: .04em;
}

/* ── Specialty tags ── */
.vd-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.vd-card__tag {
    background: #f1f5f9;
    color: #475569;
    font-size: .72rem;
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
}

/* ── Info rows ── */
.vd-card__info {
    flex: 1;
    margin-bottom: 14px;
}

.vd-card__info-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    color: #64748b;
    margin-bottom: 7px;
    line-height: 1.4;
}

.vd-card__info-row i {
    font-size: .9rem;
    color: #94a3b8;
    flex-shrink: 0;
    width: 14px;
    text-align: center;
}

/* ── Footer: listing count ── */
.vd-card__foot {
    border-top: 1px solid #f0f4f8;
    padding-top: 12px;
    display: flex;
    justify-content: flex-end;
}

.vd-card__listings {
    font-size: .75rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ── Empty state ───────────────────────────────────────────── */
.vd-empty {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border: 1px dashed #e2e8f0;
    border-radius: 14px;
}

.vd-empty i {
    font-size: 2.5rem;
    color: #cbd5e1;
    display: block;
    margin-bottom: 14px;
}

.vd-empty p {
    font-size: .9rem;
    color: #64748b;
    margin-bottom: 16px;
}

/* ── Load More ─────────────────────────────────────────────── */
.vd-load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.vd-load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 36px;
    background: #fff;
    border: 2px solid #038a52;
    border-radius: 999px;
    color: #038a52;
    font-size: .88rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .18s, color .18s;
}

.vd-load-more-btn:hover:not(:disabled) {
    background: #038a52;
    color: #fff;
}

.vd-load-more-btn:disabled {
    opacity: .65;
    cursor: default;
}

/* ── Join CTA ──────────────────────────────────────────────── */
.vd-cta {
    background: #04342c;
    padding: 64px 0;
}

.vd-cta__inner {
    display: flex;
    align-items: center;
    gap: 64px;
}

.vd-cta__body {
    flex: 1;
}

.vd-cta__eyebrow {
    font-size: .68rem;
    font-weight: 600;
    color: #5dcaa5;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.vd-cta__title {
    font-size: 1.9rem;
    font-weight: 700;
    color: #e8f5ee;
    line-height: 1.25;
    margin-bottom: 12px;
}

.vd-cta__sub {
    font-size: .92rem;
    color: #9fe1cb;
    line-height: 1.75;
    margin-bottom: 24px;
}

.vd-cta__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.vd-cta__list li {
    font-size: .85rem;
    color: #9fe1cb;
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
}

.vd-cta__list i {
    color: #5dcaa5;
    flex-shrink: 0;
}

.vd-cta__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.vd-cta__illo {
    flex: 0 0 210px;
    display: flex;
    justify-content: center;
}

@media (max-width: 767px) {
    .vd-cta__inner {
        flex-direction: column;
        gap: 32px;
    }

    .vd-cta__illo {
        display: none;
    }

    .vd-cta__title {
        font-size: 1.5rem;
    }
}

/* ── Trust Cards ───────────────────────────────────────────── */
.vd-trust {
    padding: 52px 0;
    border-top: 1px solid #f0f4f1;
}

.vd-trust__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 28px;
}

.vd-trust__card {
    padding: 26px 22px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
}

.vd-trust__icon {
    font-size: 1.6rem;
    color: #038a52;
    display: block;
    margin-bottom: 14px;
}

.vd-trust__title {
    font-size: .92rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 6px;
}

.vd-trust__desc {
    font-size: .8rem;
    color: #64748b;
    line-height: 1.7;
}

@media (max-width: 767px) {
    .vd-trust__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================================
   VENDOR PROFILE PAGE  (.vp-*)
   ============================================================================ */

/* ── Hero ───────────────────────────────────────────────────── */
.vp-hero {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a3d1f 0%, #1a6b3a 40%, #038a52 70%, #05b36a 100%);
}

.vp-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: .55;
}

.vp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 30, 15, .6) 0%, rgba(3, 80, 42, .35) 60%, transparent 100%);
}

.vp-hero-inner {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.vp-hero-container {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    padding-bottom: 1.75rem;
}

.vp-crumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .95rem;
    color: rgba(255, 255, 255, .75);
}

.vp-crumb a {
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
}

.vp-crumb a:hover {
    color: #fff;
}

.vp-crumb-sep {
    font-size: .72rem;
    opacity: .7;
}

.vp-crumb-cur {
    color: #fff;
}

.vp-hero-badge {
    align-self: flex-end;
    background: rgba(255, 255, 255, .15);
    border: .5px solid rgba(255, 255, 255, .32);
    color: #fff;
    font-size: .75rem;
    font-weight: 500;
    padding: 5px 13px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.vp-hero-name {
    font-size: 1.9rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 1px 6px rgba(0, 0, 0, .3);
}

/* ── Force light theme on the whole profile page ────────────── */
.vp-vendor-header,
.vp-tabs-wrap,
.vp-body,
.vp-sec,
.vp-card,
.vp-response-box,
.vp-sv-section,
.vp-sv-card {
    color-scheme: light;
}

/* ── Vendor header bar ──────────────────────────────────────── */
.vp-vendor-header {
    background: #ffffff !important;
    border-bottom: 1px solid #e2e8f0;
    width: 100%;
}

.vp-vendor-header-inner {
    display: flex;
    align-items: flex-end;
    gap: 1.25rem;
    padding: 0 0 1.25rem;
}

.vp-avatar-wrap {
    position: relative;
    flex-shrink: 0;
    margin-top: -48px;
}

.vp-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 3px solid #fff;
    background: linear-gradient(135deg, #038a52, #05b36a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
}

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

.vp-verified-dot {
    position: absolute;
    bottom: 3px;
    right: 3px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #038a52;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 9px;
}

.vp-vendor-meta {
    flex: 1;
    min-width: 0;
    padding-top: .75rem;
}

.vp-vendor-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a !important;
    line-height: 1.25;
}

.vp-vendor-tags {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: .35rem;
    flex-wrap: wrap;
}

.vp-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .72rem;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 20px;
}

.vp-tag-verified {
    background: #e1f5ee;
    color: #044d30;
}

.vp-tag-top {
    background: #faeeda;
    color: #854f0b;
}

.vp-vendor-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
    padding-bottom: 1.25rem;
    flex-shrink: 0;
}

.vp-btn-primary {
    background: #038a52;
    color: #fff;
    border: none;
    padding: 9px 18px;
    border-radius: 8px;
    font-size: .84rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
}

.vp-btn-primary:hover {
    background: #026b40;
    color: #fff;
    text-decoration: none;
}

.vp-btn-sec {
    background: transparent;
    color: #475569;
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: .84rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
}

.vp-btn-sec:hover {
    border-color: #038a52;
    color: #038a52;
    text-decoration: none;
}

/* ── Stats bar ──────────────────────────────────────────────── */
.vp-stats-bar {
    display: flex;
    border-top: 1px solid #f1f5f9;
    margin: 0 -1px;
}

.vp-stat-item {
    flex: 1;
    padding: .85rem .5rem;
    text-align: center;
    border-right: 1px solid #f1f5f9;
}

.vp-stat-item:last-child {
    border-right: none;
}

.vp-stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a !important;
    line-height: 1;
}

.vp-stat-value.green {
    color: #038a52 !important;
}

.vp-stat-label {
    font-size: .68rem;
    color: #94a3b8 !important;
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* ── Tab navigation ─────────────────────────────────────────── */
.vp-tabs-wrap {
    background: #ffffff !important;
    border-bottom: 1px solid #e2e8f0 !important;
    position: sticky;
    top: 0;
    z-index: 99;
    width: 100%;
}

.vp-tabs {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
}

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

.vp-tab {
    padding: 14px 0;
    margin-right: 24px;
    font-size: .84rem;
    color: #64748b !important;
    cursor: pointer;
    border: none;
    background: none !important;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    flex-shrink: 0;
    outline: none;
    transition: color .15s;
}

.vp-tab.active {
    color: #038a52 !important;
    border-bottom-color: #038a52;
    font-weight: 600;
}
.vp-tab:focus,
.vp-tab:focus-visible {
    outline: none;
    box-shadow: none;
}

.vp-tab:hover:not(.active) {
    color: #038a52 !important;
}

.vp-tab-badge {
    background: #e8f5ee;
    color: #044d30;
    font-size: .65rem;
    padding: 1px 7px;
    border-radius: 10px;
    margin-left: 4px;
    font-weight: 600;
}

/* ── Body ───────────────────────────────────────────────────── */
.vp-body {
    background: #f4f6f9 !important;
    padding: 1.5rem 0 3rem;
}

.vp-body-row {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

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

.vp-aside {
    width: 300px;
    flex-shrink: 0;
}

/* ── Content cards ──────────────────────────────────────────── */
.vp-sec {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    color: #1e293b !important;
}

.vp-sec__head {
    font-size: .96rem;
    font-weight: 700;
    color: #0f172a !important;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vp-sec__head i {
    color: #038a52;
}

.vp-sec__text {
    font-size: .86rem;
    color: #475569 !important;
    line-height: 1.75;
}

/* ── About text collapsible ─────────────────────────────────── */
.vp-about-text {
    font-size: .86rem;
    color: #475569 !important;
    line-height: 1.8;
}

.vp-about-collapsed {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vp-read-more {
    color: #038a52;
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    margin-top: 6px;
    display: inline-block;
}

/* ── Meta grid ──────────────────────────────────────────────── */
.vp-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    margin-top: 1.1rem;
}

.vp-meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vp-meta-label {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #94a3b8 !important;
}

.vp-meta-value {
    font-size: .84rem;
    font-weight: 500;
    color: #1e293b !important;
}

/* ── Registration number ────────────────────────────────────── */
.vp-reg-box {
    background: #f8fafc !important;
    border-radius: 8px;
    padding: .65rem 1rem;
    margin-top: .85rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vp-reg-label {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #94a3b8 !important;
}

.vp-reg-value {
    font-size: .84rem;
    font-weight: 600;
    color: #1e293b !important;
}

/* ── Specialties ────────────────────────────────────────────── */
.vp-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: .65rem;
}

.vp-specialty-tag {
    font-size: .76rem;
    padding: 4px 12px;
    border-radius: 20px;
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.vp-specialty-tag i {
    color: #038a52;
    font-size: .8rem;
}

/* ── Spec grid (details) ────────────────────────────────────── */
.vp-spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
}

.vp-spec {
    background: #f8fafc;
    border-radius: 8px;
    padding: 11px 13px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.vp-spec i {
    color: #94a3b8;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: .88rem;
}

.vp-spec__lbl {
    font-size: .68rem;
    color: #94a3b8;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.vp-spec__val {
    font-size: .84rem;
    font-weight: 500;
    color: #1e293b;
}

/* ── Why grid ───────────────────────────────────────────────── */
.vp-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.vp-why-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #f8fafc !important;
    border-radius: 8px;
    padding: .85rem;
}

.vp-why-icon {
    color: #038a52;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.vp-why-text {
    font-size: .8rem;
    color: #475569 !important;
    line-height: 1.5;
}

.vp-why-text strong {
    color: #1e293b !important;
    display: block;
    font-weight: 600;
    font-size: .82rem;
}

/* ── Listing sub-tabs ───────────────────────────────────────── */
.vp-ltabs {
    display: flex;
    gap: 6px;
    margin-bottom: 1.1rem;
    flex-wrap: wrap;
}

.vp-ltab {
    padding: 5px 14px;
    font-size: .76rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background: transparent;
    cursor: pointer;
    color: #64748b;
    transition: all .15s;
}

.vp-ltab.active {
    background: #e8f5ee;
    border-color: #038a52;
    color: #044d30;
}

/* ── Listing grid: 3 columns ────────────────────────────────── */
.vp-listing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

/* ── Pagination ─────────────────────────────────────────────── */
.vp-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-top: 1.25rem;
}

.vp-pg-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    border-radius: 7px;
    font-size: .8rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #475569;
    cursor: pointer;
    transition: all .15s;
}

.vp-pg-btn:hover:not(:disabled) {
    border-color: #038a52;
    color: #038a52;
}

.vp-pg-btn:disabled {
    opacity: .45;
    cursor: default;
}

.vp-pg-info {
    font-size: .8rem;
    color: #94a3b8;
    padding: 0 .5rem;
}

.vp-pg-spinner {
    display: none;
    color: #94a3b8;
}

/* ── Gallery grid ───────────────────────────────────────────── */
.vp-photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.vp-photo-cell {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 1.5rem;
}

.vp-photo-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Gallery lightbox link & hover ──────────────────────────── */
.vp-photo-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.vp-photo-expand {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 138, 82, .45);
    color: #fff;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity .2s;
}

.vp-photo-cell:hover .vp-photo-expand {
    opacity: 1;
}

/* ── Lightbox watermark ──────────────────────────────────────── */
.vp-lb-wm {
    position: absolute;
    bottom: 14px;
    right: 14px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, .52);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 6px;
    padding: 5px 12px;
    pointer-events: none;
}

.vp-lb-wm i {
    color: #05b36a;
    font-size: .7rem;
}

.vp-lb-wm span {
    color: rgba(255, 255, 255, .9);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .04em;
}

.vp-lb-wm .vp-lb-wm-sub {
    color: rgba(255, 255, 255, .55);
    font-size: .65rem;
    font-weight: 400;
    letter-spacing: .02em;
}

/* ── Rating ─────────────────────────────────────────────────── */
.vp-rating-summary {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1.25rem;
}

.vp-rating-big {
    text-align: center;
    flex-shrink: 0;
}

.vp-rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1;
}

.vp-rating-stars {
    display: flex;
    gap: 2px;
    justify-content: center;
    margin: 4px 0;
    color: #ef9f27;
}

.vp-rating-count {
    font-size: .76rem;
    color: #94a3b8;
}

.vp-rating-bars {
    flex: 1;
}

.vp-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.vp-rating-row-lbl {
    font-size: .76rem;
    color: #64748b;
    width: 110px;
    flex-shrink: 0;
}

.vp-rating-bar {
    flex: 1;
    height: 5px;
    background: #f1f5f9;
    border-radius: 3px;
    overflow: hidden;
}

.vp-rating-bar-fill {
    height: 100%;
    background: #038a52;
    border-radius: 3px;
}

.vp-rating-row-val {
    font-size: .76rem;
    color: #64748b;
    width: 24px;
    text-align: right;
}

/* ── Empty state ────────────────────────────────────────────── */
.vp-empty {
    padding: 2.5rem 1.25rem;
    text-align: center;
    border: 1px dashed #e2e8f0;
    border-radius: 10px;
}

.vp-empty i {
    font-size: 2rem;
    color: #cbd5e1;
    display: block;
    margin-bottom: .75rem;
}

.vp-empty p {
    font-size: .84rem;
    color: #94a3b8;
    margin: 0;
}

/* ── Sidebar ────────────────────────────────────────────────── */
.vp-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: .85rem;
    color: #1e293b !important;
}

.vp-card--accent {
    background: #f0faf5 !important;
    border-color: #a7dfc2 !important;
}

.vp-card__title {
    font-size: .88rem;
    font-weight: 700;
    color: #0f172a !important;
    margin-bottom: .85rem;
    display: flex;
    align-items: center;
    gap: 7px;
}

.vp-card__title i {
    color: #038a52;
}

.vp-response-box {
    background: #e1f5ee;
    border: .5px solid #a7e6c8;
    border-radius: 10px;
    padding: .85rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: .85rem;
}

.vp-response-icon {
    color: #038a52;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.vp-response-strong {
    font-size: .82rem;
    font-weight: 600;
    color: #064432;
}

.vp-response-sub {
    font-size: .76rem;
    color: #0f6e56;
    margin-top: 2px;
}

.vp-btn-full {
    width: 100%;
    padding: 10px;
    background: #038a52;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: .84rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 8px;
    text-decoration: none;
}

.vp-btn-full:hover {
    background: #026b40;
    color: #fff;
    text-decoration: none;
}

.vp-btn-full-out {
    width: 100%;
    padding: 9px;
    background: transparent;
    color: #475569;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: .84rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 8px;
    text-decoration: none;
    cursor: pointer;
}

.vp-btn-full-out:hover {
    border-color: #038a52;
    color: #038a52;
    text-decoration: none;
}

.vp-trust-row {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f4f1;
}

.vp-trust-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.vp-trust-row i {
    color: #038a52;
    flex-shrink: 0;
    font-size: .9rem;
    margin-top: 2px;
}

.vp-trust-text {
    font-size: .78rem;
    color: #475569 !important;
    line-height: 1.4;
}

.vp-trust-text strong {
    color: #1e293b !important;
    display: block;
    font-weight: 600;
    margin-bottom: 1px;
}

.vp-map-thumb {
    height: 100px;
    background: #e8f5ee;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    font-size: .8rem;
    color: #085041;
    margin-bottom: .6rem;
}

.vp-map-thumb i {
    font-size: 1.5rem;
    color: #038a52;
}

.vp-map-addr {
    font-size: .76rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 4px;
}

.vp-share-row {
    display: flex;
    gap: 8px;
}

.vp-share-btn {
    flex: 1;
    padding: 7px;
    border-radius: 7px;
    font-size: .76rem;
    cursor: pointer;
    text-align: center;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    transition: opacity .15s;
}

.vp-share-btn:hover {
    opacity: .8;
    text-decoration: none;
}

.vp-share-btn.fb {
    color: #0C447C;
    border-color: #0C447C;
    background: #E6F1FB;
}

.vp-share-btn.wa {
    color: #27500A;
    border-color: #27500A;
    background: #EAF3DE;
}

/* ── Similar vendors (sidebar) ──────────────────────────────── */
.vp-sv-sidebar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: .65rem 0;
    border-bottom: 1px solid #f0f4f1;
    text-decoration: none;
    transition: background .15s;
}

.vp-sv-sidebar-item:last-child {
    border-bottom: none;
}

.vp-sv-sidebar-item:hover {
    opacity: .85;
    text-decoration: none;
}

.vp-sv-sidebar-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    font-weight: 700;
    overflow: hidden;
}

.vp-sv-sidebar-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vp-sv-sidebar-name {
    font-size: .82rem;
    font-weight: 600;
    color: #1e293b !important;
}

.vp-sv-sidebar-meta {
    font-size: .74rem;
    color: #94a3b8 !important;
    display: flex;
    align-items: center;
    gap: 3px;
    margin-top: 1px;
}

/* ── Map box (location tab) ─────────────────────────────────── */
.vp-map-box {
    height: 150px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
    margin-top: 12px;
    transition: border-color .15s;
}

.vp-map-box:hover {
    border-color: #038a52;
    text-decoration: none;
}

.vp-map-box i {
    font-size: 1.75rem;
    color: #038a52;
}

.vp-map-box span {
    font-size: .8rem;
    color: #64748b;
}

/* ── Listing grid card height ───────────────────────────────── */
.vp-listing-grid>* {
    display: flex;
    flex-direction: column;
}

.vp-listing-grid .bravo_list_item,
.vp-listing-grid .bravo-list-item,
.vp-listing-grid .loop-grid-item,
.vp-listing-grid>div {
    min-height: 320px;
}

/* ── Region tags (location tab) ─────────────────────────────── */
.vp-regions-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: .5rem;
}

.vp-region-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f0faf5;
    color: #044d30;
    border: 1px solid #b7e4cc;
    border-radius: 20px;
    font-size: .78rem;
    font-weight: 500;
    padding: 5px 12px;
}

/* ── Similar Vendors section (full-width below body) ─────────── */
.vp-sv-section {
    background: #f4f6f9 !important;
    padding: 3rem 0;
    width: 100%;
    color-scheme: light;
}

.vp-sv-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.vp-sv-section-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a !important;
    margin: 0 0 4px;
}

.vp-sv-section-sub {
    font-size: .85rem;
    color: #64748b !important;
    margin: 0;
}

.vp-sv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.vp-sv-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .2s, box-shadow .2s;
    color-scheme: light;
}

.vp-sv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .1) !important;
}

.vp-sv-card-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 16px 14px;
    border-bottom: 1px solid #f0f4f8;
}

.vp-sv-card-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    overflow: hidden;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}

.vp-sv-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vp-sv-card-meta {
    flex: 1;
    min-width: 0;
}

.vp-sv-card-name {
    font-size: .88rem;
    font-weight: 700;
    color: #1e293b !important;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    margin-bottom: 3px;
    transition: color .15s;
}

.vp-sv-card-name:hover {
    color: #f47c04 !important;
    text-decoration: none;
}

.vp-sv-card-verified {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: .7rem;
    color: #f47c04;
    font-weight: 600;
    margin-bottom: 4px;
}

.vp-sv-card-type {
    display: inline-block;
    font-size: .62rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 4px;
}

.vp-sv-card-body {
    padding: 12px 16px;
    flex: 1;
}

.vp-sv-card-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: #475569 !important;
    margin-bottom: 5px;
}

.vp-sv-card-row i {
    color: #64748b;
    width: 13px;
    flex-shrink: 0;
}

.vp-sv-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0 16px 16px;
    padding: 9px 14px;
    background: #e8f5ee;
    color: #038a52 !important;
    border-radius: 8px;
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .15s;
}

.vp-sv-card-cta:hover {
    background: #038a52;
    color: #fff !important;
    text-decoration: none;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .vp-aside {
        width: 260px;
    }

    .vp-sv-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .vp-body-row {
        flex-direction: column;
    }

    .vp-main,
    .vp-aside {
        width: 100%;
    }

    .vp-listing-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vp-photo-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 768px) {
    .vp-hero {
        height: 220px;
    }

    .vp-vendor-header-inner {
        flex-wrap: wrap;
    }

    .vp-vendor-actions {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        padding-bottom: .75rem;
    }

    .vp-why-grid {
        grid-template-columns: 1fr;
    }

    .vp-meta-grid {
        grid-template-columns: 1fr;
    }

    .vp-spec-grid {
        grid-template-columns: 1fr;
    }

    .vp-photo-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575px) {
    .vp-listing-grid {
        grid-template-columns: 1fr;
    }

    .vp-stats-bar {
        flex-wrap: wrap;
    }

    .vp-stat-item {
        min-width: 33%;
    }

    .vp-hero-name {
        font-size: 1.4rem;
    }

    .vp-sv-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════════
   Legal Page Layout  (privacy-policy, terms, cookie, supplier-agreement)
   ═══════════════════════════════════════════════════════════════ */

.lp-header {
    background: linear-gradient(135deg, #1a2940 0%, #0d1f35 100%);
    padding: 56px 0 48px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.lp-header-inner {
    max-width: 960px;
}

.lp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 18px;
}

.lp-breadcrumb a {
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
}

.lp-breadcrumb a:hover {
    color: #fff;
}

.lp-header h1 {
    font-size: 1.85rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: #fff;
    line-height: 1.25;
}

.lp-meta {
    font-size: .82rem;
    color: rgba(255, 255, 255, .45);
    margin: 0;
}

/* Two-column wrap */
.lp-wrap {
    display: flex;
    align-items: flex-start;
    gap: 56px;
    padding: 52px 0 100px;
    position: relative;
    /* needed so absolute-positioned sidebar clamps correctly */
}

/* ── Sidebar ───────────────────────────────────────────────────── */
.lp-sidebar {
    width: 210px;
    flex-shrink: 0;
    align-self: flex-start;
    /* sticky managed by JS - CSS sticky breaks when body has overflow-x:hidden */
}

.lp-sidebar-title {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: #999;
    margin: 0 0 10px;
    padding: 0;
}

.lp-sidebar-divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 18px 0;
}

.lp-toc {
    list-style: none;
    padding: 0;
    margin: 0 0 4px;
}

.lp-toc li {
    margin: 0;
}

.lp-toc a {
    display: block;
    padding: 5px 10px;
    font-size: .83rem;
    color: #555;
    border-radius: 6px;
    text-decoration: none;
    line-height: 1.45;
    transition: background .15s, color .15s;
    border-left: 2px solid transparent;
}

.lp-toc a:hover {
    background: #e8f5ee;
    color: #038a52;
    border-left-color: #038a52;
}

.lp-toc a.active {
    background: #e8f5ee;
    color: #038a52;
    font-weight: 600;
    border-left-color: #038a52;
}

/* Nested H3 sub-items in sidebar TOC */
.lp-toc-sub {
    list-style: none;
    padding: 3px 0 3px 14px;
    margin: 0;
    border-left: 1px solid #e5e7eb;
    margin-left: 10px;
}

.lp-toc-sub li {
    margin: 0;
}

.lp-toc-sub a {
    display: block;
    padding: 3px 8px;
    font-size: .78rem;
    color: #777;
    border-radius: 5px;
    text-decoration: none;
    line-height: 1.4;
    transition: background .15s, color .15s;
}

.lp-toc-sub a:hover,
.lp-toc-sub a.active {
    background: #e8f5ee;
    color: #038a52;
    font-weight: 500;
}

/* ── Content area ──────────────────────────────────────────────── */
.lp-content {
    flex: 1;
    min-width: 0;
}

.lp-content h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
    margin: 2.4rem 0 .8rem;
    padding-bottom: .65rem;
    border-bottom: 1px solid #e5e7eb;
    scroll-margin-top: 90px;
}

.lp-content h2:first-child {
    margin-top: 0;
}

.lp-content h3 {
    font-size: .97rem;
    font-weight: 600;
    color: #374151;
    margin: 1.25rem 0 .45rem 1.5rem;
    padding-left: .85rem;
    border-left: 3px solid #a8dfc5;
    scroll-margin-top: 90px;
}

.lp-content p {
    font-size: .925rem;
    line-height: 1.75;
    color: #4b5563;
    margin: 0 0 .85rem;
}

.lp-content h3+p,
.lp-content h3+ul,
.lp-content h3+ol {
    margin-left: 1.5rem;
    padding-left: .85rem;
}

.lp-content ul,
.lp-content ol {
    font-size: .925rem;
    line-height: 1.75;
    color: #4b5563;
    margin: 0 0 .85rem;
    padding-left: 1.6rem;
}

.lp-content li {
    margin-bottom: .35rem;
}

.lp-content a {
    color: #038a52;
    text-decoration: none;
}

.lp-content a:hover {
    text-decoration: underline;
}

.lp-content strong {
    color: #1f2937;
    font-weight: 600;
}

.lp-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
    margin-bottom: 1rem;
}

.lp-content th {
    background: #f3f4f6;
    padding: 10px 14px;
    font-weight: 600;
    text-align: left;
    border: 1px solid #e5e7eb;
    color: #111;
}

.lp-content td {
    padding: 9px 14px;
    border: 1px solid #e5e7eb;
    color: #4b5563;
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .lp-wrap {
        gap: 36px;
    }

    .lp-sidebar {
        width: 180px;
    }
}

@media (max-width: 768px) {
    .lp-wrap {
        flex-direction: column;
        padding: 32px 0 64px;
        gap: 0;
    }

    .lp-sidebar {
        width: 100%;
        position: static;
        background: #f8f9fb;
        border-radius: 10px;
        padding: 18px 20px;
        margin-bottom: 32px;
    }

    .lp-header {
        padding: 40px 0 32px;
    }

    .lp-header h1 {
        font-size: 1.5rem;
    }

    .lp-content h2 {
        font-size: 1.08rem;
    }
}

/* ============================================================================
   TOUR DETAIL - MOBILE BOOK BAR + SLIDE-UP SHEET
   ============================================================================ */

/* ── Mobile Book Bar ── */
.td-mobile-book-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 400;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .10);
    padding: 10px 16px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 991px) {
    .td-mobile-book-bar {
        display: flex;
    }

    .td-page .bc_content {
        padding-bottom: 80px;
    }

    /* Collapse sidebar column to zero height - the sheet inside is position:fixed
       so it escapes overflow:hidden and appears viewport-relative when opened */
    .td-page .col-md-12.col-lg-4 {
        height: 0 !important;
        overflow: hidden;
        padding: 0 !important;
        margin: 0 !important;
    }

    .td-sticky-nav {
        z-index: 150 !important;
    }

    /* Sheet: hidden fixed overlay on mobile, shown via .is-open */
    .td-book-sheet {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 9000;
    }

    .td-book-sheet.is-open {
        display: block;
    }

    .td-book-sheet__backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, .45);
        animation: tdSheetFadeIn .25s ease;
    }

    .td-book-sheet__panel {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        border-radius: 20px 20px 0 0;
        height: 90vh;
        max-height: 90vh;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        animation: tdSheetSlideUp .3s cubic-bezier(.32, .72, 0, 1);
        font-family: 'Poppins', sans-serif;
    }

    .td-book-sheet__handle {
        width: 40px;
        height: 4px;
        background: #d1d5db;
        border-radius: 2px;
        margin: 12px auto 0;
        flex-shrink: 0;
    }

    .td-book-sheet__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 20px 12px;
        border-bottom: 1px solid #f1f5f9;
        flex-shrink: 0;
    }

    .td-book-sheet__title {
        font-size: 16px;
        font-weight: 700;
        color: #1a2b48;
    }

    .td-book-sheet__close {
        background: #f1f5f9;
        border: none;
        border-radius: 50%;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #6b7280;
        font-size: 14px;
        transition: background .15s;
    }

    .td-book-sheet__close:hover {
        background: #e2e8f0;
        color: #1a2b48;
    }

    .td-book-sheet__body {
        padding: 0 8px 32px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        flex: 1;
        min-height: 0;
    }
}

@media (min-width: 992px) {
    .td-mobile-book-bar {
        display: none !important;
    }

    .td-page .col-md-12.col-lg-4 {
        display: block !important;
        overflow: visible;
    }

    .td-sidebar {
        position: sticky;
        top: 96px;
        height: auto;
        max-height: none;
        overflow: visible;
    }

    /* Sheet becomes a static sidebar card on desktop */
    .td-book-sheet {
        display: block !important;
        position: static !important;
        z-index: auto !important;
    }

    .td-book-sheet__backdrop {
        display: none !important;
    }

    .td-book-sheet__panel {
        position: static !important;
        height: auto !important;
        max-height: none !important;
        border-radius: 0 !important;
        animation: none !important;
        overflow: visible !important;
        box-shadow: none !important;
    }

    .td-book-sheet__handle {
        display: none !important;
    }

    .td-book-sheet__header {
        display: none !important;
    }

    .td-book-sheet__body {
        padding: 0 !important;
        overflow: visible !important;
    }
}

.td-mobile-book-bar__price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    flex-wrap: wrap;
    min-width: 0;
}

.td-mbb__from {
    font-size: 11px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.td-mbb__old {
    font-size: 13px;
    color: #9ca3af;
    text-decoration: line-through;
}

.td-mbb__price {
    font-size: 22px;
    font-weight: 700;
    color: #038a52;
    white-space: nowrap;
}

.td-mobile-book-bar__action {
    flex-shrink: 0;
}

.td-mbb__btn {
    background: #f47c04;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 28px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: background .2s;
    white-space: nowrap;
}

.td-mbb__btn:hover {
    background: #038a52;
}

@keyframes tdSheetSlideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes tdSheetFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ============================================================
   Reserve → reveal booking sidebar (Book Now)
   ============================================================ */
/* Flash the booking card when a room is reserved so the guest
   sees the summary + Book Now button appear. */
.hd-booking-card {
    transition: box-shadow .25s ease, border-color .25s ease;
    scroll-margin-top: 90px;
}

.hd-booking-card--flash {
    border-color: #038a52;
    box-shadow: 0 0 0 4px rgba(3, 138, 82, .18), 0 10px 28px rgba(3, 138, 82, .16);
    animation: hdBookingFlash 1.6s ease;
}

@keyframes hdBookingFlash {
    0% {
        box-shadow: 0 0 0 0 rgba(3, 138, 82, .35);
    }

    30% {
        box-shadow: 0 0 0 6px rgba(3, 138, 82, .20), 0 10px 28px rgba(3, 138, 82, .18);
    }

    100% {
        box-shadow: 0 0 0 4px rgba(3, 138, 82, .0), 0 10px 28px rgba(3, 138, 82, .10);
    }
}

/* Mobile sticky bar becomes a live "Book Now" CTA once rooms are selected. */
.hd-mobile-book-bar.is-booking {
    border-top-color: #038a52;
}

.hd-mobile-book-bar.is-booking .hd-mobile-book-bar__btn {
    background: #f47c04;
    box-shadow: 0 4px 14px rgba(244, 124, 4, .32);
    animation: hdBarPulse 1.4s ease-in-out 1;
}

.hd-mobile-book-bar.is-booking .hd-mobile-book-bar__btn:hover {
    background: #038a52;
}

@keyframes hdBarPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }
}