/* Zoomable Menu Lightbox — 76f5fb2f */

.zml-76f5fb2f-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.zml-76f5fb2f-thumb-wrap {
    width: 100%;
    overflow: hidden;
    cursor: zoom-in;
}

.zml-76f5fb2f-thumbnail {
    display: block;
    width: 100%;
    height: auto;
    transition: opacity 0.2s ease;
}

.zml-76f5fb2f-thumbnail:hover {
    opacity: 0.88;
}

.zml-76f5fb2f-btn-wrap {
    display: flex;
    justify-content: center;
}

.zml-76f5fb2f-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: opacity 0.2s ease, transform 0.15s ease;
}

.zml-76f5fb2f-btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

/* ── Overlay ── */
.zml-76f5fb2f-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.zml-76f5fb2f-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}

/* ── Lightbox image container ── */
.zml-76f5fb2f-lb-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
}

.zml-76f5fb2f-lb-inner.is-dragging {
    cursor: grabbing;
}

.zml-76f5fb2f-lb-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    transform-origin: center center;
    transition: transform 0.15s ease;
    user-select: none;
    pointer-events: none;
    will-change: transform;
}

/* ── Controls bar ── */
.zml-76f5fb2f-controls {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border-radius: 40px;
    padding: 8px 16px;
    z-index: 1000000;
}

.zml-76f5fb2f-ctrl-btn {
    background: rgba(255,255,255,0.18);
    border: none;
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
}

.zml-76f5fb2f-ctrl-btn:hover {
    background: rgba(255,255,255,0.32);
}

.zml-76f5fb2f-zoom-label {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    min-width: 44px;
    text-align: center;
    font-family: monospace;
}

/* ── Close button ── */
.zml-76f5fb2f-close {
    position: fixed;
    top: 18px;
    right: 22px;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000001;
    transition: background 0.15s ease;
}

.zml-76f5fb2f-close:hover {
    background: rgba(255,255,255,0.3);
}

/* ── Reset button ── */
.zml-76f5fb2f-ctrl-btn.reset {
    font-size: 13px;
    font-weight: 700;
    width: auto;
    padding: 0 12px;
    border-radius: 20px;
    letter-spacing: 0.03em;
}

/* ── Hint ── */
.zml-76f5fb2f-hint {
    position: fixed;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.55);
    font-size: 12px;
    pointer-events: none;
    z-index: 1000001;
    white-space: nowrap;
}
