/* ===== ESHAA LIGHTBOX ===== */

.eshaa-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.eshaa-lightbox.active {
    display: flex;
}

.eshaa-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eshaa-lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.eshaa-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 36px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 10;
    padding: 0;
}

.eshaa-lightbox-close:hover {
    color: #ff7e44;
}

.eshaa-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 30px;
    cursor: pointer;
    padding: 15px 20px;
    z-index: 10;
    transition: background 0.3s ease;
}

.eshaa-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.4);
}

.eshaa-lightbox-prev {
    left: 20px;
}

.eshaa-lightbox-next {
    right: 20px;
}

.eshaa-lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
