/**
 * Havale/EFT ödeme bilgi modalı — referans: sarı #FFB900, siyah gövde, beyaz metin.
 */
#ntw-havale-overlay.ntw-havale-overlay {
  --ntw-havale-yellow: #ffb900;
  --ntw-havale-bg: #000000;
  --ntw-havale-text: #ffffff;
  --ntw-havale-muted: rgba(255, 255, 255, 0.78);
  --ntw-havale-border: rgba(255, 255, 255, 0.28);
  --ntw-havale-field-bg: #0a0a0a;

  position: fixed;
  inset: 0;
  z-index: 2147483646;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.88);
  -webkit-tap-highlight-color: transparent;
}

#ntw-havale-overlay.ntw-havale-overlay.ntw-havale-overlay--open {
  display: flex;
}

.ntw-havale-dialog {
  width: 100%;
  max-width: 420px;
  max-height: calc(100vh - 32px);
  overflow: auto;
  background: var(--ntw-havale-bg);
  border-radius: 6px;
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.75);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ntw-havale-text);
}

.ntw-havale-head {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 52px;
  padding: 0 48px 0 16px;
  background: var(--ntw-havale-yellow);
  color: #000;
}

.ntw-havale-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ntw-havale-close {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: #000;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  border-radius: 4px;
}

.ntw-havale-close:hover {
  opacity: 0.82;
}

.ntw-havale-body {
  padding: 22px 18px 24px;
}

.ntw-havale-label {
  display: block;
  font-size: 12px;
  color: var(--ntw-havale-muted);
  margin-bottom: 8px;
}

.ntw-havale-amount-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ntw-havale-text);
  border-bottom: 1px solid var(--ntw-havale-border);
  padding-bottom: 10px;
  margin-bottom: 16px;
}

.ntw-havale-amount-value {
  flex: 1;
  min-width: 0;
}

.ntw-havale-try {
  font-weight: 600;
  font-size: 22px;
  margin-left: 12px;
  flex-shrink: 0;
}

.ntw-havale-summary {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ntw-havale-text);
  margin: 0 0 18px;
  text-align: center;
}

.ntw-havale-summary strong {
  font-weight: 700;
  color: var(--ntw-havale-text);
}

.ntw-havale-field {
  margin-bottom: 14px;
}

.ntw-havale-field-label {
  display: block;
  font-size: 12px;
  color: var(--ntw-havale-muted);
  margin-bottom: 6px;
}

.ntw-havale-field-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--ntw-havale-border);
  border-radius: 4px;
  overflow: hidden;
  background: var(--ntw-havale-field-bg);
}

.ntw-havale-field-input {
  flex: 1;
  min-width: 0;
  padding: 11px 12px;
  font-size: 13px;
  font-family: ui-monospace, monospace;
  color: var(--ntw-havale-text);
  border: none;
  background: transparent;
}

.ntw-havale-copy {
  flex-shrink: 0;
  width: 50px;
  border: none;
  background: var(--ntw-havale-yellow);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 0;
}

.ntw-havale-copy-icon {
  display: block;
}

.ntw-havale-copy:hover {
  filter: brightness(1.04);
}

.ntw-havale-copy:active {
  filter: brightness(0.96);
}

.ntw-havale-footnote {
  font-size: 12px;
  line-height: 1.55;
  color: var(--ntw-havale-muted);
  text-align: center;
  margin: 18px 0 20px;
}

.ntw-havale-cta {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: 6px;
  background: var(--ntw-havale-yellow);
  color: #000;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-transform: uppercase;
}

.ntw-havale-cta:hover {
  filter: brightness(1.05);
}

.ntw-havale-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2147483647;
  padding: 10px 18px;
  background: #1a1a1a;
  color: #fff;
  border: 1px solid #333;
  border-radius: 6px;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.ntw-havale-toast.ntw-havale-toast--show {
  opacity: 1;
}
