/* ===========================================
   Reviews Section Styles
   =========================================== */

.reviews-section {
    background: var(--color-white);
    padding: var(--space-3xl) 0;
}

/* Section Header */
.reviews-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.reviews-header h2 {
    color: var(--color-primary-dark);
    margin-bottom: var(--space-sm);
}

.reviews-subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
}

.reviews-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.stars-large {
    font-size: var(--text-3xl);
    color: var(--color-gold);
}

.rating-number {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-text);
}

.review-link {
    color: var(--color-primary);
    font-size: var(--text-sm);
}

/* Featured Review */
.featured-review {
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-2xl);
    position: relative;
    border: 2px solid var(--color-primary);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    white-space: nowrap;
}

.featured-review blockquote {
    text-align: center;
}

.featured-review .review-stars {
    font-size: var(--text-2xl);
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.featured-review .review-title {
    font-size: var(--text-xl);
    color: var(--color-primary-dark);
    margin-bottom: var(--space-md);
}

.featured-review .review-text {
    font-size: var(--text-lg);
    font-style: italic;
    color: var(--color-text);
    max-width: 700px;
    margin: 0 auto var(--space-lg);
    line-height: 1.8;
}

.featured-review .review-footer {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.featured-review .reviewer-name {
    font-weight: 600;
    font-style: normal;
    color: var(--color-text);
}

.featured-review .review-meta {
    font-size: var(--text-sm);
    color: var(--color-primary);
}

.featured-review .review-helpful {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

/* Review Card */
.review-card {
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-card .review-stars {
    color: var(--color-gold);
    font-size: var(--text-base);
    margin-bottom: var(--space-sm);
}

.review-card .review-title {
    font-size: var(--text-base);
    color: var(--color-primary-dark);
    margin-bottom: var(--space-sm);
}

.review-card .review-text {
    font-size: var(--text-sm);
    color: var(--color-text);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.review-card .review-footer {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.review-card .reviewer-name {
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--color-text);
    font-style: normal;
}

.review-card .injury-type {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    padding: var(--space-xs) var(--space-sm);
    background: var(--color-white);
    border-radius: var(--radius-sm);
    display: inline-block;
}

/* Reviews CTA */
.reviews-cta {
    text-align: center;
    padding: var(--space-xl);
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
}

.reviews-cta p {
    font-size: var(--text-lg);
    color: var(--color-text);
    margin-bottom: var(--space-lg);
}

.reviews-cta .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    justify-content: center;
    align-items: center;
}

/* Responsive - Tablet */
@media (min-width: 576px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-cta .cta-buttons {
        flex-direction: row;
    }
}

/* Responsive - Desktop */
@media (min-width: 768px) {
    .reviews-summary {
        flex-direction: row;
        gap: var(--space-lg);
    }

    .featured-review .review-footer {
        flex-direction: row;
        justify-content: center;
        gap: var(--space-lg);
    }
}

/* Responsive - Large Desktop */
@media (min-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .featured-review {
        padding: var(--space-2xl);
    }
}