.google-badge-section,
.google-badge-section *,
.google-badge-container {
    overflow: visible !important;
}

.google-badge-section {
    font-family: system-ui, -apple-system, sans-serif;
    padding: 10px 16px 20px !important;
    margin: 0 !important;
}

.google-badge-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.google-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    text-decoration: none;
}

.google-logo {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.badge-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-number {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.stars {
    display: flex;
    gap: 2px;
    font-size: 18px;
    color: #fbbc04;
}

.star-empty {
    color: #dadce0;
}

.star-partial {
    opacity: 0.7;
}

.review-text {
    font-size: 13px;
    color: #5f6368;
    font-weight: 500;
}

.review-text span {
    color: #1a73e8;
    font-weight: 600;
}

@media (max-width: 480px) {
    .google-badge {
        padding: 14px 20px;
        gap: 12px;
    }

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

    .rating-number {
        font-size: 20px;
    }

    .stars {
        font-size: 16px;
    }

    .review-text {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .google-badge {
        padding: 12px 16px;
        gap: 10px;
    }

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

    .rating-number {
        font-size: 18px;
    }

    .stars {
        font-size: 14px;
    }

    .review-text {
        font-size: 11px;
    }
}
