/* Google Logo Styling */
.google-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    margin-right: 12px;
    padding: 4px;
}

.google-logo svg {
    width: 32px;
    height: 32px;
}

.google-reviews {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.reviews-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stars {
    color: #ffc107;
    font-size: 14px;
    line-height: 1;
}

.rating-text {
    color: white;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
}

