@import url('https://fonts.googleapis.com/css2?family=Arimo:wght@400;500;600;700&family=Playfair+Display:wght@700;900&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  --so-bg: #F0EAE0;
  --so-dark: #2C2318;
  --so-green: #7A8C6E;
  --so-green-dk: #5C6E52;
  --so-orange: #C25E43;
  --so-orange-dk: #a34d35;
  --so-cream: #FAF6EF;
  --so-border: rgba(44,35,24,0.18);
  --so-success: #3B6D11;
}

.steun-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28,20,10,0.72);
  z-index: 999999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: soFadeIn .2s ease;
}
.steun-overlay.active { display: flex; }

@keyframes soFadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes soSlideUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }

.steun-modal {
  background: var(--so-bg);
  border-radius: 24px;
  padding: 2.5rem 2.25rem 2.25rem;
  max-width: 460px;
  width: 100%;
  position: relative;
  animation: soSlideUp .28s cubic-bezier(.22,.61,.36,1);
  font-family: 'DM Sans', sans-serif;
}

.steun-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--so-dark);
  opacity: .4;
  font-size: 20px;
  line-height: 1;
  transition: opacity .15s;
}
.steun-close:hover { opacity: .85; }

.steun-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--so-dark);
  text-align: center;
  line-height: 1.3;
  margin: 0 0 .75rem;
}

.steun-bestemming {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 13px;
  color: var(--so-green-dk);
  font-weight: 500;
  text-align: center;
  margin-bottom: 1.25rem;
}
.steun-bestemming-dot {
  width: 8px; height: 8px;
  background: var(--so-green);
  border-radius: 50%;
  flex-shrink: 0;
}

.steun-amount-wrap {
  background: var(--so-green);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: .85rem 1.5rem;
  margin-bottom: 1.75rem;
  transition: background .2s;
}
.steun-amount-wrap:focus-within { background: var(--so-green-dk); }

.steun-symbol {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #F0EAE0;
}
.steun-amount-input {
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #F0EAE0;
  width: 150px;
  text-align: center;
}
.steun-amount-input::placeholder { color: rgba(240,234,224,.5); }
.steun-amount-input::-webkit-inner-spin-button,
.steun-amount-input::-webkit-outer-spin-button { -webkit-appearance: none; }

.steun-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--so-dark);
  text-align: center;
  margin-bottom: .75rem;
}

.steun-methods {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.steun-pm {
  border: 2px solid var(--so-border);
  border-radius: 14px;
  background: var(--so-cream);
  padding: 10px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  height: 56px;
  transition: border-color .18s, transform .12s;
}
.steun-pm:hover { border-color: var(--so-green); transform: translateY(-1px); }
.steun-pm.selected { border-color: var(--so-orange); background: #fff; }
.steun-pm-dark { background: #000 !important; }
.steun-pm-dark.selected { border-color: var(--so-orange); }

.steun-error {
  display: none;
  font-size: 13px;
  color: #A32D2D;
  text-align: center;
  margin: -.75rem 0 .85rem;
}

.steun-confirm-btn {
  background: var(--so-orange);
  color: #fff;
  border: none;
  border-radius: 16px;
  width: 100%;
  padding: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: background .18s, transform .12s;
}
.steun-confirm-btn:hover { background: var(--so-orange-dk); }
.steun-confirm-btn:active { transform: scale(.98); }
.steun-confirm-btn:disabled { background: #b4a99e; cursor: not-allowed; }

.steun-success { display: none; text-align: center; padding: .5rem 0 .25rem; }
.steun-success-icon {
  width: 56px; height: 56px;
  background: var(--so-success);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  color: #fff;
  font-size: 26px;
}
.steun-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--so-dark);
  margin-bottom: .5rem;
}
.steun-success p {
  font-size: 14px;
  color: #5F5E5A;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.steun-close-success {
  background: var(--so-green);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: .75rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .18s;
}
.steun-close-success:hover { background: var(--so-green-dk); }

.steun-overlay-trigger {
  background: var(--so-orange);
  color: #F7F2E8;
  border: none;
  border-radius: 50px;
  padding: .9rem 2.25rem;
  font-family: 'Arimo', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, transform .15s;
  letter-spacing: 0.01em;
}
.steun-overlay-trigger:hover { background: var(--so-orange-dk); transform: scale(1.03); }
.steun-overlay-trigger:active { transform: scale(.97); }

@media (max-width: 480px) {
  .steun-modal { padding: 2rem 1.5rem 1.75rem; border-radius: 18px; }
  .steun-title { font-size: 22px; }
  .steun-pm { min-width: 85px; height: 50px; }
}
