/* ============================================================
 * GeoShred Pro Store — iOS-specific overlays on top of the
 * shared geoshred-studio-store layout.
 *
 * Adds: native <dialog> styling for the App-Store explainer
 * shown when a Buy button is clicked.
 * ============================================================ */

/* ---------- App Store explainer dialog ---------- */
.iap-dialog {
  border: none;
  padding: 0;
  border-radius: 14px;
  max-width: 460px;
  width: calc(100% - 32px);
  background: #11151c;
  color: #e8ecf3;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}
.iap-dialog::backdrop {
  background: rgba(4, 6, 10, 0.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.iap-dialog-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 28px 22px;
  gap: 14px;
}
.iap-dialog-icon {
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}
.iap-dialog-title {
  font-size: 22px;
  line-height: 1.2;
  margin: 4px 0 0;
  font-weight: 700;
}
.iap-dialog-body {
  font-size: 15px;
  line-height: 1.5;
  color: #c7ced9;
  margin: 0;
}
.iap-dialog-body strong {
  color: #fff;
  font-weight: 600;
}
.iap-dialog-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: 8px;
}
.iap-dialog-actions .hp2-btn-primary,
.iap-dialog-actions .hp2-btn-secondary {
  width: 100%;
  text-align: center;
  text-decoration: none;
}
