
.install-banner{
  display:flex;
  float: right;
  align-items:center;
  gap:16px;
  padding:16px;
  margin:16px 0;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.08);
  background:linear-gradient(90deg,#f7f9fc 0%, #eef4fb 100%);
}

.install-banner__image{
  flex:0 0 101px;
  height:98px;
  display:flex;
  align-items:flex-end;
  justify-content:flex-start;
}

.install-banner__image img{
  height:98px;
  width:auto;
  display:block;
}

.install-banner__content{
  flex:1;
  min-width:220px;
}

.install-banner__title{
  font-size:20px;
  font-weight:700;
  margin:0 0 6px 0;
}

.install-banner__desc{
  font-size:14px;
  opacity:.85;
  margin:0;
}

.install-banner__cta{
  margin-top:10px;
  border:0;
  background:#0b74de;
  color:#fff;
  padding:10px 16px;
  border-radius:10px;
  font-weight:700;
  cursor:pointer;
}

.install-banner__cta:hover{
  filter:brightness(.95);
}

@media (max-width:640px){
  .install-banner{
    flex-direction:column;
    text-align:center;
  }
  .install-banner__image{
    height:83px;
    justify-content:center;
  }
  .install-banner__image img{
    height:83px;
  }
  .install-banner__cta{
    width:100%;
  }
}


/* ===== POJISTKA: modal nesmí blokovat kliky, když není otevřený ===== */
#installModal { pointer-events: none; }
#installModal.is-open { pointer-events: auto; }
#installModal:not(.is-open) { display: none !important; }

/* ===== MODAL ===== */
#installModal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.install-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  cursor: pointer;
}

.install-modal__panel {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 12px;
  width: 90vw;
  max-width: 680px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
  overflow: hidden;
}

.install-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid #eee;
  font-size: 16px;
}

.install-modal__x {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
  color: #555;
}

.install-modal__x:hover { color: #000; }

.install-modal__body {
  flex: 1;
  overflow: hidden;
}

.install-modal__body iframe {
  width: 100%;
  height: 520px;
  border: none;
  display: block;
}

@media (max-width: 640px) {
  .install-modal__body iframe {
    height: 70vh;
  }
}
