/* CSS pentru badge-ul mic Google Reviews */
.google-reviews-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: #1a1a1a;
    padding: 20px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.google-reviews-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.google-reviews-badge .review-stars {
    color: #f7b603;
    font-size: 28px;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.google-reviews-badge .review-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 15px;
}

.google-reviews-badge .review-count {
    color: #aaaaaa;
    font-size: 13px;
}

.google-reviews-badge .google-brand {
    font-size: 15px;
    font-weight: 500;
}

.google-reviews-badge .google-btn {
    display: inline-block;
    background: #333333;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease;
}

.google-reviews-badge .google-btn:hover {
    background: #444444;
    text-decoration: none;
    color: #ffffff;
}
