/* Google Reviews Widget — Footer */
.wc-greviews {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid #d6dde5;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    color: #1f2933;
    text-decoration: none;
    transition: box-shadow .15s ease, border-color .15s ease;
}
.wc-greviews:hover {
    border-color: #005995;
    box-shadow: 0 2px 8px rgba(0, 89, 149, 0.12);
    text-decoration: none;
}
.wc-greviews__google {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
.wc-greviews__rating {
    font-weight: 700;
    color: #1f2933;
    font-size: 1rem;
}
.wc-greviews__stars {
    display: inline-flex;
    gap: 1px;
    color: #fbbc04;
    line-height: 1;
}
.wc-greviews__stars svg { width: 14px; height: 14px; }
.wc-greviews__count {
    color: #5a6573;
    font-size: 0.85rem;
}
.wc-greviews__label {
    color: #5a6573;
    font-size: 0.75rem;
}
.wc-greviews--loading,
.wc-greviews--error { display: none; }
@media (max-width: 480px) {
    .wc-greviews { font-size: 0.85rem; padding: 8px 10px; }
}
