*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    margin:0;
    font-family:Arial,Helvetica,sans-serif;
    color:#202326;
    background:
        radial-gradient(circle at 10% 10%, rgba(255,122,0,.14), transparent 28%),
        radial-gradient(circle at 90% 8%, rgba(47,52,55,.22), transparent 30%),
        linear-gradient(135deg,var(--light),#ffffff);
}
a{color:inherit}
.container{width:min(1180px,calc(100% - 36px));margin:auto}
.glass-card,.glass-section,.panel,.glass-nav{
    background:rgba(255,255,255,var(--glass-opacity,.72));
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.42);
    box-shadow:0 18px 55px rgba(0,0,0,.13);
}
.site-header{
    position:sticky;
    top:0;
    z-index:20;
    background:rgba(31,35,38,.76);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(255,255,255,.12);
}
.nav{
    min-height:78px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
}
.brand{
    display:flex;
    align-items:center;
    gap:12px;
    color:white;
    text-decoration:none;
    font-size:21px;
    font-weight:900;
}
.brand img{height:48px;max-width:130px;object-fit:contain}
.logo-badge{
    width:46px;height:46px;border-radius:16px;
    display:grid;place-items:center;
    background:linear-gradient(135deg,var(--accent),#ffb066);
    color:white;font-weight:900;
}
nav{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
nav a{
    color:white;
    text-decoration:none;
    font-weight:700;
    padding:11px 13px;
    border-radius:14px;
    transition:.25s;
}
nav a:hover,.quote-link{
    background:rgba(255,122,0,.92);
    box-shadow:0 8px 24px rgba(255,122,0,.24);
}
.menu-toggle{
    display:none;
    border:0;
    color:white;
    background:var(--accent);
    padding:10px 14px;
    border-radius:14px;
    font-size:22px;
}
.hero{
    min-height:650px;
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg,var(--dark),var(--primary));
    color:white;
}
.hero-bg-shape{
    position:absolute;border-radius:50%;filter:blur(4px);opacity:.45;
}
.hero-bg-shape.one{width:360px;height:360px;background:var(--accent);right:8%;top:10%}
.hero-bg-shape.two{width:280px;height:280px;background:white;left:6%;bottom:10%;opacity:.08}
.hero-inner{
    position:relative;
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:34px;
    align-items:center;
    min-height:650px;
}
.hero-card{
    padding:42px;
    border-radius:32px;
    color:white;
    background:rgba(255,255,255,.12);
}
.eyebrow{
    display:inline-block;
    color:#fff;
    background:rgba(255,122,0,.8);
    padding:8px 14px;
    border-radius:999px;
    font-weight:800;
    margin-bottom:18px;
}
.hero h1{font-size:54px;line-height:1.04;margin:0 0 18px}
.hero p{font-size:20px;line-height:1.65;opacity:.94}
.btn{
    display:inline-block;
    text-decoration:none;
    background:linear-gradient(135deg,var(--accent),#ffad5c);
    color:white;
    padding:14px 22px;
    border-radius:16px;
    font-weight:900;
    border:0;
    cursor:pointer;
    margin:8px 8px 0 0;
    box-shadow:0 12px 28px rgba(255,122,0,.25);
}
.btn.ghost{background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.55)}
.showcase{
    height:420px;
    border-radius:34px;
    padding:24px;
    background:rgba(255,255,255,.13);
    position:relative;
    overflow:hidden;
}
.fake-window{display:flex;gap:8px}
.fake-window div{width:13px;height:13px;border-radius:50%;background:rgba(255,255,255,.65)}
.office-illustration{position:absolute;inset:70px 30px 30px}
.desk{position:absolute;left:20px;right:20px;bottom:80px;height:34px;border-radius:18px;background:linear-gradient(135deg,#fff,rgba(255,255,255,.35))}
.desk:before,.desk:after{content:"";position:absolute;bottom:-80px;width:20px;height:80px;background:rgba(255,255,255,.45);border-radius:10px}
.desk:before{left:60px}.desk:after{right:60px}
.chair{position:absolute;left:45%;bottom:26px;width:92px;height:128px;border-radius:30px;background:linear-gradient(135deg,var(--accent),#ffb066)}
.office-illustration .panel{position:absolute;left:48px;top:42px;width:120px;height:86px;border-radius:20px;background:rgba(255,255,255,.25)}
.lamp{position:absolute;right:70px;top:70px;width:90px;height:120px;border-radius:50% 50% 16px 16px;background:rgba(255,122,0,.72)}
.content{padding:54px 0}
.glass-section{
    padding:28px;
    border-radius:28px;
    margin-bottom:34px;
}
.content h2,.content h3{color:var(--primary);margin-top:0}
.content h2{font-size:36px}
.page-text{font-size:17px;line-height:1.8}
.section-block{margin-top:42px}
.section-title span{color:var(--accent);font-weight:900;text-transform:uppercase;font-size:13px;letter-spacing:.12em}
.section-title h3{font-size:34px;margin:8px 0 20px}
.grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}
.card{
    border-radius:26px;
    padding:18px;
    overflow:hidden;
    transition:.25s;
}
.card:hover{transform:translateY(-6px);box-shadow:0 25px 60px rgba(0,0,0,.18)}
.card img,.placeholder-img{
    width:100%;
    height:205px;
    border-radius:20px;
    object-fit:cover;
    display:grid;
    place-items:center;
    font-weight:900;
    color:white;
    font-size:34px;
    background:linear-gradient(135deg,var(--primary),var(--accent));
}
.tag{
    display:inline-block;
    margin-top:14px;
    background:rgba(255,122,0,.12);
    color:var(--accent);
    padding:7px 12px;
    border-radius:999px;
    font-weight:800;
    font-size:13px;
}
.card h4{font-size:22px;color:var(--primary);margin:14px 0 8px}
.card p{line-height:1.65;color:#4a4e52}
.ref-logo{
    width:86px;height:86px;border-radius:24px;
    display:grid;place-items:center;
    background:linear-gradient(135deg,var(--primary),var(--accent));
    color:white;font-size:34px;font-weight:900;
}
.ref-card img{height:92px;object-fit:contain;background:white}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:22px}
.contact-box,.map-box{border-radius:28px;padding:26px}
.whatsapp-float{
    position:fixed;
    right:22px;
    bottom:22px;
    z-index:30;
    background:#25d366;
    color:white;
    text-decoration:none;
    padding:14px 18px;
    border-radius:999px;
    font-weight:900;
    box-shadow:0 14px 35px rgba(0,0,0,.22);
}
footer{
    background:var(--dark);
    color:white;
    padding:28px 0;
}
.footer-inner{display:flex;gap:16px;justify-content:space-between;align-items:center;flex-wrap:wrap}

/* Admin */
.admin-body{background:linear-gradient(135deg,#eef0f2,#fff)}
.admin-layout{min-height:100vh;display:flex}
.sidebar{
    width:280px;
    min-width:280px;
    background:linear-gradient(180deg,var(--dark),var(--primary));
    color:white;
    padding:24px;
    position:sticky;
    top:0;
    height:100vh;
}
.sidebar h2{margin-top:0}
.sidebar a{
    display:block;
    color:white;
    text-decoration:none;
    padding:13px 14px;
    border-radius:16px;
    margin:6px 0;
    font-weight:800;
    background:rgba(255,255,255,.06);
}
.sidebar a:hover{background:var(--accent)}
.admin-main{flex:1;padding:30px}
.admin-main .panel{
    position:relative;
    left:auto;
    top:auto;
    width:auto;
    height:auto;
    border-radius:26px;
    padding:24px;
    margin-bottom:22px;
}

.admin-main input,
.admin-main textarea,
.admin-main select{
    max-width:100%;
}

.sidebar{
    flex-shrink:0;
}

.admin-main{
    min-width:0;
}
.admin-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.stat strong{display:block;font-size:36px;color:var(--accent)}
.form-row{margin-bottom:15px}
label{display:block;font-weight:900;margin-bottom:7px}
input,textarea,select{
    width:100%;
    border:1px solid rgba(0,0,0,.12);
    background:rgba(255,255,255,.72);
    padding:13px;
    border-radius:15px;
    font-size:15px;
}
textarea{min-height:150px}
.check-label{display:flex;gap:8px;align-items:center;font-weight:800}
.check-label input{width:auto}
.table-wrap{overflow:auto}
.table{width:100%;border-collapse:collapse}
.table th,.table td{padding:13px;border-bottom:1px solid rgba(0,0,0,.08);text-align:left}
.table th{color:var(--primary)}
.action-link{color:var(--accent);font-weight:900;text-decoration:none;margin-right:10px}
.danger{color:#d80000!important}
.login-page{
    min-height:100vh;
    display:grid;
    place-items:center;
    background:
        radial-gradient(circle at 70% 20%, rgba(255,122,0,.22), transparent 30%),
        linear-gradient(135deg,var(--dark),var(--primary));
}
.login-card{width:min(420px,calc(100% - 30px));border-radius:30px;padding:30px;color:#1c1c1c}
.alert{padding:12px 14px;border-radius:14px;margin-bottom:16px;font-weight:800}
.alert.error{background:#ffe5e5;color:#b00000}
.alert.success{background:#e9fff0;color:#007a2f}
.preview-img{max-width:120px;max-height:80px;border-radius:12px;background:#eee}

@media(max-width:900px){
    .hero-inner{grid-template-columns:1fr;min-height:auto;padding:70px 0}
    .hero{min-height:auto}
    .hero h1{font-size:38px}
    .showcase{height:330px}
    .grid,.admin-grid,.contact-grid{grid-template-columns:1fr}
    nav{
        display:none;
        position:absolute;
        top:78px;
        left:0;
        right:0;
        background:rgba(31,35,38,.96);
        padding:14px 18px;
        flex-direction:column;
        align-items:stretch;
    }
    .menu-open nav{display:flex}
    .menu-toggle{display:block}
    .admin-layout{display:block}
    .sidebar{width:auto;height:auto;position:relative}
}

/* V2 Favori ürünler, kategori filtreleri ve ikonlar */
.quote-link{display:none!important}
.favorite-products{position:relative}
.favorite-slider{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;perspective:1000px}
.favorite-card{position:relative;border-radius:30px;padding:18px;overflow:hidden;animation:favoriteFloat 5s ease-in-out infinite;animation-delay:calc(var(--delay) * .18s)}
.favorite-card:before{content:"";position:absolute;inset:-2px;background:linear-gradient(135deg,rgba(255,122,0,.34),rgba(255,255,255,.12),rgba(47,52,55,.28));opacity:.75;pointer-events:none}
.favorite-card>*{position:relative}
.favorite-card img,.favorite-card .placeholder-img{height:220px;border-radius:24px}
.icon-orbit{position:absolute;right:20px;top:20px;width:54px;height:54px;border-radius:18px;display:grid;place-items:center;background:rgba(255,122,0,.88);box-shadow:0 14px 35px rgba(255,122,0,.28);z-index:2}
.icon-orbit svg{width:28px;height:28px;fill:white}
@keyframes favoriteFloat{0%,100%{transform:translateY(0) rotateX(0)}50%{transform:translateY(-9px) rotateX(2deg)}}
.feature-icons{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:24px}
.mini-feature{border-radius:24px;padding:18px;display:flex;align-items:center;gap:14px}
.mini-feature svg{width:42px;height:42px;fill:var(--accent);flex-shrink:0}
.category-tabs{border-radius:28px;padding:16px;margin-bottom:24px;display:flex;flex-wrap:wrap;gap:12px}
.category-btn{border:0;cursor:pointer;border-radius:18px;padding:12px 16px;display:flex;align-items:center;gap:9px;background:rgba(255,255,255,.72);color:var(--primary);font-weight:900;transition:.25s}
.category-btn svg{width:22px;height:22px;fill:currentColor}
.category-btn:hover,.category-btn.active{background:linear-gradient(135deg,var(--accent),#ffad5c);color:white;box-shadow:0 12px 28px rgba(255,122,0,.22);transform:translateY(-2px)}
.product-item{opacity:1;transform:scale(1);transition:opacity .25s ease,transform .25s ease}
.product-item.is-hidden{display:none}
@media(max-width:900px){.favorite-slider,.feature-icons{grid-template-columns:1fr}.category-tabs{align-items:stretch}.category-btn{width:100%;justify-content:center}}


/* FINAL Premium ana sayfa */
.hero.premium-hero{
    min-height:auto;
    padding:70px 0 58px;
    background:
        radial-gradient(circle at 78% 20%, rgba(255,122,0,.25), transparent 22%),
        radial-gradient(circle at 12% 68%, rgba(255,255,255,.08), transparent 24%),
        linear-gradient(135deg,#080a0c,#11171c 55%,#080a0c);
}
.hero-premium-grid{
    display:grid;
    grid-template-columns:.95fr 1.55fr;
    gap:34px;
    align-items:stretch;
}
.hero-copy{
    padding:42px;
    border-radius:32px;
    background:rgba(255,255,255,.09);
    color:white;
    display:flex;
    flex-direction:column;
    justify-content:center;
    min-height:470px;
}
.hero-copy h1{
    font-size:54px;
    line-height:1.06;
    margin:14px 0 20px;
}
.hero-copy h1::first-line{color:white}
.hero-copy p{
    font-size:18px;
    line-height:1.75;
    color:rgba(255,255,255,.86);
}
.hero-main-btn{
    width:min(360px,100%);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    margin-top:24px;
    font-size:18px;
    padding:18px 22px;
}
.hero-main-btn svg{
    width:24px;
    height:24px;
    fill:white;
}
.hero-main-btn span{
    font-size:34px;
    line-height:1;
}
.hero-products{
    border-radius:34px;
    padding:28px;
    background:rgba(255,255,255,.08);
    color:white;
    border-color:rgba(255,122,0,.28);
    overflow:hidden;
    min-height:470px;
}
.slider-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:20px;
    margin-bottom:22px;
}
.slider-head span{
    color:var(--accent);
    font-weight:900;
    text-transform:uppercase;
    font-size:13px;
    letter-spacing:.12em;
}
.slider-head h2{
    margin:8px 0 0;
    color:white;
    font-size:28px;
}
.slider-arrows{
    display:flex;
    gap:10px;
}
.slider-arrows button{
    width:46px;
    height:46px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.22);
    background:rgba(255,255,255,.08);
    color:white;
    cursor:pointer;
    font-size:34px;
    line-height:1;
    transition:.25s;
}
.slider-arrows button:hover{
    background:var(--accent);
    transform:translateY(-2px);
}
.fav-slider-window{
    overflow:hidden;
    width:100%;
}
.fav-track{
    display:flex;
    gap:18px;
    transition:transform .55s cubic-bezier(.22,.75,.25,1);
    will-change:transform;
}
.fav-slide{
    min-width:calc((100% - 36px) / 3);
    border-radius:24px;
    overflow:hidden;
    background:rgba(255,255,255,.09);
    border:1px solid rgba(255,255,255,.12);
    box-shadow:0 22px 45px rgba(0,0,0,.22);
}
.fav-slide img,.fav-placeholder{
    width:100%;
    height:230px;
    object-fit:cover;
    display:grid;
    place-items:center;
    background:linear-gradient(135deg,#22282d,var(--accent));
}
.fav-placeholder svg{
    width:84px;
    height:84px;
    fill:rgba(255,255,255,.9);
}
.fav-info{
    padding:18px;
}
.fav-info span{
    color:var(--accent);
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
}
.fav-info h3{
    color:white;
    font-size:18px;
    margin:8px 0;
}
.fav-info p{
    margin:0;
    color:rgba(255,255,255,.72);
    line-height:1.55;
}
.fav-dots{
    display:flex;
    justify-content:center;
    gap:9px;
    margin-top:22px;
}
.fav-dots button{
    width:10px;
    height:10px;
    border-radius:999px;
    border:0;
    background:rgba(255,255,255,.35);
    cursor:pointer;
    transition:.25s;
}
.fav-dots button.active{
    width:28px;
    background:var(--accent);
}
.premium-features{
    margin-top:34px;
    border-radius:30px;
    padding:24px;
    background:rgba(255,255,255,.07);
    color:white;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:0;
}
.premium-feature{
    display:flex;
    align-items:center;
    gap:16px;
    padding:12px 22px;
    border-right:1px solid rgba(255,255,255,.12);
}
.premium-feature:last-child{border-right:0}
.premium-feature svg{
    width:52px;
    height:52px;
    fill:var(--accent);
    background:rgba(255,122,0,.12);
    padding:12px;
    border-radius:18px;
    flex-shrink:0;
}
.premium-feature strong{
    display:block;
    font-size:18px;
    margin-bottom:5px;
}
.premium-feature span{
    display:block;
    color:rgba(255,255,255,.72);
    line-height:1.45;
}
body:has(.premium-hero) .content{
    padding-top:0;
}
body:has(.premium-hero) main.container.content > .section-block,
body:has(.premium-hero) main.container.content > .glass-section{
    display:none;
}
@media(max-width:1000px){
    .hero-premium-grid{grid-template-columns:1fr}
    .hero-copy{min-height:auto}
    .premium-features{grid-template-columns:1fr 1fr}
    .premium-feature:nth-child(2){border-right:0}
    .fav-slide{min-width:calc((100% - 18px) / 2)}
}
@media(max-width:650px){
    .hero-copy h1{font-size:36px}
    .hero-products,.hero-copy{padding:24px;border-radius:26px}
    .fav-slide{min-width:100%}
    .premium-features{grid-template-columns:1fr}
    .premium-feature{border-right:0;border-bottom:1px solid rgba(255,255,255,.12)}
    .premium-feature:last-child{border-bottom:0}
}

/* FINAL CLEAN INDEX PATCH */
nav a.active{
    background:rgba(255,122,0,.92);
    box-shadow:0 8px 24px rgba(255,122,0,.24);
}
.home-page .content{display:none}
.hero.premium-hero{
    min-height:auto;
    padding:70px 0 58px;
    background:
        radial-gradient(circle at 78% 20%, rgba(255,122,0,.25), transparent 22%),
        radial-gradient(circle at 12% 68%, rgba(255,255,255,.08), transparent 24%),
        linear-gradient(135deg,#080a0c,#11171c 55%,#080a0c);
}
.hero-premium-grid{
    display:grid;
    grid-template-columns:.95fr 1.55fr;
    gap:34px;
    align-items:stretch;
}
.hero-copy{
    padding:42px;
    border-radius:32px;
    background:rgba(255,255,255,.09);
    color:white;
    display:flex;
    flex-direction:column;
    justify-content:center;
    min-height:470px;
}
.hero-copy h1{font-size:54px;line-height:1.06;margin:14px 0 20px}
.hero-copy p{font-size:18px;line-height:1.75;color:rgba(255,255,255,.86)}
.hero-main-btn{
    width:min(360px,100%);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    margin-top:24px;
    font-size:18px;
    padding:18px 22px;
}
.hero-main-btn svg{width:24px;height:24px;fill:white}
.hero-main-btn span{font-size:34px;line-height:1}
.hero-products{
    border-radius:34px;
    padding:28px;
    background:rgba(255,255,255,.08);
    color:white;
    border-color:rgba(255,122,0,.28);
    overflow:hidden;
    min-height:470px;
}
.slider-head{display:flex;justify-content:space-between;align-items:flex-start;gap:20px;margin-bottom:22px}
.slider-head span{color:var(--accent);font-weight:900;text-transform:uppercase;font-size:13px;letter-spacing:.12em}
.slider-head h2{margin:8px 0 0;color:white;font-size:28px}
.slider-arrows{display:flex;gap:10px}
.slider-arrows button{
    width:46px;height:46px;border-radius:50%;border:1px solid rgba(255,255,255,.22);
    background:rgba(255,255,255,.08);color:white;cursor:pointer;font-size:34px;line-height:1;transition:.25s;
}
.slider-arrows button:hover{background:var(--accent);transform:translateY(-2px)}
.fav-slider-window{overflow:hidden;width:100%}
.fav-track{display:flex;gap:18px;transition:transform .55s cubic-bezier(.22,.75,.25,1);will-change:transform}
.fav-slide{
    min-width:calc((100% - 36px) / 3);
    border-radius:24px;overflow:hidden;background:rgba(255,255,255,.09);
    border:1px solid rgba(255,255,255,.12);box-shadow:0 22px 45px rgba(0,0,0,.22);
}
.fav-slide img,.fav-placeholder{
    width:100%;height:230px;object-fit:cover;display:grid;place-items:center;
    background:linear-gradient(135deg,#22282d,var(--accent));
}
.fav-placeholder svg{width:84px;height:84px;fill:rgba(255,255,255,.9)}
.fav-info{padding:18px}
.fav-info span{color:var(--accent);font-size:12px;font-weight:900;text-transform:uppercase}
.fav-info h3{color:white;font-size:18px;margin:8px 0}
.fav-info p{margin:0;color:rgba(255,255,255,.72);line-height:1.55}
.fav-dots{display:flex;justify-content:center;gap:9px;margin-top:22px}
.fav-dots button{width:10px;height:10px;border-radius:999px;border:0;background:rgba(255,255,255,.35);cursor:pointer;transition:.25s}
.fav-dots button.active{width:28px;background:var(--accent)}
.premium-features{
    margin-top:34px;border-radius:30px;padding:24px;background:rgba(255,255,255,.07);color:white;
    display:grid;grid-template-columns:repeat(4,1fr);gap:0;
}
.premium-feature{display:flex;align-items:center;gap:16px;padding:12px 22px;border-right:1px solid rgba(255,255,255,.12)}
.premium-feature:last-child{border-right:0}
.premium-feature svg{
    width:52px;height:52px;fill:var(--accent);background:rgba(255,122,0,.12);
    padding:12px;border-radius:18px;flex-shrink:0;
}
.premium-feature strong{display:block;font-size:18px;margin-bottom:5px}
.premium-feature span{display:block;color:rgba(255,255,255,.72);line-height:1.45}
.category-tabs{border-radius:28px;padding:16px;margin-bottom:24px;display:flex;flex-wrap:wrap;gap:12px}
.category-btn{border:0;cursor:pointer;border-radius:18px;padding:12px 16px;display:flex;align-items:center;gap:9px;background:rgba(255,255,255,.72);color:var(--primary);font-weight:900;transition:.25s}
.category-btn svg{width:22px;height:22px;fill:currentColor}
.category-btn:hover,.category-btn.active{background:linear-gradient(135deg,var(--accent),#ffad5c);color:white;box-shadow:0 12px 28px rgba(255,122,0,.22);transform:translateY(-2px)}
.product-item.is-hidden{display:none}
@media(max-width:1000px){
    .hero-premium-grid{grid-template-columns:1fr}
    .hero-copy{min-height:auto}
    .premium-features{grid-template-columns:1fr 1fr}
    .premium-feature:nth-child(2){border-right:0}
    .fav-slide{min-width:calc((100% - 18px) / 2)}
}
@media(max-width:650px){
    .hero-copy h1{font-size:36px}
    .hero-products,.hero-copy{padding:24px;border-radius:26px}
    .fav-slide{min-width:100%}
    .premium-features{grid-template-columns:1fr}
    .premium-feature{border-right:0;border-bottom:1px solid rgba(255,255,255,.12)}
    .premium-feature:last-child{border-bottom:0}
    .category-tabs{align-items:stretch}
    .category-btn{width:100%;justify-content:center}
}

/* Logo, Türkçe panel ve son düzenlemeler */
.brand img{
    height:64px!important;
    max-width:190px!important;
    background:transparent!important;
    border-radius:0!important;
    object-fit:contain!important;
    mix-blend-mode:multiply;
}
.site-header{
    background:rgba(31,35,38,.86)!important;
}
.nav{
    min-height:88px!important;
}
.admin-brand{
    display:flex;
    flex-direction:column;
    gap:7px;
    margin-bottom:20px;
    padding-bottom:18px;
    border-bottom:1px solid rgba(255,255,255,.14);
}
.admin-brand img{
    width:150px;
    max-height:86px;
    object-fit:contain;
    background:transparent;
    border-radius:0;
    mix-blend-mode:screen;
}
.admin-brand strong{
    color:white;
    font-size:18px;
    line-height:1.25;
}
.admin-brand span{
    color:rgba(255,255,255,.72);
    font-size:13px;
    font-weight:800;
}
.premium-features{
    grid-template-columns:repeat(3,1fr)!important;
}
.premium-feature:nth-child(3){
    border-right:0!important;
}
@media(max-width:900px){
    .brand img{height:54px!important;max-width:150px!important}
    .nav{min-height:78px!important}
    .premium-features{grid-template-columns:1fr!important}
}

/* Gerçek logo: şeffaf arka plan, header uyumlu, büyük görünüm */
.brand-logo-only{
    display:flex!important;
    align-items:center!important;
    text-decoration:none!important;
    gap:0!important;
}
.brand-logo-only img,
.site-header .brand img{
    display:block!important;
    height:78px!important;
    width:auto!important;
    max-width:260px!important;
    object-fit:contain!important;
    background:transparent!important;
    border:0!important;
    border-radius:0!important;
    padding:0!important;
    margin:0!important;
    box-shadow:none!important;
}
.brand-logo-only span,
.logo-badge{
    display:none!important;
}
.site-header .nav{
    min-height:96px!important;
}
.site-header{
    background:rgba(31,35,38,.92)!important;
}
.admin-brand{
    display:flex!important;
    flex-direction:column!important;
    gap:10px!important;
    margin-bottom:20px!important;
    padding-bottom:18px!important;
    border-bottom:1px solid rgba(255,255,255,.14)!important;
}
.admin-brand img{
    display:block!important;
    width:190px!important;
    height:auto!important;
    max-height:105px!important;
    object-fit:contain!important;
    background:transparent!important;
    border:0!important;
    border-radius:0!important;
    padding:0!important;
    box-shadow:none!important;
}
.admin-brand span{
    color:rgba(255,255,255,.75)!important;
    font-size:13px!important;
    font-weight:800!important;
}
@media(max-width:900px){
    .brand-logo-only img,
    .site-header .brand img{
        height:62px!important;
        max-width:205px!important;
    }
    .site-header .nav{
        min-height:82px!important;
    }
}
@media(max-width:520px){
    .brand-logo-only img,
    .site-header .brand img{
        height:54px!important;
        max-width:175px!important;
    }
}

/* KESİN LOGO DÜZELTME */
.site-header .brand-logo-only,
.brand-logo-only{
    display:flex!important;
    align-items:center!important;
    justify-content:flex-start!important;
    gap:0!important;
    background:transparent!important;
    border:0!important;
    box-shadow:none!important;
    padding:0!important;
}
.site-header .brand-logo-only img,
.brand-logo-only img{
    display:block!important;
    height:82px!important;
    width:auto!important;
    max-width:310px!important;
    object-fit:contain!important;
    background:transparent!important;
    border:0!important;
    border-radius:0!important;
    padding:0!important;
    margin:0!important;
    box-shadow:none!important;
    filter:drop-shadow(0 10px 20px rgba(0,0,0,.24))!important;
    mix-blend-mode:normal!important;
}
.site-header .nav{
    min-height:104px!important;
}
.logo-badge,
.brand-logo-only span{
    display:none!important;
}
.admin-brand img{
    display:block!important;
    width:210px!important;
    max-width:100%!important;
    height:auto!important;
    background:transparent!important;
    border:0!important;
    border-radius:0!important;
    box-shadow:none!important;
    filter:drop-shadow(0 8px 18px rgba(0,0,0,.28))!important;
    mix-blend-mode:normal!important;
}

/* KESİN MOBİL KATEGORİ DÜZELTME */
.product-item.is-hidden{
    display:none!important;
}
.category-tabs{
    position:relative!important;
    z-index:5!important;
}
.category-btn{
    touch-action:manipulation!important;
    user-select:none!important;
    -webkit-tap-highlight-color:transparent!important;
}
@media(max-width:900px){
    .site-header .brand-logo-only img,
    .brand-logo-only img{
        height:68px!important;
        max-width:240px!important;
    }
    .site-header .nav{
        min-height:88px!important;
    }
}
@media(max-width:520px){
    .site-header .brand-logo-only img,
    .brand-logo-only img{
        height:58px!important;
        max-width:205px!important;
    }
}

/* V4 kategori, detay, çoklu görsel ve çift logo */
.brand-right-logo{
    display:flex;
    align-items:center;
    justify-content:flex-end;
}
.brand-right-logo img{
    height:70px;
    max-width:210px;
    object-fit:contain;
    filter:drop-shadow(0 10px 20px rgba(0,0,0,.24));
}
.product-title-link{
    color:inherit;
    text-decoration:none;
}
.product-title-link:hover{
    color:var(--accent);
}
.detail-link{
    display:inline-flex;
    margin-top:10px;
    color:var(--accent);
    text-decoration:none;
    font-weight:900;
}
.category-btn.sub-cat{
    padding-left:22px;
    font-size:14px;
    background:rgba(255,255,255,.56);
}
.category-btn.main-cat{
    border:1px solid rgba(255,122,0,.25);
}
.product-detail-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    align-items:start;
}
.product-main-image{
    border-radius:28px;
    padding:14px;
    overflow:hidden;
}
.product-main-image img{
    width:100%;
    height:470px;
    object-fit:cover;
    border-radius:22px;
}
.product-thumbs{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:14px;
}
.product-thumbs button{
    width:92px;
    height:78px;
    padding:0;
    border:2px solid transparent;
    border-radius:16px;
    overflow:hidden;
    background:white;
    cursor:pointer;
}
.product-thumbs button:hover{
    border-color:var(--accent);
}
.product-thumbs img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.product-detail-info h1{
    font-size:42px;
    color:var(--primary);
    margin:16px 0;
}
.product-detail-info .lead{
    font-size:18px;
    line-height:1.7;
}
.ghost-dark{
    background:rgba(47,52,55,.12)!important;
    color:var(--primary)!important;
    border:1px solid rgba(47,52,55,.18)!important;
}
.gallery-admin{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin:14px 0;
}
.gallery-admin div{
    width:110px;
}
.gallery-admin img{
    width:110px;
    height:80px;
    object-fit:cover;
    border-radius:12px;
    display:block;
    margin-bottom:6px;
}
.fav-slide{
    cursor:pointer;
}
@media(max-width:1000px){
    .brand-right-logo{display:none}
    .product-detail-grid{grid-template-columns:1fr}
    .product-main-image img{height:340px}
}

/* V5 sade kategori yapısı */
.admin-grid{
    align-items:start;
}
.category-tree-admin{
    display:flex;
    flex-direction:column;
    gap:14px;
}
.tree-main{
    background:rgba(255,255,255,.55);
    border:1px solid rgba(0,0,0,.08);
    border-radius:18px;
    padding:14px;
}
.tree-row,.tree-sub{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
}
.tree-row{
    font-size:18px;
    color:var(--primary);
    padding-bottom:8px;
}
.tree-sub{
    margin-left:22px;
    padding:9px 0;
    border-top:1px solid rgba(0,0,0,.07);
}
.category-sub-tabs{
    display:none;
    border-radius:24px;
    padding:14px;
    margin:-12px 0 24px;
    flex-wrap:wrap;
    gap:10px;
    background:rgba(255,255,255,.56);
}
.category-sub-tabs.is-open{
    display:flex;
}
.subcat-group{
    display:none;
    flex-wrap:wrap;
    gap:10px;
    width:100%;
}
.subcat-group.is-active{
    display:flex;
}
.category-main-tabs .main-cat{
    font-size:15px;
}
.sub-all{
    background:rgba(255,122,0,.14)!important;
    color:var(--primary)!important;
}
@media(max-width:900px){
    .tree-row,.tree-sub{
        align-items:flex-start;
        flex-direction:column;
    }
    .category-sub-tabs.is-open{
        display:flex;
    }
}

/* V5 kategori buton kesin düzeltme */
.category-main-tabs,
.category-sub-tabs{
    position:relative!important;
    z-index:20!important;
}
.category-btn{
    pointer-events:auto!important;
    cursor:pointer!important;
    touch-action:manipulation!important;
    -webkit-tap-highlight-color:transparent!important;
}
.category-sub-tabs{
    display:none!important;
}
.category-sub-tabs.is-open{
    display:flex!important;
}
.subcat-group{
    display:none!important;
}
.subcat-group.is-active{
    display:flex!important;
}
.category-main-tabs .category-btn.active,
.category-sub-tabs .category-btn.active{
    background:linear-gradient(135deg,var(--accent),#ffad5c)!important;
    color:#fff!important;
}

/* V6 Premium header */
.premium-header{background:rgba(20,23,25,.9)!important;border-bottom:1px solid rgba(255,255,255,.12)!important;box-shadow:0 16px 42px rgba(0,0,0,.22)!important}
.premium-header .nav{min-height:126px!important;display:grid!important;grid-template-columns:260px 1fr 260px!important;align-items:center!important;gap:24px!important}
.premium-header .brand-logo-only,.premium-header .brand-right-logo{min-height:96px!important;display:flex!important;align-items:center!important;justify-content:center!important;padding:12px 18px!important;border-radius:26px!important;background:linear-gradient(135deg,rgba(255,255,255,.12),rgba(255,255,255,.04))!important;border:1px solid rgba(255,255,255,.16)!important;box-shadow:0 18px 48px rgba(0,0,0,.22)!important;backdrop-filter:blur(18px)!important;transition:.35s!important}
.premium-header .brand-logo-only:hover,.premium-header .brand-right-logo:hover{transform:translateY(-3px) scale(1.03)!important;box-shadow:0 22px 58px rgba(255,122,0,.22)!important;border-color:rgba(255,122,0,.45)!important}
.premium-header .brand-logo-only img,.premium-header .brand-right-logo img{display:block!important;height:98px!important;max-width:235px!important;width:auto!important;object-fit:contain!important;background:transparent!important;filter:drop-shadow(0 14px 24px rgba(0,0,0,.34)) drop-shadow(0 0 12px rgba(255,122,0,.24))!important}
.premium-menu{justify-content:center!important;gap:8px!important}
.premium-menu a{position:relative!important;background:transparent!important;box-shadow:none!important;border-radius:0!important;padding:18px 16px!important;color:rgba(255,255,255,.86)!important}
.premium-menu a:after{content:"";position:absolute;left:16px;right:16px;bottom:8px;height:3px;border-radius:999px;background:var(--accent);transform:scaleX(0);transition:.25s}
.premium-menu a:hover,.premium-menu a.active{color:#fff!important}
.premium-menu a:hover:after,.premium-menu a.active:after{transform:scaleX(1)}
/* V6 Admin */
.admin-body{background:radial-gradient(circle at 12% 10%,rgba(255,122,0,.12),transparent 28%),linear-gradient(135deg,#eef1f4,#fff)!important}
.sidebar{background:radial-gradient(circle at 50% 0%,rgba(255,122,0,.25),transparent 30%),linear-gradient(180deg,#111417,#2f3437)!important;box-shadow:18px 0 45px rgba(0,0,0,.18)!important}
.sidebar a{display:flex!important;align-items:center!important;gap:12px!important;border:1px solid rgba(255,255,255,.08)!important;background:rgba(255,255,255,.055)!important;font-size:15px!important;transition:.25s!important}
.sidebar a:hover{background:linear-gradient(135deg,var(--accent),#ffad5c)!important;transform:translateX(5px)!important;box-shadow:0 12px 28px rgba(255,122,0,.22)!important}
.nav-ico{width:32px;height:32px;display:grid;place-items:center;border-radius:12px;background:rgba(255,255,255,.12);flex-shrink:0}
.view-site-btn{margin-top:18px!important;background:rgba(255,122,0,.18)!important;border-color:rgba(255,122,0,.36)!important}
.admin-main{padding:36px!important}
.admin-main .panel{border:1px solid rgba(255,255,255,.65)!important;background:rgba(255,255,255,.78)!important;backdrop-filter:blur(18px)!important;box-shadow:0 22px 60px rgba(31,35,38,.10)!important}
.admin-main h1{font-size:34px!important;color:var(--primary)!important;margin-top:0!important}
.premium-stats .stat{position:relative;overflow:hidden}
.premium-stats .stat:before{content:"";position:absolute;width:120px;height:120px;right:-35px;top:-35px;border-radius:50%;background:rgba(255,122,0,.14)}
.premium-stats .stat strong{font-size:44px!important}
.admin-brand{background:rgba(255,255,255,.06)!important;border:1px solid rgba(255,255,255,.12)!important;border-radius:22px!important;padding:16px!important}
.admin-brand img{width:220px!important;max-height:120px!important}
@media(max-width:1050px){.premium-header .nav{grid-template-columns:1fr auto!important;min-height:92px!important}.premium-header .brand-right-logo{display:none!important}.premium-header .brand-logo-only{justify-content:flex-start!important;min-height:72px!important;padding:8px 12px!important}.premium-header .brand-logo-only img{height:72px!important;max-width:230px!important}.premium-menu{display:none}.menu-open .premium-menu{display:flex!important;position:static!important;grid-column:1/-1;flex-direction:column!important;background:rgba(20,23,25,.96)!important;border-radius:22px!important;padding:14px!important;margin-bottom:14px}}
@media(max-width:700px){.admin-main{padding:20px!important}.premium-header .brand-logo-only img{height:58px!important;max-width:190px!important}.premium-header .brand-logo-only{min-height:62px!important}}

/* V7 Kurumsal özellikler */
.live-search-box{
    background:rgba(20,23,25,.92);
    border-bottom:1px solid rgba(255,255,255,.08);
    padding:12px 0;
}
.live-search-box form{
    display:flex;
    gap:10px;
}
.live-search-box input{
    flex:1;
    border-radius:18px;
    padding:14px 18px;
}
.live-search-box button{
    border:0;
    border-radius:18px;
    padding:0 22px;
    background:var(--accent);
    color:white;
    font-weight:900;
}
.live-search-results{
    position:absolute;
    z-index:50;
    background:white;
    border-radius:18px;
    box-shadow:0 20px 50px rgba(0,0,0,.18);
    width:min(700px,calc(100% - 36px));
    overflow:hidden;
}
.live-search-results a{
    display:block;
    padding:13px 16px;
    text-decoration:none;
    color:var(--primary);
    border-bottom:1px solid #eee;
}
.live-search-results a:hover{
    background:rgba(255,122,0,.08);
}
.mega-menu-panel{
    position:absolute;
    left:50%;
    top:100%;
    transform:translateX(-50%);
    width:min(900px,calc(100vw - 40px));
    display:none;
    z-index:40;
}
.premium-header:hover .mega-menu-panel{
    display:block;
}
.mega-menu-inner{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    margin-top:14px;
    padding:22px;
    border-radius:26px;
    background:rgba(20,23,25,.96);
    box-shadow:0 24px 70px rgba(0,0,0,.28);
    border:1px solid rgba(255,255,255,.12);
}
.mega-menu-inner strong{
    color:white;
    display:block;
    margin-bottom:10px;
}
.mega-menu-inner a{
    display:block;
    color:rgba(255,255,255,.72);
    text-decoration:none;
    padding:7px 0;
}
.mega-menu-inner a:hover{
    color:var(--accent);
}
.technical-specs,.product-video,.quote-form{
    margin-top:18px;
    border-radius:22px;
    padding:20px;
}
.quote-form .form-row{
    margin-bottom:12px;
}
.whatsapp-chat-box{
    position:fixed;
    right:22px;
    bottom:22px;
    z-index:80;
}
.whatsapp-chat-box > button{
    border:0;
    border-radius:999px;
    padding:15px 20px;
    background:#25d366;
    color:white;
    font-weight:900;
    box-shadow:0 14px 35px rgba(0,0,0,.22);
    cursor:pointer;
}
.whatsapp-panel{
    display:none;
    position:absolute;
    right:0;
    bottom:62px;
    width:280px;
    border-radius:24px;
    padding:20px;
}
.whatsapp-open .whatsapp-panel{
    display:block;
}
.gallery-grid .card img{
    height:230px;
    object-fit:cover;
}
.alert.success{
    background:#e9fff0;
    color:#007a2f;
    border-radius:14px;
    padding:12px 14px;
    margin:14px 0;
    font-weight:800;
}
@media(max-width:900px){
    .mega-menu-panel{display:none!important}
    .mega-menu-inner{grid-template-columns:1fr}
    .live-search-box form{flex-direction:column}
}

/* V8 düzeltmeler: otomatik mega menü kapalı, arama aktif, admin menü tek tip */
.mega-menu-panel,
.premium-header:hover .mega-menu-panel{
    display:none!important;
    visibility:hidden!important;
    opacity:0!important;
    pointer-events:none!important;
}
.live-search-box{
    position:relative;
    z-index:18;
}
.live-search-results{
    display:none;
    margin-top:8px;
}
.live-search-results.is-open{
    display:block;
}
.search-result-item{
    display:flex!important;
    align-items:center;
    gap:12px;
}
.search-result-item img,
.search-no-img{
    width:54px;
    height:44px;
    border-radius:10px;
    object-fit:cover;
    background:linear-gradient(135deg,var(--primary),var(--accent));
    color:white;
    display:grid;
    place-items:center;
    font-size:12px;
    font-weight:900;
    flex-shrink:0;
}
.search-result-item strong{
    display:block;
}
.search-result-item small{
    display:block;
    color:#73777c;
    margin-top:3px;
}
.search-empty{
    padding:14px 16px;
    color:#555;
}
.search-result-info,
.no-product-result{
    border-radius:22px;
    padding:16px 18px;
    margin-bottom:22px;
}
.search-result-info{
    display:flex;
    justify-content:space-between;
    gap:14px;
    flex-wrap:wrap;
}
.search-result-info a{
    color:var(--accent);
    font-weight:900;
    text-decoration:none;
}

/* Admin sol menü renk farkı kaldırıldı */
.sidebar a,
.sidebar a.view-site-btn,
.sidebar a.logout-btn{
    color:white!important;
    background:rgba(255,255,255,.055)!important;
    border:1px solid rgba(255,255,255,.08)!important;
}
.sidebar a.view-site-btn{
    margin-top:6px!important;
}
.sidebar a:hover,
.sidebar a.view-site-btn:hover{
    background:linear-gradient(135deg,var(--accent),#ffad5c)!important;
    color:white!important;
}
.sidebar a.logout-btn:hover,
.sidebar a[href="logout.php"]:hover{
    background:linear-gradient(135deg,#d83a3a,#ff6b6b)!important;
    color:white!important;
}

/* V9 temiz arayüz ve admin düzenleme */
.sidebar{
    overflow-y:auto!important;
    padding-bottom:24px!important;
}
.sidebar a,
.sidebar a.view-site-btn,
.sidebar a.logout-btn,
.sidebar a[href="logout.php"]{
    color:#fff!important;
    background:rgba(255,255,255,.075)!important;
    border:1px solid rgba(255,255,255,.10)!important;
    box-shadow:none!important;
    opacity:1!important;
}
.sidebar a span{
    color:inherit!important;
}
.sidebar a:hover,
.sidebar a.view-site-btn:hover{
    color:#fff!important;
    background:linear-gradient(135deg,var(--accent),#ffad5c)!important;
    transform:translateX(4px)!important;
}
.sidebar a.logout-btn:hover,
.sidebar a[href="logout.php"]:hover{
    background:linear-gradient(135deg,#d83a3a,#ff6b6b)!important;
}
.admin-main{
    padding:24px!important;
}
.admin-main .panel{
    margin-bottom:18px!important;
    padding:20px!important;
}
.compact-admin-form{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px 18px;
    align-items:start;
}
.compact-admin-form .form-row{
    margin-bottom:0!important;
}
.compact-admin-form textarea{
    min-height:96px!important;
}
.compact-admin-form .form-row:nth-child(5),
.compact-admin-form .form-row:nth-child(6),
.compact-admin-form .form-row:nth-child(7),
.compact-admin-form .form-row:nth-child(8),
.compact-admin-form .gallery-admin,
.compact-admin-form .check-label,
.compact-admin-form button{
    grid-column:1 / -1;
}
.table-wrap{
    max-height:560px;
    overflow:auto;
}
.quick-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}
.menu-icon{
    display:inline-grid;
    place-items:center;
    width:24px;
    height:24px;
    margin-right:7px;
    border-radius:9px;
    background:rgba(255,122,0,.16);
    color:var(--accent);
    font-weight:900;
}
.home-icon-strip{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    margin-top:28px;
}
.home-mini{
    border-radius:22px;
    padding:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    color:white;
    background:rgba(255,255,255,.08)!important;
}
.home-mini span{
    width:42px;
    height:42px;
    display:grid;
    place-items:center;
    border-radius:16px;
    background:rgba(255,122,0,.20);
    font-size:22px;
}
.card h4{
    display:flex;
    align-items:center;
    gap:8px;
}
.card h4:before{
    content:"◈";
    color:var(--accent);
}
.detail-link:before{
    content:"→";
    margin-right:6px;
}
.technical-specs h3:before{
    content:"⚙️ ";
}
.product-video h3:before{
    content:"▶ ";
}
.quote-form{
    display:none!important;
}
/* Ekran görüntüsündeki beyaz/parlak overlay sorununu bastır */
.sidebar:after,
.admin-layout:after{
    display:none!important;
    content:none!important;
}
@media(max-width:900px){
    .compact-admin-form{
        grid-template-columns:1fr;
    }
    .home-icon-strip{
        grid-template-columns:1fr 1fr;
    }
}
@media(max-width:560px){
    .home-icon-strip{
        grid-template-columns:1fr;
    }
}

/* V10 admin temizlik ve ürün formu düzeltme */
.admin-page-title{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:18px;
    margin-bottom:16px;
}
.admin-page-title h1{
    margin-bottom:6px!important;
}
.admin-page-title p{
    margin:0;
    color:#6b7075;
}
.product-admin-form{
    display:flex!important;
    flex-direction:column!important;
    gap:16px!important;
}
.form-card{
    border:1px solid rgba(31,35,38,.08);
    background:rgba(255,255,255,.62);
    border-radius:22px;
    padding:18px;
}
.form-card h2{
    font-size:19px;
    margin:0 0 14px;
    color:var(--primary);
}
.form-grid.two{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px 18px;
}
.form-card .form-row{
    margin-bottom:0!important;
}
.form-card textarea{
    min-height:105px!important;
    resize:vertical;
}
.form-actions-card{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}
.form-actions-card .btn{
    margin-left:auto;
}
.product-editor-panel{
    max-width:1240px;
}
.product-list-panel{
    max-width:1240px;
}
.product-list-panel h2{
    margin-top:0;
}
.sidebar a,
.sidebar a.view-site-btn,
.sidebar a.logout-btn,
.sidebar a[href="logout.php"]{
    color:#fff!important;
    background:rgba(255,255,255,.075)!important;
    border:1px solid rgba(255,255,255,.10)!important;
    opacity:1!important;
}
.sidebar a *{
    color:inherit!important;
}
.sidebar a:hover{
    background:linear-gradient(135deg,var(--accent),#ffad5c)!important;
}
@media(max-width:900px){
    .form-grid.two{
        grid-template-columns:1fr;
    }
    .admin-page-title{
        flex-direction:column;
    }
    .form-actions-card .btn{
        margin-left:0;
        width:100%;
    }
}

/* V11 mobil sağ logo düzeltmesi */
@media(max-width:1050px){
    .premium-header .nav{
        display:grid!important;
        grid-template-columns:1fr auto 1fr!important;
        gap:10px!important;
        min-height:86px!important;
        align-items:center!important;
    }

    .premium-header .brand-logo-only{
        grid-column:1!important;
        justify-content:flex-start!important;
        display:flex!important;
        min-height:64px!important;
        padding:6px 8px!important;
    }

    .premium-header .menu-toggle{
        grid-column:2!important;
        display:block!important;
        z-index:5!important;
    }

    .premium-header .brand-right-logo{
        grid-column:3!important;
        display:flex!important;
        justify-content:flex-end!important;
        min-height:64px!important;
        padding:6px 8px!important;
    }

    .premium-header .brand-logo-only img,
    .premium-header .brand-right-logo img{
        height:56px!important;
        max-width:130px!important;
        object-fit:contain!important;
    }

    .premium-menu{
        grid-column:1 / -1!important;
    }
}

@media(max-width:520px){
    .premium-header .nav{
        grid-template-columns:1fr 44px 1fr!important;
        gap:6px!important;
        min-height:76px!important;
    }

    .premium-header .brand-logo-only,
    .premium-header .brand-right-logo{
        min-height:54px!important;
        border-radius:16px!important;
        padding:4px 6px!important;
    }

    .premium-header .brand-logo-only img,
    .premium-header .brand-right-logo img{
        height:46px!important;
        max-width:105px!important;
    }
}

@media(max-width:380px){
    .premium-header .brand-logo-only img,
    .premium-header .brand-right-logo img{
        height:40px!important;
        max-width:88px!important;
    }
}

/* V13 lisans */
.license-status{
    padding:16px 18px;
    border-radius:18px;
    margin-bottom:18px;
    font-weight:900;
}
.license-status.ok{
    background:#e8fff1;
    color:#007a2f;
}
.license-status.bad{
    background:#ffe5e5;
    color:#a00000;
}
