/* ===============================
   INSTALL APP BANNER
=============================== */

.install-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1200;

    background: #1f3a5f;
    color: #ffffff;

    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);

    width: calc(100% - 40px);
    max-width: 520px;

    display: none;
    animation: slideUp 0.5s ease;
}

.install-content {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
}

.install-logo {
    height: 44px;
    width: auto;
}

.install-text {
    flex: 1;
    font-family: "Inter", sans-serif;
    line-height: 1.2;
}

.install-text strong {
    display: block;
    font-size: 15px;
}

.install-text span {
    font-size: 13px;
    opacity: 0.9;
}

.install-btn {
    background: #ffffff;
    color: #1f3a5f;
    border: none;
    border-radius: 10px;

    padding: 8px 14px;
    font-weight: 600;
    cursor: pointer;
}

.install-btn:hover {
    background: #f1f5f9;
}

.install-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    margin-left: 6px;
}

/* Animation */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, 40px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* MOBILE TWEAK */
@media (max-width: 480px) {
    .install-logo {
        height: 36px;
    }

    .install-text strong {
        font-size: 14px;
    }
}
.install-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #1f3b5c;
  color: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  display: none;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  z-index: 9999;
}

.install-banner button {
  background: #fff;
  color: #1f3b5c;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}