.app-smart-banner {
    display: none;
    background: #f4f7f2;
    border-bottom: 1px solid #e2e8de;
    font-family: inherit;
}

.app-smart-banner.is-visible {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10050;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.app-smart-banner__inner {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 64px;
    padding: 8px 12px;
    padding-top: calc(8px + env(safe-area-inset-top, 0px));
}

.app-smart-banner__icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.app-smart-banner__info {
    flex: 1 1 auto;
    min-width: 0;
}

.app-smart-banner__title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.app-smart-banner__subtitle {
    margin-top: 2px;
    font-size: 12px;
    line-height: 1.2;
    color: #6b7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.app-smart-banner__action {
    flex: 0 0 auto;
    min-width: 88px;
    height: 32px;
    padding: 0 14px;
    border: 0;
    border-radius: 16px;
    background: #2f80ed;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 32px;
    cursor: pointer;
}

.app-smart-banner__close {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    margin-left: -2px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #9ca3af;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 768px) {
    body.has-app-smart-banner #sTop {
        top: var(--gc-app-smart-banner-height, 64px);
        z-index: 10040;
    }
}
