
/* --- Google Rating --- */
.google-rating-container {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.google-rating-link {
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    display: inline-block;
}

.google-rating-link:hover {
    transform: translateY(-2px);
}

.rating-badge {
    background-color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #eee;
}

.google-logo {
    width: 20px;
    height: 20px;
}

.rating-score {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-color);
}

.rating-stars {
    display: flex;
    color: var(--accent-color);
}

.rating-stars i {
    font-size: 1rem;
}

.rating-count {
    color: var(--text-light);
    font-size: 0.9rem;
}

.google-rating-placeholder {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.google-rating-placeholder i {
    color: var(--accent-color); /* Matches .text-warning intent */
}

/* Optional helper if needed elsewhere */
.text-warning {
    color: var(--accent-color) !important;
}
