/* Стили для контейнера товаров в состоянии загрузки */
#dsa-products-container.loading {
    position: relative;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

#dsa-products-container.loading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 10;
}

#dsa-products-container.loading::after {
    content: 'Загрузка...';
    /* Можно заменить на иконку */
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
    font-size: 1.5em;
    color: var(--text-dark);
}