/* ==========================================================
   LISTING PAGE REVAMP — Premium Styles
   ========================================================== */

/* ---- Root additions ---- */
:root {
    --revamp-radius: 18px;
    --revamp-radius-sm: 10px;
    --revamp-glass-bg: rgba(255,255,255,0.72);
    --revamp-glass-border: rgba(255,255,255,0.55);
    --revamp-card-shadow: 0 4px 24px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
    --revamp-card-shadow-hover: 0 16px 48px rgba(0,0,0,0.13), 0 4px 12px rgba(0,0,0,0.07);
    --revamp-transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    --revamp-accent: hsl(var(--base));
    --revamp-accent-soft: hsl(var(--base)/.12);
    --revamp-badge-bg: rgba(255,255,255,0.85);
    --revamp-text-muted: #6b7280;
    --revamp-surface: #ffffff;
    --revamp-star-color: #f59e0b;
    --revamp-tag-bg: hsl(var(--base)/.1);
    --revamp-tag-color: hsl(var(--base));
}

/* =========================================================
   LISTING SECTION WRAPPER
   ========================================================= */
.listing-section {
    background: var(--bg-color2);
    min-height: 100vh;
}

/* =========================================================
   TOPBAR — Results count & filter toggle
   ========================================================= */
.listing-topbar {
    background: var(--revamp-surface);
    border: 1px solid var(--border-color1);
    border-radius: var(--revamp-radius);
    padding: 14px 20px;
    margin-bottom: 24px;
    box-shadow: var(--revamp-card-shadow);
    display: flex;
    align-items: center;
}

.listing-topbar .cmn-btn3 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    background: var(--revamp-accent-soft);
    color: var(--revamp-accent);
    border: 1.5px solid hsl(var(--base)/.25);
    transition: var(--revamp-transition);
    letter-spacing: 0.01em;
}

.listing-topbar .cmn-btn3:hover {
    background: var(--revamp-accent);
    color: #fff;
    border-color: var(--revamp-accent);
    box-shadow: 0 4px 16px hsl(var(--base)/.35);
    transform: translateY(-1px);
}

#results-count {
    font-size: 13.5px;
    color: var(--revamp-text-muted);
    font-weight: 500;
    letter-spacing: 0.01em;
}

#results-count strong {
    color: var(--heading-color);
    font-weight: 700;
}

/* View toggle buttons */
.view-toggle {
    display: flex;
    gap: 4px;
    background: var(--bg-color2);
    border-radius: 8px;
    padding: 3px;
}

.view-toggle .vt-btn {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: none;
    background: transparent;
    color: var(--revamp-text-muted);
    font-size: 15px;
    cursor: pointer;
    transition: var(--revamp-transition);
}

.view-toggle .vt-btn.active,
.view-toggle .vt-btn:hover {
    background: var(--revamp-surface);
    color: var(--revamp-accent);
    box-shadow: 0 1px 6px rgba(0,0,0,0.1);
}

/* =========================================================
   LISTING CARDS — Premium Revamp
   ========================================================= */
.listing-box {
    border: 1px solid rgba(231, 234, 243, 0.6) !important;
    border-radius: var(--revamp-radius) !important;
    box-shadow: var(--revamp-card-shadow) !important;
    background: var(--revamp-surface) !important;
    overflow: hidden !important;
    transition: var(--revamp-transition) !important;
    position: relative !important;
    height: 100%;
}

.listing-box:hover {
    box-shadow: var(--revamp-card-shadow-hover) !important;
    transform: translateY(-4px);
    border-color: hsl(var(--base)/.2) !important;
}

/* --- Image area --- */
.listing-box .image-area {
    position: relative;
    overflow: hidden;
}

.listing-box .image-area::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(5, 11, 32, 0.45) 100%);
    opacity: 0;
    transition: var(--revamp-transition);
    z-index: 0;
}

.listing-box:hover .image-area::after {
    opacity: 1;
}

.listing-box .image-area img {
    height: 220px !important;
    width: 100% !important;
    object-fit: cover !important;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: block;
}

