.reviews-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    font-family: system-ui;
}

.reviews-header {
    text-align: center;
    margin-bottom: 40px;
}

.reviews-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.rating-value {
    font-size: 28px;
    font-weight: 700;
}

.stars {
    display: flex;
    gap: 4px;
}

.star {
    width: 18px;
    height: 18px;
    fill: #ddd;
}

.star.filled {
    fill: #fbbc04;
}

.reviews-total {
    color: #666;
    font-size: 14px;
}

.reviews-link {
    color: #666;
    font-size: 14px;
    cursor: pointer;
}

.reviews-link:hover {
    color: #363636;
    font-size: 14px;
}


.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .4s ease, transform .4s ease;
}

.review-card.hide {
    opacity: 0;
    transform: translateY(10px);
}



.review-card.exit {
    opacity: 0;
    transform: translateX(-40px);
}

.review-card.enter {
    opacity: 0;
    transform: translateX(40px);
}

.review-card.enter.show {
    opacity: 1;
    transform: translateX(0);
}

.reviews-thanks {
    margin-top: 12px;
    font-size: 14px;
    color: #555;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.mobile {
    display: none;
}

@media(max-width:900px) {

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:600px) {

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }

}


.review-card {
    background: #fff;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
    transition: all .2s;
    margin-bottom: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.review-user img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.review-stars {
    color: #fbbc04;
    font-size: 15px;
}
 
.review-text {
    font-size: 14px;
    line-height: 1.5;
    margin: 10px 0;
    color: #444;
}

.review-date {
    font-size: 12px;
    color: #888;
}

.reviews-button {
    display: block;
    width: max-content;
    margin: 40px auto 0;
    background: #4285F4;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: .2s;
}

.reviews-button:hover {
    background: #3367d6;
}