    /* ------------------------------------- */
    /* GENEL DEĞİŞKENLER (Açık Tema) */
    /* ------------------------------------- */

:root {
    /* Renk Paleti (Açık Tema / Light Mode) */
    --cop-bg-dark: #f9f9f9;
    --cop-text-light: #212529;
    --cop-card-bg: #ffffff;
    --cop-border-color: #dee2e6;
    --cop-primary: #007bff;
    --cop-primary-light: #e6f2ff;
    --cop-success: #28a745;
    --cop-danger: #dc3545;
    --cop-card-header-bg: #f8f9fa;
    --cop-shadow: rgba(0, 0, 0, 0.08);
}

/* Tüm elemanlarda tema rengi geçişini zorla */
.checkout-onepage-wrapper {
    background-color: var(--cop-bg-dark);
    color: var(--cop-text-light);
    min-height: 100vh;
    padding: 20px 0;
}

/* ------------------------------------- */
/* ANASAYFA YAPISI (Responsive Grid - Değişmedi) */
/* ------------------------------------- */

.checkout-onepage-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.checkout-onepage-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ... Responsive media query'leri önceki ile aynı kalmıştır ... */
@media (min-width: 992px) {
    .checkout-onepage-layout {
        flex-direction: row;
    }

    .checkout-onepage-steps {
        flex: 2;
        order: 1;
    }

    .checkout-onepage-summary {
        flex: 1;
        order: 2;
        max-width: 350px;
    }
}


/* ------------------------------------- */
/* BAŞLIK VE AYIRICILAR */
/* ------------------------------------- */

.checkout-onepage-header h1 {
    font-size: 28px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--cop-border-color);
    color: var(--cop-text-light);
}

.checkout-onepage-divider {
    border-top: 1px solid var(--cop-border-color);
    margin: 20px 0;
}

/* ------------------------------------- */
/* ADIM KARTI (PANEL) STİLİ */
/* ------------------------------------- */

.checkout-onepage-card {
    background-color: var(--cop-card-bg);
    border: 1px solid var(--cop-border-color);
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px var(--cop-shadow); /* Hafif gölge */
    overflow: hidden;
}

.checkout-onepage-card-header {
    padding: 15px 20px;
    background-color: var(--cop-card-header-bg);
    border-bottom: 1px solid var(--cop-border-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.checkout-onepage-card-header:hover {
    background-color: #f1f1f1;
}

.checkout-onepage-card-title {
    font-size: 1.3rem;
    font-weight: 600;
}

.checkout-onepage-card-body {
    padding: 20px;
    overflow: hidden;
}

/* Tamamlanmış Adım Vurgusu */
.checkout-onepage-card.is-completed {
    border-color: var(--cop-success);
}

.checkout-onepage-card.is-completed .checkout-onepage-card-header {
    background-color: #e9f7eb; /* Çok açık yeşil ton */
}

/* ------------------------------------- */
/* FORM ELEMANLARI */
/* ------------------------------------- */

.checkout-onepage-form-group {
    margin-bottom: 20px;
}

.checkout-onepage-label {
    display: block;
    margin-bottom: 5px;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--cop-text-light);
}

.checkout-onepage-input,
.checkout-onepage-select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--cop-border-color);
    border-radius: 4px;
    background-color: var(--cop-card-bg); /* Beyaz arka plan */
    color: var(--cop-text-light);
    font-size: 1.2rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.checkout-onepage-input:focus,
.checkout-onepage-select:focus {
    border-color: var(--cop-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25); /* Mavi halka */
}

/* Row ve Col sınıfları öncekiyle aynıdır */
.checkout-onepage-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.checkout-onepage-col-6 {
    padding: 0 10px;
    width: 100%;
}
    .checkout-onepage-col-12 {
        padding: 0 10px;
        width: 100%;
    }


@media (min-width: 600px) {
    .checkout-onepage-col-6 {
        width: 50%;
    }
    .checkout-onepage-col-12 {
        width: 100%;
    }
}

.checkout-onepage-help-block {
    font-size: 1.2rem;
    color: #6c757d; /* Koyu gri yardım metni */
    margin-top: 4px;
}

/* Hata Vurgusu */
.is-error .checkout-onepage-input,
.is-error .checkout-onepage-select {
    border-color: var(--cop-danger);
}

.is-error .checkout-onepage-help-block {
    color: var(--cop-danger);
}

