/* Inspiré du design FastAPI - Minimaliste et épuré */
.footer-google-reviews {
    display: inline-block;
}

.google-reviews-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.google-reviews-badge:hover {
    border-color: #FFD100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.google-icon {
    flex-shrink: 0;
}

.rating-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
}

.rating-value {
    font-size: 14px;
    font-weight: 600;
    color: #202124;
    line-height: 1;
}

.rating-stars {
    font-size: 16px;
    letter-spacing: 2px;
    line-height: 1;
    display: flex;
    gap: 2px;
}

/* Étoiles pleines = jaunes */
.star-filled {
    color: #FFD100;
}

/* Étoiles vides = grises */
.star-empty {
    color: #e0e0e0;
}

.rating-count {
    font-size: 12px;
    color: #5f6368;
    line-height: 1;
}

/* Version responsive */
@media (max-width: 768px) {
    .google-reviews-badge {
        padding: 10px 14px;
        gap: 10px;
    }
    
    .rating-stars {
        font-size: 14px;
        letter-spacing: 1px;
    }
}