/* Google Review Banner - Compact & Discreet Design */
.google-review-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0 12px;
    height: 26px;
    background-color: #fafafa;
    border-bottom: 1px solid #e8e8e8;
}

.google-review-logo {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.google-review-stars {
    display: flex;
    gap: 1px;
}

.google-review-star {
    color: #fbbc04;
    font-size: 12px;
    line-height: 1;
}

.google-review-rating {
    font-weight: 700;
    font-size: 12px;
    color: #2e2e2e;
}

.google-review-text {
    font-size: 11px;
    color: #666;
}

/* Desktop - Even More Compact */
@media (min-width: 769px) {
    .google-review-banner {
        height: 22px;
        padding: 0 16px;
        gap: 6px;
        background-color: #f8f9fa;
    }

    .google-review-logo {
        width: 13px;
        height: 13px;
    }

    .google-review-star {
        font-size: 11px;
    }

    .google-review-rating {
        font-size: 11px;
    }

    .google-review-text {
        font-size: 10px;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .google-review-banner {
        height: 24px;
        padding: 0 8px;
        gap: 4px;
    }

    .google-review-logo {
        width: 13px;
        height: 13px;
    }

    .google-review-star {
        font-size: 11px;
    }

    .google-review-rating {
        font-size: 11px;
    }

    .google-review-text {
        font-size: 10px;
    }
}