/* Checkbox/Radio Stilini Sadeleştirme */
.checkout-onepage-radio-group {
    padding: 10px 0;
}

.checkout-onepage-radio-item {
    padding: 15px;
    border: 1px solid var(--cop-border-color);
    border-radius: 6px;
    margin-bottom: 10px;
    background-color: var(--cop-card-bg);
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
}

.checkout-onepage-radio-item label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    margin: 0;
    font-weight: 400;
}

.checkout-onepage-radio-item input[type="radio"] {
    margin-right: 15px;
    min-width: 16px;
    min-height: 16px;
    accent-color: var(--cop-primary);
}

.checkout-onepage-radio-item.is-selected {
    border-color: var(--cop-primary);
    background-color: var(--cop-primary-light); /* Açık mavi arka plan */
}

.checkout-onepage-radio-item small {
    display: block;
    color: #6c757d;
    margin-left: 31px;
    margin-top: 5px;
}

.checkout-onepage-payment-image {
    max-width: 60px;
    height: auto;
    margin-right: 15px;
    margin-top: -3px;
}

/* ------------------------------------- */
/* BUTONLAR */
/* ------------------------------------- */

.checkout-onepage-btn-container {
    padding-top: 20px;
    text-align: right;
}

.checkout-onepage-btn {
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, opacity 0.3s;
    border: none;
}

.checkout-onepage-btn-primary {
    background-color: var(--cop-primary);
    color: white; /* Beyaz metin */
}

.checkout-onepage-btn-primary:hover {
    background-color: #0056b3;
}

.checkout-onepage-btn-success {
    background-color: var(--cop-success);
    color: white;
    font-size: 1.3rem;
    padding: 12px 25px;
}

.checkout-onepage-btn-success:hover {
    background-color: #1e7e34;
}

.checkout-onepage-btn:disabled,
.checkout-onepage-btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #ced4da; /* Açık gri */
    color: #6c757d;
}

/* ------------------------------------- */
/* SEPET ÖZETİ STİLİ */
/* ------------------------------------- */

.checkout-onepage-summary-card {
    background-color: var(--cop-card-bg);
    border: 1px solid var(--cop-border-color);
    border-radius: 8px;
    box-shadow: 0 4px 10px var(--cop-shadow);
}

.checkout-onepage-summary-header {
    padding: 15px 20px;
    background-color: var(--cop-card-header-bg);
    border-bottom: 1px solid var(--cop-border-color);
    font-size: 1.3rem;
    font-weight: 600;
}

.checkout-onepage-summary-body {
    padding: 20px;
}

.checkout-onepage-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.checkout-onepage-list-item {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0; /* Çok hafif çizgi */
    display: flex;
    justify-content: space-between;
}

.checkout-onepage-list-item:last-child {
    border-bottom: none;
}

.checkout-onepage-totals-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.checkout-onepage-totals-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.checkout-onepage-totals-item-grand {
    font-size: 1.4em;
    font-weight: 700;
    padding-top: 15px;
    margin-top: 10px;
    border-top: 1px solid var(--cop-border-color);
    color: var(--cop-primary);
}

.checkout-onepage-list-price {
    font-weight: 600;
}

.checkout-onepage-discount {
    color: var(--cop-danger);
}

/* ------------------------------------- */
/* YARDIMCI SINIFLAR */
/* ------------------------------------- */

.checkout-onepage-alert {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--cop-text-light); /* Metin rengi genelden alınır */
}

