
.zuvo-install-panel {
  position: fixed;
  z-index: 10000;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  left: 1rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 0.9rem;
  color: #1c1834;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(80, 61, 201, 0.18);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(35, 25, 92, 0.22);
  font-family: inherit;
}

.zuvo-install-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #6d5ef6, #3420a8);
  border-radius: 13px;
  font-size: 1.45rem;
  font-weight: 800;
}

.zuvo-install-copy {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.zuvo-install-title {
  font-size: 0.98rem;
}

.zuvo-install-message {
  color: #5f5973;
  font-size: 0.82rem;
  line-height: 1.35;
}

.zuvo-install-actions {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.zuvo-install-button,
.zuvo-install-close {
  min-height: 38px;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.zuvo-install-button {
  color: #fff;
  background: #503dc9;
  border: 1px solid #503dc9;
}

.zuvo-install-close {
  color: #503dc9;
  background: transparent;
  border: 1px solid rgba(80, 61, 201, 0.3);
}

@media (max-width: 620px) {
  .zuvo-install-panel {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .zuvo-install-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }
}

@media (prefers-reduced-motion: reduce) {
  .zuvo-install-panel {
    scroll-behavior: auto;
  }
}