.listing-box:hover .image-area img {
    transform: scale(1.07) !important;
}

/* --- Wishlist / heart badge (glassmorphism) --- */
.listing-box .rate-area {
    top: 12px !important;
    right: 12px !important;
    left: auto !important;
    z-index: 2 !important;
}

.listing-box .rate-area .item {
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    background: var(--revamp-glass-bg) !important;
    backdrop-filter: blur(12px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(12px) saturate(160%) !important;
    border: 1px solid var(--revamp-glass-border) !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12) !important;
    color: #e11d48 !important;
    transition: var(--revamp-transition) !important;
    font-size: 15px !important;
}

.listing-box .rate-area .item:hover {
    background: #e11d48 !important;
    color: #fff !important;
    transform: scale(1.12);
    box-shadow: 0 4px 16px rgba(225, 29, 72, 0.35) !important;
}

/* --- Category badge on image (top-left) --- */
.listing-card-category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: var(--revamp-glass-bg);
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    border: 1px solid var(--revamp-glass-border);
    border-radius: 50px;
    padding: 5px 12px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--revamp-accent);
    letter-spacing: 0.02em;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    white-space: nowrap;
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: var(--revamp-transition);
}

/* --- Content area --- */
.listing-box .content-area {
    padding: 20px 22px 18px !important;
}

/* Stars */
.listing-box .content-area .reviews {
    list-style: none;
    margin: 0;
    padding: 0;
}

.listing-box .content-area .reviews li {
    display: flex;
    gap: 2px;
}

.listing-box .content-area .reviews li i.fa-star,
.listing-box .content-area .reviews li i.fa-star-half-alt {
    color: var(--revamp-star-color);
    font-size: 12px;
}

.listing-box .content-area .reviews li i.fa-star.far {
    color: #d1d5db;
}

.listing-box .content-area .reviews span {
    font-size: 12px;
    color: var(--revamp-text-muted);
    font-weight: 500;
}

/* Title */
.listing-box .content-area h5.title {
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    margin: 8px 0 6px !important;
    letter-spacing: -0.01em;
}

.listing-box .content-area h5.title a {
    color: var(--heading-color) !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.listing-box .content-area h5.title a:hover {
    color: var(--revamp-accent) !important;
}

/* Category text line */
.listing-box .content-area > p:first-of-type {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px !important;
    font-weight: 600 !important;
    color: var(--revamp-accent) !important;
    background: var(--revamp-tag-bg);
    border-radius: 50px;
    padding: 3px 10px;
    margin-bottom: 12px !important;
}

/* Contact info rows */
.listing-box .contact-item {
    display: flex !important;
    align-items: center;
    gap: 7px;
    font-size: 13px !important;
    color: var(--revamp-text-muted) !important;
    margin-bottom: 6px !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.listing-box .contact-item i {
    color: var(--revamp-accent) !important;
    font-size: 13px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.listing-box a.contact-item:hover {
    color: var(--revamp-accent) !important;
}

/* Divider */
.listing-box hr.cmn-hr2 {
    border: none;
    border-top: 1px solid var(--border-color1) !important;
    margin: 14px 0 !important;
}

/* Bottom info bar */
.listing-box .bottom-info {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
}

.listing-box .bottom-info a.title {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #fff !important;
    background: var(--revamp-accent);
    padding: 7px 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--revamp-transition);
    box-shadow: 0 3px 12px hsl(var(--base)/.3);
}

.listing-box .bottom-info a.title:hover {
    background: var(--btn-hover-bg);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px hsl(var(--base)/.4);
}

.listing-box .bottom-info .contact-item {
    font-size: 12px !important;
    color: var(--revamp-text-muted) !important;
    margin-bottom: 0 !important;
}

/* =========================================================
   OFFCANVAS FILTER — Premium
   ========================================================= */
#offcanvasWithBothOptions {
    width: 340px !important;
    border-radius: 0 var(--revamp-radius) var(--revamp-radius) 0;
    box-shadow: 8px 0 40px rgba(0,0,0,0.14) !important;
    background: var(--revamp-surface) !important;
    border: none !important;
}

.offcanvas-header {
    border-bottom: 1px solid var(--border-color1);
    padding: 22px 24px 18px !important;
}

.offcanvas-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--heading-color) !important;
    letter-spacing: -0.01em;
}

