/* Reviews Section Styles */
.reviews-section {
            background: white;
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .reviews-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid #e2e8f0;
            padding-bottom: 1rem;
        }
        
        .reviews-toggle {
            display: flex;
            background: #f7fafc;
            border-radius: 8px;
            padding: 4px;
        }
        
        .toggle-btn {
            padding: 8px 16px;
            border: none;
            background: transparent;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .toggle-btn.active {
            background: #667eea;
            color: white;
        }
        
        .review-item {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 1.25rem;
            margin-bottom: 1rem;
            border-left: 4px solid transparent;
        }
        
        .review-item.positive {
            border-left-color: #48bb78;
            background: #f0fff4;
        }
        
        .review-item.negative {
            border-left-color: #f56565;
            background: #fffafa;
        }
        
        .review-meta {
            display: flex;
            justify-content: between;
            align-items: center;
            margin-bottom: 0.75rem;
            gap: 1rem;
        }
        
        .review-rating {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .review-stars {
            color: #ffd700;
        }
        
        .review-date {
            color: #718096;
            font-size: 0.9rem;
        }
        
        .review-text {
            line-height: 1.6;
            color: #4a5568;
        }
        
        .reviews-content {
            max-height: 500px;
            overflow-y: auto;
        }
        
        .no-reviews {
            text-align: center;
            color: #718096;
            padding: 2rem;
            font-style: italic;
        }
        