.reviews-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 800;
}

.reviews-header p {
    font-size: 1.1rem;
    color: #6c757d;
}

.view-all-link {
    display: inline-block;
    margin-top: 1rem;
    color: #8B4513;
    text-decoration: none;
    font-weight: 600;
}

.view-all-link:hover {
    text-decoration: underline;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.review-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.3rem 0;
}

.verified-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(40, 167, 69, 0.2);
    display: inline-block;
    margin-top: 0.3rem;
}

.review-rating .star {
    color: #ffc107;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(255, 193, 7, 0.3);
}

.review-rating .star:not(.filled) {
    color: #e9ecef;
}

.review-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #8B4513;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.review-comment {
    color: #495057;
    line-height: 1.6;
    margin: 0.5rem 0 1rem 0;
    font-size: 1rem;
}

.review-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.review-date {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}