.chili-image-product {
    cursor: zoom-in;
    float: left;
    margin-right: 30px;
}

.chili-image-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: background 0.25s ease;
}

.chili-image-overlay.is-visible {
    background: rgba(0,0,0,0.8);
}

.chili-image-overlay img {
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
    max-width: 90%;
    max-height: 90%;
}

.chili-image-overlay.is-visible img {
    transform: scale(1);
    opacity: 1;
}
