/* ===========================
   BANKA HESAPLARI SAYFASI
=========================== */

.banka-main {
  background: #f4f6f8;
  min-height: 60vh;
  padding: 40px 0 60px;
}

.banka-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.banka-baslik {
  text-align: center;
  margin-bottom: 36px;
}
.banka-baslik h1 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 8px;
}
.banka-baslik p {
  font-size: 0.88rem;
  color: #888;
}

/* Banka kartı */
.banka-kart {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.08);
  overflow: hidden;
  margin-bottom: 20px;
}

.banka-kart-baslik {
  font-size: 0.85rem;
  font-weight: 700;
  color: #555;
  padding: 12px 24px;
  border-bottom: 1px solid #f0f0f0;
  background: #fafafa;
  text-align: center;
  letter-spacing: 0.3px;
}

.banka-satir {
  display: grid;
  grid-template-columns: 180px 1fr 1fr auto;
  align-items: center;
  padding: 20px 24px;
  gap: 16px;
}

/* Gerçek SVG logo alanı */
.banka-logo-alani {
  display: flex;
  align-items: center;
}

.banka-logo-alani svg {
  width: 120px;
  height: 44px;
}

.banka-bilgi-grup {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.banka-bilgi-label {
  font-size: 0.7rem;
  color: #aaa;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.banka-bilgi-deger {
  font-size: 0.86rem;
  font-weight: 700;
  color: #1a1a2e;
}

.iban-deger {
  font-family: 'Courier New', monospace;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: 1px;
}

/* Kopyala butonu */
.btn-kopyala {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1a1a2e;
  color: #fff;
  border: none;
  padding: 9px 16px;
  border-radius: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-kopyala:hover { background: #1a6fa8; }
.btn-kopyala.kopyalandi { background: #27ae60; }

@media (max-width: 700px) {
  .banka-satir {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .iban-deger { font-size: 0.78rem; letter-spacing: 0.5px; }
}
