
.shibi-auth-header,
.shibi-auth-header *,
.shibi-auth-modal,
.shibi-auth-modal *,
.shibi-account-panel,
.shibi-account-panel *,
.shibi-panel-login-required,
.shibi-panel-login-required *{
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

:root{
    --shibi-auth-yellow:#fdde55;
    --shibi-auth-yellow-hover:#f4d23d;
    --shibi-auth-text:#222;
    --shibi-auth-muted:#7b7b7b;
    --shibi-auth-border:#e8e4da;
}

/* HEADER */
.shibi-auth-header{
    display:inline-flex;
    align-items:center;
    gap:8px;
}

.shibi-auth-login-btn,
.shibi-auth-register-btn{
    min-height:40px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0 15px;
    border-radius:10px;
    font-size:12px;
    line-height:1;
    font-weight:600;
    cursor:pointer;
    transition:.2s ease;
}

.shibi-auth-login-btn{
    color:#272727;
    background:#fff;
    border:1px solid #dedede;
}

.shibi-auth-register-btn{
    color:#222;
    background:var(--shibi-auth-yellow);
    border:1px solid var(--shibi-auth-yellow);
}

.shibi-auth-login-btn:hover{
    border-color:#bdbdbd;
}

.shibi-auth-register-btn:hover{
    background:var(--shibi-auth-yellow-hover);
    border-color:var(--shibi-auth-yellow-hover);
}

.shibi-account-trigger{
    min-height:42px;
    display:inline-flex;
    align-items:center;
    gap:9px;
    padding:5px 10px;
    border-radius:10px;
    color:#292929!important;
    text-decoration:none!important;
    transition:.2s ease;
}

.shibi-account-trigger:hover{
    background:#faf8f2;
}

.shibi-account-trigger-icon{
    width:34px;
    height:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(253,222,85,.23);
    color:#262626;
}

.shibi-account-trigger-icon svg{
    width:19px;
    height:19px;
}

.shibi-account-trigger-text{
    display:flex;
    flex-direction:column;
    min-width:0;
}

.shibi-account-trigger-text small{
    color:#888;
    font-size:10px;
    line-height:1.2;
}

.shibi-account-trigger-text strong{
    max-width:120px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    color:#292929;
    font-size:11px;
    line-height:1.35;
    font-weight:600;
}

/* MODAL */
.shibi-auth-modal{
    position:fixed;
    inset:0;
    z-index:999999;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:22px;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:.2s ease;
}

.shibi-auth-modal.is-open{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

.shibi-auth-backdrop{
    position:absolute;
    inset:0;
    background:rgba(25,30,42,.54);
    backdrop-filter:blur(5px);
}

.shibi-auth-dialog{
    position:relative;
    z-index:2;
    width:min(720px,100%);
    max-height:calc(100vh - 44px);
    overflow:auto;
    padding:52px 30px 27px;
    border:1px solid rgba(255,255,255,.7);
    border-radius:24px;
    background:#fff;
    box-shadow:0 30px 80px rgba(17,22,34,.20);
}

.shibi-auth-close{
    position:absolute;
    right:18px;
    top:16px;
    width:34px;
    height:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0;
    border:0;
    border-radius:50%;
    background:#faf8f2;
    color:#626262;
    cursor:pointer;
}

.shibi-auth-close svg{
    width:18px;
    height:18px;
}

.shibi-auth-tabs{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:4px;
    padding:4px;
    margin-bottom:25px;
    border-radius:13px;
    background:#f7f5ef;
}

.shibi-auth-tabs button{
    min-height:43px;
    border:0;
    border-radius:10px;
    background:transparent;
    color:#777;
    cursor:pointer;
    font-size:13px;
    font-weight:600;
}

.shibi-auth-tabs button.is-active{
    background:#fff;
    color:#252525;
    box-shadow:0 4px 15px rgba(20,20,20,.05);
}

.shibi-auth-pane{
    display:none;
}

.shibi-auth-pane.is-active{
    display:block;
}

.shibi-auth-heading{
    margin-bottom:23px;
}

.shibi-auth-mini{
    display:block;
    margin-bottom:8px;
    color:#aa921f;
    font-size:10px;
    line-height:1.2;
    font-weight:600;
    letter-spacing:.3px;
}

.shibi-auth-heading h2{
    margin:0 0 8px;
    color:#252525;
    font-size:25px;
    line-height:1.25;
    font-weight:600;
}

.shibi-auth-heading p{
    margin:0;
    color:#7b7b7b;
    font-size:13px;
    line-height:1.7;
}

.shibi-auth-row{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:13px;
}

.shibi-auth-field{
    margin-bottom:14px;
}

.shibi-auth-field label{
    display:block;
    margin-bottom:7px;
    color:#303030;
    font-size:11px;
    line-height:1.3;
    font-weight:600;
}

.shibi-auth-field input{
    width:100%;
    height:49px;
    padding:0 14px;
    border:1px solid #dedbd3;
    border-radius:11px;
    background:#fff;
    color:#333;
    outline:none;
    font-size:13px;
    transition:.2s ease;
}

.shibi-auth-field input:focus{
    border-color:#d7bc34;
    box-shadow:0 0 0 3px rgba(253,222,85,.17);
}

.shibi-auth-field input::placeholder{
    color:#aaa;
}

.shibi-password-wrap{
    position:relative;
}

.shibi-password-wrap input{
    padding-right:48px;
}

.shibi-password-toggle{
    position:absolute;
    top:50%;
    right:7px;
    transform:translateY(-50%);
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0;
    border:0;
    border-radius:8px;
    background:transparent;
    color:#777;
    cursor:pointer;
}

.shibi-password-toggle svg{
    width:19px;
    height:19px;
}

.shibi-auth-options{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    margin:1px 0 17px;
}

.shibi-auth-options label{
    display:inline-flex;
    align-items:center;
    gap:7px;
    color:#777;
    font-size:11px;
    cursor:pointer;
}

.shibi-auth-options input{
    width:15px;
    height:15px;
    accent-color:var(--shibi-auth-yellow);
}

.shibi-auth-options a{
    color:#8b7410!important;
    font-size:11px;
    font-weight:500;
    text-decoration:none!important;
}

.shibi-auth-submit{
    width:100%;
    min-height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin-top:6px;
    padding:0 18px;
    border:0;
    border-radius:12px;
    background:var(--shibi-auth-yellow);
    color:#222;
    cursor:pointer;
    font-size:12px;
    font-weight:600;
    box-shadow:0 8px 20px rgba(253,222,85,.18);
    transition:.2s ease;
}

.shibi-auth-submit:hover{
    background:var(--shibi-auth-yellow-hover);
    transform:translateY(-1px);
}

.shibi-auth-submit:disabled{
    opacity:.65;
    cursor:wait;
}

.shibi-auth-message{
    display:none;
    margin:2px 0 12px;
    padding:10px 12px;
    border-radius:9px;
    font-size:11px;
    line-height:1.55;
}

.shibi-auth-message.is-error{
    display:block;
    background:#fff1f1;
    color:#a13a3a;
    border:1px solid #f1d1d1;
}

.shibi-auth-message.is-success{
    display:block;
    background:#effaf2;
    color:#277543;
    border:1px solid #ccebd5;
}

.shibi-auth-security{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    margin-top:20px;
    padding-top:18px;
    border-top:1px solid #eeeae1;
    color:#999;
    font-size:10px;
}

.shibi-auth-security svg{
    width:15px;
    height:15px;
    color:#b49b1f;
}

/* LOGIN REQUIRED */
.shibi-panel-login-required{
    width:min(650px,calc(100% - 30px));
    margin:60px auto;
    padding:45px 30px;
    border:1px solid var(--shibi-auth-border);
    border-radius:22px;
    background:#fff;
    text-align:center;
}

.shibi-panel-login-icon{
    width:62px;
    height:62px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 17px;
    border-radius:50%;
    background:rgba(253,222,85,.2);
}

.shibi-panel-login-icon svg{
    width:30px;
    height:30px;
}

.shibi-panel-login-required h2{
    margin:0 0 8px;
    font-size:25px;
    font-weight:600;
}

.shibi-panel-login-required p{
    margin:0 auto 20px;
    max-width:470px;
    color:#777;
    font-size:13px;
    line-height:1.7;
}

.shibi-panel-login-required button{
    min-height:46px;
    padding:0 22px;
    border:0;
    border-radius:11px;
    background:var(--shibi-auth-yellow);
    color:#222;
    cursor:pointer;
    font-size:12px;
    font-weight:600;
}

/* ACCOUNT PANEL */
.shibi-account-panel{
    --yellow:#fdde55;
    --yellow-hover:#f4d23d;
    --text:#252525;
    --muted:#757575;
    --border:#e9e4da;
    --soft:#faf8f2;
    width:100%;
    display:grid;
    grid-template-columns:260px minmax(0,1fr);
    gap:24px;
    padding:30px 0 55px;
}

.shibi-account-sidebar{
    align-self:start;
    position:sticky;
    top:95px;
    padding:17px;
    border:1px solid var(--border);
    border-radius:20px;
    background:#fff;
}

.shibi-account-user{
    display:flex;
    align-items:center;
    gap:11px;
    padding:8px 5px 18px;
    border-bottom:1px solid #eeeae2;
}

.shibi-account-avatar{
    width:48px;
    min-width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:var(--yellow);
    color:#292929;
    font-size:15px;
    line-height:1;
    font-weight:600;
}

.shibi-account-user-info{
    min-width:0;
    display:flex;
    flex-direction:column;
}

.shibi-account-user-info strong{
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    color:#292929;
    font-size:12px;
    line-height:1.4;
    font-weight:600;
}

.shibi-account-user-info span{
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    color:#929292;
    font-size:9px;
    line-height:1.45;
}

.shibi-account-nav{
    display:flex;
    flex-direction:column;
    gap:4px;
    padding-top:13px;
}

.shibi-account-nav a{
    min-height:44px;
    display:flex;
    align-items:center;
    gap:10px;
    padding:0 12px;
    border-radius:10px;
    color:#606060!important;
    text-decoration:none!important;
    font-size:11px;
    line-height:1.2;
    font-weight:500;
    transition:.2s ease;
}

.shibi-account-nav a svg{
    width:18px;
    height:18px;
    flex:0 0 18px;
}

.shibi-account-nav a:hover{
    background:#faf8f2;
    color:#292929!important;
}

.shibi-account-nav a.is-active{
    background:rgba(253,222,85,.25);
    color:#2b2b2b!important;
    font-weight:600;
}

.shibi-account-nav .shibi-account-logout{
    margin-top:6px;
    border-top:1px solid #eeeae2;
    border-radius:0 0 10px 10px;
    color:#9b4747!important;
}

.shibi-account-content{
    min-width:0;
}

.shibi-overview-welcome,
.shibi-panel-page-head{
    position:relative;
    overflow:hidden;
    padding:30px 32px;
    margin-bottom:18px;
    border:1px solid var(--border);
    border-radius:20px;
    background:
        radial-gradient(circle at 92% 30%,rgba(253,222,85,.22),transparent 29%),
        linear-gradient(135deg,#fff 0%,#fffdf7 58%,#fff9df 100%);
}

.shibi-overview-welcome:after,
.shibi-panel-page-head:after{
    content:"";
    position:absolute;
    width:240px;
    height:240px;
    right:-90px;
    bottom:-155px;
    border-radius:50%;
    background:rgba(253,222,85,.09);
}

.shibi-overview-welcome span,
.shibi-panel-page-head > span,
.shibi-panel-section-title > span,
.shibi-panel-section-head > div > span{
    position:relative;
    z-index:1;
    display:block;
    margin-bottom:7px;
    color:#9e8618;
    font-size:9px;
    line-height:1.2;
    font-weight:600;
    letter-spacing:.3px;
}

.shibi-overview-welcome h2,
.shibi-panel-page-head h1{
    position:relative;
    z-index:1;
    margin:0 0 7px;
    color:#252525;
    font-size:27px;
    line-height:1.25;
    font-weight:600;
    letter-spacing:-.6px;
}

.shibi-overview-welcome p,
.shibi-panel-page-head p{
    position:relative;
    z-index:1;
    max-width:690px;
    margin:0;
    color:#707070;
    font-size:11px;
    line-height:1.7;
}

.shibi-overview-stats{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:13px;
    margin-bottom:18px;
}

.shibi-stat-card{
    min-height:130px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:18px;
    border:1px solid var(--border);
    border-radius:17px;
    background:#fff;
    color:#292929!important;
    text-decoration:none!important;
    transition:.2s ease;
}

.shibi-stat-card:hover{
    transform:translateY(-2px);
    border-color:#e6cf58;
    box-shadow:0 12px 28px rgba(20,20,20,.045);
}

.shibi-stat-icon{
    width:39px;
    height:39px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:13px;
    border-radius:50%;
    background:rgba(253,222,85,.22);
    color:#8d7715;
}

.shibi-stat-icon svg{
    width:20px;
    height:20px;
}

.shibi-stat-card > span{
    color:#858585;
    font-size:9px;
    line-height:1.3;
}

.shibi-stat-card > strong{
    margin-top:5px;
    color:#292929;
    font-size:22px;
    line-height:1;
    font-weight:600;
}

.shibi-panel-recent{
    padding:22px;
    border:1px solid var(--border);
    border-radius:19px;
    background:#fff;
}

.shibi-panel-section-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:20px;
    margin-bottom:17px;
}

.shibi-panel-section-head h3,
.shibi-panel-section-title h3{
    margin:0;
    color:#292929;
    font-size:17px;
    line-height:1.3;
    font-weight:600;
}

.shibi-panel-section-head > a{
    color:#7b6813!important;
    font-size:10px;
    font-weight:600;
    text-decoration:none!important;
}

/* ORDERS */
.shibi-orders-table-wrap{
    overflow:auto;
    border:1px solid #eee9e0;
    border-radius:14px;
}

.shibi-orders-table{
    width:100%;
    border-collapse:collapse;
    margin:0;
}

.shibi-orders-table th,
.shibi-orders-table td{
    padding:13px 14px;
    border-bottom:1px solid #eee9e0;
    text-align:left;
    vertical-align:middle;
    white-space:nowrap;
}

.shibi-orders-table th{
    background:#faf9f5;
    color:#858585;
    font-size:9px;
    line-height:1.2;
    font-weight:600;
}

.shibi-orders-table td{
    color:#5f5f5f;
    font-size:10px;
    line-height:1.45;
}

.shibi-orders-table tbody tr:last-child td{
    border-bottom:0;
}

.shibi-orders-table td strong{
    color:#2d2d2d;
    font-weight:600;
}

.shibi-order-status{
    display:inline-flex;
    align-items:center;
    min-height:27px;
    padding:0 9px;
    border-radius:999px;
    background:#f8f6ee;
    color:#6a5b1e;
    font-size:9px;
    font-weight:600;
}

.shibi-order-view{
    color:#756313!important;
    font-size:9px;
    font-weight:600;
    text-decoration:none!important;
}

/* EMPTY */
.shibi-panel-empty{
    padding:35px 20px;
    text-align:center;
}

.shibi-panel-empty-icon{
    width:52px;
    height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 13px;
    border-radius:50%;
    background:rgba(253,222,85,.18);
}

.shibi-panel-empty-icon svg{
    width:25px;
    height:25px;
}

.shibi-panel-empty h3{
    margin:0 0 6px;
    font-size:16px;
    font-weight:600;
}

.shibi-panel-empty p{
    margin:0 auto 15px;
    max-width:430px;
    color:#777;
    font-size:10px;
    line-height:1.7;
}

.shibi-panel-empty > a{
    min-height:38px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0 15px;
    border-radius:9px;
    background:var(--yellow);
    color:#222!important;
    font-size:10px;
    font-weight:600;
    text-decoration:none!important;
}

/* ADDRESSES */
.shibi-address-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
}

.shibi-address-card{
    padding:22px;
    border:1px solid var(--border);
    border-radius:18px;
    background:#fff;
}

.shibi-address-head{
    display:flex;
    align-items:center;
    gap:11px;
    padding-bottom:16px;
    margin-bottom:15px;
    border-bottom:1px solid #eee9e0;
}

.shibi-address-icon{
    width:42px;
    min-width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(253,222,85,.18);
    color:#8d7819;
}

.shibi-address-icon svg{
    width:20px;
    height:20px;
}

.shibi-address-head h3{
    margin:0 0 3px;
    color:#292929;
    font-size:13px;
    font-weight:600;
}

.shibi-address-head span{
    color:#909090;
    font-size:9px;
}

.shibi-address-body{
    min-height:150px;
}

.shibi-address-body p{
    margin:0 0 6px;
    color:#636363;
    font-size:10px;
    line-height:1.55;
}

.shibi-address-muted{
    color:#999!important;
}

.shibi-address-card > a{
    display:inline-flex;
    margin-top:10px;
    color:#766313!important;
    font-size:10px;
    font-weight:600;
    text-decoration:none!important;
}

/* ACCOUNT FORM */
.shibi-account-form{
    padding:22px;
    border:1px solid var(--border);
    border-radius:18px;
    background:#fff;
}

.shibi-panel-form-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
}

