/* WalStore v3.0 — authoritative product gallery loading state.
   Scope is intentionally limited to the product gallery. */

.vp-product-gallery .vp-main-image,
.vp-product-gallery #zoomContainer {
    position: relative !important;
    isolation: isolate !important;
}

.vp-product-gallery #mainImage {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    visibility: visible !important;
    opacity: 1 !important;
    transition: opacity .18s ease, transform .22s ease, filter .18s ease !important;
}

.vp-product-gallery .vp-main-image::before,
.vp-product-gallery #zoomContainer::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    margin: -22px 0 0 -22px;
    border: 4px solid rgba(79, 70, 229, .16);
    border-top-color: #4f46e5;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 8;
}

.vp-product-gallery .vp-main-image::after,
.vp-product-gallery #zoomContainer::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.34);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 7;
    transition: opacity .16s ease !important;
}

.vp-product-gallery .vp-main-image.is-loading::before,
.vp-product-gallery #zoomContainer.is-loading::before {
    opacity: 1;
    visibility: visible;
    animation: walstoreGalleryV30Spin .7s linear infinite;
}

.vp-product-gallery .vp-main-image.is-loading::after,
.vp-product-gallery #zoomContainer.is-loading::after {
    opacity: 1;
    visibility: visible;
}

.vp-product-gallery .vp-main-image.is-loading #mainImage,
.vp-product-gallery #zoomContainer.is-loading #mainImage {
    opacity: .38 !important;
    filter: saturate(.84) blur(.45px) !important;
    transform: scale(.988) !important;
}

.vp-product-gallery .vp-main-image.is-image-ready #mainImage,
.vp-product-gallery #zoomContainer.is-image-ready #mainImage {
    animation: walstoreGalleryV30Ready .24s ease-out both;
}

.vp-product-gallery .vp-thumb {
    cursor: pointer !important;
    touch-action: pan-x pan-y !important;
}

.vp-product-gallery .vp-thumb img {
    pointer-events: none !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
}

@keyframes walstoreGalleryV30Spin {
    to { transform: rotate(360deg); }
}

@keyframes walstoreGalleryV30Ready {
    from { opacity: .72; transform: scale(.992); }
    to { opacity: 1; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    .vp-product-gallery .vp-main-image.is-loading::before,
    .vp-product-gallery #zoomContainer.is-loading::before,
    .vp-product-gallery .vp-main-image.is-image-ready #mainImage,
    .vp-product-gallery #zoomContainer.is-image-ready #mainImage {
        animation: none !important;
    }
    .vp-product-gallery #mainImage,
    .vp-product-gallery .vp-main-image::after,
    .vp-product-gallery #zoomContainer::after {
        transition: none !important;
    }
}


/* v3.0 desktop hardening: keep thumbnail buttons as the mouse hit target. */
@media (hover:hover) and (pointer:fine) {
    .vp-product-gallery #thumbStrip .vp-thumb {
        position: relative !important;
        z-index: 3 !important;
        pointer-events: auto !important;
        user-select: none !important;
    }
    .vp-product-gallery #thumbStrip .vp-thumb * {
        pointer-events: none !important;
    }
}
