/* Aura Horizon Travel - native app install banner. Isolated styles only. */
.aura-app-install-banner {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 12050;
    display: none;
    min-height: 68px;
    padding: 8px 12px;
    background: linear-gradient(180deg, rgba(18,22,29,.98), rgba(10,12,16,.98));
    border-bottom: 1px solid rgba(212,175,55,.40);
    box-shadow: 0 8px 28px rgba(0,0,0,.26);
    color: #f0f3f6;
    direction: rtl;
}
.aura-app-install-banner.is-visible { display: flex; }
.aura-app-install-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
}
.aura-app-install-close {
    width: 30px;
    height: 30px;
    border: 0;
    background: transparent;
    color: #c8cdd3;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    flex: 0 0 auto;
    padding: 0;
}
.aura-app-install-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
    flex: 0 0 auto;
    border: 1px solid rgba(212,175,55,.34);
    box-shadow: 0 3px 14px rgba(0,0,0,.34);
}
.aura-app-install-copy {
    min-width: 0;
    flex: 1 1 auto;
    text-align: right;
}
.aura-app-install-title {
    margin: 0;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
    color: #fff;
}
.aura-app-install-subtitle {
    margin: 1px 0 0;
    font-size: 11px;
    line-height: 1.4;
    color: #d4af37;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.aura-app-install-button {
    flex: 0 0 auto;
    min-width: 96px;
    height: 42px;
    padding: 0 16px;
    border-radius: 10px;
    border: 1px solid rgba(212,175,55,.58);
    background: linear-gradient(180deg, #242a33 0%, #151a21 100%);
    color: #f5eaaf;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 4px 14px rgba(0,0,0,.24);
}
.aura-app-install-button:active { transform: translateY(1px); }
@media (max-width: 700px) {
    .aura-app-install-banner { min-height: 64px; padding: 7px 8px; }
    .aura-app-install-inner { gap: 8px; }
    .aura-app-install-icon { width: 44px; height: 44px; border-radius: 11px; }
    .aura-app-install-title { font-size: 13px; }
    .aura-app-install-subtitle { font-size: 10px; }
    .aura-app-install-button { min-width: 86px; height: 40px; padding: 0 13px; font-size: 12px; }
    .aura-app-install-close { width: 26px; height: 26px; font-size: 20px; }
}
@media (max-width: 390px) {
    .aura-app-install-subtitle { display: none; }
    .aura-app-install-button { min-width: 78px; padding: 0 11px; }
}