.cmn-btn-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-color2) !important;
    border: 1px solid var(--border-color1) !important;
    color: var(--heading-color) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--revamp-transition);
    padding: 0 !important;
}

.cmn-btn-close:hover {
    background: var(--revamp-accent) !important;
    border-color: var(--revamp-accent) !important;
    color: #fff !important;
    transform: rotate(-90deg);
}

.offcanvas-body {
    padding: 24px !important;
}

/* Filter section labels */
.widget-title h6 {
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    color: var(--revamp-text-muted) !important;
    margin-bottom: 12px !important;
}

/* Search input */
.offcanvas-body .form-control {
    border-radius: var(--revamp-radius-sm) !important;
    border: 1.5px solid var(--border-color1) !important;
    padding: 11px 16px !important;
    font-size: 14px !important;
    background: var(--bg-color2) !important;
    transition: var(--revamp-transition) !important;
    color: var(--heading-color) !important;
}

.offcanvas-body .form-control:focus {
    border-color: var(--revamp-accent) !important;
    background: var(--revamp-surface) !important;
    box-shadow: 0 0 0 3px hsl(var(--base)/.12) !important;
    outline: none !important;
}

/* Divider */
.offcanvas-body .cmn-hr2 {
    border: none !important;
    border-top: 1px solid var(--border-color1) !important;
    margin: 20px 0 !important;
}

/* Accordion in filter */
.offcanvas-body .accordion-item {
    border: 1px solid var(--border-color1) !important;
    border-radius: var(--revamp-radius-sm) !important;
    overflow: hidden;
    margin-top: 16px;
}

.offcanvas-body .accordion-button {
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: var(--heading-color) !important;
    background: var(--bg-color2) !important;
    padding: 14px 18px !important;
    border-radius: var(--revamp-radius-sm) !important;
    box-shadow: none !important;
}

.offcanvas-body .accordion-button:not(.collapsed) {
    background: var(--revamp-accent-soft) !important;
    color: var(--revamp-accent) !important;
}

.offcanvas-body .accordion-button::after {
    filter: none !important;
}

.offcanvas-body .accordion-body {
    padding: 14px 18px !important;
    background: var(--revamp-surface);
}

/* Rating checkboxes */
.offcanvas-body .form-check {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-bottom: 4px;
}

.offcanvas-body .form-check:hover {
    background: var(--revamp-accent-soft);
}

.offcanvas-body .form-check-input {
    border-radius: 5px !important;
    border: 1.5px solid var(--border-color1) !important;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 0;
    accent-color: var(--revamp-accent);
}

.offcanvas-body .form-check-input:checked {
    background-color: var(--revamp-accent) !important;
    border-color: var(--revamp-accent) !important;
}

.offcanvas-body .star-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2px;
    margin-left: 8px;
}

.offcanvas-body .star-list i.active {
    color: var(--revamp-star-color) !important;
    font-size: 13px;
}

/* Submit button */
.offcanvas-body .cmn-btn {
    display: block;
    width: 100%;
    padding: 13px !important;
    border-radius: 50px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    background: var(--revamp-accent) !important;
    color: #fff !important;
    border: none !important;
    cursor: pointer;
    margin-top: 24px !important;
    transition: var(--revamp-transition);
    box-shadow: 0 4px 16px hsl(var(--base)/.3);
    letter-spacing: 0.02em;
}

.offcanvas-body .cmn-btn:hover {
    background: var(--btn-hover-bg) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px hsl(var(--base)/.4);
}

/* =========================================================
   EMPTY STATE
   ========================================================= */
