
/* Sectiunea reviuri */
/* Individual reviews */
.review {
    display: flex;
    flex-direction: column;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}


.rating-left {
    display: flex;
    flex-direction: column;
}

.percentage {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.percentage-value {
    font-family: Jost;
    font-weight: 400;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 0%;
}

.percentage-icon {
    width: 40px;
    height: 40px;
    background-color: #5EF5B8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.percentage-label {
    font-family: Jost;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #999999;
}

.rating-right {
    text-align: right;
}

.rating-number {
    font-family: Jost;
    font-weight: 400;
    font-size: 48px;
    line-height: 40px;
}

.stars {
    color: #5EF5B8;
    letter-spacing: 2px;
}

.reviews-count {
    font-family: Jost;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #999999;
}

.reviewer {
    display: flex;
    align-items: center;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-name {
    font-family: Jost;
    font-weight: 700;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #000000;
}

.review-rating {
    text-align: right;
}

.review-stars {
    color: #5EF5B8;
    font-size: 16px;
    letter-spacing: 2px;
}

.stars-count {
    font-family: Jost;
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    color: #000000;
}

.review-content {
    margin-bottom: 20px;
    position: relative;
    gap: 8px;
    padding: 16px;
    padding-right: 32px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    background-color: #ffffff;

    font-family: Jost;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #000000;
}

.quote-mark {
    position: absolute;
    right: 16px;
    top: 14px;
    color: #00E5B9;
    font-family: Jost;
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;

}

.car-info {
    display: flex;
    align-items: center;
}

.car-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}

.car-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.car-model-info {
    flex: 1;
}

.purchase-label {
    font-family: Jost;
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    color: #000000;
}

.car-model {
    font-family: Avenir Next;
    font-weight: 700;
    font-size: 14px;
    line-height: 150%;
    color: #3B00DD
}

.verification {
    display: flex;
    align-items: center;
    color: #000000;
    padding-top: 8px;
    padding-right: 11px;
    padding-bottom: 8px;
    padding-left: 11px;
    gap: 6px;
    border-radius: 100px;
    background-color: #ffffff;
    font-family: Jost;
    font-weight: 400;
    font-size: 12px;
}

.verification img {
    width: 16px;
    height: 16px;
    margin-left: 6px;
}

.reviews-columns {
    margin: 0 auto;
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.review-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card {
    background-color: #F3F3F3;
    border-radius: 16px;
    padding: 24px;
    position: relative;
    height: auto;
}

.rating-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-column: 1;
    grid-row: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .reviews-columns {
        flex-wrap: wrap;
    }
    
    .review-column {
        flex-basis: calc(50% - 10px);
        gap: 12px;
    }

    .reviews-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rating-card {
        grid-column: 1;
        grid-row: 1;
    }
}

@media (max-width: 768px) {
    .review-column {
        flex-basis: 100%;
        gap: 12px;
    }
    .reviews-columns {
        gap: 12px;
        margin-bottom: 0;
    }
    .review-card {
        padding: 12px;
    }

    .reviews-container {
        grid-template-columns: 1fr;
    }
    
    .rating-card {
        grid-column: 1;
        grid-row: 1;
    }
}