.checkout-onepage-alert-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}
.checkout-onepage-alert-success {
    /* Tema değişkenlerini kullanarak minimalist arka plan */
    background-color: var(--cops-secondary, #f8f9fa); /* Açık Gri Arka Plan */
    color: var(--cops-primary, #000);             /* Siyah Metin */

    /* Başarıyı temsil eden yeşil vurgu */
    border: 1px solid var(--cops-success, #28a745); /* Yeşil Kenarlık */
    font-weight: 500;
}

/* İkonlar varsa, başarı ikonunu yeşil yapmak için */
.checkout-onepage-alert-success .bi-check-circle-fill {
    color: var(--cops-success, #28a745);
}



.checkout-onepage-alert-warning {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
}

.checkout-onepage-alert-info {
    background-color: #d1ecf1;
    border: 1px solid #bee5eb;
    color: #0c5460;
}

.checkout-onepage-text-danger {
    color: var(--cop-danger);
}

.checkout-onepage-text-muted {
    color: #6c757d;
}

.checkout-onepage-text-right {
    text-align: right;
}

/* Yükleniyor Göstergesi */
.checkout-onepage-loading {
    text-align: center;
    padding: 30px;
}

.checkout-onepage-spinner {
    font-size: 2em;
    display: inline-block;
    animation: spin 1s linear infinite;
    color: var(--cop-primary); /* Spinner rengi de aksan rengi oldu */
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* Ana Kapsayıcı ve Navigasyon */
.checkout-top-container {
    max-width: 1120px; /* max-w-7xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem; /* px-4 */
    padding-right: 1rem;
    padding-top: 2rem; /* py-8 */
    padding-bottom: 2rem;
}

.checkout-top-nav {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* İlerleme Çubuğu Listesi */
.checkout-top-progress-bar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: center;
    font-size: 1.1rem; /* text-sm */
    line-height: 1.25rem;
    font-weight: 500; /* font-medium */
    color: #6b7280; /* text-gray-500 */
}

/* Küçük ekranlardan itibaren font büyütme */
@media (min-width: 640px) {
    .checkout-top-progress-bar {
        font-size: 1.2rem; /* sm:text-base */
        line-height: 1.5rem;
    }
}

/* Tamamlanma Çizgisi */
.checkout-top-completion-line {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 4px; /* h-1 (Tailwind h-1 = 0.25rem = 4px) */
    background-color: #2563eb; /* bg-blue-600 */
    transition-property: all; /* transition-all */
    transition-duration: 500ms; /* duration-500 */
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); /* ease-in-out */
    /* width değeri HTML içinde inline olarak dinamik ayarlanmalıdır: style="width: 66.3%;" */
    /* Örn: style="width: 66.3%;" */
}

/* Her Bir Aşama Elemanı (li) */
.checkout-top-step-item {
    position: relative;
    z-index: 10; /* z-10 */
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 0%; /* flex-1 */
}

/* İlk adım (Anasayfa) sağdan boşluk */
.checkout-top-step-item:nth-child(1) {
    padding-right: 2rem; /* pr-8 */
}
@media (min-width: 640px) {
    .checkout-top-step-item:nth-child(1) {
        padding-right: 5rem; /* sm:pr-20 */
    }
}

/* İkinci ve üçüncü adımlar (Sepet, Ödeme) sağdan ve soldan boşluk */
.checkout-top-step-item:nth-child(2),
.checkout-top-step-item:nth-child(3) {
    padding-left: 2rem; /* px-8 */
    padding-right: 2rem;
}
@media (min-width: 640px) {
    .checkout-top-step-item:nth-child(2),
    .checkout-top-step-item:nth-child(3) {
        padding-left: 5rem; /* sm:px-20 */
        padding-right: 5rem;
    }
}

/* Bağlantı Stili (a) */
.checkout-top-step-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* transition-colors duration-200, group ile hover etkileşimi için */
}

/* Adım Numarası/Durum Yuvarlağı (span) */
.checkout-top-step-dot {
    width: 2rem; /* w-8 */
    height: 2rem; /* h-8 */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px; /* rounded-full */
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; /* transition-colors */
    transition-duration: 200ms; /* duration-200 */
}

/* Tamamlanmış (Completed) Adım */
.checkout-top-dot-completed {
    background-color: #2563eb; /* bg-blue-600 */
    color: white; /* text-white */
}

/* Aktif (Active) Adım */
.checkout-top-dot-active {
    background-color: #2563eb; /* bg-blue-600 */
    color: white; /* text-white */
    box-shadow: 0 0 0 4px #bfdbfe; /* ring-4 ring-blue-100 (4px ring) */
}

/* Pasif (Inactive) Adım */
.checkout-top-dot-inactive {
    background-color: #e5e7eb; /* bg-gray-200 */
    color: #6b7280; /* text-gray-500 */
}

/* Aktif Dot içindeki küçük beyaz nokta */
.checkout-top-dot-active > span {
    width: 0.5rem; /* w-2 */
    height: 0.5rem; /* h-2 */
    border-radius: 9999px; /* rounded-full */
    background-color: white; /* bg-white */
}

/* Pasif Dot içindeki küçük gri nokta */
.checkout-top-dot-inactive > span {
    width: 0.5rem; /* w-2 */
    height: 0.5rem; /* h-2 */
    border-radius: 9999px; /* rounded-full */
    background-color: #6b7280; /* bg-gray-500 */
}

/* Adım Etiketi Metni (span) */
.checkout-top-step-label {
    margin-top: 0.5rem; /* mt-2 */
    font-size: 1.2rem; /* text-xs */
    white-space: nowrap; /* whitespace-nowrap */
}

/* Tamamlanmış/Aktif Adım Etiketi */
.checkout-top-label-active-completed {
    font-weight: 600; /* font-semibold */
    color: #2563eb; /* text-blue-600 */
}

/* Pasif Adım Etiketi */
.checkout-top-label-inactive {
    font-weight: 500; /* font-medium */
    color: #6b7280; /* text-gray-500 */
}

/* Küçük ekranlardan itibaren etiket font büyütme */
@media (min-width: 640px) {
    .checkout-top-step-label {
        font-size: 1.2rem; /* sm:text-sm */
        line-height: 1.25rem;
    }
}





    /*ÖDEME SAYFASI ÜRÜN LİSTESİ STİLLERİ*/

    /* --- LİSTE KAPLAYICISI --- */
    .checkout-onepage-itemlist-container {
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
    }

    /* --- LİSTE ELEMANI (SATIR) --- */
    .checkout-onepage-itemlist-item {
        display: flex;
        flex-wrap: wrap; /* Sığmazsa aşağı at */
        justify-content: space-between;
        align-items: flex-start;
        padding: 1.5rem 0; /* Boşlukları artırdım */
        border-bottom: 0.0625rem solid #e5e7eb;
        gap: 1.5rem;
    }

    /* --- SOL TARA (GÖRSEL + DETAY) --- */
    .checkout-onepage-itemlist-main-wrapper {
        display: flex;
        flex: 1;
        gap: 1.25rem;
        min-width: 18rem; /* Mobilde çok daralmasın */
    }

    /* Görsel Kutusu */
    .checkout-onepage-itemlist-image-box {
        width: 6rem; /* 96px - Görseli büyüttüm */
        height: 6rem;
        flex-shrink: 0;
        border-radius: 0.5rem;
        overflow: hidden;
        border: 0.0625rem solid #f3f4f6;
        background-color: #fff;
    }

    .checkout-onepage-itemlist-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Detay İçerik */
    .checkout-onepage-itemlist-details {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
        width: 100%;
    }

    /* Ürün Adı (Büyük ve Okunaklı) */
    .checkout-onepage-itemlist-name {
        font-size: 1.4rem; /* 18px */
        font-weight: 700;
        color: #111827;
        line-height: 1.4;
    }

    /* Varyant Bilgisi */
    .checkout-onepage-itemlist-variant {
        font-size: 1.3rem; /* En az 1rem istendi */
        color: #4b5563;
    }

    /* Adet Bilgisi */
    .checkout-onepage-itemlist-qty {
        font-size: 1.3rem;
        color: #6b7280;
        margin-top: 0.25rem;
    }

    /* --- ÖZELLİK KUTULARI (Specs) --- */
    .checkout-onepage-itemlist-specs-wrapper {
        margin-top: 0.75rem;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .checkout-onepage-itemlist-spec-row {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        background-color: #f9fafb;
        padding: 0.75rem;
        border-radius: 0.375rem;
        border: 0.0625rem solid #e5e7eb;
    }

    /* İkonlar */
    .checkout-onepage-itemlist-icon svg {
        width: 1.25rem; /* İkonlar da büyüdü */
        height: 1.25rem;
        color: #9ca3af;
        margin-top: 0.125rem;
    }

    /* Metinler */
    .checkout-onepage-itemlist-spec-text {
        display: flex;
        flex-direction: column;
        font-size: 1.2rem; /* Minimum 1rem */
        line-height: 1.5;
        color: #374151;
    }

    .checkout-onepage-itemlist-label {
        font-weight: 600;
        color: #1f2937;
        margin-right: 0.25rem;
    }

    /* Renkler ve Yardımcı Sınıflar */
    .checkout-onepage-itemlist-color-orange { color: #ea580c; font-weight: 600; }
    .checkout-onepage-itemlist-text-muted { color: #9ca3af; font-size: 1.2rem; }

    /* Not Alanı */
    .checkout-onepage-itemlist-note {
        margin-top: 0.375rem;
        font-style: italic;
        background: rgba(255, 255, 255, 0.7);
        padding: 0.25rem 0.5rem;
        border-radius: 0.25rem;
        color: #4b5563;
        font-size: 1.3rem;
    }

    /* Dosya Önizleme */
    .checkout-onepage-itemlist-preview {
        margin-top: 0.375rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        background: #fff;
        border: 0.0625rem solid #e5e7eb;
        padding: 0.25rem;
        border-radius: 0.25rem;
        width: max-content;
    }

    .checkout-onepage-itemlist-thumb {
        width: 3.5rem;
        height: 3.5rem;
        object-fit: cover;
        border-radius: 0.25rem;
    }

    /* --- SAĞ TARAF: FİYAT ALANI --- */
    .checkout-onepage-itemlist-price-wrapper {
        display: flex;
        gap: 4px;
        flex-direction: column;
        align-items: flex-end;
        text-align: center;
        min-width: 100%;
    }

    /* Normal Fiyat (Büyük) */
    .checkout-onepage-itemlist-main-price {
        font-size: 1.3rem; /* 20px */
        font-weight: 800;
        color: #111827;
    }

    /* Detaylı Fiyat Kutusu */
    .checkout-onepage-itemlist-breakdown-box {
        background-color: #f8fafc;
        border: 0.0625rem solid #cbd5e1;
        border-radius: 0.5rem;
        padding: 1rem;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .checkout-onepage-itemlist-breakdown-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 1.2rem; /* Min 1rem */
    }

    .checkout-onepage-itemlist-row-base { color: #64748b; }
    .checkout-onepage-itemlist-row-extra { color: #ea580c; font-weight: 700; }

    .checkout-onepage-itemlist-flex-center {
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }

    /* İndirim Alanı */
    .checkout-onepage-itemlist-discount {
        margin-top: 0.5rem;
        font-size: 1rem;
        color: #4f46e5;
        font-weight: 700;
        background: #eef2ff;
        padding: 0.25rem 0.5rem;
        border-radius: 0.375rem;
        display: inline-flex;
        gap: 0.5rem;
    }

    /* --- RESPONSIVE AYARLARI (Mobil) --- */
    @media (max-width: 640px) {
        .checkout-onepage-itemlist-item {
            flex-direction: column; /* Alt alta diz */
            gap: 1rem;
        }

        .checkout-onepage-itemlist-main-wrapper {
            width: 100%;
        }

        .checkout-onepage-itemlist-price-wrapper {
            width: 100%;
            align-items: flex-start; /* Mobilde sola yasla */
            text-align: left;
            border-top: 0.0625rem dashed #e5e7eb;
            padding-top: 1rem;
        }

        .checkout-onepage-itemlist-breakdown-box {
            width: 100%; /* Kutuyu tam genişlik yap */
        }
    }
    /*ÜRÜN LİSTESİ STİLLERİ BİTİŞ*/




    /*IBAN BİLGİLERİ*/
    /* Banka Bilgi Kartı Tasarımı */
    .bank-info-card {
        background: #f8f9fa;
        border: 1px solid #e9ecef;
        border-left: 4px solid #198754; /* Güven veren yeşil çizgi */
        border-radius: 8px;
        padding: 20px;
        margin-top: 15px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

    .bank-info-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 12px;
        padding-bottom: 12px;
        border-bottom: 1px solid #e9ecef;
    }

    .bank-info-row:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .bank-label {
        font-size: 1.3rem;
        color: #6c757d;
        font-weight: 600;
        display: block;
        margin-bottom: 4px;
    }

    .bank-value {
        font-size: 1.4rem;
        color: #212529;
        font-weight: 500;
        font-family: 'Courier New', monospace; /* IBAN için okunaklı font */
    }

    .copy-btn {
        background: none;
        border: 1px solid #ced4da;
        border-radius: 4px;
        padding: 4px 8px;
        cursor: pointer;
        font-size: 1.4rem;
        color: #495057;
        transition: all 0.2s;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .copy-btn:hover {
        background: #e9ecef;
        color: #000;
    }

    .copy-btn:active {
        background: #dde0e3;
        transform: translateY(1px);
    }

    /* Kopyalandı mesajı için basit animasyon */
    .copied-tooltip {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: #333;
        color: #fff;
        padding: 10px 20px;
        border-radius: 4px;
        font-size: 1.3rem;
        opacity: 0;
        transition: opacity 0.3s;
        pointer-events: none;
        z-index: 9999;
    }
    .copied-tooltip.show { opacity: 1; }

    .bank-info-message{
        font-size: 1.3rem; color: #888; margin-top: 10px;
    }
    /*IBAN BİLGİLERİ BİTİŞ*/