.custom-not-found {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    background: var(--revamp-surface);
    border-radius: var(--revamp-radius);
    border: 1.5px dashed var(--border-color1);
    padding: 48px 24px;
}

.custom-not-found img {
    max-width: 200px;
    opacity: 0.7;
}

/* =========================================================
   MAP COLUMN
   ========================================================= */
.listing-section #map {
    border-radius: var(--revamp-radius);
    overflow: hidden;
    min-height: 400px;
    box-shadow: var(--revamp-card-shadow);
    position: sticky;
    top: 90px;
    border: 1px solid var(--border-color1);
}

/* =========================================================
   GRID → LIST LAYOUT TOGGLE
   ========================================================= */
.listing-row.list-view .col-xxl-6 {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
}

.listing-row.list-view .listing-box2 {
    flex-direction: row;
}

.listing-row.list-view .listing-box2 .image-area {
    width: 280px !important;
    min-width: 280px !important;
    flex-shrink: 0;
}

.listing-row.list-view .listing-box2 .image-area img {
    height: 100% !important;
    min-height: 180px;
}

/* =========================================================
   PAGINATION
   ========================================================= */
.page-link {
    border-radius: 8px !important;
    margin: 0 2px;
    border: 1px solid var(--border-color1) !important;
    color: var(--heading-color) !important;
    font-weight: 500;
    font-size: 14px;
    transition: var(--revamp-transition) !important;
    padding: 8px 14px !important;
}

.page-link:hover {
    background: var(--revamp-accent-soft) !important;
    color: var(--revamp-accent) !important;
    border-color: hsl(var(--base)/.2) !important;
}

.page-item.active .page-link {
    background: var(--revamp-accent) !important;
    border-color: var(--revamp-accent) !important;
    color: #fff !important;
    box-shadow: 0 4px 12px hsl(var(--base)/.3);
}

/* =========================================================
   CARD ENTRY ANIMATION
   ========================================================= */
@keyframes cardFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.listing-box {
    animation: cardFadeUp 0.45s ease both;
}

.col-xxl-6:nth-child(1) .listing-box { animation-delay: 0.05s; }
.col-xxl-6:nth-child(2) .listing-box { animation-delay: 0.1s; }
.col-xxl-6:nth-child(3) .listing-box { animation-delay: 0.15s; }
.col-xxl-6:nth-child(4) .listing-box { animation-delay: 0.2s; }
.col-xxl-6:nth-child(5) .listing-box { animation-delay: 0.25s; }
.col-xxl-6:nth-child(6) .listing-box { animation-delay: 0.3s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991.98px) {
    .listing-section #map {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .listing-box {
        height: auto !important;
    }
    .listing-box .image-area {
        height: 200px !important;
    }
    .listing-box .image-area img {
        height: 100% !important;
    }
    .listing-topbar {
        padding: 12px 14px;
    }
}

/* ===========================================================
   LISTING DETAILS PAGE — ld-* Classes
   =========================================================== */

/* ---- Gallery Hero ---- */
.ld-gallery {
    position: relative;
    display: grid;
    height: 480px;
    overflow: hidden;
    background: #111827;
}
.ld-gallery--grid { grid-template-columns: 65% 35%; gap: 4px; }
.ld-gallery--single { grid-template-columns: 1fr; }

.ld-gallery-main {
    display: block;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.ld-gallery-main img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.4s ease;
}
.ld-gallery-main:hover img { transform: scale(1.03); }

.ld-gallery-stack {
    display: flex; flex-direction: column;
    gap: 4px; height: 100%;
}
.ld-gallery-stack-item {
    flex: 1; display: block;
    overflow: hidden; position: relative;
}
.ld-gallery-stack-item img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.4s ease;
}
.ld-gallery-stack-item:hover img { transform: scale(1.05); }
.ld-gallery-placeholder { background: #1f2937; }

.ld-gallery-photo-btn {
    position: absolute; bottom: 18px; right: 20px;
    background: rgba(255,255,255,0.95);
    border: none; border-radius: 50px;
    padding: 9px 18px; font-size: 13px;
    font-weight: 700; color: #111827;
    cursor: pointer; display: flex;
    align-items: center; gap: 7px; z-index: 10;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: all 0.22s ease;
}
.ld-gallery-photo-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

/* ---- Listing Header ---- */
.ld-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 28px 0 22px;
}
.ld-header-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px; flex-wrap: wrap;
}
.ld-header-main { flex: 1; min-width: 0; }

