/* WDS Google Reviews Widget Styles */
#wds-google-reviews {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    max-width: 100%;
}
.wds-reviews-header {
    text-align: center;
    margin-bottom: 40px;
}
.wds-reviews-title {
    font-size: 2.2rem;
    color: #1e3a5f;
    margin-bottom: 15px;
    font-weight: 700;
}
.wds-rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}
.wds-rating-score {
    font-size: 3rem;
    font-weight: 700;
    color: #1e3a5f;
}
.wds-rating-stars {
    color: #fbbf24;
    font-size: 1.8rem;
    letter-spacing: 2px;
}
.wds-rating-count {
    color: #64748b;
    font-size: 1rem;
    margin: 0;
}
.wds-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
}
.wds-review-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wds-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.wds-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}
.wds-reviewer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #1e3a5f;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.wds-reviewer-info {
    flex: 1;
    min-width: 0;
}
.wds-reviewer-name {
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 3px;
}
.wds-review-date {
    font-size: 0.85rem;
    color: #94a3b8;
}
.wds-review-stars {
    color: #fbbf24;
    margin-bottom: 12px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}
.wds-review-text {
    color: #475569;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}
.wds-google-link {
    text-align: center;
}
.wds-google-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1e3a5f;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}
.wds-google-btn:hover {
    background: #2d4a6f;
    color: white;
    transform: scale(1.02);
}
.wds-google-btn svg {
    flex-shrink: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
    #wds-google-reviews {
        padding: 40px 15px;
    }
    .wds-reviews-title {
        font-size: 1.6rem;
    }
    .wds-rating-score {
        font-size: 2.2rem;
    }
    .wds-rating-stars {
        font-size: 1.4rem;
    }
    .wds-reviews-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
    .wds-review-card {
        padding: 20px;
    }
    .wds-google-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}
