/* App Download Banner — dismissible top bar promoting the native app */
.app-download-banner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.app-download-banner__icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    flex-shrink: 0;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
}

.app-download-banner__text {
    flex: 1;
    min-width: 0;
}

.app-download-banner__title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.3;
}

.app-download-banner__subtitle {
    font-size: 11.5px;
    color: var(--text-sec);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.app-download-banner__cta {
    flex-shrink: 0;
    padding: 7px 14px;
    border-radius: 8px;
    background: var(--primary);
    color: #fff;
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.app-download-banner__cta:hover {
    background: var(--primary-hover);
}

.app-download-banner__close {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: var(--text-sec);
    font-size: 14px;
    cursor: pointer;
    border-radius: 50%;
    padding: 0;
}

.app-download-banner__close:hover {
    background: rgba(0, 0, 0, 0.06);
}
