.reviews-main-wrapper {
    padding: 10px;
}
.review-title{
    font-family: "EB Garamond", Sans-serif;
    font-weight: 600;
    font-size:18px;
    text-transform: uppercase;
    line-height: 150%;
    letter-spacing: 0.36px;
}
.reviews-summary {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 25px;
    background-color: #F9FAFB;
    margin-bottom: 30px;
    
}

.summary-left .summary-stars {
    font-size: 20px;
    margin-bottom: 6px;
}

.summary-count {
    margin-bottom: 15px;
}

.summary-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.summary-row .bar {
    width: 180px;
    height: 6px;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
}

.summary-row .bar div {
    height: 6px;
    background: #333;
}


.review-item {
    font-family: "Mulish";
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}
.review-avatar{
    text-align: center;
    min-width: 100px;
}

.review-content{
    flex: 1;
}
.review-avatar img {
    width: 55px !important;
    height: 55px !important;
    object-fit: cover;
    object-position: top center;
    border-radius: 50% !important;
}

.review-author {
    margin-top: 6px;
    display: block;
    text-align: center;
    font-weight: 500;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-meta .review-date {
    margin-left: auto;
    opacity: 0.6;
}

.review-text-wrapper {
    margin-top: 8px;
}

.review-more-btn {
    background: none;
    border: none;
    color: #667085;
    cursor: pointer;
    padding: 0;
}


.leave-review-btn {
    font-family: "Mulish";
    padding: 12px 18px;
    border: 1px solid #667085;
    cursor: pointer;
    transition: 0.25s;
    color: #666564;
    font-weight: 600;
}

.leave-review-btn:hover {
    background: #eee;
}

.review-more-btn:hover {
    text-decoration: underline;
}

.reviews-main-wrapper .review-form-accordion {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    margin-top: 20px;
}

.reviews-main-wrapper .review-form-accordion.is-open {
    max-height: 2000px; /* достатньо велике значення */
}

.reviews-main-wrapper .review-form-inner {
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.reviews-main-wrapper .comment-form-rating .stars a {
    color: #4A0F15;
    font-size: 22px;
    text-decoration: none;
    margin-right: 4px;
    cursor: pointer;
}


.form-submit #submit{
    background-color: #4A0F15 !important;
    color: white !important;
    font-weight: 600 !important;

}