/* WaterMirror28 – Styles */

.wm28-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: block;
    cursor: crosshair;
}

.wm28-canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

/* ── Lightbox 28 ── */
.wm28-lightbox-28 {
    position: fixed;
    inset: 0;
    z-index: 99928;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wm28-lb-overlay-28 {
    position: absolute;
    inset: 0;
    background: rgba(0, 10, 20, 0.88);
    backdrop-filter: blur(6px);
    cursor: pointer;
}

.wm28-lb-img-28 {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 8px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.08);
    animation: wm28-lb-in 0.35s cubic-bezier(.22,1,.36,1) both;
}

@keyframes wm28-lb-in {
    from { opacity: 0; transform: scale(0.88); }
    to   { opacity: 1; transform: scale(1); }
}

.wm28-lb-close-28 {
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 3;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 18px;
    line-height: 1;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.wm28-lb-close-28:hover {
    background: rgba(255,255,255,0.22);
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .wm28-wrapper {
        cursor: pointer;
    }
}
