.product-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid #ccc;
    width: 18vw; /* Обновляем ширину */
    height: 18vw; /* Обновляем высоту */
    border-radius: 10px; /* Добавляем скругление углов */
    background-color: #ffffff; /* Добавляем фон */
}

.product-image img {
    width: 90%; /* Сохраняем пропорции внутри блока */
    height: 90%; /* Сохраняем пропорции внутри блока */
    object-fit: contain; /* Обеспечиваем масштабирование изображения */
    cursor: pointer; /* Добавляем курсор указатель */
}

.product-price {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #333;
}

#product-price {
    position: relative;
    text-align: left;
}



.preloader-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
    justify-content: center;
    align-items: center;
}

.preloader {
    width: 20vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


@media (max-width: 1024px) {
    .product-image {
        flex: none;
        width: 30vw;
        height: 30vw;
        margin-top: 4px;
    }

    .product-price {
        display: none;
    }

    #product-price {
        display: none;
    }


}