* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.reviews-wrapper {
    max-width: 900px;
    margin: 20px auto;
}

.reviews-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.reviews-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.reviews-link:hover .reviews-section {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.reviews-heading {
    margin-bottom: 8px;
    max-width: 900px;
    margin: 20px auto;
}

.reviews-title {
    color: #8b3dcc;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}

.reviews-description {
    color: #999;
    font-size: 14px;
}

.reviews-content {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 30px;
    margin-top: 25px;
}

.rating-summary {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.overall-rating {
    font-size: 64px;
    font-weight: 700;
    color: #333;
    line-height: 1;
    margin-bottom: 12px;
}

.stars-display {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
}

.star-filled {
    color: #8b3dcc;
    font-size: 20px;
}

.total-reviews {
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
}

.rating-breakdown {
    width: 100%;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.rating-row:last-child {
    margin-bottom: 0;
}

.rating-stars {
    font-size: 13px;
    color: #333;
    font-weight: 500;
    min-width: 30px;
}

.rating-bar-container {
    flex: 1;
    height: 8px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: #333;
    border-radius: 10px;
    transition: width 0.3s ease;
}

.rating-count {
    font-size: 13px;
    color: #666;
    min-width: 35px;
    text-align: right;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card {
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 20px;
}

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

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.reviewer-avatar:nth-of-type(1) {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
}

.reviewer-details {
    flex: 1;
}

.reviewer-name {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-star {
    color: #8b3dcc;
    font-size: 16px;
}

.review-star.empty {
    color: #d0d0d0;
}

.verifi-badge {
    color: #4caf50;
    font-size: 12px;
    font-weight: 500;
}

.review-date {
    color: #999;
    font-size: 13px;
}

.review-text {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}
