/* ============================================================
   FLORAPANEL - BANKA HESAPLARI SAYFASI
   ============================================================ */

/* --- 1. HEADER ALANI --- */
.bank-header-section {
    background: linear-gradient(to bottom, #F0FDF4, #fff); /* Hafif yeşil gradyan */
    padding: 40px 0 30px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f3f4f6;
}

.page-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.page-desc {
    color: #6B7280;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.divider-center {
    width: 60px; height: 4px;
    background-color: var(--accent); /* Turuncu çizgi */
    border-radius: 2px;
    margin: 15px auto 0;
}

/* --- 2. BANKA KARTI (MODERN) --- */
.modern-bank-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.modern-bank-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--primary);
}

/* Üst Çizgi Efekti */
.card-accent-line {
    height: 6px;
    width: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Logo Alanı */
.bank-logo-wrapper {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.bank-img {
    max-height: 55px;
    max-width: 100%;
    object-fit: contain;
}

.bank-icon {
    width: 60px; height: 60px;
    background: #f9fafb;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
}

.bank-title {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.divider-dashed {
    border-bottom: 2px dashed #eee;
    margin: 20px 0;
}

/* Bilgi Grupları */
.info-group {
    text-align: center;
    margin-bottom: 20px;
}

.info-group label {
    font-size: 0.7rem;
    color: #9CA3AF;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.info-val {
    font-size: 1rem;
    line-height: 1.4;
}

/* IBAN Kutusu */
.iban-container {
    background: #F3F4F6;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    transition: 0.3s;
}

.modern-bank-card:hover .iban-container {
    background: #ECFDF5;
    border-color: #A7F3D0;
}

.iban-container label {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

.iban-text {
    font-family: 'Courier New', Courier, monospace; /* Kod fontu */
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    word-break: break-all;
    letter-spacing: 1px;
}

/* Kopyala Butonu */
.btn-copy-iban {
    margin-top: auto; /* En alta it */
    width: 100%;
    padding: 12px;
    border-radius: 50px;
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}

.btn-copy-iban:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.2);
}

/* Kopyalandı Durumu (JS ile eklenir) */
.btn-copy-iban.copied {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    animation: pulse 0.3s ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* --- 3. BİLGİLENDİRME KUTUSU --- */
.payment-note-box {
    background: #FFFBEB; /* Sarımsı uyarı tonu */
    border: 1px solid #FCD34D;
    border-radius: 12px;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.note-icon {
    width: 40px; height: 40px;
    background: #F59E0B;
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

/* --- 4. BOŞ DURUM --- */
.empty-state-icon {
    font-size: 3rem;
    color: #E5E7EB;
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .iban-text { font-size: 1rem; }
    .page-title { font-size: 1.8rem; }
}