.productInfo {
    padding: 30px 16px;
}

.productInfo__rowWrapper {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 16px;
    /*width: 100%;*/
    max-width: 1024px;
}

.productInfo__columnBlock {
    flex: 1;
    background: #b5b5b5;
    border-radius: 10px;
    padding: 8px;
}

.productInfo__subtitle {
    margin-bottom: 0;
}

.productInfo__title {
    margin-bottom: 0;
}

.productInfo__existText {
    margin-bottom: 16px;
}

.productInfo__imagesContainer {

}

.productInfo__imageWrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    gap: 20px;
    margin-bottom: 16px;
}

.productInfo__image {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 10px;
    object-fit: contain;
}

.productInfo__descriptionsBlock {
    max-width: 1024px;
    display: flex;
    flex-direction: column;
    gap: 20px;

}
.productInfo__updateBtn {
    flex: 1;
    padding: 8px;
    background: #123396;
    text-decoration: none;
    border-radius: 4px;
    color: #fff;
    text-align: center;
    font-size: 18px;
    max-width: 400px;
    min-width: 120px;
}
.productInfo__deleteBtn {
    flex: 1;
    padding: 8px;
    background: #ff0c0c;
    text-decoration: none;
    border-radius: 4px;
    color: #fff;
    text-align: center;
    font-size: 18px;
    max-width: 400px;
}