/* AZO Partners PWA install + Apple guide */
html.azo-pwa-lock,
html.azo-pwa-lock body {
  overflow: hidden !important;
}

.azo-pwa-apple {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: end center;
}
.azo-pwa-apple[hidden] {
  display: none !important;
}
.azo-pwa-apple__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.azo-pwa-apple__sheet {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(92dvh, 920px);
  overflow: auto;
  background: #f5f5f7;
  color: #1d1d1f;
  border-radius: 28px 28px 0 0;
  padding: 28px 22px 28px;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.35);
  font-family: "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.azo-pwa-apple__x {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  color: #1d1d1f;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.azo-pwa-apple__title {
  margin: 0 28px 8px 0;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.azo-pwa-apple__lead {
  margin: 0 0 16px;
  color: #6e6e73;
  font-size: 1rem;
  line-height: 1.45;
  max-width: 46ch;
}
.azo-pwa-apple__steps {
  margin: 0 0 18px;
  padding-left: 1.2em;
  display: grid;
  gap: 8px;
  color: #1d1d1f;
  font-size: 0.98rem;
  line-height: 1.4;
}
.azo-pwa-apple__shots {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}
.azo-pwa-apple__shots figure {
  margin: 0;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.azo-pwa-apple__shots img {
  display: block;
  width: 100%;
  height: auto;
}
.azo-pwa-apple__shots figcaption {
  text-align: center;
  padding: 8px 6px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #6e6e73;
}
.azo-pwa-apple__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.azo-pwa-apple__btn {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 980px;
  border: 0;
  font: inherit;
  font-weight: 650;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.azo-pwa-apple__btn--primary {
  background: #0071e3;
  color: #fff;
}
.azo-pwa-apple__btn--ghost {
  background: rgba(0, 0, 0, 0.06);
  color: #1d1d1f;
}

@media (max-width: 800px) {
  .azo-pwa-apple__shots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .azo-pwa-apple__sheet {
    border-radius: 22px 22px 0 0;
    padding: 22px 16px 22px;
  }
}
