/**
 * Header: Topbar
 */
.gp-child-topbar {
    font-size: 14px;
    line-height: 1.4;
    border-top: 5px solid var(--accent);
    background-color: var(--base-3);
}

.gp-child-topbar__inner {
    padding: 8px 0;
}

.gp-child-topbar__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    max-width: var(--content-width);
    margin: 0 auto;
}

.gp-child-topbar__left {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gp-child-topbar__google,
.gp-child-topbar__phone-icon {
    display: inline-flex;
    line-height: 0;
}

.gp-child-topbar__stars {
    color: #fbbc05;
    letter-spacing: 1px;
    font-weight: 700;
}

.gp-child-topbar__rating {
    font-weight: 600;
}

.gp-child-topbar__right {
    margin-left: auto;
}

.gp-child-topbar__right a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.gp-child-topbar__phone-icon {
    color: var(--accent);
}

.gp-child-topbar a {
    color: inherit;
    font-weight: 600;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .gp-child-topbar__content {
        justify-content: center;
        text-align: center;
    }

    .gp-child-topbar__right {
        margin-left: 0;
    }
}
