html.oa-account-drawer-open,
body.oa-account-drawer-open{
    overflow:hidden!important;
}

.oa-header-auth,
.oa-header-actions,
.oa-header-full,
.oa-account-drawer,
.oa-header-auth *,
.oa-header-actions *,
.oa-header-full *,
.oa-account-drawer *{
    box-sizing:border-box;
    font-family:'Poppins',sans-serif!important;
}

.oa-header-auth{
    display:flex;
    align-items:center;
    gap:8px;
}

.oa-header-auth--guest{
    justify-content:flex-end;
}

.oa-header-btn,
.oa-header-action{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-height:42px;
    padding:0 18px;
    border:0;
    border-radius:13px;
    color:#fff!important;
    font-size:14px;
    font-weight:700;
    line-height:1;
    text-decoration:none!important;
    cursor:pointer;
    transition:transform .18s ease,filter .18s ease,box-shadow .18s ease;
}

.oa-header-btn:hover,
.oa-header-action:hover{
    color:#fff!important;
    transform:translateY(-1px);
    filter:brightness(1.05);
}

.oa-header-btn--register{
    background:linear-gradient(135deg,#ff9b00,#ff7900);
    box-shadow:0 8px 22px rgba(255,130,0,.28);
}

.oa-header-btn--login{
    background:linear-gradient(135deg,#17d886,#07bd69);
    box-shadow:0 8px 22px rgba(10,202,115,.25);
}

.oa-header-btn__icon{
    font-size:18px;
    line-height:1;
}

.oa-header-auth--logged{
    gap:8px;
}

.oa-header-square{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:48px;
    height:48px;
    border-radius:13px;
    color:#b9c6d8!important;
    background:#171e28;
    border:1px solid rgba(255,255,255,.03);
    text-decoration:none!important;
}

.oa-header-square--cart{
    color:#ffb800!important;
    background:#2a2416;
}

.oa-header-badge{
    position:absolute;
    top:-4px;
    right:-4px;
    display:grid;
    place-items:center;
    min-width:18px;
    height:18px;
    padding:0 5px;
    border-radius:999px;
    background:#6555e8;
    color:#fff;
    font-size:10px;
    font-weight:800;
}

.oa-header-profile{
    display:flex;
    align-items:center;
    gap:10px;
    min-width:166px;
    min-height:50px;
    padding:6px 12px 6px 7px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.13);
    background:#141a24;
    color:#fff!important;
    text-align:left;
    cursor:pointer;
}

.oa-header-profile__avatar{
    width:38px;
    height:38px;
    border-radius:10px;
    object-fit:cover;
}

.oa-header-profile__text{
    display:flex;
    min-width:0;
    flex:1;
    flex-direction:column;
    line-height:1.2;
}

.oa-header-profile__text strong{
    overflow:hidden;
    color:#fff;
    font-size:12px;
    font-weight:700;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.oa-header-profile__text small{
    margin-top:3px;
    color:#17db80;
    font-size:11px;
    font-weight:700;
}

.oa-header-profile__arrow{
    color:#b4bfd1;
    font-size:22px;
}

.oa-header-actions{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:9px;
}

.oa-header-action{
    min-height:42px;
    border-radius:12px;
}

.oa-header-action--listing{
    background:linear-gradient(135deg,#ffbe00,#f39a00);
    box-shadow:0 8px 22px rgba(255,177,0,.25);
}

.oa-header-action--balance{
    background:linear-gradient(135deg,#12d678,#08b764);
    box-shadow:0 8px 22px rgba(10,195,103,.22);
}

.oa-header-action__icon{
    display:grid;
    place-items:center;
    width:18px;
    height:18px;
    border:2px solid currentColor;
    border-radius:50%;
    font-size:13px;
    font-weight:800;
    line-height:1;
}

.oa-header-action--balance .oa-header-action__icon{
    border:0;
    border-radius:3px;
}

.oa-header-full{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:9px;
}

/* Sağ hesap paneli */
.oa-account-drawer{
    position:fixed;
    inset:0;
    z-index:999998;
    visibility:hidden;
    opacity:0;
    pointer-events:none;
    transition:opacity .24s ease,visibility .24s ease;
}

.oa-account-drawer.is-open{
    visibility:visible;
    opacity:1;
    pointer-events:auto;
}

.oa-account-drawer__backdrop{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    padding:0;
    border:0;
    background:rgba(3,7,14,.64);
    backdrop-filter:blur(3px);
    cursor:default;
}

.oa-account-drawer__panel{
    position:absolute;
    top:0;
    right:0;
    width:min(390px,100vw);
    height:100%;
    overflow-y:auto;
    color:#fff;
    background:#0d121a;
    border-left:1px solid rgba(255,255,255,.08);
    box-shadow:-24px 0 70px rgba(0,0,0,.46);
    transform:translateX(100%);
    transition:transform .3s cubic-bezier(.2,.8,.2,1);
}

.oa-account-drawer.is-open .oa-account-drawer__panel{
    transform:translateX(0);
}

.oa-account-drawer__header{
    position:sticky;
    top:0;
    z-index:2;
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:72px;
    padding:0 20px;
    border-bottom:1px solid rgba(255,255,255,.08);
    background:rgba(13,18,26,.96);
    backdrop-filter:blur(10px);
}

.oa-account-drawer__heading{
    display:flex;
    align-items:center;
    gap:11px;
}

.oa-account-drawer__heading-icon{
    display:grid;
    place-items:center;
    width:36px;
    height:36px;
    border-radius:10px;
    color:#5e75ff;
    background:#121d3f;
}

.oa-account-drawer__heading strong{
    font-size:17px;
    font-weight:700;
}

.oa-account-drawer__close{
    position:relative;
    width:34px;
    height:34px;
    padding:0;
    border:0;
    background:transparent;
    cursor:pointer;
}

.oa-account-drawer__close span{
    position:absolute;
    top:16px;
    left:6px;
    width:22px;
    height:2px;
    border-radius:999px;
    background:#8f98aa;
}

.oa-account-drawer__close span:first-child{
    transform:rotate(45deg);
}

.oa-account-drawer__close span:last-child{
    transform:rotate(-45deg);
}

.oa-account-drawer__body{
    padding:16px 14px 24px;
}

.oa-account-summary{
    padding:15px;
    border-radius:16px;
    background:
        radial-gradient(circle at 88% 20%,rgba(255,255,255,.18),transparent 24%),
        linear-gradient(135deg,#1a255fb5,#3244a1);
    box-shadow:0 15px 35px rgba(46,67,184,.24);
}

.oa-account-summary__user{
    display:flex;
    align-items:center;
    gap:11px;
    margin-bottom:14px;
}

.oa-account-summary__user-link{
    color:#fff!important;
    text-decoration:none!important;
    cursor:pointer;
}

.oa-account-summary__user-link:hover,
.oa-account-summary__user-link:focus{
    color:#fff!important;
    text-decoration:none!important;
}

.oa-account-summary__avatar{
    width:50px;
    height:50px;
    border-radius:9px;
    object-fit:cover;
    border:1px solid rgba(255,255,255,.65);
}

.oa-account-summary__user strong{
    font-size:14px;
    font-weight:700;
}

.oa-account-summary__balances{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
    margin-bottom:12px;
}

.oa-account-balance{
    min-width:0;
    padding:11px 10px;
    border:1px solid rgba(255,255,255,.3);
    border-radius:12px;
    background:rgba(255,255,255,.08);
}

.oa-account-balance small,
.oa-account-balance strong{
    display:block;
}

.oa-account-balance small{
    margin-bottom:3px;
    color:#e7ebff;
    font-size:10px;
    font-weight:600;
}

.oa-account-balance strong{
    overflow:hidden;
    color:#fff;
    font-size:13px;
    font-weight:700;
    text-overflow:ellipsis;
    white-space:nowrap;
}

/* Satış tamamlanmış ancak güvenlik süresi nedeniyle henüz cüzdana aktarılmamış hakediş. */
.oa-account-balance--pending{
    grid-column:1 / -1;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:9px 10px;
    border-color:rgba(255,190,74,.38);
    background:rgba(255,176,46,.08);
}

.oa-account-balance--pending small{
    margin-bottom:0;
    color:#ffe0a3;
}

.oa-account-balance--pending strong{
    flex:0 0 auto;
    color:#ffd26f;
}

.oa-account-summary__deposit{
    display:flex;
    align-items:center;
    gap:9px;
    min-height:48px;
    padding:0 13px;
    border:1px solid rgba(255,255,255,.32);
    border-radius:12px;
    color:#fff!important;
    background:rgba(255,255,255,.09);
    font-size:13px;
    font-weight:700;
    text-decoration:none!important;
}

.oa-account-summary__deposit-arrow{
    margin-left:auto;
    font-size:26px;
}

.oa-account-summary__withdraw{
    margin-top:8px;
}

.oa-account-menu{
    margin-top:14px;
    padding:14px 14px 9px;
    border:1px solid rgba(255,255,255,.1);
    border-radius:14px;
    background:#141a23;
}

.oa-account-menu h3{
    margin:0 0 8px;
    color:#8793a8;
    font-size:10px;
    font-weight:600;
    letter-spacing:.06em;
    text-transform:uppercase;
}

.oa-account-menu__item{
    display:flex;
    align-items:center;
    gap:12px;
    min-height:52px;
    color:#fff!important;
    font-size:13px;
    font-weight:600;
    text-decoration:none!important;
}

.oa-account-menu__icon{
    display:grid;
    place-items:center;
    width:22px;
    color:#6078ff;
}

.oa-account-menu__arrow{
    margin-left:auto;
    color:#6f86a3;
    font-size:20px;
}

.oa-account-logout{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    min-height:54px;
    margin-top:16px;
    border:1px solid rgba(255,73,102,.45);
    border-radius:13px;
    color:#ff526b!important;
    background:rgba(123,20,43,.22);
    text-decoration:none!important;
}

.oa-account-logout strong{
    font-size:13px;
    font-weight:700;
}

@media(max-width:767px){
    .oa-header-profile{
        min-width:auto;
    }

    .oa-header-profile__text{
        display:none;
    }

    .oa-header-actions{
        flex-wrap:wrap;
    }

    .oa-header-btn,
    .oa-header-action{
        padding:0 13px;
        font-size:12px;
    }

    .oa-account-drawer__panel{
        width:min(360px,94vw);
    }
}


/* =========================================================
   v1.1.1 — Woodmart override + yumuşak çekmece animasyonu
   ========================================================= */

html.oa-account-drawer-open,
body.oa-account-drawer-open{
    overflow:hidden!important;
}

/* Header profil butonunu Woodmart buton stilinden tamamen ayır */
.oa-header-auth .oa-header-profile{
    -webkit-appearance:none!important;
    appearance:none!important;
    display:flex!important;
    align-items:center!important;
    gap:10px!important;
    width:auto!important;
    min-width:166px!important;
    max-width:240px!important;
    min-height:50px!important;
    height:50px!important;
    margin:0!important;
    padding:6px 12px 6px 7px!important;
    border:1px solid rgba(255,255,255,.13)!important;
    border-radius:14px!important;
    background:#141a24!important;
    background-image:none!important;
    color:#fff!important;
    box-shadow:none!important;
    text-align:left!important;
    text-transform:none!important;
    line-height:1.2!important;
    cursor:pointer!important;
    overflow:hidden!important;
}

.oa-header-auth .oa-header-profile:hover,
.oa-header-auth .oa-header-profile:focus{
    background:#171e29!important;
    border-color:rgba(99,120,255,.34)!important;
    color:#fff!important;
    box-shadow:0 0 0 3px rgba(74,96,255,.10)!important;
    outline:none!important;
}

.oa-header-auth .oa-header-profile__avatar{
    display:block!important;
    width:38px!important;
    min-width:38px!important;
    height:38px!important;
    margin:0!important;
    padding:0!important;
    border:0!important;
    border-radius:10px!important;
    object-fit:cover!important;
    background:#232b38!important;
}

.oa-header-auth .oa-header-profile__text{
    display:flex!important;
    min-width:0!important;
    flex:1 1 auto!important;
    flex-direction:column!important;
    align-items:flex-start!important;
    justify-content:center!important;
    gap:2px!important;
}

.oa-header-auth .oa-header-profile__text strong,
.oa-header-auth .oa-header-profile__text small{
    display:block!important;
    width:100%!important;
    margin:0!important;
    padding:0!important;
    line-height:1.2!important;
}

.oa-header-auth .oa-header-profile__arrow{
    display:block!important;
    margin-left:auto!important;
    color:#8e9ab0!important;
    line-height:1!important;
}

/* Drawer ana katmanı */
#oa-account-drawer{
    position:fixed!important;
    inset:0!important;
    z-index:2147483000!important;
    display:block!important;
    width:100vw!important;
    height:100vh!important;
    height:100dvh!important;
    margin:0!important;
    padding:0!important;
    visibility:hidden!important;
    opacity:1!important;
    pointer-events:none!important;
    overflow:hidden!important;
    transform:none!important;
}

#oa-account-drawer.is-open{
    visibility:visible!important;
    pointer-events:auto!important;
}

/* Karartma */
#oa-account-drawer .oa-account-drawer__backdrop{
    -webkit-appearance:none!important;
    appearance:none!important;
    position:fixed!important;
    inset:0!important;
    display:block!important;
    width:100vw!important;
    height:100vh!important;
    height:100dvh!important;
    margin:0!important;
    padding:0!important;
    border:0!important;
    border-radius:0!important;
    background:rgba(3,7,14,.72)!important;
    background-image:none!important;
    box-shadow:none!important;
    opacity:0!important;
    cursor:default!important;
    transition:opacity .32s ease!important;
    backdrop-filter:blur(4px)!important;
    -webkit-backdrop-filter:blur(4px)!important;
}

#oa-account-drawer.is-open .oa-account-drawer__backdrop{
    opacity:1!important;
}

/* Sağ panel */
#oa-account-drawer .oa-account-drawer__panel{
    position:fixed!important;
    top:0!important;
    right:0!important;
    bottom:0!important;
    left:auto!important;
    width:min(390px,94vw)!important;
    height:100vh!important;
    height:100dvh!important;
    margin:0!important;
    padding:0!important;
    border:0!important;
    border-left:1px solid rgba(255,255,255,.08)!important;
    border-radius:0!important;
    background:#0d121a!important;
    background-image:none!important;
    color:#fff!important;
    box-shadow:-26px 0 80px rgba(0,0,0,.50)!important;
    overflow-x:hidden!important;
    overflow-y:auto!important;
    opacity:0!important;
    transform:translate3d(104%,0,0)!important;
    will-change:transform,opacity!important;
    transition:
        transform .46s cubic-bezier(.22,1,.36,1),
        opacity .26s ease!important;
}

