.pwa-ip-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    background: #ffffff;
    border-bottom: 3px solid var(--pwa-ip-color, #1E88E5);
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    direction: rtl;
    font-family: inherit;
}

.pwa-ip-banner.pwa-ip-visible {
    transform: translateY(0);
}

.pwa-ip-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    max-width: 720px;
    margin: 0 auto;
}

.pwa-ip-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    flex-shrink: 0;
    object-fit: cover;
}

.pwa-ip-text {
    flex: 1;
    font-size: 14px;
    color: #222;
    line-height: 1.4;
}

.pwa-ip-install-btn {
    background: var(--pwa-ip-color, #1E88E5);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

.pwa-ip-install-btn:hover {
    filter: brightness(0.92);
}

.pwa-ip-close {
    background: transparent;
    border: none;
    font-size: 20px;
    line-height: 1;
    color: #888;
    cursor: pointer;
    padding: 4px 6px;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .pwa-ip-text {
        font-size: 13px;
    }
    .pwa-ip-install-btn {
        padding: 7px 12px;
        font-size: 13px;
    }
}
