/**
 * Artwork On Product Image Styles
 */

/* Flash effect when image changes */
@keyframes artworkFlash {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
        filter: brightness(1.2);
    }

    100% {
        opacity: 1;
        filter: brightness(1);
    }
}

.artwork-updated {
    animation: artworkFlash 0.8s ease-in-out;
}

/* Ensure the swapped image fits nicely */
.woocommerce-product-gallery__image img.wp-post-image {
    transition: filter 0.3s ease;
}

/* Optional: Label to show it's a preview */
.nbd-preview-label {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    text-transform: uppercase;
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.artwork-updated+.nbd-preview-label {
    opacity: 1;
}