.image-strip-slider {
    position: relative;
    width: 100%;
    margin: 40px 0;
}

.iss-track-wrap {
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
}
.iss-track-wrap::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}
.iss-track {
    display: flex;
    
    transition: transform 0.4s ease;
}

/* Each image = 1/4.5 of the width */
.iss-slide {
    flex: 0 0 calc(100% / 4.5);
    padding-right: 5px;
}

.iss-slide img {
    width: 100%;
    height: 300px; /* Adjust height as needed */
    object-fit: cover;
    border-radius: 5px;
}

/* Arrows */
.iss-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 0px 26px;
    font-size: 36px;
    cursor: pointer;
    z-index: 20;
    border-radius: 30%;
    user-select: none;
}

.iss-prev { left: 10px; }
.iss-next { right: 10px; }



/* Mobile adjustments */
@media (max-width: 768px) {
    .iss-slide {
        flex: 0 0 calc(100% / 2.1); /* shows ~1.8 slides on mobile */
    }
    .iss-slide img {
        height: 180px;
    }
    .iss-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 0px 18px;
    font-size: 24px;
    cursor: pointer;
    z-index: 20;
    border-radius: 30%;
    user-select: none;
    }
}



/* Lightbox container */
.iss-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.90);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 20px;
}

/* Wrapper containing image + arrows */
.iss-lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* vertically centers entire block */
    max-width: 95%;
}

/* Centered image */
.iss-lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    display: block;
    margin: 5% auto;
}

/* Close button */
.iss-lightbox-close {
    position: absolute;
    top: 20px;
    right: 22px;
    font-size: 38px;
    color: #fff;
    cursor: pointer;
    z-index: 100000;
}

/* Controls now appear just under the image */
.iss-lightbox-controls {
    margin-top: 15px;
    display: flex;
    gap: 40px;
    justify-content: center;
}

/* Arrows */
.iss-lightbox-nav {
    font-size: 42px;
    color: #fff;
    cursor: pointer;
    user-select: none;
}

/* Mobile */
@media (max-width: 600px) {
    .iss-lightbox-img {
        max-width: 95vw;
        max-height: 70vh;
    }
    .iss-lightbox-controls {
        margin-top: 10px;
        gap: 30px;
    }
    .iss-lightbox-nav {
        font-size: 34px;
    }
}






/* Reviews carousel for Hotel Page */
/* ============= HORIZONTAL SCROLL ============= */
.reviews-scroll-wrapper {
    overflow-x: auto;
    padding-bottom: 10px;
    margin: 10px 0 20px;
    scroll-snap-type: x mandatory;
}

.reviews-scroll-container {
    display: flex;
    gap: 16px;
}

/* Show scroll indicator subtly */
.reviews-scroll-wrapper::-webkit-scrollbar {
    height: 6px;
}
.reviews-scroll-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.reviews-scroll-wrapper::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

/* ============= CARD STYLE ============= */
.hotel-review-card {
    flex: 0 0 330px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 16px;
    scroll-snap-align: start;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow 0.2s;
}
.hotel-review-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* ============= HEADER ============= */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-author h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
}

.review-author img {
    width: 22px;
    height: 15px;
    border-radius: 3px;
    object-fit: cover;
}

.review-rating-summary {
    display: flex;
    align-items: center;
    gap: 4px;
}
.avg-star {
    color: #f8bb46;
    font-size: 18px;
}
.avg-num {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

/* ============= BODY ============= */
.stay-line {
    font-size: 14px;
    color: #444;
    display: flex;
    gap: 6px;
    margin-bottom: 4px;
}

.review-text p {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 20px;
}

/* ============= SUB RATINGS ============= */
.review-subratings {
    margin-top: 6px;
}

.subrating-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

.subrating-row .label {
    font-size: 13px;
    color: #555;
}

.subrating-row .stars {
    display: flex;
    gap: 2px;
}
.star {
    color: #f8bb46;
    font-size: 14px;
}
.star.empty {
    color: #ddd;
}

/* ============= FOOTER ============= */
.review-footer {
    font-size: 13px;
    color: #777;
    text-align: right;
}

/* ============= MOBILE ============= */
@media (max-width: 600px) {
    .hotel-review-card {
        flex: 0 0 80%; /* Shows 1.2 cards per view */
    }
}

/* Default button */
.hotel-review-button.btn {
    background-color: rgba(255, 140, 42, 0.1);
    color: #ff8c2a;
    padding: 10px 18px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s linear;
    border: 1px solid rgba(255, 140, 42, 0.25);
}

/* Hover State */
.hotel-review-button.btn:hover {
    background-color: #ff8c2a;
    color: #fff;
    border-color: #ff8c2a;
}

/* Review Invite Banner Hotel Page */

.review-invite-banner {
    background: #f5f5f5;
    border: 1px solid #d7d7d7;
    padding: 14px 18px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.rib-icon {
    background: #ff8c2a;
    color: white;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 20px;
    flex-shrink: 0;
}

.rib-content h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.rib-content p {
    margin: 3px 0 0;
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}



/* Trust Badge Banner */
.trust-badge-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f8f8;
    border: 1px solid #b1b1b1;
    padding: 18px 22px;
    border-radius: 5px;
    margin-bottom: 25px;
    gap: 20px;
    position: relative;
}

/* Left Section with Seal */
.trust-badge-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-badge-seal {
    width: 48px;
    height: 48px;
    background: #fff;
    border: 2px solid #2e8b57;
    color: #2e8b57;
    font-weight: 700;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-badge-left h4 {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 3px;
}

.trust-badge-left p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

/* Points */
.trust-badge-points {
    list-style: none;
    margin: 0;
    padding: 0;
}

.trust-badge-points li {
    font-size: 14px;
    margin: 4px 0;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .trust-badge-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .trust-badge-left {
        justify-content: center;
    }

    .trust-badge-points {
        margin-top: 12px;
    }
}





/* STYLE 2 */
.zp-help-banner.style2 {
    background: #e9fff2;
    border: 1px solid #72b18e;
    border-radius: 5px;
    padding: 18px;
    margin-top: 18px;
}

.zp-help-banner.style2 h4 {
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 600;
}

.zp-help-banner.style2 p {
    font-size: 14px;
    color: #444;
    margin-bottom: 14px;
}

.zp-help-banner.style2 .cta {
    display: inline-block;
    background: #ff8c2a;
    padding: 9px 14px;
    color: white;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
}

.zp-help-banner.style2 .cta:hover {
    background: #e5771d;
}


