.pwa-ios-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.ios-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(6px);
}

.ios-modal-window {
  position: relative;
  background: #fefefe;
  width: 90%;
  max-width: 360px;
  border-radius: 22px;
  padding: 22px;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ios-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
}

.ios-body {
  font-size: 16px;
  text-align: center;
  margin-bottom: 20px;
  color: #444;
}

.ios-share-icon {
  background: #e5e5e5;
  padding: 4px 8px;
  border-radius: 8px;
}

.ios-btn-primary,
.ios-btn-secondary {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border-radius: 14px;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.ios-btn-primary {
  background: #007aff;
  color: #fff;
}

.ios-btn-secondary {
  background: #e9e9e9;
  color: #333;
}