/* ShopGlowsy — smart store push permission prompt */
.sg-sp-prompt {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  background: rgba(17, 17, 17, 0);
  pointer-events: none;
  transition: background 0.28s ease;
}
.sg-sp-prompt.is-open {
  pointer-events: auto;
  background: rgba(17, 17, 17, 0.35);
}
.sg-sp-prompt__card {
  width: 100%;
  max-width: 400px;
  background: #fff;
  border-radius: 22px;
  padding: 22px 20px 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
  font-family: "Plus Jakarta Sans", "SF Pro Text", -apple-system, BlinkMacSystemFont, sans-serif;
}
.sg-sp-prompt.is-open .sg-sp-prompt__card {
  transform: none;
  opacity: 1;
}
.sg-sp-prompt__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f8e8ee, #f3d4df);
  color: #9b4d66;
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.sg-sp-prompt__card h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #1a1220;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.sg-sp-prompt__list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.sg-sp-prompt__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #3d3344;
}
.sg-sp-prompt__list i,
.sg-sp-prompt__list .sg-sp-check {
  color: #059669;
  font-size: 0.9rem;
  width: 18px;
  text-align: center;
  font-weight: 800;
}
.sg-sp-prompt__note {
  margin: 0 0 12px;
  font-size: 0.8rem;
  line-height: 1.4;
  color: #9a3412;
  background: #fff7ed;
  border-radius: 10px;
  padding: 8px 10px;
}
.sg-sp-prompt__actions {
  display: flex;
  gap: 10px;
}
.sg-sp-prompt__actions button {
  flex: 1;
  border: 0;
  border-radius: 14px;
  padding: 13px 14px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s ease, background 0.15s ease;
}
.sg-sp-prompt__actions button:active {
  transform: scale(0.98);
}
.sg-sp-later {
  background: #f3f0f2;
  color: #5c5360;
}
.sg-sp-allow {
  background: #1a1220;
  color: #fff;
}
@media (min-width: 720px) {
  .sg-sp-prompt {
    align-items: center;
  }
}
