/* Proda Medya – Banka Hesap Bilgileri */

.bank-page {
    margin: 0 0 2.5rem;
}

.bank-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin: 0.5rem 0 1.25rem;
}

.bank-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--proda-muted);
}

.bank-title {
    margin: 0.25rem 0 0.35rem;
    font-weight: 900;
    color: var(--proda-dark);
    letter-spacing: -0.02em;
}

.bank-sub {
    margin: 0;
    color: #4b5563;
    max-width: 720px;
    font-size: 0.98rem;
}

.bank-note {
    flex: 0 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 0.9rem 1rem;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    max-width: 380px;
}

.bank-note i {
    margin-top: 0.15rem;
    color: var(--proda-primary);
    font-size: 1.1rem;
}

.bank-note-sub {
    margin-top: 0.15rem;
    font-size: 0.86rem;
    color: #6b7280;
}

.bank-note-sub span {
    font-weight: 700;
    color: #111827;
}

.bank-card {
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    height: 100%;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.bank-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 52px rgba(15, 23, 42, 0.12);
}

.bank-logo {
    height: 92px;
    background: #f9fafb;
    border-bottom: 1px solid #eef2f7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.bank-logo img {
    max-height: 52px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(0.1);
    opacity: 0.95;
}

.bank-body {
    padding: 1rem 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.bank-name {
    font-size: 1.06rem;
    font-weight: 900;
    color: #111827;
}

.bank-lines {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.bank-line {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.45rem 0.55rem;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.bank-line span {
    font-size: 0.83rem;
    color: #6b7280;
    font-weight: 700;
    white-space: nowrap;
}

.bank-line b {
    font-size: 0.9rem;
    color: #0f172a;
    text-align: right;
    word-break: break-word;
}

.bank-iban b {
    letter-spacing: 0.02em;
}

.bank-footer {
    margin-top: 1.6rem;
    background: #0f172a;
    border-radius: 22px;
    padding: 1.25rem 1.25rem;
    color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.bank-help-title {
    font-weight: 900;
    font-size: 1.05rem;
}

.bank-help-text {
    margin-top: 0.2rem;
    font-size: 0.92rem;
    opacity: 0.9;
}

.bank-wa {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.8rem 1.05rem;
    border-radius: 999px;
    background: #22c55e;
    color: #052e16;
    font-weight: 900;
    border: 0;
    box-shadow: 0 14px 34px rgba(34, 197, 94, 0.25);
    text-decoration: none;
}

.bank-wa i.fa-arrow-right {
    transition: transform 0.18s ease;
}

.bank-wa:hover {
    filter: brightness(1.02);
    color: #052e16;
}

.bank-wa:hover i.fa-arrow-right {
    transform: translateX(3px);
}

@media (max-width: 992px) {
    .bank-note {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .bank-title {
        font-size: 1.45rem;
    }

    .bank-logo {
        height: 86px;
    }

    .bank-body {
        padding: 0.95rem;
    }

    .bank-line {
        flex-direction: column;
        align-items: flex-start;
    }

    .bank-line b {
        text-align: left;
    }
}
/* Copy button */
.bank-line b {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.55rem;
}

.bank-copy-value {
    display: inline-block;
}

.bank-copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #ffffff;
    color: #0f172a;
    font-weight: 800;
    font-size: 0.78rem;
    line-height: 1;
    white-space: nowrap;
}

.bank-copy-btn:hover {
    background: #f1f5f9;
}

.bank-copy-btn.is-copied {
    border-color: rgba(34, 197, 94, 0.35);
    background: rgba(34, 197, 94, 0.12);
    color: #052e16;
}

@media (max-width: 576px) {
    .bank-line b {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}
