﻿/* =========================
   BASVURU (MOBIL TOD/DIGITURK LIGHT LOOK)
   ========================= */

.applyWrap {
    position: relative;
}

    .applyWrap::before {
        content: "";
        position: absolute;
        inset: -10px -6px -10px -6px;
       /* background: rgba(255,255,255,.06);*/
        border-radius: 18px;
        pointer-events: none;
    }

    .applyWrap > * {
        position: relative;
        z-index: 1;
    }

/* Banner (üst kutu) */
.applyBanner {
    border: 1px solid rgba(0,0,0,.10);
    background: rgba(255,255,255,.92);
    border-radius: 14px;
    padding: 12px 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.applyBannerTitle {
    color: rgba(0,0,0,.82);
    font-weight: 900;
    font-size: 13px;
}

.applyBannerSub {
    color: rgba(0,0,0,.55);
    font-weight: 700;
    font-size: 12px;
}

/* Mor buton */
.applyBannerBtn {
    background: linear-gradient(90deg,#7a2cff,#8a46ff);
    border: 0;
    color: #fff;
    box-shadow: 0 12px 26px rgba(122,44,255,.28);
    padding: 11px 14px;
    font-size: 12px;
}

/* Başlık */
.applyTitle {
    margin: 16px 0 8px;
    color: rgba(0,0,0,.85);
    font-size: 20px;
    font-weight: 950;
}

/* Fotoğraftaki gibi gradient line */
.applyLine {
    height: 3px;
    width: min(320px, 92%);
    margin: 0 auto 14px;
    border-radius: 999px;
    background: linear-gradient(90deg,#7a2cff,#ff4fd8,#ff8a00);
    box-shadow: 0 10px 24px rgba(122,44,255,.10);
}

/* Grid: mobilde 2 kolon (foto gibi) */
.applyGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 12px;
    align-items: stretch;
}

@media(max-width: 420px) {
    .applyGrid {
        gap: 10px;
    }
}

/* Kartlar: beyaz + gri border */
.pkgCard {
    border: 1px solid rgba(0,0,0,.10);
    background: rgba(255,255,255,.94);
    border-radius: 14px;
    padding: 14px 10px;
    min-height: 132px;
    box-shadow: 0 10px 24px rgba(0,0,0,.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    overflow: hidden;
}

    .pkgCard:hover {
        border-color: rgba(0,0,0,.14);
        transform: translateY(-1px);
    }

/* logo */
.pkgLogo {
    width: 54px;
    height: 54px;
    margin: 0;
}

    .pkgLogo img {
        filter: drop-shadow(0 8px 14px rgba(0,0,0,.14));
    }

/* isim */
.pkgName {
    color:#000000d5;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25;
}

.pkgPrice {
    color: #160124d5;
    font-weight: 700;
    font-size: 20px;
    display: inline-flex;
    align-items: baseline;
    white-space: nowrap; /* ✅ tek satır */
    flex-wrap: nowrap; /* ✅ kırılma yok */
    gap: 2px;
}

    .pkgPrice .priceInt,
    .pkgPrice .priceDec,
    .pkgPrice .priceCur {
        white-space: nowrap; /* ✅ parçalar da kırılmasın */
        display: inline;
    }

    .pkgPrice .priceDec {
        font-size: .62em; /* küsurat küçük */
        transform: translateY(-1px);
        opacity: .9;
    }

    .pkgPrice .priceCur {
        font-size: .75em; /* ₺ biraz küçük */
        margin-left: 2px; /* ister boşluğu burdan ver */
    }


/* alttaki büyük kart (Sporun Yıldızı) foto gibi full */
.pkgCard.full {
    grid-column: 1 / -1;
    min-height: 140px;
}

/* =========================
   FIX: Paket logo taşma / aşırı büyüme
   ========================= */

/* Kart içi kesin ortalama + taşan her şeyi kırp */
.pkgCard {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Logo kutusu sabit */
.pkgLogo {
    width: 56px !important;
    height: 56px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 0 8px 0 !important;
    flex: 0 0 auto !important;
}

    /* ÖNEMLİ: img artık kutuya göre ölçeklensin */
    .pkgLogo img {
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: contain !important;
        object-position: center !important;
        display: block !important;
    }

/* Bazı resimler direkt <img> olarak kart içine basıldıysa (pkgLogo dışı) güvenlik ağı */
.pkgCard > img {
    width: 56px !important;
    height: 56px !important;
    object-fit: contain !important;
    object-position: center !important;
    display: block !important;
}

/* Full karttaki logo biraz daha büyük dursun istersen */
.pkgCard.full .pkgLogo {
    width: 64px !important;
    height: 64px !important;
}

/* Başvuru adım kilidi / seçili */
.stepInfo {
    margin: 10px 0 12px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(0,0,0,.18);
    color: rgba(255,255,255,.85);
    font-weight: 800;
    font-size: 12px;
}

/* Paket tipi seçili kart */
.pkgCard.isSelected {
    border-color: rgba(122,44,255,.55);
    box-shadow: 0 16px 35px rgba(122,44,255,.18), 0 10px 24px rgba(0,0,0,.06);
    transform: translateY(-1px);
}

/* Diğer paneller gözüksün ama seçilemesin (kilit) */
.stepLocked {
    opacity: .55;
    filter: grayscale(.25);
    pointer-events: none;
    user-select: none;
}

/* =========================
   Paket tipi - sadece text + edit
   ========================= */

.stepBlock {
    margin-top: 15px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgb(113 27 178 / 22%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.stepHead {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stepTitle {
    font-weight: 950;
    font-size: 16px;
    color: rgba(255,255,255,.95);
}

.stepValueRow {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.stepLabel {
    color: rgb(255, 255, 255, 0,90);
    font-weight: 600;
    font-size: 15px;
}

.stepValue {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 7px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    color: #fff;
    font-weight: 950;
    font-size: 13px;
}

.editBtn {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.90);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 950;
}

    .editBtn:hover {
        background: rgba(255,255,255,.10);
    }

/* Edit panel */
.editPanel {
    margin-top: 12px;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(0,0,0,.22);
}

/* Edit seçenekleri tek satır, wrap YOK */
.optionList {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    /*flex-wrap: nowrap;*/
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

    .optionList::-webkit-scrollbar {
        height: 6px;
    }

    .optionList::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,.18);
        border-radius: 999px;
    }

.optBtn {
    flex: 0 0 auto;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    color: #fff;
    font-weight: 950;
    cursor: pointer;
}

    .optBtn:hover {
        background: rgba(255,255,255,.10);
    }

/* =========================
   PT2 - PAKET TİPİ (UYDU) - TEMA UYUMLU
   ========================= */
/* === ÜST UYDU SEÇİMİ STICKY === */
.pt2-wrap {
    /*position: sticky;
    top: 70px;*/ /* header yüksekliğine göre ayarla */
    z-index: 9990;
    padding-bottom: 10px;
}

/* altındaki bilgi kartı da birlikte sabit kalsın */
.pt2-info {
    margin-top: 12px;
}



/*.pt2-wrap {
    margin-top: 16px;
}*/

/* üst iki bar */
.pt2-select-row {
    display: flex;
    gap: 14px;
    flex-wrap: nowrap;
}

.pt2-btn {
    flex: 1 1 0;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(14px) saturate(1.1);
    -webkit-backdrop-filter: blur(14px) saturate(1.1);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
    color: rgba(255,255,255,.92);
    font-weight: 950;
    letter-spacing: .1px;
    cursor: pointer;
    transition: border-color .18s ease, background .18s ease, transform .12s ease, box-shadow .18s ease;
}

    .pt2-btn:hover {
        border-color: rgba(255,255,255,.18);
        background: rgba(255,255,255,.065);
    }

/* checkbox */
.pt2-box {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    border: 2px solid rgba(255,255,255,.35);
    background: rgba(0,0,0,.22);
    position: relative;
    flex: 0 0 18px;
}

    .pt2-box::after {
        content: "";
        position: absolute;
        left: 5px;
        top: 2px;
        width: 5px;
        height: 9px;
        border-right: 3px solid transparent;
        border-bottom: 3px solid transparent;
        transform: rotate(45deg);
        opacity: 0;
    }

/* aktif */
.pt2-btn.isOn {
    border-color: rgba(247,198,0,.75);
    background: linear-gradient(180deg, rgba(247,198,0,.22), rgba(0,0,0,.10));
    box-shadow: 0 10px 40px rgba(0,0,0,.45), 0 0 0 1px rgba(247,198,0,.18), inset 0 1px 0 rgba(255,255,255,.08);
}

    .pt2-btn.isOn .pt2-box {
        border-color: rgba(247,198,0,.95);
        background: rgba(247,198,0,.18);
    }

        .pt2-btn.isOn .pt2-box::after {
            border-right-color: rgba(247,198,0,.98);
            border-bottom-color: rgba(247,198,0,.98);
            opacity: 1;
        }

.pt2-text {
    font-size: 16px;
}

/* alt bilgi kutusu (glass) */
/*.pt2-info {
    margin-top: 12px;
}*/

.pt2-info-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgb(113 27 178 / 22%);
    backdrop-filter: blur(14px) saturate(1.1);
    -webkit-backdrop-filter: blur(14px) saturate(1.1);
    padding: 14px 16px;
    /*box-shadow: inset 0 1px 0 rgba(255,255,255,.06);*/
}

/* logo */
.pt2-info-logo {
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 0 0 0px;
}

    .pt2-info-logo img {
        max-width: 50px;
        width: auto;
        height: auto;
        object-fit: contain;
        display: block;
        filter: drop-shadow(0 10px 18px rgba(0,0,0,.35));
    }

/* text */
.pt2-info-txt {
    min-width: 0;
}

.pt2-info-title {
    font-weight: 950;
    font-size: 16px;
    color: rgba(255,255,255,.94);
    line-height: 1.15;
}

.pt2-info-sub {
    margin-top: 6px;
    font-weight: 750;
    font-size: 14px;
    color: rgba(255,255,255,.72);
    line-height: 1.35;
}
/* sağ taraftaki tek buton alanı */
/*.pt2-cta {
    margin-left: auto;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}*/



    .pt2-ctaBtn:hover {
        background: rgb(245, 41, 6, 0,67);
    }


/* pt2 info kartını 2 satıra böl */
/*.pt2-info-inner {
    display: flex;
    flex-direction: column;*/ /* üst satır + alt satır */
    /*gap: 12px;
}*/

/* ÜST SATIR: logo + metin (wrap YOK) */
.pt2-toprow {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap; /* ✅ wrap kapalı */
}

/* metin alanı taşarsa kıs */
.pt2-info-txt {
    min-width: 0;
}

/* title/sub taşma kontrol */
.pt2-info-title,
.pt2-info-sub {
    overflow: hidden;
    text-overflow: ellipsis;
}

/* SUB 2 satıra kadar izin ver (istersen 1 satır da yaparız) */
.pt2-info-sub {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* ALT SATIR: buton */
.pt2-ctaRow {
    display: flex;
}


/* mobil */
@media (max-width: 720px) {
    .pt2-select-row {
        gap: 10px;
    }

    .pt2-btn {
        height: 52px;
        border-radius: 16px;
    }

    .pt2-text {
        font-size: 14px;
    }

    .pt2-info-inner {
        padding: 12px 12px;
    }

    .pt2-info-logo {
        width: 86px;
        flex-basis: 86px;
    }

        .pt2-info-logo img {
            max-width: 86px;
        }
}

/* Varsayılan (PC): 4 kolon */
.paketGridNoWrap {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 12px;
    align-items: stretch;
}

/* Tablet/Mobil: 2 kolon */
@media (max-width: 980px) {
    .paketGridNoWrap {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

/* Çok küçük ekran: yine 2 kolon */
@media (max-width: 420px) {
    .paketGridNoWrap {
        grid-template-columns: repeat(2, minmax(0,1fr));
        gap: 10px;
    }
}

/* Full kart (Sporun Yıldızı) her ekranda tam genişlik */
.paketGridNoWrap .pkgCard.full {
    grid-column: 1 / -1;
}

/* wrap olmasın: paket adı tek satır */
.paketGridNoWrap .pkgName {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Kartların link gibi davranması için */
.pkgPick {
    cursor: pointer;
}

/* Hover’da zıplama istemiyorsan transform’u sabitle */
.pkgCard {
    transition: border-color .15s ease, box-shadow .15s ease;
}

    .pkgCard span {
        display: block;
    }

    .pkgCard:hover {
        transform: none;
    }

/* disabled kart */
.odemeCard.isDisabled {
    opacity: .45;
    filter: grayscale(.35);
    pointer-events: none;
}

    .odemeCard.isDisabled .odemeBtn {
        background: rgb(0, 0, 0, 0,89);
        color: rgba(255,255,255,.75);
    }

/* ===== ÖDEME PANELİ (2 kart) ===== */

.odemeGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 16px;
    margin-top: 12px;
}

@media(max-width: 760px) {
    .odemeGrid {
        grid-template-columns: 1fr;
    }
}

.odemeCard {
    display: block;
    text-decoration: none !important;
    position: relative;
    border-radius: 18px;
    padding: 22px 22px;
    border: 1px solid rgba(255,255,255,.12);
    background: #11111191;
    backdrop-filter: blur(12px) saturate(1.05);
    -webkit-backdrop-filter: blur(12px) saturate(1.05);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
    transition: .15s ease;
    color: rgba(255,255,255,.92);
}

    .odemeCard:hover {
        transform: translateY(-1px);
        border-color: rgba(255,255,255,.18);
    }

    .odemeCard.isDeal {
        border-color: rgba(122,44,255,.45);
        box-shadow: 0 0 0 1px rgba(122,44,255,.12), inset 0 1px 0 rgba(255,255,255,.06);
    }

    .odemeCard.isSelected {
        outline: 3px solid rgba(122,44,255,.22);
        border-color: rgba(122,44,255,.75);
    }

.odemeBadge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    background: rgba(122,44,255,.95);
    color: #fff;
    box-shadow: 0 12px 26px rgba(122,44,255,.25);
}

.odemeTitle {
    font-size: 28px;
    font-weight: 950;
    letter-spacing: -.4px;
}

.odemePrice {
    margin-top: 10px;
    font-size: 22px;
    font-weight: 950;
}
.odemePrice2 {
    margin-top: 15px;
    font-size: 17px;
    font-weight: 700;
}
.odemefatura1 {

    display:flex;
    flex-wrap:nowrap;
}

.odemetaahhut {
   
    padding-top:14px;
    align-items:center;
    margin-right:10px;
    width:90px;
    text-align:right;
}
.secilenpaket {
    justify-content:space-between;
    display:flex;
    flex-wrap:nowrap;
}

.odemeSub {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,.72);
    line-height: 1.35;
}

.odemeBtn {
    width:100%;
    justify-content:center;
    text-align:center;
    display: inline-flex;
    margin-top: 16px;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 950;
    background-color:#000000d1;
    border: 1px solid rgba(255,255,255,.14);
    color: white;
}

/* disabled (senin ApplyOdemeTipiRules için) */
.odemeCard.isDisabled {
    opacity: .45;
    filter: grayscale(.35);
    pointer-events: none;
}

/* ===== ÜYELİK FORM ===== */
.applySummary {
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    border-radius: 18px;
    padding: 18px;
}

.applySummaryTitle {
  /*  font-weight: 950;
    font-size: 22px;
    color: rgba(255,255,255,.95);*/
}

.applySummarySub {
    margin-top: 8px;
    color: rgba(255,255,255,.72);
    font-weight: 700;
    line-height: 1.35;
}

.uyelikGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 14px;
}

@media(max-width: 820px) {
    .uyelikGrid {
        grid-template-columns: 1fr;
    }
}

.uyelikSpan2 {
    grid-column: 1 / -1;
}

.uyelikLbl {
    display: block;
    font-weight: 900;
    font-size: 14px;
    color: rgba(255,255,255,.85);
    margin-bottom: 7px;
}

.req {
    color: #ff6b6b;
    font-weight: 950;
}

.uyelikInput {
    font-size:18px;
    width: 100%;
    height: 46px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.14);
    color:#000c;
    padding: 3px;
    padding-left:12px;
    font-weight: 600;
    outline: none;
}

    .uyelikInput:focus {
        border-color: rgba(122,44,255,.65);
        box-shadow: 0 0 0 4px rgba(122,44,255,.18);
    }

.uyelikHint {
    margin-top: 6px;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,.55);
}

.valErr {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 800;
    color: #ff7b7b;
}

.uyelikConsent {
    margin-top: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.uyelikConsentLbl {
    font-weight: 800;
    color: rgba(255,255,255,.78);
    font-size: 13px;
}

.uyelikBtnRow {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.uyelikBtn {
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
    letter-spacing: .3px;
    background: linear-gradient(90deg, rgba(22,10,38,1), rgba(45,15,70,1));
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 14px 35px rgba(0,0,0,.45);
}

    .uyelikBtn:hover {
        filter: brightness(1.05);
    }

.uyelikLink {
    text-align: center;
    font-weight: 950;
    color: #b780ff;
}

    .uyelikLink:hover {
        text-decoration: underline;
    }
/* =========================
   PT2 - Desktop: tek satır
   Mobile: buton alta (sağa dayalı)
   ========================= */

.pt2-info-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgb(113 27 178 / 22%);
    backdrop-filter: blur(14px) saturate(1.1);
    -webkit-backdrop-filter: blur(14px) saturate(1.1);
    padding: 14px 16px;
}

/* Sol blok: logo + yazı (asla wrap yok) */
.pt2-toprow {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap; /* ✅ wrap kapalı */
    min-width: 0;
    flex: 1 1 auto;
    justify-content: flex-start;
}

/* logo */
.pt2-info-logo {
    width: 50px;
    flex: 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

    .pt2-info-logo img {
        max-width: 50px;
        width: auto;
        height: auto;
        display: block;
        object-fit: contain;
        filter: drop-shadow(0 10px 18px rgba(0,0,0,.35));
    }

/* yazı alanı sola dayalı + taşma kontrol */
.pt2-info-txt {
    min-width: 0;
    text-align: left; /* ✅ sola dayalı */
}

.pt2-info-title {
    font-weight: 950;
    font-size: 16px;
    color: rgba(255,255,255,.94);
    line-height: 1.15;
    white-space: nowrap; /* ✅ desktop tek satır */
    overflow: hidden;
    text-overflow: ellipsis;
}

.pt2-info-sub {
    margin-top: 6px;
    font-weight: 750;
    font-size: 14px;
    color: rgba(255,255,255,.72);
    line-height: 1.35;
    white-space: nowrap; /* ✅ tek satır */
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Sağ blok: buton */
.pt2-ctaRow {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* ✅ sağa dayalı */
}

/* buton (desktop: sağda) */
.pt2-ctaBtn {
    font-size:13px;
    text-align:center;
    height: 35px;
    padding: 4px;
    padding-left:10px;
    padding-right:10px;
    border-radius: 7px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,.16);
    background: rgb(245, 41, 6);
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
}

/* iPhone date input fix */
.uyelikInput[type="date"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    box-sizing: border-box; /* EN ÖNEMLİ */
    padding-right: 14px;
}

.uyelikChk input[type="checkbox"] {
    width: 15px;
    height: 15px;
    transform: scale(1.3);
    accent-color: #7287f8; /* mor tema */
    cursor: pointer;
}
/* === MOBİL: buton alta insin ama sağa dayalı kalsın === */
@media (max-width: 720px) {

    .odemeTitle {
        font-size: 20px;
        font-weight: 600;
        letter-spacing: -.4px;
    }

    .pt2-info-inner {
        flex-direction: column; /* ✅ buton alta */
        align-items: stretch;
    }

    .pt2-toprow {
        width: 100%;
    }

    /* Mobilde de logo+yazı tek satır kalsın (wrap yok zaten) */
    .pt2-info-title,
    .pt2-info-sub {
        white-space: nowrap;
    }

    .pt2-ctaRow {
        width: 100%;
        justify-content: flex-end; /* ✅ buton sağda */
    }

    .pt2-ctaBtn {
        width: 100%;
    }
}
