/* ============================================================
   bagis-kategori.css — Bağış kategorisi detay sayfası
   ============================================================ */

.bk-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2.5rem;
  align-items: start;
}

.bk-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.bk-content {
  padding: 2rem;
  background: var(--color-white);
  border: 1.5px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.bk-icon-big {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 197, 24, 0.1);
  color: #b08000;
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.bk-content h2 {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-neutral-900);
  margin-bottom: 0.6rem;
}

.bk-content p {
  color: var(--color-neutral-700);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ── Diğer kategoriler ───────────────────────────────────── */
.bk-others h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-neutral-900);
  margin-bottom: 0.75rem;
}

.bk-others__grid {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.bk-others__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--color-white);
  border: 1.5px solid var(--color-border-soft);
  color: var(--color-neutral-900);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.bk-others__item i { color: #b08000; }

.bk-others__item.askida-item {
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.04) 0%, rgba(245, 197, 24, 0.01) 100%);
  border-color: color-mix(in srgb, var(--askida-color, var(--color-gold)) 30%, var(--color-border-soft));
}

.bk-others__item.askida-item i {
  color: var(--askida-color, var(--color-gold));
}

.bk-others__item:hover {
  border-color: var(--color-gold);
  box-shadow: 0 4px 12px rgba(245, 197, 24, 0.15);
  transform: translateY(-2px);
}

.bk-others__item.askida-item:hover {
  border-color: var(--askida-color, var(--color-gold));
  background: color-mix(in srgb, var(--askida-color, var(--color-gold)) 8%, var(--color-white));
  box-shadow: 0 4px 12px color-mix(in srgb, var(--askida-color, var(--color-gold)) 18%, transparent);
}

/* ── Sidebar — Bağış Kutusu ──────────────────────────────── */
.bk-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.bk-donate-box {
  padding: 2rem;
  background: var(--color-white);
  border: 1.5px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.bk-donate-box__title {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-neutral-900);
  margin-bottom: 0.2rem;
}

.bk-donate-box__subtitle {
  font-size: 0.88rem;
  color: var(--color-neutral-500);
  margin-bottom: 1.25rem;
}

/* ── Tutar Butonları ─────────────────────────────────────── */
.bk-amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.bk-amount-btn {
  padding: 0.7rem 0.5rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border-soft);
  background: var(--color-bg-alt);
  color: var(--color-neutral-900);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: center;
}

.bk-amount-btn:hover {
  border-color: var(--color-gold);
  background: rgba(245, 197, 24, 0.06);
}

.bk-amount-btn.active {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(10, 15, 46, 0.2);
}

.bk-custom-amount {
  margin-bottom: 1rem;
}

.bk-selected-info {
  margin-bottom: 1rem;
  padding: 0.6rem 1rem;
  background: rgba(245, 197, 24, 0.08);
  border: 1px solid rgba(245, 197, 24, 0.3);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--color-neutral-900);
  text-align: center;
}

.bk-donate-btn {
  font-size: 1rem;
  padding: 0.85rem 1.5rem;
  font-weight: 700;
}

/* ── Divider ─────────────────────────────────────────────── */
.bk-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.5rem 0;
  color: var(--color-neutral-400);
  font-size: 0.82rem;
}

.bk-divider::before,
.bk-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border-soft);
}

/* ── Banka Bilgileri ─────────────────────────────────────── */
.bk-bank-title {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-neutral-900);
  margin-bottom: 0.3rem;
}

.bk-bank-note {
  font-size: 0.82rem;
  color: var(--color-neutral-500);
  margin-bottom: 1rem;
}

.bk-banks {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.bk-bank-item {
  padding: 0.75rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-soft);
}

.bk-bank-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--color-neutral-900);
}

.bk-bank-iban {
  font-family: monospace;
  font-size: 0.78rem;
  color: var(--color-neutral-700);
  margin-top: 0.25rem;
  word-break: break-all;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .bk-grid {
    grid-template-columns: 1fr;
  }
  .bk-sidebar {
    position: static;
  }
}

/* ── Demo Ödeme Formu ────────────────────────────────────── */
.bk-payment-form {
  margin-top: 1rem;
  padding: 1.25rem;
  background: #f8fafb;
  border: 1.5px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  animation: bkSlideDown 0.3s ease;
}

@keyframes bkSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.bk-payment-form__header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #10B981;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--color-border-soft);
}

.bk-payment-form .form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-neutral-700);
}

.bk-payment-form .form-control {
  font-size: 0.9rem;
}

.bk-payment-amount {
  text-align: center;
  padding: 0.75rem;
  margin-bottom: 1rem;
  background: rgba(245, 197, 24, 0.08);
  border: 1px solid rgba(245, 197, 24, 0.3);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--color-neutral-900);
}

.bk-pay-btn {
  font-size: 1rem;
  padding: 0.8rem;
  font-weight: 700;
}

.bk-payment-disclaimer {
  text-align: center;
  font-size: 0.72rem;
  color: var(--color-neutral-400);
  margin: 0.75rem 0 0;
  font-style: italic;
}
