.modal-zoom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

.modal-zoom-content {
    position: relative;
    padding: 1rem;
    max-width: 95vw;
    max-height: 95vh;
}

.modal-zoom-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-lg, 0.5rem);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease-out;
}

body.modal-zoom-open {
    overflow: hidden;
}