/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/
/* Скрываем галерею, пока не выбрана вариация из URL */
body.has-variation-from-url .woocommerce-product-gallery {
    opacity: 0;
    visibility: hidden;
}
body.has-variation-from-url .woocommerce-product-gallery.ready {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.25s ease;
}
/* ===== Preloader for variation from URL ===== */
body.variation-preload .single-product-content,
body.variation-preload .woocommerce-product-gallery,
body.variation-preload .summary {
    opacity: 0;
    pointer-events: none;
}

body.variation-preload::before {
    content: '';
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 99999;
}

body.variation-preload::after {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    width: 42px;
    height: 42px;
    margin: -21px;
    border: 3px solid #e5e5e5;
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    z-index: 100000;
}

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