.prp-wrapper {
    margin: 0 auto;
    padding:0px;
}


/* Summary */

.prp-summary {
    text-align: center;
    margin-bottom: 50px;
}


.prp-summary h1 {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 20px;
}


.prp-rating-summary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}


.prp-stars .star-rating {
    float: none;
    display: inline-block;
}


.prp-rating-text {
    font-size: 18px;
}


.prp-rating-text span {
    display: block;
    font-size: 14px;
    opacity: .7;
}


.prp-intro {
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    font-size: 17px;
}



/* Reviews grid */

.prp-reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}



/* Review card */

.prp-review-card {

    background: #fff;

    border: 1px solid #e8e8e8;

    padding: 20px;

    border-radius: 12px;

    transition: transform .2s ease,
                box-shadow .2s ease;

}


.prp-review-card:hover {

    transform: translateY(-3px);

    box-shadow: 0 10px 30px rgba(0,0,0,.08);

}



/* Header */

.prp-review-header {

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:20px;

    margin-bottom:25px;

}



.prp-review-author {

    display:flex;

    align-items:center;

    gap:12px;

}



.prp-review-author img {

    width:48px;

    height:48px;

    border-radius:50%;

}



.prp-review-author strong {

    display:block;

    font-size:16px;

}



.prp-verified {

    display:block;

    margin-top:5px;

    font-size:12px;

    color:#6a8f4e;

}



.prp-review-meta {

    text-align:right;

    font-size:13px;

    opacity:.75;

}



.prp-review-meta time {

    display:block;

    margin-top:5px;

}



/* Text */


.prp-review-content {

    font-size:16px;

    line-height:1.7;

    margin-bottom:25px;

}



/* Product */

.prp-product-box {

    display:flex;

    align-items:center;

    gap:15px;

    padding-top:20px;

    border-top:1px solid #eee;

}



.prp-product-image img {

    width:200px;

    height:200px;

    object-fit:cover;

    border-radius:8px;

}



.prp-product-info {

    display:flex;

    flex-direction:column;

    gap:8px;

}



.prp-product-name {

    font-weight:600;

    text-decoration:none;

    color:inherit;

}



.prp-product-button {

    font-size:14px;

    text-decoration:none;

    opacity:.8;

}



.prp-product-button:hover {

    opacity:1;

}


.prp-read-more {
    border:0;
    background:none;
    padding:0;
    margin-top:10px;
    cursor:pointer;
    font-weight:600;
}


/* Mobile */

@media(max-width:768px) {


    .prp-reviews-grid {

        grid-template-columns:1fr;

    }


    .prp-summary h1 {

        font-size:32px;

    }


    .prp-rating-summary {

        flex-direction:column;

    }


    .prp-review-header {

        flex-direction:column;

    }


    .prp-review-meta {

        text-align:left;

    }


}