 /* --- Container & Grid --- */
            .hh-results-container {
              padding: 40px 0;
              z-index: 10;
              position: relative;
            }
/*            .hh-results-container .row > *:not(.archive .hh-results-container .row > *) {
                padding: 0;
            }*/
            

            /* --- Card Style --- */
            .hh-card {
                background: #fff;
                border: none;
                margin-bottom: 30px;
                padding: 15px; /* White padding around content like a frame */
                box-shadow: 0 2px 10px rgba(0,0,0,0.05);
                height: -webkit-fill-available;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
            }

            /* --- Image Carousel --- */
            .hh-carousel {
                position: relative;
                margin-bottom: 20px;
                overflow: hidden;
            }
            .hh-carousel-inner {
                height: 200px; /* Fixed height for consistency */
                width: 100%;
            }
            .hh-carousel-item {
                height: 100%;
                display: none; /* Hidden by default */
                transition: opacity 0.6s ease-in-out;
            }
            .hh-carousel-item.active {
                display: block;
            }
            .hh-carousel-img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            /* Carousel Arrows */
            .hh-control {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                background: rgba(0,0,0,0.3);
                color: #fff;
                border: none;
                width: 30px;
                height: 30px;
                border-radius: 50%;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 14px;
                z-index: 2;
                opacity: 0; /* Hidden until hover */
                transition: opacity 0.3s;
            }
            .hh-card:hover .hh-control { opacity: 1; }
            .hh-prev { left: 10px; }
            .hh-next { right: 10px; }

            /* --- Typography --- */
            .hh-title {
                font-size: 14px;
                font-weight: 600;
                letter-spacing: 1.5px;
                text-transform: uppercase;
                color: #444;
                margin-bottom: 15px;
                margin-top: 5px;
            }

            /* --- Bullet List (Matches Image) --- */
            .hh-features {
                list-style: none;
                padding: 0;
                margin: 0 0 20px 0;
                font-size: 13px;
                color: #888;
                line-height: 1.6;
            }
            .hh-features li {
                position: relative;
                padding-left: 18px;
                margin-bottom: 4px;
            }
            /* The Custom Bullet Dot */
            .hh-features li::before {
                content: "•";
                position: absolute;
                left: 0;
                top: 0px;
                color: #d1d1d1; /* Light grey bullet */
                font-size: 18px;
                line-height: 18px;
            }

            .hh-desc {
                font-size: 13px;
                color: #777;
                line-height: 1.6;
                margin-bottom: 25px;
                /* Limit to 4 lines with ellipsis */
                display: -webkit-box;
                -webkit-line-clamp: 4;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

            /* --- Book Button --- */
            .hh-btn-book {
                display: inline-block;
                padding: 8px 25px;
                background: transparent;
                border: 1px solid #bbb; /* Subtle border */
                color: #555;
                font-size: 11px;
                font-weight: 700;
                letter-spacing: 1.5px;
                text-transform: uppercase;
                text-decoration: none;
                transition: all 0.3s;
            }
            .hh-btn-book:hover {
                border-color: #444;
                color: #222;
                background: #fafafa;
            }
            .hh-center-btn {
                text-align: center; /* Center the button */
            }
            
.hh-card:hover .shortlist-container, 
.hh-card .shortlist-container.active  {
    display: block;
}
.shortlist-container {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    margin: 0.8rem;
    background: #ffffffd1;
    display:none;
    cursor:pointer;
}
.shortlist-container i{
    padding:0.5rem;
    left:2px;
    position:relative;
}
.hh-card .shortlist-container.active i{
    color:red;
    font-weight:800;
}