/*   
	Theme Name: Smart Shop
	Author: SmartTrek
	Version: 1.0
*/

.products-list .product-card .product-info .product-footer .product-avail.out-of-stock  {
    color: #f43126;
}

[id] {
    scroll-margin-top: 90px;
}

.product-gallery .gallery-swiper {
    aspect-ratio: 1 / 1;
}


/* Лоадер */
.order-products {
    position: relative;
    min-height: 80px;
}

.is-loading::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(1px);
    z-index: 2;
}

.is-loading::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 32px;
    margin: -16px 0 0 -16px;
    border: 3px solid #ddd;
    border-top: 3px solid #000;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    z-index: 3;
}

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