.install-banner {
    display: none;
    position: relative;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #e8431b;
    color: #fff;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.install-banner.is-visible {
    display: flex;
}

.install-banner-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    flex-shrink: 0;
    background: #fff;
    object-fit: contain;
}

.install-banner-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.install-banner-text strong {
    font-size: 13.5px;
}

.install-banner-text span {
    font-size: 12px;
    opacity: .9;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.install-banner-btn {
    border: 0;
    border-radius: 999px;
    padding: 7px 16px;
    background: #fff;
    color: #e8431b;
    font-weight: 700;
    font-size: 12.5px;
    white-space: nowrap;
    cursor: pointer;
}

.install-banner-close {
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 22px;
    line-height: 1;
    padding: 2px 4px;
    cursor: pointer;
    opacity: .85;
    flex-shrink: 0;
}

.install-banner-close:hover {
    opacity: 1;
}

.install-banner-ios-hint {
    display: none;
    position: absolute;
    left: 14px;
    right: 14px;
    top: 100%;
    margin-top: 6px;
    padding: 10px 12px;
    background: #1f1a17;
    color: #fff;
    border-radius: 8px;
    font-size: 12.5px;
    line-height: 1.5;
    z-index: 30;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
}

.install-banner-ios-hint.is-visible {
    display: block;
}

.install-banner-ios-hint .install-banner-share-icon {
    display: inline-block;
    width: 13px;
    height: 13px;
    vertical-align: -2px;
    margin: 0 1px;
}

@media (min-width: 900px) {
    /* Extra safety net — install-banner.js already gates this to mobile
       user agents, but a wide viewport (e.g. a resized desktop browser
       spoofing a mobile UA) should still not show it. */
    .install-banner.is-visible {
        display: none;
    }
}
