/* Profil tamamlama uyarısı — profesyonel sheet */
.profile-gate-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}
.profile-gate-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.profile-gate-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}
.profile-gate-modal__sheet {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  background: #fff;
  border-radius: 18px 18px 0 0;
  padding: 1.35rem 1.25rem calc(1.35rem + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -16px 48px rgba(15, 23, 42, 0.2);
  transform: translateY(24px);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.profile-gate-modal__x {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.profile-gate-modal.is-open .profile-gate-modal__sheet {
  transform: translateY(0);
}
.profile-gate-modal__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #ecfdf5;
  color: #15803d;
  margin-bottom: 0.85rem;
}
.profile-gate-modal__title {
  margin: 0 0 0.4rem;
  padding-right: 2.5rem;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: #0f172a;
}
.profile-gate-modal__text {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #475569;
}
.profile-gate-modal__list {
  margin: 0 0 1rem;
  padding: 0.75rem 0.9rem;
  list-style: none;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.profile-gate-modal__list li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  color: #334155;
  padding: 0.28rem 0;
}
.profile-gate-modal__list li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #f59e0b;
  flex-shrink: 0;
}
.profile-gate-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.profile-gate-modal__actions .btn {
  flex: 1 1 auto;
  justify-content: center;
  text-align: center;
}
body.profile-gate-open {
  overflow: hidden;
}

@media (min-width: 721px) {
  .profile-gate-modal {
    align-items: center;
    padding: 1rem;
  }
  .profile-gate-modal__sheet {
    border-radius: 16px;
  }
}

[data-theme="dark"] .profile-gate-modal__sheet {
  background: var(--color-surface) !important;
  color: var(--color-text) !important;
}

[data-theme="dark"] .profile-gate-modal__x {
  background: var(--color-surface-muted) !important;
  color: var(--color-text) !important;
}

[data-theme="dark"] .profile-gate-modal__icon {
  background: rgba(34, 197, 94, 0.15) !important;
  color: #86efac !important;
}

[data-theme="dark"] .profile-gate-modal__title {
  color: var(--color-text) !important;
}

[data-theme="dark"] .profile-gate-modal__text,
[data-theme="dark"] .profile-gate-modal__list li {
  color: var(--color-text-muted) !important;
}

[data-theme="dark"] .profile-gate-modal__list {
  background: var(--color-surface-muted) !important;
  border-color: var(--color-border) !important;
}