#oa-account-drawer.is-open .oa-account-drawer__panel{
    opacity:1!important;
    transform:translate3d(0,0,0)!important;
}

/* Header ve kapatma butonu */
#oa-account-drawer .oa-account-drawer__header{
    position:sticky!important;
    top:0!important;
    z-index:5!important;
    display:flex!important;
    align-items:center!important;
    justify-content:space-between!important;
    width:100%!important;
    min-height:70px!important;
    margin:0!important;
    padding:0 18px!important;
    border:0!important;
    border-bottom:1px solid rgba(255,255,255,.08)!important;
    background:rgba(13,18,26,.96)!important;
    box-shadow:none!important;
}

#oa-account-drawer .oa-account-drawer__close{
    -webkit-appearance:none!important;
    appearance:none!important;
    position:relative!important;
    top:auto!important;
    right:auto!important;
    display:block!important;
    width:34px!important;
    min-width:34px!important;
    height:34px!important;
    min-height:34px!important;
    margin:0!important;
    padding:0!important;
    border:0!important;
    border-radius:10px!important;
    background:transparent!important;
    background-image:none!important;
    box-shadow:none!important;
    cursor:pointer!important;
}

#oa-account-drawer .oa-account-drawer__close:hover{
    background:rgba(255,255,255,.05)!important;
}

#oa-account-drawer .oa-account-drawer__close span{
    position:absolute!important;
    top:16px!important;
    left:6px!important;
    display:block!important;
    width:22px!important;
    height:2px!important;
    margin:0!important;
    padding:0!important;
    border:0!important;
    border-radius:999px!important;
    background:#8f98aa!important;
}

/* İçerik bloklarında Woodmart sürprizlerini engelle */
#oa-account-drawer .oa-account-drawer__body{
    width:100%!important;
    margin:0!important;
    padding:16px 14px 26px!important;
    background:#0d121a!important;
}

#oa-account-drawer .oa-account-summary,
#oa-account-drawer .oa-account-menu{
    width:100%!important;
    box-shadow:none!important;
}

#oa-account-drawer a{
    text-transform:none!important;
}

#oa-account-drawer .oa-account-summary__deposit,
#oa-account-drawer .oa-account-menu__item,
#oa-account-drawer .oa-account-logout{
    width:100%!important;
    margin-left:0!important;
    margin-right:0!important;
}

@media(max-width:767px){
    .oa-header-auth .oa-header-profile{
        min-width:50px!important;
        width:50px!important;
        max-width:50px!important;
        padding:6px!important;
    }

    .oa-header-auth .oa-header-profile__text,
    .oa-header-auth .oa-header-profile__arrow{
        display:none!important;
    }

    #oa-account-drawer .oa-account-drawer__panel{
        width:min(360px,94vw)!important;
    }
}

/* v1.1.12 - Drawer metin ağırlığı */
#oa-account-drawer .oa-account-drawer__panel,
#oa-account-drawer .oa-account-drawer__panel button,
#oa-account-drawer .oa-account-drawer__panel a,
#oa-account-drawer .oa-account-drawer__panel strong,
#oa-account-drawer .oa-account-drawer__panel small,
#oa-account-drawer .oa-account-drawer__panel span,
#oa-account-drawer .oa-account-drawer__panel h3{
    font-weight:600!important;
}

@media(prefers-reduced-motion:reduce){
    #oa-account-drawer .oa-account-drawer__backdrop,
    #oa-account-drawer .oa-account-drawer__panel{
        transition:none!important;
    }
}

/* =========================================================
   v1.1.5 — Mobil header toolbar
   Masaüstünü değiştirmez. Woodmart'ın üst satırı (menü/logo/sepet)
   aynen kalır; OyunAdası aksiyonları mobilde onun ALTINDA tek satır olur.
   ========================================================= */
.oa-header-action__label--mobile{display:none!important;}

