.cart-product--disabled {
    opacity: 0.5;
    /*pointer-events: none;*/
    background: #f5f5f5;
    position: relative;
}

.cart-product--disabled .cart-product__name {
    text-decoration: line-through;
    color: #888;
}

.cart-product--disabled::after {
    content: "Нет в наличии";
    color: #d00;
    font-size: 12px;
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff0f0;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
}

.cart-product__delete {
    cursor: pointer;
}

.js-cart.cart-loading > div {

    opacity: 0.7;
    pointer-events: none;
}

.js-cart.cart-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: #000;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}