/* EQC Gallery Lightbox CSS */
#eqc-lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 9999;
}
#eqc-lb-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.88);
    cursor: pointer;
}
#eqc-lb-wrap {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 90vw;
    max-height: 90vh;
}
#eqc-lb-img {
    max-width: 85vw;
    max-height: 80vh;
    display: block;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
}
#eqc-lb-close {
    position: fixed;
    top: 15px; right: 20px;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
    z-index: 10001;
    line-height: 1;
    opacity: 1;
    text-shadow: 0 0 6px rgba(0,0,0,0.8);
    display: block !important;
}
#eqc-lb-prev,
#eqc-lb-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    font-size: 80px;
    color: #fff;
    cursor: pointer;
    opacity: 1;
    user-select: none;
    z-index: 10001;
    padding: 0 15px;
    line-height: 1;
    text-shadow: 0 0 8px rgba(0,0,0,0.8);
    display: block !important;
    background: rgba(0,0,0,0.3);
}
#eqc-lb-prev:hover,
#eqc-lb-next:hover { background: rgba(0,0,0,0.6); }
#eqc-lb-prev { left: 0; }
#eqc-lb-next { right: 0; }
#eqc-lb-caption {
    color: #fff;
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
}
#eqc-lb-counter {
    color: #aaa;
    font-size: 12px;
    margin-top: 5px;
    text-align: center;
}
