.lightbox-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.92);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }

.lightbox-counter {
    position: absolute;
    top: 20px;
    left: 20px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    z-index: 10001;
}

.lightbox-hotel-name {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    z-index: 10001;
    white-space: nowrap;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.lightbox-hotel-name .lightbox-stars {
    color: #f5a623;
    margin-left: 6px;
    font-size: 13px;
}

.lightbox-label {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 14px;
    background: rgba(0,0,0,0.5);
    padding: 5px 16px;
    border-radius: 20px;
    white-space: nowrap;
    z-index: 10001;
}

.lightbox-main {
    max-width: 90vw;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.lightbox-main img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 6px;
    user-select: none;
    -webkit-user-drag: none;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-nav.prev { left: -60px; }
.lightbox-nav.next { right: -60px; }

.lightbox-thumbs {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    max-width: 90vw;
    overflow-x: auto;
    padding: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.3) transparent;
}

.lightbox-thumb {
    width: 56px;
    height: 42px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity 0.2s, border-color 0.2s;
}
.lightbox-thumb:hover { opacity: 0.9; }
.lightbox-thumb.active { border-color: var(--primary-orange); opacity: 1; }
.lightbox-thumb img { width: 100%; height: 100%; object-fit: cover; }

.lightbox-room-info {
    text-align: center;
}

.lightbox-room-specs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 6px; font-size: 13px; color: #e5e7eb; }
.lightbox-room-specs span { display: inline-flex; align-items: center; gap: 4px; }
.lightbox-room-specs i { font-size: 11px; }
.lightbox-amenity-pills { display: flex; flex-wrap: wrap; gap: 5px; justify-content: center; margin-top: 8px; }
.lightbox-amenity-pill { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; padding: 2px 8px; border-radius: 10px; background: rgba(255,255,255,0.15); color: #e5e7eb; }
.lightbox-amenity-pill i { font-size: 9px; }

@media (max-width: 768px) {
    .lightbox-nav.prev { left: 8px; }
    .lightbox-nav.next { right: 8px; }
    .lightbox-nav { width: 36px; height: 36px; font-size: 16px; }
    .lightbox-hotel-name { font-size: 13px; max-width: 60vw; overflow: hidden; text-overflow: ellipsis; }
}
@media (max-width: 480px) {
    .lightbox-main { max-width: 98vw; max-height: 60vh; }
    .lightbox-main img { max-height: 60vh; }
    .lightbox-thumbs { max-width: 96vw; }
    .lightbox-label { font-size: 12px; bottom: 80px; }
    .lightbox-hotel-name { font-size: 12px; max-width: 50vw; }
}