.shibi-panel-field label{
    display:block;
    margin-bottom:6px;
    color:#383838;
    font-size:10px;
    font-weight:600;
}

.shibi-panel-field input{
    width:100%;
    height:44px;
    padding:0 12px;
    border:1px solid #dfdbd2;
    border-radius:10px;
    background:#fff;
    color:#333;
    outline:none;
    font-size:11px;
}

.shibi-panel-field input:focus{
    border-color:#dac23f;
    box-shadow:0 0 0 3px rgba(253,222,85,.16);
}

.shibi-panel-save{
    min-height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:17px;
    padding:0 17px;
    border:0;
    border-radius:10px;
    background:var(--yellow);
    color:#252525;
    cursor:pointer;
    font-size:10px;
    font-weight:600;
}

.shibi-password-section{
    margin-top:18px;
}

.shibi-panel-section-title{
    margin-bottom:12px;
}

.shibi-panel-notice{
    margin-bottom:14px;
    padding:11px 13px;
    border-radius:10px;
    font-size:10px;
    line-height:1.5;
}

.shibi-panel-notice.is-success{
    background:#eff9f2;
    border:1px solid #d1ead7;
    color:#34734a;
}

.shibi-panel-notice.is-error{
    background:#fff1f1;
    border:1px solid #f0d4d4;
    color:#9d4646;
}

