.wrapper__box{
    background: #f5f5f5;
}
.reviews-product-info {
    background: #fff;
    padding: 20px 12px;
    border-radius: 8px;
    margin-bottom: 30px;
}
h1.reviews-product-info__title a {
    text-decoration: none;
    border-bottom: 1px solid #8258FC;
    color: #8258FC;
}
.reviews-product-info__container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    align-items: center;
    justify-content: space-between;
}

.reviews-product-info__image {
    flex-shrink: 0;
    width: 80px;
    max-height: 80px;
    overflow: hidden;
    border-radius: 4px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-product-info__image img {
    max-width: 100%;
    max-height: 150px;
    height: auto;
    object-fit: contain;
}

.reviews-product-info__content {
    flex-grow: 1;
}

.reviews-product-info__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    padding: 0;
}

.reviews-product-info__price {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    flex-grow: 1;
}

.reviews-product-info__price .price-from {
    font-size: 18px;
    font-weight: 400;
    color: #666;
}

.reviews-product-info__actions {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    margin-left: auto;
    flex-grow: 1;
    max-width: 270px;
}
.reviews-product-info__actions > .btn-cart{
    height: 54px;
    border-radius: 8px;
}
.reviews-product-info__block {
    flex-direction: row;
    align-items: center;
    display: flex;
    gap: 30px;

}
.btn-back-to-product {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-back-to-product:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.btn-back-to-product svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .reviews-product-info__container {
        flex-direction: column;
        gap: 18px;
        margin: 0;
    }
    a.btn-back-to-product {
        width: 100%;
        border: none;
        padding: 0;
    }
    .reviews-product-info__image {
        width: 100%;
        max-width: 140px;
        margin: 0 auto;
        max-height: 100%;
    }

    .reviews-product-info__title {
        font-size: 20px;
    }

    .reviews-product-info__price {
        font-size: 24px;
    }

    .reviews-product-info__actions {
        flex-direction: column;
        width: 100%;
        margin: 0;
        max-width: 100%;
    }
    .reviews-product-info__block {
        width: 100%;

    }
    .reviews-product-info__actions .btn-cart,
    .reviews-product-info__actions .btn-back-to-product {
        width: 100%;
        justify-content: center;
    }
}