/* CSS Watermark Overlay for Artwork Images */

.product-image-wrapper {
    position: relative;
}

/* Diagonal watermark across center */
.product-image-wrapper::before {
    content: '© SNIPPET AND SPLOTCH';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
    font-family: 'Libre Baskerville', serif;
    font-size: 14px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.28);
    letter-spacing: 4px;
    white-space: nowrap;
    pointer-events: none;
    z-index: 10;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Bottom-right copyright badge */
.product-image-wrapper::after {
    content: '© Snippet and Splotch';
    position: absolute;
    bottom: 8px;
    right: 8px;
    font-family: 'Libre Baskerville', serif;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(0, 0, 0, 0.45);
    padding: 3px 8px;
    border-radius: 2px;
    pointer-events: none;
    z-index: 10;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.3px;
}

/* ── GLightbox fullscreen watermark ── */

/* Diagonal watermark on fullscreen view */
.gslide-image::before {
    content: '© SNIPPET AND SPLOTCH';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
    font-family: 'Libre Baskerville', serif;
    font-size: 22px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.22);
    letter-spacing: 6px;
    white-space: nowrap;
    pointer-events: none;
    z-index: 99999;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* Bottom-right badge on fullscreen view */
.gslide-image::after {
    content: '© Snippet and Splotch';
    position: absolute;
    bottom: 14px;
    right: 14px;
    font-family: 'Libre Baskerville', serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 10px;
    border-radius: 2px;
    pointer-events: none;
    z-index: 99999;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.4px;
}
