.modern-reviews-container {
    max-width: 100%;
    font-family: inherit;
    margin: 20px 0;
}

.reviews-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.reviews-header h3 {
    margin: 0 0 20px 0 !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    color: white !important;
}

.rating-overview {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.average-rating {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-number {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

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

.stars-display .star {
    font-size: 24px !important;
    color: #ffd700 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.review-count {
    font-size: 16px;
    opacity: 0.9;
    margin-left: 10px;
}

.reviews-list {
    display: grid;
    gap: 24px;
}

.review-item {
    background: #fff !important;
    border: 1px solid #e1e5e9 !important;
    border-radius: 12px;
    padding: 24px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
    transition: all 0.3s ease;
}

.review-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
    transform: translateY(-2px);
}

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

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

.reviewer-avatar img {
    border-radius: 50% !important;
    border: 3px solid #f8f9fa !important;
}

.reviewer-name {
    margin: 0 0 8px 0 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #2d3748 !important;
}

.verified-badge {
    background: linear-gradient(135deg, #48bb78, #38a169) !important;
    color: white !important;
    padding: 4px 12px !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    display: inline-block !important;
    margin-bottom: 4px !important;
    box-shadow: 0 2px 4px rgba(72, 187, 120, 0.3) !important;
    border: none !important;
}

.review-date {
    color: #718096 !important;
    font-size: 14px !important;
}

.review-rating .star {
    color: #ffd700 !important;
    font-size: 18px !important;
    margin-right: 2px !important;
}

.review-rating .star.empty {
    color: #e2e8f0 !important;
}

.review-content p {
    color: #4a5568 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    font-size: 16px !important;
}

.no-reviews {
    text-align: center;
    padding: 60px 30px;
    background: #f8f9fa;
    border-radius: 12px;
}

.no-reviews-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.no-reviews h4 {
    color: #2d3748 !important;
    margin-bottom: 10px !important;
    font-size: 24px !important;
}

.no-reviews p {
    color: #718096 !important;
    font-size: 16px !important;
    margin: 0 !important;
}

@media (max-width: 768px) {
    .reviews-header {
        padding: 20px;
        text-align: center;
    }
    
    .rating-overview {
        justify-content: center;
    }
    
    .average-rating {
        flex-direction: column;
        gap: 10px;
    }
    
    .review-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .reviewer-info {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}