 /* -------------------- General Utility Styles -------------------- */
    .star-rating {
        display: flex;
        gap: 6px;
        align-items: center;
    }

    .bookmark-wrapper {
        position: absolute;
        top: 12px;
        right: 12px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(4px);
        height: 38px;
        width: 38px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 99;
        transition: all 0.25s ease;
    }

    .bookmark-wrapper:hover {
        transform: scale(1.12);
    }

    .bookmark-icon {
        font-size: 20px;
        color: #444;
        transition: 0.25s;
    }

    .bookmark-icon.active {
        color: red !important;
    }

    .star-rating i {
        color: #ffc107;
    }

    .logo-wrapper {
        width: 120px;
        height: 120px;
        border-radius: 8px;
        overflow: hidden;
        background-color: #f8f9fa;
        border: 1px solid #eee;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .empty-message {
        color: #6c757d;
        font-style: italic;
    }

    .feature-box i {
        font-size: 1.2rem;
        min-width: 25px;
        text-align: center;
    }

    .reviews-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 190px;
        background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.5));
        border-radius: 8px;
        text-align: center;
    }

    .status-badge {
        padding: 4px 10px;
        border-radius: 6px;
        font-size: 0.75rem;
        font-weight: 600;
        display: inline-block;
        margin-bottom: 6px;
    }

    .status-badge.available {
        background: #d1f7d6;
        color: #1d8a2f;
    }

    .status-badge.soldout {
        background: #ffd5d5;
        color: #a40000;
    }

    .status-badge.upcoming {
        background: #fff3bf;
        color: #8a6d1a;
    }

    .bookmark-btn {
        border: none;
        background: none;
        cursor: pointer;
        font-size: 1.2rem;
        /* Adjusted slightly for better alignment */
        color: #999;
        transition: .25s;
        display: flex;
        align-items: center;
        gap: 8px;
        /* Adds space between bookmark icon and text */
    }

    .bookmark-btn i {
        transition: transform .25s;
    }

    .bookmark-btn.active {
        color: #ff0000;
        /* A nice gold color for bookmarks */
    }

    .bookmark-btn:hover {
        color: #ff0000;
    }

    .bookmark-btn:hover i {
        transform: scale(1.2);
    }

    /* Interactive rating UI */
    .rating-wrapper {
        display: inline-flex;
        gap: 6px;
    }

    .rating-star {
        font-size: 2.4rem;
        color: #ccc;
        cursor: pointer;
        transition: 0.2s ease;
        user-select: none;
    }

    .rating-star.hovered,
    .rating-star.selected {
        color: #ffc107 !important;
        transform: scale(1.1);
    }

    #rating-stars {
        pointer-events: auto !important;
        position: relative;
        z-index: 500;
    }

    .wt-list-single-map iframe {
        width: 100% !important;
        height: 450px !important;
        border: 0 !important;
    }

    .spec-card {
        background: #f8f9fa;
        border-radius: 8px;
        padding: 16px;
        display: flex;
        align-items: center;
        gap: 12px;
        height: 100%;
    }

    .spec-card i {
        font-size: 22px;
        color: #0d6efd;
        min-width: 26px;
    }

    .spec-card small {
        display: block;
        color: #6c757d;
        font-size: 13px;
    }

    .spec-card strong {
        color: #212529;
        font-weight: 600;
    }

    /* -------------------- Gallery Modal & Carousel Fixes -------------------- */

    /* Thumbnail size */
    .gallery-img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 8px;
    }

    /* Modal container */
    #galleryModal .modal-dialog {
        margin: 0;
        max-width: 100vw;
        height: 100vh;
    }

    #galleryModal .modal-content {
        background: #000;
        border: none;
        height: 100vh;
    }

    #galleryModal .modal-body {
        width: 100vw !important;
        height: 100vh !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Fullscreen Carousel Dimensions (Crucial for height) */
    .fullscreen-carousel {
        height: 100vh !important;
        width: 100vw !important;
    }

    /* Force carousel inner container height */
    .fullscreen-carousel .carousel-inner {
        height: 100vh !important;
    }

    /* Carousel Item Styling (Crucial for height and centering) */
    /* Ensure each slide takes the full screen */
    .carousel-item {
        position: relative;
        width: 100vw !important;
        height: 100vh !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        overflow: hidden !important;
    }

    /* Prevent overlapping during slide transition */
    .carousel-item:not(.active) {
        display: none !important;
    }

    /* Proper fullscreen image scaling */
    .fullscreen-img {
        max-width: 100vw;
        max-height: 100vh;
        width: 600px;
        height: 600px;
        object-fit: contain;
        border-radius: 12px;
        z-index: 10;
    }


    /* Arrows */
    .jd-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1055;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
        border: none;
    }

    .jd-arrow-prev {
        left: 40px;
    }

    .jd-arrow-next {
        right: 40px;
    }

    .jd-arrow i {
        font-size: 28px;
        color: #000;
    }

    /* Close button */
    .jd-close {
        position: absolute;
        bottom: 60px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(255, 255, 255, 0.95);
        padding: 14px 48px;
        border-radius: 30px;
        border: none;
        color: #000;
        font-weight: 600;
        font-size: 16px;
        z-index: 1056;
    }

    /* Fix text overflow in About property section */
    .wt-list-panel p {
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .wt-list-panel {
        overflow: hidden;
    }

    /* Mobile view – reduce map height */
    @media (max-width: 767px) {
        .wt-list-single-map iframe {
            height: 350px !important;
        }
    }