/* RESPONSIVE */
@media(max-width:1050px){
    .shibi-account-panel{
        grid-template-columns:220px minmax(0,1fr);
    }

    .shibi-overview-stats{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media(max-width:767px){
    .shibi-auth-header{
        gap:5px;
    }

    .shibi-auth-login-btn,
    .shibi-auth-register-btn{
        min-height:37px;
        padding:0 10px;
        font-size:11px;
    }

    .shibi-auth-modal{
        padding:10px;
    }

    .shibi-auth-dialog{
        max-height:calc(100vh - 20px);
        padding:49px 18px 22px;
        border-radius:19px;
    }

    .shibi-auth-row{
        grid-template-columns:1fr;
        gap:0;
    }

    .shibi-auth-heading h2{
        font-size:22px;
    }

    .shibi-account-panel{
        grid-template-columns:1fr;
        padding-top:16px;
    }

    .shibi-account-sidebar{
        position:static;
    }

    .shibi-account-nav{
        display:grid;
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .shibi-account-nav .shibi-account-logout{
        margin:0;
        border-top:0;
        border-radius:10px;
    }

    .shibi-overview-welcome,
    .shibi-panel-page-head{
        padding:23px 20px;
    }

    .shibi-overview-welcome h2,
    .shibi-panel-page-head h1{
        font-size:23px;
    }

    .shibi-overview-stats{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .shibi-panel-section-head{
        align-items:flex-start;
        flex-direction:column;
        gap:7px;
    }

    .shibi-orders-table-wrap{
        border:0;
        overflow:visible;
    }

    .shibi-orders-table,
    .shibi-orders-table tbody,
    .shibi-orders-table tr,
    .shibi-orders-table td{
        display:block;
        width:100%;
    }

    .shibi-orders-table thead{
        display:none;
    }

    .shibi-orders-table tr{
        margin-bottom:10px;
        padding:12px;
        border:1px solid #eee9e0;
        border-radius:12px;
        background:#fff;
    }

    .shibi-orders-table td{
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:12px;
        padding:7px 0;
        border:0;
        white-space:normal;
        text-align:right;
    }

    .shibi-orders-table td:before{
        content:attr(data-label);
        color:#929292;
        font-size:9px;
        font-weight:500;
    }

    .shibi-address-grid,
    .shibi-panel-form-grid{
        grid-template-columns:1fr;
    }
}


/* =========================================================
   v1.1.0 UI DÜZELTMELERİ
========================================================= */

/* Popup X: tema stillerinden etkilenmeden tam yuvarlak */
.shibi-auth-dialog .shibi-auth-close{
    width:36px!important;
    min-width:36px!important;
    max-width:36px!important;
    height:36px!important;
    min-height:36px!important;
    max-height:36px!important;
    aspect-ratio:1 / 1!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    padding:0!important;
    margin:0!important;
    border:0!important;
    border-radius:999px!important;
    line-height:0!important;
    appearance:none!important;
    -webkit-appearance:none!important;
    background:#faf8f2!important;
    box-shadow:none!important;
}

.shibi-auth-dialog .shibi-auth-close svg{
    display:block!important;
    width:17px!important;
    height:17px!important;
    flex:0 0 17px!important;
}

/* Güvenlik yazısı +2px */
.shibi-auth-security{
    font-size:12px!important;
    line-height:1.5!important;
}

.shibi-auth-security svg{
    width:16px;
    height:16px;
}

/* Giriş sonrası header tek Hesabım butonu */
.shibi-account-trigger{
    min-height:40px;
    padding:3px 10px;
}

.shibi-account-trigger-icon{
    width:32px;
    min-width:32px;
    height:32px;
}

.shibi-account-trigger-label{
    color:#292929;
    font-size:12px;
    line-height:1;
    font-weight:600;
    white-space:nowrap;
}

/* Hesabım paneli tipografi: önceki 9-11px alanlar büyütüldü */
.shibi-account-user-info strong{
    font-size:14px!important;
}

.shibi-account-user-info span{
    font-size:11px!important;
    line-height:1.5!important;
}

.shibi-account-nav a{
    font-size:13px!important;
    min-height:47px;
}

.shibi-overview-welcome span,
.shibi-panel-page-head > span,
.shibi-panel-section-title > span,
.shibi-panel-section-head > div > span{
    font-size:11px!important;
}

.shibi-overview-welcome h2,
.shibi-panel-page-head h1{
    font-size:30px!important;
}

.shibi-overview-welcome p,
.shibi-panel-page-head p{
    font-size:14px!important;
    line-height:1.75!important;
}

.shibi-stat-card > span{
    font-size:12px!important;
}

.shibi-stat-card > strong{
    font-size:25px!important;
}

.shibi-panel-section-head h3,
.shibi-panel-section-title h3{
    font-size:20px!important;
}

.shibi-panel-section-head > a{
    font-size:12px!important;
}

.shibi-orders-table th{
    font-size:11px!important;
}

.shibi-orders-table td{
    font-size:13px!important;
    line-height:1.55!important;
}

.shibi-order-status{
    font-size:11px!important;
    min-height:30px;
}

.shibi-order-view{
    font-size:12px!important;
}

.shibi-panel-empty h3{
    font-size:18px!important;
}

.shibi-panel-empty p{
    font-size:13px!important;
}

.shibi-panel-empty > a{
    font-size:12px!important;
    min-height:42px;
}

.shibi-address-head h3{
    font-size:15px!important;
}

.shibi-address-head span{
    font-size:11px!important;
}

.shibi-address-body p{
    font-size:13px!important;
    line-height:1.65!important;
}

.shibi-address-card > a{
    font-size:12px!important;
}

.shibi-panel-field label{
    font-size:12px!important;
}

.shibi-panel-field input{
    height:47px;
    font-size:13px!important;
}

.shibi-panel-save{
    min-height:45px;
    font-size:12px!important;
}

.shibi-panel-notice{
    font-size:12px!important;
    line-height:1.6!important;
}

.shibi-panel-notice-global{
    margin-bottom:16px;
    padding:14px 16px;
}

.shibi-panel-notice-global strong{
    color:inherit;
    font-size:13px;
    font-weight:600;
}

@media(max-width:767px){
    .shibi-account-nav a{
        font-size:12px!important;
    }

    .shibi-overview-welcome h2,
    .shibi-panel-page-head h1{
        font-size:26px!important;
    }

    .shibi-overview-welcome p,
    .shibi-panel-page-head p{
        font-size:13px!important;
    }

    .shibi-orders-table td,
    .shibi-address-body p{
        font-size:12px!important;
    }
}


/* =========================================================
   v1.2.0 HEADER + FORM DÜZELTMELERİ
========================================================= */

/* Woodmart header text elementinin gereksiz genişlemesini engelle */
.wd-header-text:has(.shibi-auth-header),
.wd-header-text:has([data-shibi-auth-header]){
    width:auto!important;
    min-width:0!important;
    max-width:none!important;
    flex:0 0 auto!important;
    padding-left:4px!important;
    padding-right:4px!important;
}

/* Header giriş/kayıt: kutu yerine tek çizgide kompakt görünüm */
.shibi-auth-header{
    width:auto!important;
    min-width:0!important;
    max-width:max-content!important;
    display:inline-flex!important;
    align-items:center!important;
    justify-content:flex-end!important;
    gap:0!important;
    white-space:nowrap!important;
    line-height:1!important;
}

.shibi-auth-header .shibi-auth-login-btn,
.shibi-auth-header .shibi-auth-register-btn{
    position:relative;
    width:auto!important;
    min-width:0!important;
    min-height:38px!important;
    height:38px!important;
    padding:0 9px!important;
    margin:0!important;
    border:0!important;
    border-radius:0!important;
    background:transparent!important;
    box-shadow:none!important;
    color:#2c2c2c!important;
    font-size:12px!important;
    line-height:38px!important;
    font-weight:500!important;
}

.shibi-auth-header .shibi-auth-login-btn:after{
    content:"";
    position:absolute;
    right:0;
    top:50%;
    width:1px;
    height:15px;
    transform:translateY(-50%);
    background:#ddd8cc;
}

.shibi-auth-header .shibi-auth-register-btn{
    color:#8c7510!important;
    font-weight:600!important;
}

.shibi-auth-header .shibi-auth-register-btn:after{
    content:"";
    position:absolute;
    left:9px;
    right:9px;
    bottom:3px;
    height:2px;
    border-radius:999px;
    background:#fdde55;
    opacity:.95;
}

.shibi-auth-header .shibi-auth-login-btn:hover,
.shibi-auth-header .shibi-auth-register-btn:hover{
    color:#111!important;
    transform:none!important;
    background:transparent!important;
}

/* Giriş sonrası Hesabım da headerı büyütmesin */
.shibi-auth-header-logged .shibi-account-trigger{
    width:auto!important;
    min-width:0!important;
    min-height:38px!important;
    height:38px!important;
    padding:0 7px!important;
    gap:7px!important;
    border-radius:9px!important;
}

.shibi-auth-header-logged .shibi-account-trigger-icon{
    width:28px!important;
    min-width:28px!important;
    height:28px!important;
}

.shibi-auth-header-logged .shibi-account-trigger-icon svg{
    width:17px!important;
    height:17px!important;
}

.shibi-auth-header-logged .shibi-account-trigger-label{
    font-size:12px!important;
}

/* Başarılı kayıt mesajını popup içinde daha görünür yap */
.shibi-auth-form[data-shibi-form="register"] .shibi-auth-message.is-success{
    display:block!important;
    padding:12px 14px!important;
    border-color:#c8e7d0!important;
    background:#eef9f1!important;
    color:#26733f!important;
    font-size:12px!important;
    font-weight:500!important;
}

/* Hesabım paneli okunabilirliği - bir tık daha büyük */
.shibi-account-panel .shibi-account-nav a{
    font-size:14px!important;
}

.shibi-account-panel .shibi-account-user-info strong{
    font-size:15px!important;
}

.shibi-account-panel .shibi-account-user-info span{
    font-size:12px!important;
}

.shibi-account-panel .shibi-overview-welcome p,
.shibi-account-panel .shibi-panel-page-head p{
    font-size:15px!important;
}

.shibi-account-panel .shibi-stat-card > span{
    font-size:13px!important;
}

.shibi-account-panel .shibi-orders-table th{
    font-size:12px!important;
}

.shibi-account-panel .shibi-orders-table td{
    font-size:14px!important;
}

.shibi-account-panel .shibi-address-body p,
.shibi-account-panel .shibi-panel-field input{
    font-size:14px!important;
}

.shibi-account-panel .shibi-panel-field label,
.shibi-account-panel .shibi-address-card > a,
.shibi-account-panel .shibi-order-view{
    font-size:13px!important;
}

@media(max-width:767px){
    .wd-header-text:has(.shibi-auth-header),
    .wd-header-text:has([data-shibi-auth-header]){
        padding-left:0!important;
        padding-right:0!important;
    }

    .shibi-auth-header .shibi-auth-login-btn,
    .shibi-auth-header .shibi-auth-register-btn{
        padding-left:7px!important;
        padding-right:7px!important;
        font-size:11px!important;
    }

    .shibi-auth-header .shibi-auth-register-btn:after{
        left:7px;
        right:7px;
    }
}


/* =========================================================
   v1.3.0 HEADER BUTONLARI
   Beyaz + sarı, kompakt, alt çizgisiz
========================================================= */

.wd-header-text:has(.shibi-auth-header),
.wd-header-text:has([data-shibi-auth-header]){
    width:auto!important;
    min-width:0!important;
    max-width:max-content!important;
    flex:0 0 auto!important;
    padding-left:4px!important;
    padding-right:4px!important;
}

.shibi-auth-header{
    width:auto!important;
    min-width:0!important;
    max-width:max-content!important;
    display:inline-flex!important;
    align-items:center!important;
    justify-content:flex-end!important;
    gap:6px!important;
    white-space:nowrap!important;
}

.shibi-auth-header .shibi-auth-login-btn,
.shibi-auth-header .shibi-auth-register-btn{
    position:relative!important;
    width:auto!important;
    min-width:0!important;
    min-height:36px!important;
    height:36px!important;
    padding:0 12px!important;
    margin:0!important;
    border-radius:9px!important;
    box-shadow:none!important;
    font-size:12px!important;
    line-height:1!important;
    font-weight:600!important;
    text-decoration:none!important;
    transform:none!important;
}

.shibi-auth-header .shibi-auth-login-btn{
    color:#292929!important;
    background:#ffffff!important;
    border:1px solid #dedbd3!important;
}

.shibi-auth-header .shibi-auth-register-btn{
    color:#222222!important;
    background:#fdde55!important;
    border:1px solid #fdde55!important;
}

.shibi-auth-header .shibi-auth-login-btn:hover{
    color:#111!important;
    background:#ffffff!important;
    border-color:#bfbab0!important;
}

.shibi-auth-header .shibi-auth-register-btn:hover{
    color:#111!important;
    background:#f4d23d!important;
    border-color:#f4d23d!important;
}

/* Önceki sürümün ayırıcı ve alt çizgilerini kesin kapat */
.shibi-auth-header .shibi-auth-login-btn:after,
.shibi-auth-header .shibi-auth-register-btn:after{
    display:none!important;
    content:none!important;
}

/* Giriş sonrası Hesabım butonu da kompakt kalsın */
.shibi-auth-header-logged .shibi-account-trigger{
    width:auto!important;
    min-width:0!important;
    max-width:max-content!important;
    min-height:38px!important;
    height:38px!important;
    padding:0 9px!important;
    border-radius:9px!important;
    background:rgba(253,222,85,.18)!important;
}

@media(max-width:767px){
    .shibi-auth-header{
        gap:4px!important;
    }

    .shibi-auth-header .shibi-auth-login-btn,
    .shibi-auth-header .shibi-auth-register-btn{
        min-height:34px!important;
        height:34px!important;
        padding:0 9px!important;
        font-size:11px!important;
        border-radius:8px!important;
    }
}


/* =========================================================
   v1.4.0 HEADER BOYUT + ÖZEL FAVORİLER
========================================================= */

/* Header butonlarını biraz büyüt, ama header düzenini bozma */
.shibi-auth-header .shibi-auth-login-btn,
.shibi-auth-header .shibi-auth-register-btn{
    min-height:42px!important;
    height:42px!important;
    padding:0 16px!important;
    border-radius:10px!important;
    font-size:13px!important;
}

.shibi-auth-header{
    gap:8px!important;
}

/* Favoriler artık özel Shibi panelinin içinde */
.shibi-favorites-wrap{
    width:100%;
    min-width:0;
    padding:22px;
    border:1px solid #e9e4da;
    border-radius:19px;
    background:#fff;
}

/* WoodMart shortcode hesabım navigasyonu üretirse gizle */
.shibi-favorites-wrap .woocommerce-MyAccount-navigation,
.shibi-favorites-wrap .woocommerce-my-account-wrapper > .wd-my-account-sidebar,
.shibi-favorites-wrap .wd-my-account-sidebar,
.shibi-favorites-wrap .woocommerce-MyAccount-sidebar,
.shibi-favorites-wrap .woocommerce-my-account-menu{
    display:none!important;
}

.shibi-favorites-wrap .woocommerce-my-account-wrapper,
.shibi-favorites-wrap .woocommerce-MyAccount-content,
.shibi-favorites-wrap .wd-my-account-content,
.shibi-favorites-wrap .woocommerce-my-account-wrapper > div{
    width:100%!important;
    max-width:none!important;
    margin-left:0!important;
    margin-right:0!important;
    padding-left:0!important;
    padding-right:0!important;
    float:none!important;
}

/* Wishlist alanını panel tasarımına yaklaştır */
.shibi-favorites-wrap .wishlist-content,
.shibi-favorites-wrap .wd-wishlist-content,
.shibi-favorites-wrap .wd-wishlist-group{
    width:100%!important;
    max-width:none!important;
}

.shibi-favorites-wrap h2,
.shibi-favorites-wrap h3{
    color:#292929!important;
    font-family:'Poppins',sans-serif!important;
}

.shibi-favorites-wrap p,
.shibi-favorites-wrap td,
.shibi-favorites-wrap th,
.shibi-favorites-wrap a,
.shibi-favorites-wrap button{
    font-family:'Poppins',sans-serif!important;
}

.shibi-favorites-wrap .wd-empty-page-text,
.shibi-favorites-wrap .woocommerce-info,
.shibi-favorites-wrap .wd-empty-page{
    font-size:14px!important;
    line-height:1.7!important;
}

.shibi-favorites-wrap .button,
.shibi-favorites-wrap button,
.shibi-favorites-wrap .btn{
    border-radius:10px!important;
}

@media(max-width:767px){
    .shibi-auth-header .shibi-auth-login-btn,
    .shibi-auth-header .shibi-auth-register-btn{
        min-height:38px!important;
        height:38px!important;
        padding:0 11px!important;
        font-size:11px!important;
    }

    .shibi-auth-header{
        gap:5px!important;
    }

    .shibi-favorites-wrap{
        padding:15px;
        border-radius:15px;
    }
}
\n\n/* v1.5.1 - Yönetim hesabı güvenli geçiş ekranı */\n.shibi-admin-account-gateway,\n.shibi-admin-account-gateway *{\n    box-sizing:border-box;\n    font-family:'Poppins',sans-serif;\n}\n.shibi-admin-account-gateway{\n    width:min(760px,calc(100% - 30px));\n    margin:55px auto;\n    padding:48px 34px;\n    border:1px solid #e9e3d7;\n    border-radius:22px;\n    background:radial-gradient(circle at 90% 15%,rgba(253,222,85,.24),transparent 30%),#fff;\n    text-align:center;\n}\n.shibi-admin-account-gateway-icon{\n    width:64px;height:64px;display:flex;align-items:center;justify-content:center;\n    margin:0 auto 16px;border-radius:50%;background:rgba(253,222,85,.24);color:#7e6912;\n}\n.shibi-admin-account-gateway-icon svg{width:30px;height:30px}\n.shibi-admin-account-gateway>span{display:block;margin-bottom:8px;color:#9c8419;font-size:12px;font-weight:600}\n.shibi-admin-account-gateway h2{margin:0 0 9px;color:#252525;font-size:28px;line-height:1.25;font-weight:600}\n.shibi-admin-account-gateway p{max-width:560px;margin:0 auto 20px;color:#737373;font-size:14px;line-height:1.75}\n.shibi-admin-account-gateway>a{min-height:46px;display:inline-flex;align-items:center;justify-content:center;gap:9px;padding:0 19px;border-radius:11px;background:#fdde55;color:#222!important;text-decoration:none!important;font-size:13px;font-weight:600}\n