.ld-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--revamp-tag-bg, rgba(0,128,128,0.1));
    color: var(--primary-color, #008080);
    font-size: 11.5px; font-weight: 700;
    padding: 4px 14px; border-radius: 50px;
    letter-spacing: 0.04em; margin-bottom: 10px;
}

.ld-title {
    font-size: clamp(22px, 3.5vw, 34px);
    font-weight: 800; color: #0c111d;
    letter-spacing: -0.025em;
    line-height: 1.22; margin-bottom: 12px;
}

.ld-stars-row {
    display: flex; align-items: center;
    gap: 8px; margin-bottom: 14px;
}
.ld-stars { display: flex; gap: 2px; }
.ld-stars i { font-size: 14px; color: #f59e0b; }
.ld-stars i.far { color: #d1d5db; }
.ld-rating-val { font-size: 15px; font-weight: 800; color: #111827; }
.ld-review-count { font-size: 13px; color: #9ca3af; font-weight: 500; }

.ld-contact-chips {
    display: flex; flex-wrap: wrap;
    gap: 8px; margin-top: 6px;
}
.ld-chip {
    display: inline-flex; align-items: center; gap: 6px;
    background: #f3f4f6; color: #374151;
    font-size: 12.5px; font-weight: 500;
    padding: 6px 14px; border-radius: 50px;
    text-decoration: none; transition: all 0.2s ease;
    white-space: nowrap;
}
.ld-chip:hover { background: #e5e7eb; color: #111827; }
.ld-chip i { font-size: 12px; color: var(--primary-color, #008080); }

/* Action bar */
.ld-action-bar {
    display: flex; align-items: center;
    gap: 10px; flex-shrink: 0;
    flex-wrap: wrap; justify-content: flex-end;
}
.ld-action-btn {
    display: inline-flex; align-items: center; gap: 7px;
    background: #f3f4f6; border: 1px solid #e5e7eb;
    border-radius: 50px; padding: 9px 18px;
    font-size: 13px; font-weight: 600;
    color: #374151; cursor: pointer;
    transition: all 0.22s ease;
}
.ld-action-btn:hover { background: #e5e7eb; color: #111827; }

.ld-social { display: flex; gap: 8px; }
.ld-social-btn {
    width: 38px; height: 38px; border-radius: 50%;
    background: #f3f4f6; border: 1px solid #e5e7eb;
    display: flex; align-items: center; justify-content: center;
    color: #374151; font-size: 15px;
    text-decoration: none; transition: all 0.22s ease;
}
.ld-social-btn:hover {
    background: var(--primary-color, #008080);
    border-color: var(--primary-color, #008080);
    color: #ffffff;
}

/* ---- Body Layout ---- */
.ld-body { background: #f8faff; padding: 36px 0 80px; }

/* ---- Tab Navigation ---- */
.ld-tabs-nav {
    display: flex; gap: 2px;
    background: #ffffff; border-radius: 16px;
    padding: 6px; margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #e5e7eb;
    overflow-x: auto; scrollbar-width: none;
}
.ld-tabs-nav::-webkit-scrollbar { display: none; }

.ld-tab-btn {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 10px 18px; border-radius: 12px;
    border: none; background: transparent;
    color: #6b7280; font-size: 13.5px;
    font-weight: 600; cursor: pointer;
    white-space: nowrap; transition: all 0.22s ease;
    flex-shrink: 0; font-family: inherit;
}
.ld-tab-btn i { font-size: 13px; }
.ld-tab-btn:hover { background: #f3f4f6; color: #111827; }
.ld-tab-btn.active {
    background: var(--primary-color, #008080);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0,128,128,0.25);
}
.ld-tab-panel { display: none; }
.ld-tab-panel.active { display: block; }

/* ---- Section Blocks ---- */
.ld-section {
    background: #ffffff; border-radius: 20px;
    padding: 28px 28px 24px; margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
}
.ld-section-label {
    display: block; font-size: 11px;
    font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-color, #008080);
    margin-bottom: 16px;
}
.ld-description-body { font-size: 15px; line-height: 1.8; color: #374151; }
.ld-description-body p { margin-bottom: 1em; }
.ld-description-body h2,
.ld-description-body h3 { font-weight: 700; color: #111827; margin: 1.5em 0 0.5em; }

/* ---- Amenities Grid ---- */
.ld-amenity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.ld-amenity-item {
    display: flex; align-items: center; gap: 10px;
    background: #f8faff; border: 1px solid #e5e7eb;
    border-radius: 12px; padding: 12px 14px;
    font-size: 13px; font-weight: 600; color: #374151;
}
.ld-amenity-item i {
    font-size: 16px; color: var(--primary-color, #008080);
    flex-shrink: 0; width: 20px; text-align: center;
}

/* ---- Video ---- */
.ld-video-box {
    position: relative; border-radius: 16px;
    overflow: hidden; height: 320px;
}
.ld-video-box img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ld-video-play {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.35); text-decoration: none;
}
.ld-video-play i {
    width: 68px; height: 68px; border-radius: 50%;
    background: rgba(255,255,255,0.95);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--primary-color, #008080);
    padding-left: 4px; transition: transform 0.25s ease;
}
.ld-video-play:hover i { transform: scale(1.12); }

/* ---- Rating Summary ---- */
.ld-rating-summary {
    display: flex; gap: 32px;
    align-items: flex-start;
    margin-bottom: 28px; padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
}
.ld-rating-score { text-align: center; flex-shrink: 0; }
.averageRatings,
.ld-rating-big {
    font-size: 52px; font-weight: 800;
    color: #111827; line-height: 1; margin-bottom: 8px;
}
.ld-rating-stars {
    display: flex; gap: 3px;
    justify-content: center; margin-bottom: 6px;
}
.ld-rating-stars i, .star-rating i { font-size: 14px; color: #f59e0b; }
.ld-rating-stars i.far, .star-rating i.far { color: #d1d5db; }
.ld-rating-label { font-size: 12px; color: #9ca3af; font-weight: 500; }

.ld-rating-bars {
    flex: 1; display: flex;
    flex-direction: column; gap: 8px; justify-content: center;
}
.ld-progress-row,
.progress-wrapper .mb-2 {
    display: flex; align-items: center; gap: 10px;
}
.ld-progress-label,
.progress-wrapper .index {
    font-size: 12px; font-weight: 600;
    color: #374151; width: 36px; flex-shrink: 0;
    display: flex; align-items: center; gap: 3px;
}
.ld-progress-label i { font-size: 10px; color: #f59e0b; }
.ld-progress-track,
.progress-wrapper .progress {
    flex: 1; height: 7px;
    background: #e5e7eb; border-radius: 50px; overflow: hidden;
}
.ld-progress-fill,
.progress-wrapper .progress-bar {
    height: 100%;
    background: var(--primary-color, #008080);
    border-radius: 50px; transition: width 0.5s ease;
}
.ld-progress-count {
    font-size: 12px; color: #9ca3af;
    font-weight: 500; width: 20px;
    text-align: right; flex-shrink: 0;
}

/* ---- Review List (Vue) ---- */
.ld-reviews-list { display: flex; flex-direction: column; gap: 24px; }
.ld-review-item { padding-bottom: 24px; border-bottom: 1px solid #f3f4f6; }
.ld-review-item:last-child { border-bottom: none; }
.ld-review-header {
    display: flex; align-items: flex-start;
    justify-content: space-between; gap: 12px; margin-bottom: 10px;
}
.ld-review-author { display: flex; align-items: center; gap: 12px; }
.ld-review-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    overflow: hidden; flex-shrink: 0;
    display: block; border: 2px solid #e5e7eb;
}
.ld-review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.ld-review-meta strong { display: block; font-size: 14px; font-weight: 700; color: #111827; margin-bottom: 2px; }
.ld-review-meta span { font-size: 12px; color: #9ca3af; }
.ld-review-stars { display: flex; gap: 2px; flex-shrink: 0; }
.ld-review-stars i { font-size: 13px; color: #f59e0b; }
.ld-review-stars i.far { color: #d1d5db; }
.ld-review-text { font-size: 14px; color: #374151; line-height: 1.7; margin: 0; }

.ld-add-review {
    background: #f8faff; border-radius: 16px;
    padding: 22px; border: 1px solid #e5e7eb; margin-top: 24px;
}

/* ---- Sidebar ---- */
.ld-sidebar {
    display: flex; flex-direction: column; gap: 18px;
    position: sticky; top: 24px;
}
.ld-sidebar-card {
    background: #ffffff; border-radius: 20px;
    padding: 22px 22px 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
}
.ld-sidebar-title {
    font-size: 14px; font-weight: 700;
    color: #111827; margin-bottom: 14px;
    letter-spacing: -0.01em;
}
.ld-map-wrap, .sidebar-map {
    height: 220px; border-radius: 14px;
    overflow: hidden; margin-top: 2px;
    border: 1px solid #e5e7eb;
}

/* Hours */
.ld-hours-list { display: flex; flex-direction: column; gap: 0; }
.ld-hours-row {
    display: flex; align-items: center;
    justify-content: space-between;
    padding: 9px 0; border-bottom: 1px solid #f3f4f6;
    font-size: 13px;
}
.ld-hours-row:last-child { border-bottom: none; }
.ld-hours-day { font-weight: 600; color: #374151; }
.ld-hours-time { color: #6b7280; font-size: 12.5px; }
.ld-closed { color: #ef4444; font-weight: 600; font-size: 12px; }

/* WhatsApp */
.ld-whatsapp-btn {
    display: flex; align-items: center;
    justify-content: center; gap: 10px;
    width: 100%; padding: 13px 20px;
    border-radius: 12px; background: #25d366;
    color: #ffffff; font-size: 14px;
    font-weight: 700; text-decoration: none;
    transition: all 0.22s ease;
    box-shadow: 0 4px 14px rgba(37,211,102,0.28);
}
.ld-whatsapp-btn:hover {
    background: #1ebe5d; color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(37,211,102,0.38);
}

/* Message Form */
.ld-msg-form { display: flex; flex-direction: column; gap: 12px; }
.ld-form-group { position: relative; }
.ld-form-input {
    width: 100%; background: #f8faff;
    border: 1.5px solid #e5e7eb; border-radius: 12px;
    padding: 11px 14px; font-size: 13.5px;
    color: #111827; outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    resize: none; font-family: inherit;
}
.ld-form-input:focus {
    border-color: var(--primary-color, #008080);
    box-shadow: 0 0 0 3px rgba(0,128,128,0.1);
    background: #ffffff;
}
.ld-form-input::placeholder { color: #9ca3af; }

/* Buttons */
.ld-primary-btn {
    display: inline-flex; align-items: center;
    justify-content: center; gap: 8px;
    padding: 12px 24px; border-radius: 12px;
    background: var(--primary-color, #008080);
    color: #ffffff; font-size: 14px;
    font-weight: 700; border: none;
    cursor: pointer; text-decoration: none;
    transition: all 0.22s ease;
    box-shadow: 0 4px 14px rgba(0,128,128,0.22);
    font-family: inherit;
}
.ld-primary-btn:hover {
    background: #006666; color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0,128,128,0.3);
}
.ld-outline-btn {
    display: inline-flex; align-items: center;
    justify-content: center; gap: 8px;
    padding: 11px 20px; border-radius: 12px;
    border: 2px solid #e5e7eb; background: transparent;
    color: #374151; font-size: 13.5px;
    font-weight: 700; cursor: pointer;
    text-decoration: none; transition: all 0.22s ease;
    font-family: inherit;
}
.ld-outline-btn:hover { border-color: #111827; background: #111827; color: #ffffff; }

/* ---- Action Bar Share Button Popup ---- */
.ld-action-btn.share {
    position: relative !important;
    overflow: visible !important;
}

.ld-action-btn.share #shareBlock {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    width: 220px;
    background: #ffffff;
    padding: 12px;
    border: 1px solid #cbd5e1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    z-index: 999;
}

.ld-action-btn.share:hover #shareBlock,
.ld-action-btn.share:focus #shareBlock {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.ld-action-btn.share #shareBlock::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
}

.ld-action-btn.share #shareBlock a,
.ld-action-btn.share #shareBlock .btn-light {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    font-size: 14px !important;
    background: #f1f5f9 !important;
    color: #0f172a !important;
    border: 1px solid #cbd5e1 !important;
    transition: all 0.2s ease !important;
    padding: 0 !important;
    margin: 0 !important;
}

.ld-action-btn.share #shareBlock a:hover,
.ld-action-btn.share #shareBlock .btn-light:hover {
    background: var(--primary-color, #008080) !important;
    color: #ffffff !important;
    border-color: var(--primary-color, #008080) !important;
    transform: scale(1.08);
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .ld-gallery { height: 360px; }
    .ld-gallery--grid { grid-template-columns: 60% 40%; }
    .ld-sidebar { position: static; }
    .ld-amenity-grid { grid-template-columns: repeat(2, 1fr); }
    .ld-tab-btn { padding: 9px 14px; font-size: 12.5px; }
    .ld-rating-summary { gap: 20px; }
    .ld-section { padding: 22px 18px; }
}
@media (max-width: 767.98px) {
    .ld-gallery--grid { grid-template-columns: 1fr; height: auto; }
    .ld-gallery--grid .ld-gallery-main { height: 280px; }
    .ld-gallery--grid .ld-gallery-stack { flex-direction: row; height: 130px; }
    .ld-gallery--single .ld-gallery-main { height: 280px; }
    .ld-gallery { height: auto; }
    .ld-header-inner { flex-direction: column; }
    .ld-action-bar { justify-content: flex-start; }
    .ld-title { font-size: 22px; }
}
@media (max-width: 575.98px) {
    .ld-amenity-grid { grid-template-columns: repeat(2, 1fr); }
    .ld-tab-btn { padding: 8px 12px; font-size: 12px; gap: 5px; }
    .ld-rating-summary { flex-direction: column; gap: 16px; }
    .ld-rating-score { display: flex; align-items: center; gap: 16px; text-align: left; }
    .averageRatings, .ld-rating-big { font-size: 40px; }
    .ld-body { padding: 24px 0 60px; }
}

/* Real-time Business Status Badge */
.ld-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    margin-left: 12px;
    vertical-align: middle;
    letter-spacing: normal;
    text-transform: none;
    line-height: 1;
}

.ld-status-dot {
    font-size: 10px;
    line-height: 1;
}

.ld-status-info {
    font-weight: 500;
    opacity: 0.85;
}

/* Open state style: soft green glassmorphism */
.ld-status--open {
    background: #f0fdf4 !important;
    color: #16a34a !important;
    border: 1px solid #bbf7d0 !important;
}

.ld-status--open .ld-status-dot {
    color: #22c55e !important;
}

/* Closed state style: soft red glassmorphism */
.ld-status--closed {
    background: #fef2f2 !important;
    color: #dc2626 !important;
    border: 1px solid #fecaca !important;
}

.ld-status--closed .ld-status-dot {
    color: #ef4444 !important;
}

/* Make sure it sits cleanly on mobile screens */
@media (max-width: 575.98px) {
    .ld-status-badge {
        display: flex;
        width: fit-content;
        margin-left: 0;
        margin-top: 10px;
    }
}