@media (max-width: 767px){
    /* Shortcode'ların Woodmart'taki eski hücreleri boşluk bırakmasın. */
    .oa-mobile-source-empty{
        display:none!important;
        width:0!important;
        min-width:0!important;
        max-width:0!important;
        height:0!important;
        min-height:0!important;
        margin:0!important;
        padding:0!important;
        border:0!important;
        overflow:hidden!important;
    }

    /* Gerçek ikinci mobil satır. Flex row içine DEĞİL, general header'ın altına eklenir. */
    .oa-mobile-header-tools{
        position:relative!important;
        z-index:35!important;
        display:flex!important;
        width:100%!important;
        max-width:100%!important;
        min-width:0!important;
        min-height:50px!important;
        align-items:center!important;
        justify-content:space-between!important;
        gap:6px!important;
        margin:0!important;
        padding:6px 12px 7px!important;
        box-sizing:border-box!important;
        background:#0d131e!important;
        border-top:1px solid rgba(255,255,255,.055)!important;
        border-bottom:1px solid rgba(255,255,255,.045)!important;
        box-shadow:none!important;
        overflow:visible!important;
    }

    .oa-mobile-header-tools,
    .oa-mobile-header-tools *{
        font-family:'Poppins',sans-serif!important;
        box-sizing:border-box!important;
    }

    .oa-mobile-header-tools .oa-header-actions,
    .oa-mobile-header-tools .oa-header-auth--logged{
        display:flex!important;
        width:auto!important;
        min-width:0!important;
        max-width:none!important;
        align-items:center!important;
        flex-wrap:nowrap!important;
        gap:6px!important;
        margin:0!important;
        padding:0!important;
    }

    .oa-mobile-header-tools .oa-header-actions{
        flex:0 0 auto!important;
        justify-content:flex-start!important;
    }

    .oa-mobile-header-tools .oa-header-auth--logged{
        flex:1 1 auto!important;
        justify-content:flex-end!important;
    }

    /* Mobilde referanstaki sıra: Bakiye, İlan */
    .oa-mobile-header-tools .oa-header-action--balance{order:1!important;}
    .oa-mobile-header-tools .oa-header-action--listing{order:2!important;}

    .oa-mobile-header-tools .oa-header-action{
        display:inline-flex!important;
        width:auto!important;
        min-width:0!important;
        height:36px!important;
        min-height:36px!important;
        margin:0!important;
        padding:0 10px!important;
        gap:5px!important;
        border:0!important;
        border-radius:11px!important;
        color:#fff!important;
        font-size:10px!important;
        font-weight:700!important;
        line-height:1!important;
        white-space:nowrap!important;
        text-decoration:none!important;
        box-shadow:none!important;
        transform:none!important;
        filter:none!important;
    }

    .oa-mobile-header-tools .oa-header-action:hover,
    .oa-mobile-header-tools .oa-header-action:focus,
    .oa-mobile-header-tools .oa-header-action:active{
        color:#fff!important;
        transform:none!important;
        filter:none!important;
    }

    .oa-mobile-header-tools .oa-header-action__icon{
        display:grid!important;
        width:15px!important;
        min-width:15px!important;
        height:15px!important;
        place-items:center!important;
        font-size:9px!important;
        line-height:1!important;
    }

    .oa-mobile-header-tools .oa-header-action__label--desktop{display:none!important;}
    .oa-mobile-header-tools .oa-header-action__label--mobile{display:inline!important;}

    /* Mesaj / bildirim */
    .oa-mobile-header-tools .oa-header-square{
        display:inline-flex!important;
        width:36px!important;
        min-width:36px!important;
        max-width:36px!important;
        height:36px!important;
        min-height:36px!important;
        margin:0!important;
        padding:0!important;
        align-items:center!important;
        justify-content:center!important;
        border-radius:11px!important;
        border:1px solid rgba(255,255,255,.06)!important;
        background:#151e2b!important;
        color:#c8d2e2!important;
        box-shadow:none!important;
    }

    .oa-mobile-header-tools .oa-header-square svg{
        width:16px!important;
        height:16px!important;
    }

    /* Woodmart'ın üst sağ sepeti zaten var: eklenti sepetini ikinci satırda göstermiyoruz. */
    .oa-mobile-header-tools .oa-header-square--cart{display:none!important;}

    /* Profil: avatar + sadece bakiye. */
    .oa-mobile-header-tools .oa-header-profile{
        display:flex!important;
        flex:0 0 auto!important;
        width:auto!important;
        min-width:67px!important;
        max-width:82px!important;
        height:36px!important;
        min-height:36px!important;
        margin:0!important;
        padding:3px 7px 3px 4px!important;
        gap:5px!important;
        align-items:center!important;
        border-radius:11px!important;
        border:1px solid rgba(255,255,255,.13)!important;
        background:#141c28!important;
        box-shadow:none!important;
    }

    .oa-mobile-header-tools .oa-header-profile__avatar{
        display:block!important;
        width:28px!important;
        min-width:28px!important;
        height:28px!important;
        margin:0!important;
        border-radius:8px!important;
        object-fit:cover!important;
    }

    .oa-mobile-header-tools .oa-header-profile__text{
        display:flex!important;
        min-width:0!important;
        flex:1 1 auto!important;
        flex-direction:column!important;
        justify-content:center!important;
        margin:0!important;
    }

    .oa-mobile-header-tools .oa-header-profile__text strong{
        display:none!important;
    }

    .oa-mobile-header-tools .oa-header-profile__text small{
        display:block!important;
        max-width:42px!important;
        overflow:hidden!important;
        margin:0!important;
        color:#18db80!important;
        font-size:8.5px!important;
        font-weight:700!important;
        line-height:1.1!important;
        text-overflow:ellipsis!important;
        white-space:nowrap!important;
    }

    .oa-mobile-header-tools .oa-header-profile__arrow{display:none!important;}

    .oa-mobile-header-tools .oa-header-badge{
        top:-4px!important;
        right:-4px!important;
        min-width:15px!important;
        height:15px!important;
        padding:0 4px!important;
        font-size:8px!important;
        line-height:15px!important;
    }
}

@media (max-width: 390px){
    .oa-mobile-header-tools{gap:4px!important;padding-left:10px!important;padding-right:10px!important;}
    .oa-mobile-header-tools .oa-header-actions,
    .oa-mobile-header-tools .oa-header-auth--logged{gap:4px!important;}
    .oa-mobile-header-tools .oa-header-action{padding:0 8px!important;font-size:9.5px!important;}
    .oa-mobile-header-tools .oa-header-square{width:34px!important;min-width:34px!important;max-width:34px!important;height:34px!important;min-height:34px!important;}
    .oa-mobile-header-tools .oa-header-profile{min-width:62px!important;max-width:74px!important;height:34px!important;min-height:34px!important;}
    .oa-mobile-header-tools .oa-header-profile__avatar{width:26px!important;min-width:26px!important;height:26px!important;}
    .oa-mobile-header-tools .oa-header-profile__text small{max-width:36px!important;font-size:8px!important;}
}

/* =========================================================
   v1.1.6 — Ayrı mobil shortcode
   [oyunadasi_header_mobile]
   ========================================================= */
.oa-mobile-header-bar{display:none!important;}

