/* =========================================================
   MODERN EV AKSESUARLARI - BANKA HESAPLARI
========================================================= */

.bank-page-heading {
    padding: 16px 0 18px;
    background: #ffffff;
    border-bottom: 1px solid #dfd3ca;
}

.bank-page-heading__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #9b8d84;
    font-size: 11px;
    font-weight: 650;
}

.bank-page-heading__breadcrumb a {
    color: #6f5b50;
    text-decoration: none;
}

.bank-page-heading__breadcrumb a:hover {
    color: #925b39;
}

.bank-page-heading__breadcrumb i {
    font-size: 8px;
}

.bank-page-heading__breadcrumb span {
    color: #925b39;
}

.bank-page-heading__content > span {
    display: block;
    margin-bottom: 4px;
    color: #925b39;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.bank-page-heading__content h1 {
    margin: 0;
    color: #2e211b;
    font-family: var(--font-display);
    font-size: clamp(26px, 2.8vw, 38px);
    font-weight: 650;
    line-height: 1.08;
}

.bank-page-heading__content p {
    max-width: 760px;
    margin: 7px 0 0;
    color: #7c6d64;
    font-size: 12px;
    line-height: 1.6;
}

.bank-page {
    padding: 24px 0 64px;
    background: #f7f3ef;
}

.bank-page__notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    padding: 14px 16px;
    background: #fffaf6;
    border: 1px solid #decfc4;
}

.bank-page__notice-icon {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    place-items: center;
    background: #ffffff;
    color: #925b39;
    border: 1px solid #decfc4;
    font-size: 17px;
}

.bank-page__notice strong {
    display: block;
    color: #2e211b;
    font-size: 13px;
    font-weight: 800;
}

.bank-page__notice p {
    margin: 4px 0 0;
    color: #786960;
    font-size: 12px;
    line-height: 1.6;
}

.bank-page__card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dfd3ca;
}

.bank-page__card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px;
    background: #fdfbf9;
    border-bottom: 1px solid #e7ddd5;
}

.bank-page__card-header > div:first-child > span {
    display: block;
    margin-bottom: 5px;
    color: #925b39;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.bank-page__card-header h2 {
    margin: 0;
    color: #2e211b;
    font-family: var(--font-display);
    font-size: 27px;
    font-weight: 650;
}

.bank-page__card-header p {
    margin: 5px 0 0;
    color: #7c6d64;
    font-size: 12px;
    line-height: 1.55;
}

.bank-page__count {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    gap: 7px;
    padding: 0 12px;
    background: #ffffff;
    color: #6c5a50;
    border: 1px solid #dfd3ca;
    font-size: 11px;
    white-space: nowrap;
}

.bank-page__count strong {
    color: #2e211b;
}

.bank-page__list {
    display: grid;
    gap: 12px;
    padding: 16px;
}

.bank-account {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #e4d9d1;
    transition: border-color 180ms ease;
}

.bank-account:hover {
    border-color: #b8947d;
}

.bank-account__icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    background: #f8eee7;
    color: #925b39;
    border: 1px solid #dfd3ca;
    font-size: 23px;
}

.bank-account__content {
    min-width: 0;
}

.bank-account__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 13px;
}

.bank-account__head h3 {
    margin: 0;
    color: #2e211b;
    font-size: 17px;
    font-weight: 800;
}

.bank-account__head span {
    display: block;
    margin-top: 4px;
    color: #7d6e65;
    font-size: 12px;
}

.bank-account__head em {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    gap: 6px;
    padding: 0 9px;
    background: #f3f8f3;
    color: #42714a;
    border: 1px solid #cddbcf;
    font-size: 10px;
    font-style: normal;
    font-weight: 750;
    white-space: nowrap;
}

.bank-account__details {
    overflow: hidden;
    background: #faf7f4;
    border: 1px solid #e7ddd5;
}

.bank-account__details > div {
    display: grid;
    min-height: 48px;
    grid-template-columns: 145px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-bottom: 1px solid #e7ddd5;
}

.bank-account__details > div:last-child {
    border-bottom: 0;
}

.bank-account__details small {
    color: #7d6e65;
    font-size: 10px;
    font-weight: 750;
}

.bank-account__details strong,
.bank-account__details code {
    color: #2e211b;
    font-family: inherit;
    font-size: 12px;
    font-weight: 750;
    word-break: break-word;
}

.bank-account__iban {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
}

.bank-account__copy {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 12px;
    background: #4a352b;
    color: #ffffff;
    border: 0;
    font-size: 10px;
    font-weight: 750;
    cursor: pointer;
}

.bank-account__copy:hover {
    background: #925b39;
}

.bank-account__copy.is-copied {
    background: #42714a;
}

.bank-account__description {
    margin-top: 11px;
    padding: 11px 12px;
    background: #fffaf6;
    color: #6f6057;
    border: 1px solid #e4d6cc;
    font-size: 11px;
    line-height: 1.6;
}

.bank-page__empty {
    display: flex;
    min-height: 320px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 34px;
    text-align: center;
}

.bank-page__empty > span {
    display: grid;
    width: 66px;
    height: 66px;
    place-items: center;
    background: #f8eee7;
    color: #925b39;
    border: 1px solid #dfd3ca;
    font-size: 27px;
}

.bank-page__empty h2 {
    margin: 16px 0 0;
    color: #2e211b;
    font-family: var(--font-display);
    font-size: 25px;
    font-weight: 650;
}

.bank-page__empty p {
    max-width: 500px;
    margin: 8px 0 0;
    color: #7d6e65;
    font-size: 12px;
    line-height: 1.6;
}

.bank-page__empty a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    margin-top: 18px;
    padding: 0 17px;
    background: #4a352b;
    color: #ffffff;
    font-size: 11px;
    font-weight: 750;
    text-decoration: none;
}

.bank-page__steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.bank-page__steps article {
    min-height: 120px;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #dfd3ca;
}

.bank-page__steps article > span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    margin-bottom: 10px;
    background: #f8eee7;
    color: #925b39;
    font-size: 11px;
    font-weight: 850;
}

.bank-page__steps strong {
    display: block;
    color: #2e211b;
    font-size: 12px;
    font-weight: 800;
}

.bank-page__steps p {
    margin: 5px 0 0;
    color: #7d6e65;
    font-size: 11px;
    line-height: 1.55;
}

.bank-page__support {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 14px;
    padding: 16px;
    background: #4a352b;
    color: #ffffff;
}

.bank-page__support strong {
    display: block;
    font-size: 13px;
}

.bank-page__support p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
}

.bank-page__support a {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    background: #925b39;
    color: #ffffff;
    font-size: 11px;
    font-weight: 750;
    text-decoration: none;
    white-space: nowrap;
}

.bank-page *,
.bank-page *::before,
.bank-page *::after,
.bank-page-heading *,
.bank-page-heading *::before,
.bank-page-heading *::after {
    box-shadow: none !important;
}

@media (max-width: 900px) {
    .bank-page__steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .bank-page-heading {
        padding: 13px 0 15px;
    }

    .bank-page-heading__content h1 {
        font-size: 29px;
    }

    .bank-page {
        padding: 18px 0 48px;
    }

    .bank-page__card-header,
    .bank-account__head,
    .bank-page__support {
        align-items: flex-start;
        flex-direction: column;
    }

    .bank-account {
        grid-template-columns: 1fr;
    }

    .bank-account__details > div {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .bank-account__iban {
        grid-template-columns: 1fr;
    }

    .bank-account__copy,
    .bank-page__support a {
        width: 100%;
    }

    .bank-page__support a {
        justify-content: center;
    }
}