@media (max-width:767px){
    /* Eski PC shortcode'ları mobilde kesinlikle görünmesin. */
    .oa-header-desktop-only{display:none!important;}

    /* Woodmart shortcode elemanının boş kolon/satır bırakmasını da engelle. */
    .wd-header-html:has(.oa-header-desktop-only),
    .wd-header-text:has(.oa-header-desktop-only),
    .wd-header-element:has(.oa-header-desktop-only){
        display:none!important;
    }

    /* v1.1.5 taşıma toolbar'ı artık kullanılmıyor. */
    .oa-mobile-header-tools{display:none!important;}

    .oa-mobile-header-bar,
    .oa-mobile-header-bar *{
        box-sizing:border-box!important;
        font-family:'Poppins',sans-serif!important;
    }

    .oa-mobile-header-bar{
        display:flex!important;
        width:100%!important;
        min-width:0!important;
        min-height:50px!important;
        align-items:center!important;
        justify-content:flex-start!important;
        gap:6px!important;
        margin:0!important;
        padding:6px 0!important;
        background:#0d131e!important;
        border-top:1px solid rgba(255,255,255,.055)!important;
        border-bottom:1px solid rgba(255,255,255,.055)!important;
        overflow:visible!important;
    }

    .oa-mobile-action{
        display:inline-flex!important;
        flex:0 0 auto!important;
        width:auto!important;
        min-width:0!important;
        height:34px!important;
        min-height:34px!important;
        align-items:center!important;
        justify-content:center!important;
        gap:5px!important;
        margin:0!important;
        padding:0 10px!important;
        border:0!important;
        border-radius:11px!important;
        color:#fff!important;
        font-size:12px!important;
        font-weight:700!important;
        line-height:1!important;
        white-space:nowrap!important;
        text-decoration:none!important;
        box-shadow:none!important;
        transform:none!important;
    }

    .oa-mobile-action:hover,
    .oa-mobile-action:focus,
    .oa-mobile-action:active{
        color:#fff!important;
        transform:none!important;
        filter:none!important;
    }

    .oa-mobile-action--balance{
        background:linear-gradient(135deg,#12d678,#08b764)!important;
    }

    .oa-mobile-action--listing{
        background:linear-gradient(135deg,#ffbe00,#f39a00)!important;
    }

    .oa-mobile-action__icon{
        display:grid!important;
        width:15px!important;
        min-width:15px!important;
        height:15px!important;
        place-items:center!important;
        border:1.6px solid currentColor!important;
        border-radius:50%!important;
        font-size:9px!important;
        font-weight:800!important;
        line-height:1!important;
    }

    .oa-mobile-action__icon--wallet{
        border:0!important;
        border-radius:3px!important;
    }

    .oa-mobile-icon-btn{
        position:relative!important;
        display:inline-flex!important;
        flex:0 0 36px!important;
        width:36px!important;
        min-width:36px!important;
        max-width:36px!important;
        height:36px!important;
        min-height:36px!important;
        align-items:center!important;
        justify-content:center!important;
        margin:0!important;
        padding:0!important;
        border:1px solid rgba(255,255,255,.07)!important;
        border-radius:11px!important;
        color:#c8d2e2!important;
        background:#151e2b!important;
        text-decoration:none!important;
        box-shadow:none!important;
    }


    /* Mobil header artık yalnız Mesajlar + Bildirimler + Hesap alanını taşır. */
    .oa-mobile-header-bar > .oa-mobile-icon-btn:first-child{
        margin-left:auto!important;
    }

    .oa-mobile-profile{
        -webkit-appearance:none!important;
        appearance:none!important;
        display:flex!important;
        flex:1 1 auto!important;
        width:auto!important;
        min-width:96px!important;
        max-width:118px!important;
        height:36px!important;
        min-height:36px!important;
        align-items:center!important;
        justify-content:flex-start!important;
        gap:5px!important;
        margin:0!important;
        padding:3px 6px 3px 4px!important;
        border:1px solid rgba(255,255,255,.13)!important;
        border-radius:11px!important;
        color:#fff!important;
        background:#141c28!important;
        background-image:none!important;
        box-shadow:none!important;
        cursor:pointer!important;
        overflow:hidden!important;
    }

    .oa-mobile-profile__avatar{
        display:block!important;
        flex:0 0 28px!important;
        width:28px!important;
        min-width:28px!important;
        height:28px!important;
        margin:0!important;
        padding:0!important;
        border:0!important;
        border-radius:8px!important;
        object-fit:cover!important;
        background:#202938!important;
    }

    .oa-mobile-profile__balance{
        display:block!important;
        flex:1 1 auto!important;
        min-width:0!important;
        overflow:visible!important;
        color:#ffffff!important;
        font-size:10.5px!important;
        font-weight:700!important;
        line-height:1!important;
        letter-spacing:-.15px!important;
        text-overflow:clip!important;
        white-space:nowrap!important;
    }

    .oa-mobile-header-bar--guest{
        justify-content:flex-end!important;
    }

    .oa-mobile-auth-btn{
        min-height:36px!important;
        padding:0 14px!important;
        border:0!important;
        border-radius:11px!important;
        color:#fff!important;
        font-size:12px!important;
        font-weight:700!important;
    }
    .oa-mobile-auth-btn--register{background:#f0a400!important;}
    .oa-mobile-auth-btn--login{background:#08b764!important;}
}

@media (max-width:390px){
    .oa-mobile-header-bar{gap:4px!important;padding-left:0!important;padding-right:0!important;}
    .oa-mobile-action{height:34px!important;min-height:34px!important;padding:0 8px!important;font-size:12px!important;}
    .oa-mobile-icon-btn{flex-basis:34px!important;width:34px!important;min-width:34px!important;max-width:34px!important;height:34px!important;min-height:34px!important;}
    .oa-mobile-profile{min-width:90px!important;max-width:108px!important;height:34px!important;min-height:34px!important;}
    .oa-mobile-profile__avatar{flex-basis:26px!important;width:26px!important;min-width:26px!important;height:26px!important;}
    .oa-mobile-profile__balance{font-size:10px!important;color:#fff!important;overflow:visible!important;text-overflow:clip!important;}
}

@media (min-width:768px){
    .wd-header-html:has(.oa-mobile-header-bar),
    .wd-header-text:has(.oa-mobile-header-bar),
    .wd-header-element:has(.oa-mobile-header-bar){display:none!important;}
}

/* ============================================================
   v1.1.13 — Bağımsız mobil sepet kısa kodu
   [oyunadasi_mobile_cart]
   Woodmart mini-cart/off-canvas tetiklemez, doğrudan sepete gider.
============================================================ */
.oa-mobile-cart-direct{
    display:none!important;
}

@media (max-width:767px){
    .oa-mobile-cart-direct{
        position:relative!important;
        display:inline-flex!important;
        align-items:center!important;
        justify-content:center!important;
        width:42px!important;
        min-width:42px!important;
        height:42px!important;
        min-height:42px!important;
        margin:0!important;
        padding:0!important;
        border:1px solid rgba(255,255,255,.10)!important;
        border-radius:11px!important;
        color:#f2b400!important;
        background:#171c24!important;
        text-decoration:none!important;
        box-shadow:none!important;
        transition:background .18s ease,border-color .18s ease!important;
        -webkit-tap-highlight-color:transparent;
    }

    .oa-mobile-cart-direct:hover,
    .oa-mobile-cart-direct:focus,
    .oa-mobile-cart-direct:active{
        color:#f2b400!important;
        background:#1d2430!important;
        border-color:rgba(242,180,0,.24)!important;
        transform:none!important;
    }

    .oa-mobile-cart-direct svg{
        width:21px!important;
        height:21px!important;
        display:block!important;
        flex:0 0 auto!important;
    }

    .oa-mobile-cart-direct__badge{
        position:absolute!important;
        top:-6px!important;
        right:-6px!important;
        display:flex!important;
        align-items:center!important;
        justify-content:center!important;
        min-width:18px!important;
        height:18px!important;
        padding:0 4px!important;
        border:2px solid #10151d!important;
        border-radius:999px!important;
        background:#6557d9!important;
        color:#fff!important;
        font-family:'Poppins',sans-serif!important;
        font-size:9px!important;
        line-height:1!important;
        font-weight:700!important;
        box-sizing:border-box!important;
    }

    .oa-mobile-cart-direct__badge.is-empty{
        display:none!important;
    }
}

/* ============================================================
   v1.1.14 — Mobil doğrudan sepet ikonu (referans görünüm)
============================================================ */
@media (max-width:767px){
    .oa-mobile-cart-direct{
        width:42px!important;
        min-width:42px!important;
        height:42px!important;
        min-height:42px!important;
        border:0!important;
        border-radius:10px!important;
        color:#f5b600!important;
        background:rgba(245,182,0,.12)!important;
        box-shadow:inset 0 0 0 1px rgba(245,182,0,.025)!important;
    }
    .oa-mobile-cart-direct:hover,
    .oa-mobile-cart-direct:focus,
    .oa-mobile-cart-direct:active{
        color:#ffc20a!important;
        background:rgba(245,182,0,.16)!important;
        border:0!important;
        box-shadow:inset 0 0 0 1px rgba(245,182,0,.05)!important;
    }
    .oa-mobile-cart-direct svg{
        width:20px!important;
        height:20px!important;
        stroke-width:1.85!important;
    }
    .oa-mobile-cart-direct__badge{
        top:-5px!important;
        right:-5px!important;
        min-width:16px!important;
        height:16px!important;
        padding:0 4px!important;
        border:2px solid #0f141c!important;
        background:#6557df!important;
        font-size:8px!important;
    }
}

/* ============================================================
   v1.1.15 — Mobil header sepet genişlik düzeltmesi
   Woodmart .reset-last-child > *:last-child { width:100% } kuralını ezer.
============================================================ */
@media (max-width:767px){
    .reset-last-child:has(.oa-mobile-cart-direct),
    .wd-header-html:has(.oa-mobile-cart-direct),
    .wd-header-text:has(.oa-mobile-cart-direct),
    .wd-header-element:has(.oa-mobile-cart-direct){
        width:auto!important;
        min-width:42px!important;
        max-width:42px!important;
        flex:0 0 42px!important;
        padding-left:0!important;
        padding-right:0!important;
        margin-left:0!important;
        margin-right:0!important;
    }

    .reset-last-child:has(.oa-mobile-cart-direct) > *:last-child,
    .wd-header-html:has(.oa-mobile-cart-direct) > *:last-child,
    .wd-header-text:has(.oa-mobile-cart-direct) > *:last-child,
    .wd-header-element:has(.oa-mobile-cart-direct) > *:last-child{
        width:42px!important;
        min-width:42px!important;
        max-width:42px!important;
        flex:0 0 42px!important;
        margin:0!important;
        padding:0!important;
    }

    .oa-mobile-cart-direct{
        width:42px!important;
        min-width:42px!important;
        max-width:42px!important;
        flex:0 0 42px!important;
        height:42px!important;
        min-height:42px!important;
        max-height:42px!important;
        padding:0!important;
        margin:0!important;
        border:0!important;
        border-radius:10px!important;
        background:rgba(245,182,0,.13)!important;
        color:#f6b800!important;
        overflow:visible!important;
    }

    .oa-mobile-cart-direct svg{
        width:18px!important;
        height:18px!important;
    }

    .oa-mobile-cart-direct__badge{
        top:-4px!important;
        right:-4px!important;
        min-width:15px!important;
        width:auto!important;
        height:15px!important;
        min-height:15px!important;
        padding:0 4px!important;
        border:2px solid #0e141d!important;
        border-radius:999px!important;
        font-size:8px!important;
        line-height:11px!important;
    }
}


/* ============================================================
   v1.2.0 — Sepet Drawer + Ödeme Modalı
   Sepet artık ayrı sayfaya gitmez; mesajlar/bildirimler gibi sağdan açılır.
============================================================ */
html.oa-cart-drawer-open,
body.oa-cart-drawer-open,
html.oa-payment-modal-open,
body.oa-payment-modal-open{overflow:hidden!important;}

.oa-header-square--cart,
.oa-mobile-cart-direct{
    cursor:pointer!important;
    font-family:'Poppins',sans-serif!important;
    appearance:none!important;
    -webkit-appearance:none!important;
}
.oa-header-square--cart{position:relative!important;}
.oa-cart-count-badge.is-empty{display:none!important;}

.oa-cart-drawer-root,
.oa-payment-modal-root{
    position:fixed!important;
    inset:0!important;
    z-index:2147483000!important;
    visibility:hidden!important;
    pointer-events:none!important;
    font-family:'Poppins',sans-serif!important;
}
.oa-cart-drawer-root.is-open,
.oa-payment-modal-root.is-open{
    visibility:visible!important;
    pointer-events:auto!important;
}
.oa-cart-drawer-root *,
.oa-payment-modal-root *{box-sizing:border-box!important;font-family:'Poppins',sans-serif!important;}

.oa-cart-drawer-overlay,
.oa-payment-modal-overlay{
    position:absolute!important;
    inset:0!important;
    width:100%!important;
    height:100%!important;
    margin:0!important;
    padding:0!important;
    border:0!important;
    border-radius:0!important;
    background:rgba(0,0,0,.64)!important;
    opacity:0!important;
    transition:opacity .25s ease!important;
    cursor:default!important;
}
.oa-cart-drawer-root.is-open .oa-cart-drawer-overlay,
.oa-payment-modal-root.is-open .oa-payment-modal-overlay{opacity:1!important;}

.oa-cart-drawer{
    position:absolute!important;
    top:0!important;
    right:0!important;
    display:flex!important;
    flex-direction:column!important;
    width:min(430px,100vw)!important;
    height:100vh!important;
    height:100dvh!important;
    min-height:0!important;
    max-height:100dvh!important;
    overflow:hidden!important;
    color:#f7f9fc!important;
    background:#090d13!important;
    border-left:1px solid #222a36!important;
    box-shadow:-20px 0 55px rgba(0,0,0,.42)!important;
    transform:translate3d(102%,0,0)!important;
    transition:transform .34s cubic-bezier(.22,.8,.22,1)!important;
}
.oa-cart-drawer-root.is-open .oa-cart-drawer{transform:translate3d(0,0,0)!important;}
.oa-cart-drawer__header{
    display:flex!important;
    align-items:center!important;
    justify-content:space-between!important;
    flex:0 0 72px!important;
    height:72px!important;
    padding:0 22px!important;
    border-bottom:1px solid #222a36!important;
    background:#0d121a!important;
}
.oa-cart-drawer__title{display:flex!important;align-items:center!important;gap:10px!important;}
.oa-cart-drawer__title-icon{
    display:grid!important;
    place-items:center!important;
    width:36px!important;
    height:36px!important;
    border-radius:9px!important;
    color:#3377ff!important;
    background:#10234b!important;
}
.oa-cart-drawer__title strong{color:#fff!important;font-size:16px!important;line-height:1!important;font-weight:700!important;}
.oa-cart-drawer__close{
    position:relative!important;
    width:34px!important;
    height:34px!important;
    min-width:34px!important;
    padding:0!important;
    border:0!important;
    border-radius:8px!important;
    background:transparent!important;
    cursor:pointer!important;
}
.oa-cart-drawer__close span{position:absolute!important;left:8px!important;top:16px!important;width:20px!important;height:2px!important;background:#8f98a7!important;border-radius:2px!important;}
.oa-cart-drawer__close span:first-child{transform:rotate(45deg)!important;}
.oa-cart-drawer__close span:last-child{transform:rotate(-45deg)!important;}

.oa-cart-drawer__content{position:relative!important;display:flex!important;flex:1 1 auto!important;min-height:0!important;overflow:hidden!important;flex-direction:column!important;background:#090d13!important;}
.oa-cart-drawer__scroll{flex:1 1 0%!important;min-height:0!important;max-height:100%!important;overflow-x:hidden!important;overflow-y:auto!important;-webkit-overflow-scrolling:touch!important;overscroll-behavior:contain!important;touch-action:pan-y!important;padding:20px 24px 16px!important;scrollbar-width:thin;scrollbar-color:#3b4655 transparent;}
.oa-cart-drawer__scroll::-webkit-scrollbar{width:5px!important;}
.oa-cart-drawer__scroll::-webkit-scrollbar-thumb{background:#3b4655!important;border-radius:999px!important;}
.oa-cart-drawer.is-loading .oa-cart-drawer__content:after{
    content:''!important;position:absolute!important;inset:0!important;z-index:20!important;background:rgba(9,13,19,.44)!important;backdrop-filter:blur(1px)!important;pointer-events:all!important;
}

.oa-cart-items-drawer{display:grid!important;align-content:start!important;gap:14px!important;}
.oa-cart-drawer-item{
    display:grid!important;
    grid-template-columns:72px minmax(0,1fr)!important;
    gap:16px!important;
    min-width:0!important;
    padding:15px!important;
    border:1px solid #2b333f!important;
    border-radius:13px!important;
    background:#11161e!important;
}
.oa-cart-drawer-item__thumb,
.oa-cart-drawer-item__thumb img,
.oa-cart-digital-placeholder{
    display:grid!important;
    place-items:center!important;
    width:72px!important;
    min-width:72px!important;
    height:72px!important;
    border-radius:11px!important;
}
.oa-cart-drawer-item__thumb{overflow:hidden!important;background:#171d27!important;}
.oa-cart-drawer-item__thumb img{object-fit:cover!important;margin:0!important;}
.oa-cart-digital-placeholder{color:#607cff!important;background:linear-gradient(145deg,#18223a,#111927)!important;}
.oa-cart-drawer-item__main{display:flex!important;min-width:0!important;flex-direction:column!important;justify-content:space-between!important;gap:12px!important;}
.oa-cart-drawer-item__top{display:flex!important;align-items:flex-start!important;justify-content:space-between!important;gap:10px!important;min-width:0!important;}
.oa-cart-drawer-item__top>div{min-width:0!important;}
.oa-cart-drawer-item__name{display:block!important;margin:0 0 6px!important;color:#fff!important;font-size:13px!important;line-height:1.35!important;font-weight:700!important;overflow-wrap:anywhere!important;}
.oa-cart-drawer-item__source{display:inline-flex!important;align-items:center!important;min-height:25px!important;padding:0 10px!important;border-radius:999px!important;color:#8490a1!important;background:#1a212c!important;font-size:10px!important;font-weight:500!important;}
.oa-cart-icon-btn{
    display:grid!important;place-items:center!important;flex:0 0 31px!important;width:31px!important;height:31px!important;min-width:31px!important;padding:0!important;border:1px solid #293443!important;border-radius:9px!important;color:#78879a!important;background:#141b24!important;cursor:pointer!important;
}
.oa-cart-icon-btn:hover{color:#ff6675!important;border-color:rgba(255,94,112,.35)!important;background:rgba(255,73,96,.07)!important;}
.oa-cart-drawer-item__bottom{display:flex!important;align-items:center!important;justify-content:space-between!important;gap:10px!important;}
.oa-cart-drawer-item__price,.oa-cart-drawer-item__price .amount{color:#4d6dff!important;font-size:14px!important;line-height:1!important;font-weight:700!important;}
.oa-cart-qty-control{display:grid!important;grid-template-columns:31px 34px 31px!important;height:35px!important;overflow:hidden!important;border:1px solid #303945!important;border-radius:11px!important;background:#151b24!important;}
.oa-cart-qty-control button,.oa-cart-qty-control span{display:grid!important;place-items:center!important;width:auto!important;min-width:0!important;height:33px!important;margin:0!important;padding:0!important;border:0!important;border-radius:0!important;color:#fff!important;background:transparent!important;font-size:13px!important;line-height:1!important;font-weight:600!important;}
.oa-cart-qty-control button{color:#b6bfcc!important;cursor:pointer!important;}
.oa-cart-qty-control button:hover:not(:disabled){color:#fff!important;background:#1c2531!important;}
.oa-cart-qty-control button:disabled{opacity:.35!important;cursor:not-allowed!important;}

.oa-cart-code-section{margin-top:20px!important;}
.oa-cart-code-section__label{display:flex!important;align-items:center!important;gap:8px!important;margin:0 0 10px!important;color:#f2f4f7!important;}
.oa-cart-code-section__label span{color:#5574ff!important;font-size:13px!important;}
.oa-cart-code-section__label strong{font-size:12px!important;font-weight:700!important;}
.oa-cart-code-row{display:grid!important;grid-template-columns:minmax(0,1fr) 78px!important;gap:7px!important;padding:5px!important;border:1px solid #2b333f!important;border-radius:11px!important;background:#10151d!important;}
.oa-cart-code-row input{width:100%!important;height:36px!important;min-height:36px!important;margin:0!important;padding:0 12px!important;border:0!important;border-radius:7px!important;outline:0!important;color:#fff!important;background:transparent!important;box-shadow:none!important;font-size:11px!important;font-weight:500!important;}
.oa-cart-code-row input::placeholder{color:#6f7a89!important;opacity:1!important;}
.oa-cart-code-row button{width:78px!important;height:36px!important;min-height:36px!important;margin:0!important;padding:0!important;border:0!important;border-radius:9px!important;color:#fff!important;background:#15d987!important;box-shadow:none!important;font-size:11px!important;font-weight:700!important;text-transform:none!important;cursor:pointer!important;}
.oa-cart-code-applied{display:block!important;margin:7px 4px 0!important;color:#35d994!important;font-size:9px!important;font-weight:600!important;}

.oa-cart-total-card{display:grid!important;gap:0!important;margin-top:24px!important;padding:13px 18px!important;border:1px solid #2b333f!important;border-radius:13px!important;background:#11161e!important;}
.oa-cart-total-card>div{display:flex!important;align-items:center!important;justify-content:space-between!important;gap:16px!important;min-height:43px!important;border-bottom:1px dashed #2c3440!important;}
.oa-cart-total-card>div:last-child{border-bottom:0!important;}
.oa-cart-total-card span{color:#9aa5b5!important;font-size:11px!important;font-weight:500!important;}
.oa-cart-total-card strong,.oa-cart-total-card strong .amount{color:#fff!important;font-size:12px!important;font-weight:700!important;}
.oa-cart-total-card__pay strong,.oa-cart-total-card__pay strong .amount{font-size:13px!important;}
.oa-cart-total-card__discount strong,.oa-cart-total-card__discount strong .amount{color:#22db90!important;}
.oa-cart-total-card__missing strong,.oa-cart-total-card__missing strong .amount{color:#ff5263!important;}

.oa-cart-drawer__footer{display:grid!important;grid-template-columns:96px minmax(0,1fr)!important;gap:9px!important;flex:0 0 auto!important;padding:16px 24px 18px!important;border-top:1px solid #1e2631!important;background:#090d13!important;}
.oa-cart-clear-btn,.oa-cart-pay-btn{display:flex!important;align-items:center!important;justify-content:center!important;gap:8px!important;height:56px!important;min-height:56px!important;margin:0!important;padding:0 14px!important;border-radius:11px!important;font-size:12px!important;line-height:1!important;font-weight:700!important;cursor:pointer!important;text-transform:none!important;}
.oa-cart-clear-btn{border:1px solid #2e3744!important;color:#fff!important;background:#11161e!important;}
.oa-cart-pay-btn{border:0!important;color:#fff!important;background:linear-gradient(135deg,#5269ff,#334bdc)!important;box-shadow:0 10px 24px rgba(57,76,220,.22)!important;}
.oa-cart-pay-btn span{font-size:22px!important;line-height:.8!important;}

.oa-cart-empty{display:flex!important;flex:1 1 auto!important;min-height:380px!important;padding:35px!important;align-items:center!important;justify-content:center!important;flex-direction:column!important;text-align:center!important;}
.oa-cart-empty__icon{font-size:32px!important;margin-bottom:10px!important;}
.oa-cart-empty strong{color:#fff!important;font-size:18px!important;font-weight:700!important;}
.oa-cart-empty p{max-width:300px!important;margin:8px 0 18px!important;color:#8c98a8!important;font-size:11px!important;line-height:1.6!important;}
.oa-cart-empty button{height:40px!important;padding:0 15px!important;border:0!important;border-radius:9px!important;color:#fff!important;background:#4059e9!important;font-size:11px!important;font-weight:600!important;cursor:pointer!important;}
.oa-cart-toast{position:sticky!important;top:0!important;z-index:30!important;margin:0 20px 0!important;padding:10px 12px!important;border-radius:9px!important;color:#c6f8df!important;background:#0e3225!important;border:1px solid rgba(46,219,142,.22)!important;font-size:10px!important;font-weight:600!important;}
.oa-cart-toast--error{color:#ffd1d5!important;background:#321219!important;border-color:rgba(255,82,99,.26)!important;}

/* Ödeme popup */
.oa-payment-modal-root{z-index:2147483100!important;}
.oa-payment-modal-overlay{background:rgba(0,0,0,.72)!important;backdrop-filter:blur(2px)!important;}
.oa-payment-modal{
    position:absolute!important;left:50%!important;top:50%!important;width:min(740px,calc(100vw - 28px))!important;max-height:min(820px,calc(100dvh - 28px))!important;overflow:auto!important;transform:translate(-50%,-47%) scale(.985)!important;opacity:0!important;border:1px solid #242d38!important;border-radius:15px!important;color:#fff!important;background:#11161e!important;box-shadow:0 30px 100px rgba(0,0,0,.55)!important;transition:transform .2s ease,opacity .2s ease!important;
}
.oa-payment-modal-root.is-open .oa-payment-modal{transform:translate(-50%,-50%) scale(1)!important;opacity:1!important;}
.oa-payment-modal__header{display:flex!important;align-items:center!important;gap:10px!important;height:74px!important;padding:0 23px!important;border-bottom:1px solid #2a323e!important;background:#151a22!important;}
.oa-payment-modal__status-icon{display:grid!important;place-items:center!important;width:34px!important;height:34px!important;border-radius:10px!important;color:#ff4f62!important;background:#33131a!important;font-size:17px!important;font-weight:800!important;}
.oa-payment-modal__header strong{font-size:17px!important;font-weight:700!important;}
.oa-payment-modal__close{margin-left:auto!important;width:32px!important;height:32px!important;padding:0!important;border:0!important;background:transparent!important;color:#949eaa!important;font-size:29px!important;line-height:1!important;font-weight:300!important;cursor:pointer!important;}
.oa-payment-modal__body{padding:24px!important;}
.oa-payment-intro{padding:16px!important;border:1px solid rgba(255,79,98,.28)!important;border-radius:11px!important;background:rgba(82,20,31,.24)!important;}
.oa-payment-intro>div{display:flex!important;align-items:center!important;justify-content:space-between!important;gap:16px!important;}
.oa-payment-intro strong{color:#ff5365!important;font-size:12px!important;font-weight:700!important;}
.oa-payment-intro span,.oa-payment-intro span .amount{color:#fff!important;font-size:13px!important;font-weight:800!important;}
.oa-payment-intro p{margin:8px 0 0!important;color:#949eac!important;font-size:10px!important;line-height:1.5!important;}
.oa-payment-method-label{margin:21px 0 11px!important;color:#8d97a5!important;font-size:10px!important;font-weight:800!important;letter-spacing:.04em!important;}
.oa-payment-methods{display:grid!important;grid-template-columns:1fr 1fr!important;gap:10px!important;}
.oa-payment-method{display:flex!important;align-items:center!important;justify-content:center!important;min-height:108px!important;padding:15px 8px!important;border:1px solid #303946!important;border-radius:12px!important;color:#fff!important;background:#121820!important;flex-direction:column!important;cursor:pointer!important;transition:border-color .18s ease,background .18s ease,transform .18s ease!important;text-transform:none!important;}
.oa-payment-method:hover{border-color:#5068ff!important;background:#151d2b!important;transform:translateY(-1px)!important;}
.oa-payment-method__icon{display:grid!important;place-items:center!important;height:34px!important;margin-bottom:7px!important;color:#4f6dff!important;}
.oa-payment-method strong{font-size:12px!important;font-weight:700!important;}
.oa-payment-method small{margin-top:3px!important;color:#8e99a9!important;font-size:9px!important;font-weight:500!important;}
.oa-payment-method.is-loading{opacity:.6!important;pointer-events:none!important;}
.oa-payment-modal__message{min-height:0!important;margin-top:11px!important;color:#ff6877!important;font-size:10px!important;font-weight:600!important;line-height:1.45!important;}
.oa-payment-modal__message:empty{display:none!important;}
.oa-payment-modal__message.is-success{color:#2ddb93!important;}
.oa-payment-modal__footer{display:flex!important;justify-content:flex-end!important;margin:20px -24px -24px!important;padding:15px 24px!important;border-top:1px solid #222a35!important;background:#0e131a!important;}
.oa-payment-modal__footer button{height:42px!important;padding:0 22px!important;border:1px solid #303946!important;border-radius:9px!important;color:#f4f6f8!important;background:#191f28!important;font-size:11px!important;font-weight:600!important;cursor:pointer!important;}

/* Havale / EFT adımı */
.oa-bank-step__success{display:flex!important;align-items:center!important;gap:11px!important;margin-bottom:14px!important;padding:13px!important;border:1px solid rgba(43,219,147,.23)!important;border-radius:11px!important;background:rgba(20,112,75,.12)!important;}
.oa-bank-step__success>span{display:grid!important;place-items:center!important;width:30px!important;height:30px!important;border-radius:9px!important;color:#062217!important;background:#2cda93!important;font-size:14px!important;font-weight:900!important;}
.oa-bank-step__success strong,.oa-bank-step__success small{display:block!important;}
.oa-bank-step__success strong{font-size:12px!important;font-weight:700!important;}
.oa-bank-step__success small{margin-top:2px!important;color:#8f9ba8!important;font-size:9px!important;}
.oa-bank-order-ref{display:flex!important;align-items:center!important;justify-content:space-between!important;margin-bottom:12px!important;padding:12px 14px!important;border:1px solid #2c3541!important;border-radius:10px!important;background:#0e141c!important;}
.oa-bank-order-ref span{color:#8e9aaa!important;font-size:10px!important;}
.oa-bank-order-ref strong{color:#fff!important;font-size:13px!important;}
.oa-bank-details-card{display:grid!important;border:1px solid #2b3440!important;border-radius:12px!important;background:#10161e!important;overflow:hidden!important;}
.oa-bank-details-card>div{position:relative!important;display:grid!important;gap:4px!important;padding:12px 14px!important;border-bottom:1px solid #232b35!important;}
.oa-bank-details-card>div:last-child{border-bottom:0!important;}
.oa-bank-details-card span{color:#818d9e!important;font-size:9px!important;font-weight:500!important;}
.oa-bank-details-card strong{padding-right:60px!important;color:#fff!important;font-size:11px!important;line-height:1.5!important;font-weight:700!important;word-break:break-word!important;}
.oa-bank-details-card__iban button{position:absolute!important;right:10px!important;bottom:11px!important;height:29px!important;padding:0 9px!important;border:1px solid #33415a!important;border-radius:7px!important;color:#8ea0ff!important;background:#171e2d!important;font-size:9px!important;font-weight:600!important;cursor:pointer!important;}
.oa-bank-warning{display:flex!important;align-items:flex-start!important;gap:9px!important;margin:13px 0!important;padding:12px!important;border:1px solid rgba(255,184,61,.23)!important;border-radius:10px!important;background:rgba(120,78,8,.10)!important;}
.oa-bank-warning>span{display:grid!important;place-items:center!important;flex:0 0 24px!important;width:24px!important;height:24px!important;border-radius:7px!important;color:#ffc251!important;background:rgba(255,194,81,.12)!important;font-size:12px!important;font-weight:800!important;}
.oa-bank-warning p{margin:1px 0 0!important;color:#aab3c0!important;font-size:9.5px!important;line-height:1.6!important;}
.oa-bank-warning strong{color:#fff!important;font-weight:700!important;}
.oa-bank-confirm-btn{display:flex!important;align-items:center!important;justify-content:center!important;gap:8px!important;width:100%!important;height:48px!important;margin:0!important;padding:0 16px!important;border:0!important;border-radius:10px!important;color:#fff!important;background:linear-gradient(135deg,#4f68ff,#334bdc)!important;font-size:11px!important;font-weight:700!important;cursor:pointer!important;text-transform:none!important;}
.oa-bank-confirm-btn.is-loading{opacity:.6!important;pointer-events:none!important;}
.oa-bank-back-btn{display:block!important;width:100%!important;margin:10px 0 0!important;padding:4px!important;border:0!important;color:#8995a5!important;background:transparent!important;font-size:9px!important;font-weight:500!important;cursor:pointer!important;text-transform:none!important;}

.oa-cart-page-opener{display:inline-flex!important;height:42px!important;align-items:center!important;padding:0 16px!important;border:0!important;border-radius:9px!important;color:#fff!important;background:#4059e9!important;font-size:11px!important;font-weight:600!important;cursor:pointer!important;}

@media (max-width:767px){
    .oa-cart-drawer{width:100vw!important;max-width:430px!important;}
    .oa-cart-drawer__header{height:64px!important;flex-basis:64px!important;padding:0 17px!important;}
    .oa-cart-drawer__scroll{padding:16px 15px 12px!important;}
    .oa-cart-drawer-item{grid-template-columns:66px minmax(0,1fr)!important;gap:12px!important;padding:12px!important;}
    .oa-cart-drawer-item__thumb,.oa-cart-drawer-item__thumb img,.oa-cart-digital-placeholder{width:66px!important;min-width:66px!important;height:66px!important;}
    .oa-cart-drawer-item__name{font-size:12px!important;}
    .oa-cart-drawer__footer{grid-template-columns:88px minmax(0,1fr)!important;padding:12px 15px max(14px,env(safe-area-inset-bottom))!important;}
    .oa-cart-clear-btn,.oa-cart-pay-btn{height:51px!important;min-height:51px!important;font-size:11px!important;}
    .oa-payment-modal{width:calc(100vw - 20px)!important;max-height:calc(100dvh - 20px)!important;border-radius:14px!important;}
    .oa-payment-modal__header{height:66px!important;padding:0 17px!important;}
    .oa-payment-modal__body{padding:17px!important;}
    .oa-payment-modal__footer{margin:17px -17px -17px!important;padding:13px 17px!important;}
    .oa-payment-method{min-height:100px!important;}
}

@media (max-width:380px){
    .oa-cart-drawer-item{grid-template-columns:60px minmax(0,1fr)!important;}
    .oa-cart-drawer-item__thumb,.oa-cart-drawer-item__thumb img,.oa-cart-digital-placeholder{width:60px!important;min-width:60px!important;height:60px!important;}
    .oa-cart-code-row{grid-template-columns:minmax(0,1fr) 70px!important;}
    .oa-cart-code-row button{width:70px!important;}
}


/* ============================================================
   v1.2.1 — Masaüstü sepet butonu Woodmart button reset
   Cart öğesi <button> olduğu için temanın global button stillerini kesin olarak ezer.
============================================================ */
@media (min-width: 769px){
    .oa-header-auth.oa-header-auth--logged button.oa-header-square.oa-header-square--cart{
        display:inline-flex!important;
        align-items:center!important;
        justify-content:center!important;
        flex:0 0 48px!important;
        width:48px!important;
        min-width:48px!important;
        max-width:48px!important;
        height:48px!important;
        min-height:48px!important;
        max-height:48px!important;
        margin:0!important;
        padding:0!important;
        border:1px solid rgba(255,255,255,.03)!important;
        border-radius:13px!important;
        background:#2a2416!important;
        background-color:#2a2416!important;
        color:#ffb800!important;
        box-shadow:none!important;
        outline:0!important;
        font-size:0!important;
        line-height:1!important;
        text-indent:0!important;
        text-transform:none!important;
        letter-spacing:normal!important;
        opacity:1!important;
        appearance:none!important;
        -webkit-appearance:none!important;
        overflow:visible!important;
    }
    .oa-header-auth.oa-header-auth--logged button.oa-header-square.oa-header-square--cart:hover,
    .oa-header-auth.oa-header-auth--logged button.oa-header-square.oa-header-square--cart:focus,
    .oa-header-auth.oa-header-auth--logged button.oa-header-square.oa-header-square--cart:active{
        width:48px!important;
        min-width:48px!important;
        max-width:48px!important;
        height:48px!important;
        min-height:48px!important;
        max-height:48px!important;
        padding:0!important;
        border-color:rgba(255,184,0,.08)!important;
        background:#2a2416!important;
        background-color:#2a2416!important;
        color:#ffb800!important;
        box-shadow:none!important;
        transform:none!important;
        filter:none!important;
    }
    .oa-header-auth.oa-header-auth--logged button.oa-header-square.oa-header-square--cart svg{
        display:block!important;
        width:21px!important;
        height:21px!important;
        min-width:21px!important;
        min-height:21px!important;
        margin:0!important;
        padding:0!important;
        color:#ffb800!important;
        opacity:1!important;
        pointer-events:none!important;
    }
    .oa-header-auth.oa-header-auth--logged button.oa-header-square.oa-header-square--cart .oa-header-badge{
        top:-4px!important;
        right:-4px!important;
        margin:0!important;
        color:#fff!important;
        background:#6555e8!important;
        line-height:18px!important;
    }
}


/* ============================================================
   v1.2.2 — Masaüstü sepet ikonu kesin düzeltme
   Woodmart global button stilinden tamamen çıkarıldı.
============================================================ */
@media (min-width:768px){
    .oa-header-auth--logged > a.oa-header-square.oa-header-square--cart{
        position:relative!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;
        flex:0 0 48px!important;width:48px!important;min-width:48px!important;max-width:48px!important;
        height:48px!important;min-height:48px!important;max-height:48px!important;
        margin:0!important;padding:0!important;border:1px solid rgba(255,255,255,.03)!important;border-radius:13px!important;
        background:#2a2416!important;background-color:#2a2416!important;color:#ffb800!important;
        box-shadow:none!important;text-decoration:none!important;overflow:visible!important;
    }
    .oa-header-auth--logged > a.oa-header-square.oa-header-square--cart:hover,
    .oa-header-auth--logged > a.oa-header-square.oa-header-square--cart:focus,
    .oa-header-auth--logged > a.oa-header-square.oa-header-square--cart:active{
        background:#332a17!important;background-color:#332a17!important;color:#ffc20a!important;
        border-color:rgba(255,184,0,.10)!important;transform:none!important;box-shadow:none!important;
    }
    .oa-header-auth--logged > a.oa-header-square.oa-header-square--cart svg{
        display:block!important;flex:0 0 21px!important;width:21px!important;height:21px!important;margin:0!important;color:currentColor!important;
    }
    .oa-header-auth--logged > a.oa-header-square.oa-header-square--cart .oa-header-badge{
        position:absolute!important;top:-4px!important;right:-4px!important;min-width:18px!important;width:auto!important;height:18px!important;
        margin:0!important;padding:0 5px!important;border:0!important;border-radius:999px!important;background:#6555e8!important;color:#fff!important;
        font-size:10px!important;line-height:18px!important;font-weight:700!important;text-align:center!important;
    }
}

/* v1.3.0 - Normal ürün alışverişi yalnız OyunAdası bakiyesi ile ödenir. */
.oa-payment-intro--success{border-color:rgba(42,219,150,.22)!important;background:rgba(17,96,69,.14)!important;}
.oa-payment-intro--success strong{color:#2ddb98!important;}
.oa-cart-wallet-summary{display:grid!important;gap:0!important;margin-top:14px!important;padding:4px 15px!important;border:1px solid #2b3544!important;border-radius:11px!important;background:#111820!important;}
.oa-cart-wallet-summary>div{display:flex!important;align-items:center!important;justify-content:space-between!important;gap:15px!important;min-height:43px!important;border-bottom:1px dashed #2a3340!important;}
.oa-cart-wallet-summary>div:last-child{border-bottom:0!important;}
.oa-cart-wallet-summary span{color:#8995a5!important;font-size:10px!important;font-weight:500!important;}
.oa-cart-wallet-summary strong,.oa-cart-wallet-summary strong .amount{color:#fff!important;font-size:12px!important;font-weight:700!important;}
.oa-cart-wallet-summary .is-missing strong,.oa-cart-wallet-summary .is-missing strong .amount{color:#ff596b!important;}
.oa-cart-wallet-summary .is-after strong,.oa-cart-wallet-summary .is-after strong .amount{color:#2ddb98!important;}
.oa-cart-wallet-action{display:flex!important;align-items:center!important;justify-content:center!important;gap:8px!important;width:100%!important;height:50px!important;margin:15px 0 0!important;padding:0 16px!important;border:0!important;border-radius:10px!important;color:#fff!important;background:linear-gradient(135deg,#5068ff,#334bdc)!important;box-shadow:0 10px 24px rgba(51,75,220,.2)!important;font-size:11px!important;font-weight:700!important;text-transform:none!important;cursor:pointer!important;}
.oa-cart-wallet-action:hover{filter:brightness(1.06)!important;}
.oa-cart-wallet-action:disabled,.oa-cart-wallet-action.is-loading{opacity:.55!important;pointer-events:none!important;}
.oa-cart-wallet-action>span{font-size:18px!important;line-height:1!important;}


/* =========================================================
   v1.3.3 — Mobil header sadeleştirme
   Bakiye / İlan aksiyonları kaldırıldı; arama ayrı shortcode ile kullanılır.
   ========================================================= */
@media (max-width:767px){
    .oa-mobile-header-bar:not(.oa-mobile-header-bar--guest){
        justify-content:flex-end!important;
    }

    .oa-mobile-header-bar:not(.oa-mobile-header-bar--guest) > .oa-mobile-icon-btn:first-child{
        margin-left:auto!important;
    }
}


/* v1.3.4 — Bekleyen bakiye kartı */
@media (max-width:767px){
    .oa-account-balance--pending small,
    .oa-account-balance--pending strong{
        font-weight:500!important;
    }
}


/* =========================================================
   ÖDEME MODALI - REFERANS / İNDİRİM KODU
========================================================= */
.oa-payment-code{
    margin:16px 0;
    padding:16px;
    border:1px solid rgba(255,255,255,.09);
    border-radius:14px;
    background:#111a25;
    font-family:'Poppins',sans-serif;
}
.oa-payment-code.is-applied{
    border-color:rgba(39,223,145,.3);
    background:rgba(19,52,43,.38);
}
.oa-payment-code__head{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:14px;
    margin-bottom:12px;
}
.oa-payment-code__head>div{
    min-width:0;
}
.oa-payment-code__head strong,
.oa-payment-code__head span{
    display:block;
}
.oa-payment-code__head strong{
    margin:0 0 4px;
    color:#fff;
    font-size:13px;
    line-height:1.35;
    font-weight:600;
}
.oa-payment-code__head>div>span{
    color:#8f9aac;
    font-size:11px;
    line-height:1.55;
    font-weight:400;
}
.oa-payment-code__badge{
    flex:none;
    padding:6px 9px;
    border-radius:999px;
    color:#66e9ad;
    background:rgba(39,223,145,.1);
    font-size:11px;
    line-height:1;
    font-weight:600;
}
.oa-payment-code__form{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    gap:9px;
}
.oa-payment-code__form input{
    width:100%;
    min-width:0;
    height:44px;
    margin:0!important;
    padding:0 13px!important;
    border:1px solid rgba(255,255,255,.13)!important;
    border-radius:10px!important;
    outline:none!important;
    background:#0d141d!important;
    color:#fff!important;
    box-shadow:none!important;
    font-family:'Poppins',sans-serif!important;
    font-size:12px!important;
    font-weight:500!important;
}
.oa-payment-code__form input:focus{
    border-color:rgba(83,105,255,.72)!important;
}
.oa-payment-code__form input:disabled{
    opacity:.72;
    cursor:not-allowed;
}
.oa-payment-code__button{
    min-width:94px;
    height:44px;
    margin:0!important;
    padding:0 15px!important;
    border:0!important;
    border-radius:10px!important;
    background:#465df4!important;
    color:#fff!important;
    box-shadow:none!important;
    font-family:'Poppins',sans-serif!important;
    font-size:11px!important;
    line-height:1!important;
    font-weight:600!important;
    cursor:pointer;
}
.oa-payment-code__button.is-remove{
    background:#202a38!important;
}
.oa-payment-code__message{
    min-height:17px;
    margin:9px 0 0!important;
    color:#7f8a9c;
    font-size:11px!important;
    line-height:1.55;
    font-weight:400;
}
.oa-payment-code__message.is-success{color:#62dfa9;}
.oa-payment-code__message.is-error{color:#ff7080;}
.oa-payment-code.is-loading{opacity:.72;}
@media(max-width:560px){
    .oa-payment-code__form{grid-template-columns:1fr;}
    .oa-payment-code__button{width:100%;}
}


/* v1.3.7 - Hemen Satın Al: bağımsız ödeme ve sözleşme onayı */
.oa-payment-modal-root.is-buy-now-mode .oa-payment-modal{
    width:min(740px,calc(100vw - 28px))!important;
}
.oa-buy-now-contracts{
    display:flex!important;
    align-items:flex-start!important;
    gap:11px!important;
    margin:15px 0 0!important;
    padding:13px 14px!important;
    border:1px solid #2b3542!important;
    border-radius:11px!important;
    background:#0d141d!important;
    cursor:pointer!important;
}
.oa-buy-now-contracts>input{
    width:18px!important;
    min-width:18px!important;
    height:18px!important;
    margin:2px 0 0!important;
    accent-color:#4d64f5!important;
}
.oa-buy-now-contracts>span{display:block!important;min-width:0!important;}
.oa-buy-now-contracts strong{display:block!important;color:#fff!important;font-size:11px!important;font-weight:600!important;line-height:1.45!important;}
.oa-buy-now-contracts small{display:block!important;margin-top:4px!important;color:#8e9aaa!important;font-size:10px!important;font-weight:400!important;line-height:1.65!important;}
.oa-buy-now-contracts a{color:#8191ff!important;text-decoration:underline!important;text-underline-offset:2px!important;font-weight:500!important;}
.oa-buy-now-contracts a:hover{color:#a7b1ff!important;}
.oa-payment-modal-root [data-oa-cart-wallet-pay]:disabled{
    opacity:.48!important;
    cursor:not-allowed!important;
    pointer-events:none!important;
}
@media(max-width:700px){
    .oa-payment-modal-root.is-buy-now-mode .oa-payment-modal{width:calc(100vw - 20px)!important;}
    .oa-buy-now-contracts{padding:12px!important;}
}

/* v1.3.8 - yetersiz bakiye görünümünde de sözleşme alanı */
.oa-payment-modal-root.is-buy-now-mode .oa-payment-intro--warning + .oa-payment-code + .oa-cart-wallet-summary + .oa-buy-now-contracts{margin-top:14px!important;}

/* v1.3.9 - Hemen Satın Al popup genişliği ve zorunlu sözleşme görünümü */
.oa-payment-modal-root.is-buy-now-mode .oa-payment-modal{width:min(740px,calc(100vw - 28px))!important;}
.oa-payment-modal-root .oa-buy-now-contracts{display:flex!important;visibility:visible!important;opacity:1!important;}


/* v1.3.10 - Hemen Satın Al modalında 12px ve altındaki yazılar +2px */
.oa-payment-modal-root .oa-payment-intro strong{font-size:14px!important;}
.oa-payment-modal-root .oa-payment-intro p{font-size:12px!important;}
.oa-payment-modal-root .oa-payment-method-label{font-size:12px!important;}
.oa-payment-modal-root .oa-payment-method strong{font-size:14px!important;}
.oa-payment-modal-root .oa-payment-method small{font-size:11px!important;}
.oa-payment-modal-root .oa-payment-modal__message{font-size:12px!important;}
.oa-payment-modal-root .oa-payment-modal__footer button{font-size:13px!important;}
.oa-payment-modal-root .oa-bank-step__success strong{font-size:14px!important;}
.oa-payment-modal-root .oa-bank-step__success small{font-size:11px!important;}
.oa-payment-modal-root .oa-bank-order-ref span{font-size:12px!important;}
.oa-payment-modal-root .oa-bank-details-card span{font-size:11px!important;}
.oa-payment-modal-root .oa-bank-details-card strong{font-size:13px!important;}
.oa-payment-modal-root .oa-bank-details-card__iban button{font-size:11px!important;}
.oa-payment-modal-root .oa-bank-warning>span{font-size:14px!important;}
.oa-payment-modal-root .oa-bank-warning p{font-size:11.5px!important;}
.oa-payment-modal-root .oa-bank-confirm-btn{font-size:13px!important;}
.oa-payment-modal-root .oa-bank-back-btn{font-size:11px!important;}
.oa-payment-modal-root .oa-cart-wallet-summary span{font-size:12px!important;}
.oa-payment-modal-root .oa-cart-wallet-summary strong,
.oa-payment-modal-root .oa-cart-wallet-summary strong .amount{font-size:14px!important;}
.oa-payment-modal-root .oa-cart-wallet-action{font-size:13px!important;}
.oa-payment-modal-root .oa-payment-code__head>div>span{font-size:13px!important;}
.oa-payment-modal-root .oa-payment-code__badge{font-size:13px!important;}
.oa-payment-modal-root .oa-payment-code__form input{font-size:14px!important;}
.oa-payment-modal-root .oa-payment-code__button{font-size:13px!important;}
.oa-payment-modal-root .oa-payment-code__message{font-size:13px!important;}
.oa-payment-modal-root .oa-buy-now-contracts strong{font-size:13px!important;}
.oa-payment-modal-root .oa-buy-now-contracts small{font-size:12px!important;}


/* v1.3.12 - Sepet scroll + tek ödeme/sözleşme deneyimi */
.oa-cart-drawer-root.is-open .oa-cart-drawer{height:100vh!important;height:100dvh!important;min-height:0!important;max-height:100dvh!important;}
.oa-cart-drawer-root.is-open .oa-cart-drawer__content{min-height:0!important;overflow:hidden!important;}
.oa-cart-drawer-root.is-open .oa-cart-drawer__scroll{min-height:0!important;overflow-y:auto!important;overflow-x:hidden!important;-webkit-overflow-scrolling:touch!important;overscroll-behavior-y:contain!important;touch-action:pan-y!important;}
.oa-payment-modal-root .oa-buy-now-contracts{display:flex!important;visibility:visible!important;opacity:1!important;}
.oa-payment-modal-root .oa-payment-modal{width:min(740px,calc(100vw - 28px))!important;}
@media(max-width:700px){.oa-payment-modal-root .oa-payment-modal{width:calc(100vw - 20px)!important;max-height:calc(100dvh - 20px)!important;}.oa-cart-drawer-root.is-open .oa-cart-drawer{height:100dvh!important;max-height:100dvh!important;}}
