*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    margin:0;
    font-family:Inter,Arial,sans-serif;
    color:#111827;
    background:#fff;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}
a{text-decoration:none;color:inherit}
img{max-width:100%}
.container{width:min(1480px,92%);margin:auto}

:root{
  --bdf-ink:#111827;
  --bdf-muted:#64748b;
  --bdf-line:#e5e7eb;
  --bdf-soft:#f8fafc;
  --bdf-red:#dc2626;
  --bdf-gold:#f59e0b;
  --bdf-shadow:0 22px 60px rgba(15,23,42,.12);
  --bdf-shadow-soft:0 14px 35px rgba(15,23,42,.08);
}

/* TOP */
.top-strip{
    height:34px;
    background:#f3f4f6;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#5b6472;
    font-weight:700;
    font-size:14px;
    letter-spacing:.01em;
}

/* HEADER */
.site-header{
    background:#fff;
    border-bottom:1px solid #e5e7eb;
    position:sticky;
    top:0;
    z-index:50;
    backdrop-filter:saturate(180%) blur(14px);
    box-shadow:0 10px 34px rgba(15,23,42,.05);
}
.utility{
    height:34px;
    display:flex;
    justify-content:flex-end;
    gap:26px;
    align-items:center;
    font-size:13px;
}
.main-head{
    height:128px;
    display:grid;
    grid-template-columns:300px 1fr 260px;
    align-items:center;
    gap:28px;
}

/* LOGO */
.brand{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    min-width:260px;
    gap:0;
    padding:8px 0;
}
.logo-img{
    height:118px;
    width:auto;
    max-width:240px;
    object-fit:contain;
    display:block;
    transition:all .3s ease;
}
.logo-img:hover{transform:scale(1.04)}
.brand-text,
.brand-text strong,
.brand-text small{display:none!important}

/* SEARCH */
.search{
    height:48px;
    border:1px solid #d1d5db;
    border-radius:999px;
    display:flex;
    align-items:center;
    gap:12px;
    padding:0 22px;
    max-width:620px;
    margin:auto;
    width:100%;
    background:#fff;
    transition:.25s ease;
    box-shadow:0 8px 22px rgba(15,23,42,.04);
}
.search:focus-within{
    border-color:#111827;
    box-shadow:0 18px 40px rgba(15,23,42,.10);
    transform:translateY(-1px);
}
.search input{
    border:0;
    outline:0;
    width:100%;
    font-size:15px;
}

/* HEADER BUTTONS */
.head-actions{
    display:flex;
    gap:14px;
    justify-content:flex-end;
}
.head-actions a{
    border:1px solid #d1d5db;
    border-radius:999px;
    padding:12px 16px;
    font-weight:800;
    transition:.25s ease;
}
.head-actions a:first-child{
    background:#111827;
    color:#fff;
    border-color:#111827;
}
.head-actions a:hover{
    transform:translateY(-2px);
    box-shadow:0 15px 32px rgba(15,23,42,.16);
}

/* NAV */
.sports-nav{border-top:1px solid #eef0f3}
.nav-scroll{display:flex;gap:0;overflow:auto}
.nav-scroll a{
    padding:17px 24px;
    font-weight:900;
    border-right:1px solid #f1f2f4;
    white-space:nowrap;
    transition:.22s ease;
    position:relative;
}
.nav-scroll a.active{background:#111827;color:#fff}
.nav-scroll a:not(.active):hover{background:#f8fafc;color:#0f172a}
.promo{
    height:38px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-bottom:1px solid #e5e7eb;
    font-weight:700;
}

/* LEAGUE */
.league-row{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:24px;
    padding:18px 0 28px;
}
.league-intro{font-size:20px;margin-right:10px}
.league{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:7px;
    font-size:12px;
}
.league span{
    width:56px;
    height:56px;
    border-radius:999px;
    background:#f3f4f6;
    display:grid;
    place-items:center;
    font-size:26px;
    border:1px solid #e5e7eb;
    transition:.25s ease;
    box-shadow:0 6px 18px rgba(15,23,42,.05);
}
.league:hover span{
    transform:translateY(-5px) scale(1.04);
    background:#fff;
    box-shadow:var(--bdf-shadow-soft);
}

/* HERO */
.hero-visual{
    position:relative;
    border-radius:32px;
    overflow:hidden;
    min-height:620px;
    margin:30px auto 44px;
    display:flex;
    align-items:center;
    box-shadow:0 24px 80px rgba(15,23,42,.08);
    border:1px solid rgba(226,232,240,.9);
}
.hero-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}
.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(11,16,37,.88) 0%,rgba(11,16,37,.55) 45%,rgba(11,16,37,.15) 100%);
    z-index:2;
}
.hero-content{
    position:relative;
    z-index:3;
    max-width:720px;
    padding:90px;
    color:#fff;
}
.hero-content span{
    display:block;
    color:#e11d48;
    font-weight:900;
    letter-spacing:5px;
    margin-bottom:20px;
}
.hero-content h1{
    font-size:82px;
    line-height:.95;
    margin:0 0 28px;
    font-weight:950;
    text-wrap:balance;
}
.hero-content p{
    font-size:22px;
    line-height:1.6;
    color:#e5e7eb;
    max-width:620px;
}
.hero-buttons{
    display:flex;
    gap:18px;
    margin-top:34px;
}
.btn-red,.btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 34px;
    border-radius:999px;
    font-weight:900;
    text-decoration:none;
    transition:.3s;
}
.btn-red{
    background:#dc2626;
    color:#fff;
    box-shadow:0 15px 40px rgba(227,27,35,.35);
}
.btn-red:hover{background:#b91c1c;transform:translateY(-4px)}
.btn-outline{border:2px solid #fff;color:#fff}
.btn-outline:hover{background:#fff;color:#0f172a;transform:translateY(-4px)}

/* OLD HERO SUPPORT */
.hero-banner{
    position:relative;
    min-height:500px;
    background:#f8f5ef;
    overflow:hidden;
    margin:0 auto 44px;
    box-shadow:0 24px 80px rgba(15,23,42,.08);
    border:1px solid rgba(226,232,240,.9);
}
.hero-inner{
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    align-items:center;
    min-height:500px;
}
.hero-copy{padding:70px 0}
.eyebrow{
    letter-spacing:.22em;
    font-size:13px;
    font-weight:900;
    color:#b91c1c;
    text-transform:uppercase;
}
.hero-copy h1{
    font-size:72px;
    line-height:.95;
    margin:14px 0 22px;
    letter-spacing:-4px;
    text-wrap:balance;
}
.hero-copy p{
    font-size:21px;
    line-height:1.5;
    color:#334155;
    max-width:560px;
}
.btns{display:flex;gap:14px;margin-top:30px}
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    background:#111827;
    color:#fff;
    padding:14px 24px;
    font-weight:900;
    border:2px solid #111827;
    transition:.25s ease;
}
.btn.light{background:#fff;color:#111827}
.btn:hover{transform:translateY(-2px);box-shadow:0 15px 32px rgba(15,23,42,.16)}
.hero-art{height:470px;display:grid;place-items:center}
.hero-art img{
    width:min(680px,100%);
    height:440px;
    object-fit:contain;
    filter:drop-shadow(0 30px 45px rgba(15,23,42,.18));
    animation:bdfFloat 6s ease-in-out infinite;
}

/* SECTIONS */
.section{padding:38px 0}
.section-head{
    display:flex;
    align-items:end;
    justify-content:space-between;
    margin-bottom:22px;
}
.section h2{font-size:28px;margin:0}
.section-head a{
    font-weight:800;
    border:1px solid #d1d5db;
    border-radius:999px;
    padding:10px 16px;
    transition:.25s ease;
}
.section-head a:hover{transform:translateY(-2px);box-shadow:0 15px 32px rgba(15,23,42,.16)}

/* CARDS */
.card-strip{
    display:grid;
    grid-template-columns:repeat(5,minmax(220px,1fr));
    gap:28px;
    overflow:hidden;
}
.collection-card,.discover-card,.product-card{
    display:block;
    transition:transform .35s ease,filter .28s ease;
}
.collection-card:hover,.discover-card:hover,.product-card:hover{transform:translateY(-10px)}
.collection-card img,.discover-card img{
    width:100%;
    height:290px;
    object-fit:cover;
    border-radius:8px;
    box-shadow:0 12px 30px rgba(15,23,42,.08);
    transition:.35s ease;
    background:#f8fafc;
}
.collection-card:hover img,.discover-card:hover img{
    transform:scale(1.035);
    box-shadow:0 25px 54px rgba(15,23,42,.16);
    filter:saturate(1.05) contrast(1.03);
}
.collection-card h3,.discover-card h3{font-size:18px;margin:15px 0 5px}
.collection-card p,.discover-card p{margin:0;color:#4b5563}

/* WIDE FEATURE */
.wide-feature{
    margin:50px auto;
    position:relative;
    overflow:hidden;
    height:440px;
    background:#111;
    box-shadow:0 24px 70px rgba(15,23,42,.13);
}
.wide-feature img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    filter:brightness(.72);
    transition:transform 7s ease;
    will-change:transform;
}
.wide-feature:hover img{transform:scale(1.04)}
.wide-feature .overlay{
    position:absolute;
    left:32px;
    bottom:32px;
    color:#fff;
    text-shadow:0 8px 24px rgba(0,0,0,.45);
}
.wide-feature h2{font-size:40px;margin:0 0 8px}
.wide-feature p{font-size:20px;margin:0 0 22px}

/* MOSAIC */
.mosaic{display:grid;grid-template-columns:1fr 1fr;gap:28px;margin:28px auto 58px}
.mosaic-card{
    position:relative;
    height:380px;
    overflow:hidden;
    background:#111;
    box-shadow:0 24px 70px rgba(15,23,42,.13);
}
.mosaic-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(.72);
    transition:.4s;
}
.mosaic-card:hover img{transform:scale(1.05)}
.mosaic-card .txt{
    position:absolute;
    left:26px;
    bottom:24px;
    color:#fff;
    text-shadow:0 8px 24px rgba(0,0,0,.45);
}
.mosaic-card h3{font-size:31px;margin:0 0 4px}

/* BRANDS */
.brand-row{display:grid;grid-template-columns:repeat(5,1fr);gap:28px}
.brand-box{
    height:210px;
    background:#f4f5f7;
    border:1px solid #d9dde3;
    border-radius:8px;
    display:grid;
    place-items:center;
    font-size:28px;
    font-weight:900;
    color:#111;
    transition:.25s ease;
    overflow:hidden;
}
.brand-box:hover{
    transform:translateY(-6px);
    box-shadow:var(--bdf-shadow-soft);
    background:#fff;
}

/* CTA */
.cta-bar{
    background:#050505;
    color:#fff;
    height:74px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:30px;
    margin:45px auto;
    border-radius:2px;
    box-shadow:0 18px 45px rgba(0,0,0,.12);
}
.cta-bar strong{font-size:19px}

/* SEO */
.seo-text{border-top:1px solid #d1d5db;padding:42px 0 22px}
.seo-text h2{font-size:28px;margin:0 0 16px}
.seo-text p{font-size:16px;line-height:1.65;color:#374151;max-width:1200px}

/* FOOTER */
.site-footer{
    background:linear-gradient(180deg,#fff 0%,#f8fafc 100%);
    border-top:1px solid #e5e7eb;
    padding-bottom:24px;
}
.footer-grid{display:grid;grid-template-columns:1.6fr repeat(3,1fr);gap:55px;padding:38px 0}
.footer-grid h3{font-size:24px;margin:0 0 12px}
.footer-grid h4{margin:0 0 15px}
.footer-grid p{color:#4b5563;line-height:1.55}
.footer-grid a{display:block;color:#374151;margin:10px 0;font-size:14px}
.copyright{border-top:1px solid #e5e7eb;padding-top:18px;color:#6b7280;font-size:13px}

/* INNER PAGES */
.page-hero{
    position:relative;
    background:url('../img/kurumsal-hero.png') center/cover no-repeat;
    min-height:320px;
    display:flex;
    align-items:center;
    overflow:hidden;
    color:#fff;
}
.page-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(11,16,37,.90) 0%,rgba(11,16,37,.75) 45%,rgba(11,16,37,.35) 100%);
}
.page-hero .container{position:relative;z-index:2}
.page-hero h1{color:#fff;font-size:64px;margin:0 0 20px}
.page-hero p{color:#e5e7eb;font-size:22px;max-width:700px}

/* PRODUCT GRID */
.grid-products{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:28px;
    align-items:stretch;
}
.product{
    display:flex;
    flex-direction:column;
    min-width:0;
    border:1px solid #e5e7eb;
    border-radius:18px;
    overflow:hidden;
    background:#fff;
    transition:transform .28s ease,box-shadow .28s ease,border-color .28s ease;
}
.product:hover{
    transform:translateY(-4px);
    border-color:#d7dce3;
    box-shadow:0 18px 45px rgba(15,23,42,.10);
}
.product > a:first-child{
    display:block;
    position:relative;
    width:100%;
    aspect-ratio:1/1;
    overflow:hidden;
    background:#f5f6f8;
    isolation:isolate;
}
.product > a:first-child img,
.product img{
    display:block;
    width:100%;
    height:100%;
    max-width:100%;
    max-height:100%;
    object-fit:contain;
    object-position:center;
    margin:0;
    padding:0;
    border:0;
    background:#f5f6f8;
    image-rendering:auto;
    -ms-interpolation-mode:bicubic;
    backface-visibility:hidden;
    -webkit-backface-visibility:hidden;
    transform:translateZ(0);
    filter:none;
}
.product:hover > a:first-child img,
.product:hover img{
    transform:translateZ(0);
    filter:none;
}
.product > div{
    display:flex;
    flex-direction:column;
    flex:1;
    padding:18px;
}
.product h3{margin:0 0 8px;line-height:1.25}
.product p{color:#64748b;line-height:1.5}
.product .btn{margin-top:auto;align-self:flex-start}

/* FORMS */
.contact-grid,.corp-grid{display:grid;grid-template-columns:1fr 1fr;gap:36px}
.form-card{
    background:#f8fafc;
    border:1px solid #e5e7eb;
    border-radius:20px;
    padding:26px;
}
.form-card input,.form-card textarea{
    width:100%;
    padding:14px;
    margin-bottom:12px;
    border:1px solid #d1d5db;
    border-radius:10px;
}
.form-card button{
    width:100%;
    padding:15px;
    border:0;
    border-radius:999px;
    background:#111827;
    color:#fff;
    font-weight:900;
}

/* ANIMATION */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .7s ease,transform .7s ease}
.reveal.is-visible{opacity:1;transform:none}
@keyframes bdfFloat{
    0%,100%{transform:translateY(0)}
    50%{transform:translateY(-12px)}
}

/* E-COMMERCE */
.price{display:block;font-size:20px;font-weight:900;color:var(--bdf-red);margin:12px 0}
.product-detail{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:48px;
    align-items:start;
    padding-top:60px;
}
.detail-img{
    width:100%;
    aspect-ratio:1/1;
    background:#f5f6f8;
    border-radius:28px;
    box-shadow:var(--bdf-shadow-soft);
    overflow:hidden;
    display:grid;
    place-items:center;
}
.detail-img img{
    display:block;
    width:100%;
    height:100%;
    max-width:100%;
    max-height:100%;
    object-fit:contain;
    object-position:center;
    image-rendering:auto;
    -ms-interpolation-mode:bicubic;
    background:#f5f6f8;
}
.detail-info h1{font-size:clamp(34px,4vw,62px);line-height:.95;margin:12px 0}
.badge{display:inline-flex;background:#111827;color:#fff;border-radius:999px;padding:9px 14px;font-weight:900;font-size:13px}
.detail-price{display:block;font-size:34px;color:var(--bdf-red);font-weight:900;margin:20px 0}
.cart-form{display:grid;grid-template-columns:90px 120px 1fr;gap:12px;align-items:end;margin:24px 0}
.cart-form label{font-weight:800}
.cart-form input{height:48px;border:1px solid #d1d5db;border-radius:14px;padding:0 14px;font-weight:800}
.cart-form button,.form-card button{height:48px;border:0;border-radius:999px;background:#dc2626;color:#fff;font-weight:900;cursor:pointer}
.product-note{border-top:1px solid #e5e7eb;margin-top:28px;padding-top:22px;color:#475569}
.cart-page{display:grid;grid-template-columns:1fr 360px;gap:28px}
.cart-list,.cart-summary{background:#fff;border:1px solid #e5e7eb;border-radius:24px;box-shadow:var(--bdf-shadow-soft)}
.cart-row{display:grid;grid-template-columns:110px 1fr auto;gap:18px;align-items:center;padding:18px;border-bottom:1px solid #eef2f7}
.cart-row:last-child{border-bottom:0}
.cart-row img{
    width:110px;
    height:110px;
    object-fit:contain;
    object-position:center;
    border-radius:18px;
    background:#f5f6f8;
    image-rendering:auto;
}
.cart-summary{padding:24px;height:max-content}
.cart-summary strong{display:block;font-size:28px;margin:10px 0 20px}
.clear{display:block;text-align:center;margin-top:14px;color:#64748b;font-weight:800}

/* ACCOUNT */
.account-grid{display:grid;grid-template-columns:240px 1fr;gap:24px;align-items:start}
.account-menu,.card{background:#fff;border:1px solid #edf0f5;border-radius:18px;box-shadow:0 16px 50px rgba(15,23,42,.07);padding:22px}
.account-menu{display:flex;flex-direction:column;gap:8px}
.account-menu a{padding:12px 14px;border-radius:12px;font-weight:800;color:#111827;background:#f6f8fb}
.account-menu a:hover{background:#e9282b;color:#fff}
.alert{padding:12px 14px;border-radius:14px;margin:10px 0;font-weight:700}
.alert.error{background:#fff1f2;color:#be123c;border:1px solid #fecdd3}
.alert.success{background:#ecfdf5;color:#047857;border:1px solid #a7f3d0}
.admin-table{width:100%;border-collapse:collapse}
.admin-table th,.admin-table td{padding:13px;border-bottom:1px solid #edf0f5;text-align:left}
.admin-table th{background:#f6f8fb;font-weight:900}
.empty-box{border:1px dashed #d1d5db;background:#f8fafc;border-radius:18px;padding:28px;color:#64748b;font-weight:700;text-align:center}
.subcat-row{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:26px}
.subcat-row a{border:1px solid #e5e7eb;border-radius:999px;padding:11px 18px;font-weight:900;background:#fff}
.subcat-row a:hover{background:#111827;color:#fff}

/* FAZ 8 - PRO ÜYE PANELİ */
.pro-account-menu .member-mini{display:flex;gap:12px;align-items:center;padding:12px;border-radius:16px;background:#111827;color:#fff;margin-bottom:10px}
.pro-account-menu .avatar{width:42px;height:42px;border-radius:50%;background:#e9282b;display:grid;place-items:center;font-weight:900}
.pro-account-menu small{display:block;color:#9ca3af}
.pro-account-menu a.active{background:#e9282b;color:#fff}
.account-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-bottom:20px}
.stat-card{background:#fff;border:1px solid #edf0f5;border-radius:18px;padding:18px;box-shadow:0 16px 50px rgba(15,23,42,.06)}
.stat-card span{color:#6b7280;font-size:13px;font-weight:800}
.stat-card b{display:block;font-size:26px;margin-top:8px}
.panel-grid-2{display:grid;grid-template-columns:1.2fr .8fr;gap:20px}
.mini-list{display:grid;gap:10px}
.mini-item{display:flex;justify-content:space-between;gap:15px;padding:13px;border:1px solid #edf0f5;border-radius:14px;background:#fafafa}
.form-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.form-grid .full{grid-column:1/-1}
.form-control,label input,label select,label textarea{width:100%;border:1px solid #e5e7eb;border-radius:12px;padding:12px 13px;font:inherit}
label{font-weight:800;color:#111827}
label span{display:block;margin-bottom:6px}
.btn.small{padding:8px 12px;font-size:13px}
.status-steps{display:grid;grid-template-columns:repeat(6,1fr);gap:8px;margin:14px 0}
.status-step{padding:12px;border-radius:12px;background:#f3f4f6;text-align:center;font-weight:800;font-size:12px}
.status-step.done{background:#dcfce7;color:#166534}
.club-card{display:grid;grid-template-columns:72px 1fr auto;gap:15px;align-items:center}
.club-logo{width:72px;height:72px;border-radius:18px;background:#f3f4f6;object-fit:cover;display:grid;place-items:center;font-weight:900}
.file-drop{border:2px dashed #d1d5db;border-radius:18px;padding:28px;text-align:center;background:#fafafa}
.badge{display:inline-flex;padding:6px 10px;border-radius:999px;background:#f3f4f6;font-size:12px;font-weight:900}
.pay-options{display:grid;gap:10px;margin:8px 0 14px}
.pay-options label{display:flex;align-items:center;gap:10px;padding:12px 14px;border:1px solid #e5e7eb;border-radius:14px;background:#fff;font-weight:700;cursor:pointer}
.pay-options input{width:auto;margin:0}

/* RESPONSIVE */
@media(max-width:1200px){
    .grid-products{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media(max-width:900px){
    .site-header{position:relative}
    .utility,.head-actions{display:none}
    .main-head{height:auto;padding:16px 0;grid-template-columns:1fr}
    .brand{min-width:auto;justify-content:center}
    .logo-img{height:90px;max-width:190px}
    .hero-inner{grid-template-columns:1fr}
    .hero-copy h1{font-size:44px}
    .hero-art img{animation:none}
    .hero-visual{min-height:560px;margin-bottom:26px}
    .hero-content{padding:70px 24px}
    .hero-content h1{font-size:48px}
    .hero-content p{font-size:17px}
    .hero-buttons,.btns{flex-direction:column;align-items:flex-start;flex-wrap:wrap}
    .card-strip,.brand-row,.mosaic,.footer-grid,.contact-grid,.corp-grid{grid-template-columns:1fr}
    .grid-products{grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
    .league-row{justify-content:flex-start;overflow:auto}
    .wide-feature{height:340px}
    .collection-card:hover,.discover-card:hover,.league:hover span{transform:none}
    .product-detail,.cart-page{grid-template-columns:1fr}
    .cart-form{grid-template-columns:1fr}
    .cart-row{grid-template-columns:80px 1fr}
    .cart-row strong{grid-column:2}
    .cart-row img{width:80px;height:80px}
    .account-stats,.panel-grid-2,.form-grid{grid-template-columns:1fr}
    .status-steps{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:768px){
    .account-grid{grid-template-columns:1fr}
    .admin-table{font-size:13px}
    .page-hero h1{font-size:44px}
    .page-hero p{font-size:17px}
}
@media(max-width:520px){
    .grid-products{grid-template-columns:1fr}
    .product > a:first-child{aspect-ratio:1/1}
}
@media (prefers-reduced-motion:reduce){
    *,*::before,*::after{
        animation:none!important;
        transition:none!important;
        scroll-behavior:auto!important;
    }
    .reveal{opacity:1;transform:none}
}

/* =========================================================
   Bİ DÜNYA FORMA - MOBİL GÖRÜNÜM ACİL DÜZELTME
========================================================= */

/* JS çalışmasa bile içerikler gizli kalmasın */
.reveal,
.reveal.is-visible{
    opacity:1 !important;
    transform:none !important;
    visibility:visible !important;
}

/* Mobilde ürün alanının kesin görünmesi */
.section,
.section.container,
.grid-products,
.grid-products .product{
    visibility:visible !important;
    opacity:1 !important;
}

@media(max-width:900px){

    html,body{
        width:100%;
        max-width:100%;
        overflow-x:hidden;
    }

    .container{
        width:calc(100% - 28px);
        max-width:none;
    }

    /* Mobil header */
    .site-header{
        display:block !important;
        position:relative !important;
        width:100% !important;
        background:#fff !important;
        z-index:100 !important;
    }

    .utility{
        display:none !important;
    }

    .main-head{
        display:grid !important;
        grid-template-columns:1fr !important;
        gap:14px !important;
        height:auto !important;
        padding:14px 0 !important;
    }

    .brand{
        display:flex !important;
        justify-content:center !important;
        min-width:0 !important;
        padding:0 !important;
    }

    .logo-img{
        display:block !important;
        height:76px !important;
        width:auto !important;
        max-width:170px !important;
    }

    .search{
        display:flex !important;
        width:100% !important;
        max-width:none !important;
        height:46px !important;
        margin:0 auto !important;
    }

    .head-actions{
        display:flex !important;
        justify-content:center !important;
        gap:10px !important;
    }

    .head-actions a{
        padding:10px 14px !important;
        font-size:13px !important;
    }

    .sports-nav{
        display:block !important;
        overflow:hidden !important;
        border-top:1px solid #e5e7eb !important;
    }

    .nav-scroll{
        display:flex !important;
        overflow-x:auto !important;
        -webkit-overflow-scrolling:touch;
        scrollbar-width:none;
    }

    .nav-scroll::-webkit-scrollbar{
        display:none;
    }

    .nav-scroll a{
        flex:0 0 auto !important;
        padding:14px 18px !important;
        font-size:14px !important;
    }

    /* Mağaza hero mobil */
    .page-hero{
        min-height:300px !important;
        height:auto !important;
        padding:54px 0 !important;
        background-position:center !important;
    }

    .page-hero .container{
        width:calc(100% - 32px) !important;
    }

    .page-hero h1{
        font-size:clamp(48px,15vw,68px) !important;
        line-height:.95 !important;
        margin:0 0 24px !important;
        letter-spacing:-2px !important;
    }

    .page-hero p{
        max-width:100% !important;
        font-size:20px !important;
        line-height:1.45 !important;
        margin:0 !important;
        white-space:normal !important;
    }

    /* Hero altında gereksiz büyük boşluğu engelle */
    .page-hero + .section,
    .page-hero + .section.container{
        padding-top:28px !important;
        min-height:0 !important;
    }

    /* Ürünler mobilde mutlaka görünsün */
    .grid-products{
        display:grid !important;
        grid-template-columns:repeat(2,minmax(0,1fr)) !important;
        gap:14px !important;
        width:100% !important;
    }

    .grid-products .product{
        display:flex !important;
        min-width:0 !important;
        width:100% !important;
    }

    .grid-products .product > a:first-child{
        aspect-ratio:1 / 1 !important;
    }

    .grid-products .product > div{
        padding:14px !important;
        min-height:190px !important;
    }

    .grid-products .product h3{
        font-size:14px !important;
        min-height:38px !important;
    }

    .grid-products .product p{
        font-size:12px !important;
        min-height:49px !important;
    }

    .grid-products .product .price{
        font-size:17px !important;
    }

    .grid-products .product .btn{
        padding:10px 14px !important;
        font-size:13px !important;
    }

    .empty-box{
        display:block !important;
        min-height:0 !important;
        padding:22px !important;
    }
}

@media(max-width:560px){

    .container{
        width:calc(100% - 24px);
    }

    .page-hero{
        min-height:270px !important;
        padding:44px 0 !important;
    }

    .page-hero h1{
        font-size:54px !important;
    }

    .page-hero p{
        font-size:18px !important;
    }

    .grid-products{
        grid-template-columns:1fr !important;
        gap:18px !important;
    }

    .grid-products .product > div{
        min-height:auto !important;
    }

    .grid-products .product h3,
    .grid-products .product p{
        min-height:0 !important;
    }
}

/* =========================================================
   FAZ 18 - PREMIUM MAĞAZA, FİLTRE, FAVORİ, KARŞILAŞTIRMA,
   ÜRÜN DETAY V2 VE FORMA TASARLA
========================================================= */
.shop-layout{display:grid;grid-template-columns:280px minmax(0,1fr);gap:28px;align-items:start}
.shop-filters{position:sticky;top:175px;background:#fff;border:1px solid #e5e7eb;border-radius:20px;padding:20px;box-shadow:0 14px 40px rgba(15,23,42,.07)}
.shop-filters form{display:grid;gap:14px}.shop-filters h3{margin:0 0 4px}.shop-filters label span{display:block;margin-bottom:6px;font-size:13px}.shop-filters input,.shop-filters select{width:100%;height:44px;border:1px solid #d1d5db;border-radius:12px;padding:0 12px;background:#fff}.filter-price{display:grid;grid-template-columns:1fr 1fr;gap:10px}.filter-check{display:flex!important;align-items:center;gap:8px;font-size:14px}.filter-check input{width:auto;height:auto}.filter-clear{text-align:center;color:#64748b;font-weight:800;font-size:13px}.shop-results{min-width:0}
.pro-product-card{position:relative}.product-card-actions{position:absolute;right:12px;top:12px;z-index:4;display:flex;gap:8px}.product-card-actions a{width:38px;height:38px;border-radius:50%;display:grid;place-items:center;background:rgba(255,255,255,.92);box-shadow:0 8px 22px rgba(15,23,42,.16);font-size:18px;font-weight:900}.product-card-actions a.active{background:#dc2626;color:#fff}.product-badge{position:absolute;left:12px;top:12px;z-index:3;background:#111827;color:#fff;border-radius:999px;padding:8px 12px;font-size:11px;font-weight:900}.inline-badge{position:static;display:inline-flex;margin:6px 0 12px}.card-bottom-actions{display:flex;gap:10px;align-items:center;margin-top:auto}.card-bottom-actions .btn{margin:0!important}.quick-wa{border:1px solid #16a34a;color:#15803d;border-radius:999px;padding:11px 14px;font-weight:900;font-size:13px}.quick-wa:hover{background:#16a34a;color:#fff}
.compare-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:20px}.compare-card{background:#fff;border:1px solid #e5e7eb;border-radius:20px;padding:18px;box-shadow:0 14px 35px rgba(15,23,42,.07)}.compare-card img{width:100%;aspect-ratio:1/1;object-fit:contain;background:#f5f6f8;border-radius:14px}.compare-card dl{display:grid;grid-template-columns:1fr 1fr;gap:0;margin:18px 0}.compare-card dt,.compare-card dd{margin:0;padding:10px;border-bottom:1px solid #eef2f7}.compare-card dt{font-weight:900}.compare-remove{display:block;margin-top:12px;text-align:center;color:#dc2626;font-weight:800;font-size:13px}
.product-detail-v2{align-items:start}.product-gallery-v2{position:sticky;top:170px}.gallery-main-wrap{position:relative;width:100%;aspect-ratio:1/1;overflow:hidden;border-radius:24px;background:#f4f5f7;box-shadow:0 18px 50px rgba(15,23,42,.10);cursor:zoom-in}.gallery-main-wrap>img{width:100%;height:100%;object-fit:contain;transition:transform .18s ease}.zoom-hint{position:absolute;left:16px;bottom:16px;background:rgba(17,24,39,.78);color:#fff;border-radius:999px;padding:8px 12px;font-size:11px;font-weight:800}.product-thumbnails{display:flex;gap:10px;margin-top:14px;overflow-x:auto}.thumb-btn{flex:0 0 84px;width:84px;height:84px;padding:4px;border:2px solid transparent;border-radius:12px;background:#fff;cursor:pointer}.thumb-btn.active{border-color:#111827}.thumb-btn img{width:100%;height:100%;object-fit:cover;border-radius:8px}.detail-topline{display:flex;justify-content:space-between;gap:12px;align-items:center}.detail-actions{display:flex;gap:8px;flex-wrap:wrap}.detail-actions a{border:1px solid #d1d5db;border-radius:999px;padding:9px 12px;font-size:12px;font-weight:900}.detail-actions a.active{background:#dc2626;color:#fff;border-color:#dc2626}.cart-form-v2{display:block}.option-group{margin:18px 0}.option-values{display:flex;gap:10px;flex-wrap:wrap;margin-top:8px}.option-values select{width:100%;height:48px;border:1px solid #d1d5db;border-radius:12px;padding:0 12px}.option-pill input{display:none}.option-pill span{display:inline-flex;border:1px solid #d1d5db;border-radius:999px;padding:11px 14px;cursor:pointer}.option-pill input:checked+span{background:#111827;color:#fff;border-color:#111827}.qty-row{display:grid;grid-template-columns:130px 1fr;gap:12px;align-items:end;margin-top:18px}.qty-row label input{margin-top:6px}.detail-cta-row{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin:14px 0}.btn-outline-dark{display:flex;align-items:center;justify-content:center;border:2px solid #111827;border-radius:999px;padding:13px 16px;font-weight:900}.btn-outline-dark:hover{background:#111827;color:#fff}.product-specs{border:1px solid #e5e7eb;border-radius:18px;padding:18px;margin-top:18px}.product-specs h3{margin-top:0}.product-specs dl{display:grid;grid-template-columns:145px 1fr;margin:0}.product-specs dt,.product-specs dd{margin:0;padding:10px 0;border-bottom:1px solid #eef2f7}.product-specs dt{font-weight:900}
.designer-layout{display:grid;grid-template-columns:1.15fr .85fr;gap:36px;align-items:start}.designer-stage{background:radial-gradient(circle at center,#fff 0%,#eef2f7 100%);border-radius:26px;min-height:620px;display:grid;place-items:center;box-shadow:0 20px 60px rgba(15,23,42,.10)}.jersey-preview{--jersey-color:#dc2626;position:relative;width:min(520px,82%);aspect-ratio:1/1;display:grid;place-items:center;filter:drop-shadow(0 28px 35px rgba(15,23,42,.22))}.jersey-preview::before{content:"";position:absolute;inset:16%;background:var(--jersey-color);mix-blend-mode:multiply;opacity:.62;clip-path:polygon(25% 6%,39% 0,50% 10%,61% 0,75% 6%,96% 25%,82% 45%,75% 36%,76% 98%,24% 98%,25% 36%,18% 45%,4% 25%)}.jersey-preview>img{width:100%;height:100%;object-fit:contain;position:relative;z-index:2}.jersey-name,.jersey-number{position:absolute;z-index:3;color:#fff;text-shadow:0 2px 8px rgba(0,0,0,.55);font-weight:900;left:50%;transform:translateX(-50%)}.jersey-name{top:39%;font-size:clamp(14px,2vw,24px);letter-spacing:1px}.jersey-number{top:45%;font-size:clamp(58px,10vw,110px)}.jersey-logo{display:none;position:absolute;z-index:4;top:34%;left:35%;width:55px;height:55px;object-fit:contain}.designer-panel{background:#fff;border:1px solid #e5e7eb;border-radius:24px;padding:24px;display:grid;gap:16px;box-shadow:0 18px 50px rgba(15,23,42,.09)}.designer-panel h2{margin:0}.designer-panel input,.designer-panel select{width:100%;height:48px;border:1px solid #d1d5db;border-radius:12px;padding:0 12px}.designer-panel input[type=color]{padding:5px}.designer-whatsapp{margin-top:6px}
@media(max-width:1100px){.shop-layout{grid-template-columns:1fr}.shop-filters{position:static}.shop-filters form{grid-template-columns:repeat(3,1fr);align-items:end}.shop-filters h3{grid-column:1/-1}.compare-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.product-gallery-v2{position:static}.designer-layout{grid-template-columns:1fr}.designer-stage{min-height:500px}}
@media(max-width:700px){.shop-filters form{grid-template-columns:1fr}.filter-price{grid-template-columns:1fr 1fr}.compare-grid{grid-template-columns:1fr}.detail-topline{align-items:flex-start;flex-direction:column}.detail-cta-row{grid-template-columns:1fr}.qty-row{grid-template-columns:1fr}.product-specs dl{grid-template-columns:110px 1fr}.designer-stage{min-height:420px}.jersey-preview{width:94%}.card-bottom-actions{flex-direction:column;align-items:stretch}.card-bottom-actions a{text-align:center}}
/* =========================================================
   PREMIUM CHECKOUT
========================================================= */

.checkout-hero {
    position: relative;
    padding: 52px 0;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(255, 255, 255, .12),
            transparent 32%
        ),
        linear-gradient(135deg, #07111f 0%, #122943 100%);
}

.checkout-hero::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -140px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
}

.checkout-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.checkout-kicker {
    display: inline-block;
    margin-bottom: 13px;
    color: #8eb8e8;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.checkout-hero h1 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.08;
}

.checkout-hero p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 16px;
    line-height: 1.75;
}

.checkout-hero-trust {
    min-width: 290px;
    padding: 8px 0 8px 26px;
    border-left: 1px solid rgba(255, 255, 255, .16);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 9px 0;
}

.trust-icon {
    display: grid;
    flex: 0 0 39px;
    width: 39px;
    height: 39px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    background: rgba(255, 255, 255, .07);
}

.trust-item strong,
.trust-item small {
    display: block;
}

.trust-item strong {
    color: #fff;
    font-size: 13px;
}

.trust-item small {
    margin-top: 2px;
    color: rgba(255, 255, 255, .58);
    font-size: 11px;
}

.checkout-page {
    min-height: 700px;
    padding: 44px 0 80px;
    background: #f4f7fb;
}

.checkout-progress {
    display: flex;
    max-width: 560px;
    align-items: center;
    justify-content: center;
    margin: 0 auto 38px;
}

.checkout-progress-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    color: #98a4b3;
    font-size: 12px;
}

.checkout-progress-item span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid #dce3eb;
    border-radius: 50%;
    background: #fff;
    font-weight: 800;
}

.checkout-progress-item.active {
    color: #0f2742;
}

.checkout-progress-item.active span {
    border-color: #0f2742;
    color: #fff;
    background: #0f2742;
    box-shadow: 0 8px 20px rgba(15, 39, 66, .18);
}

.checkout-progress-line {
    width: 90px;
    height: 1px;
    margin: 0 14px 24px;
    background: #dce3eb;
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 28px;
    align-items: start;
}

.checkout-main {
    min-width: 0;
}

.checkout-card {
    margin-bottom: 22px;
    padding: 30px;
    border: 1px solid #e4e9ef;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(25, 43, 65, .055);
}

.checkout-card-header {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 27px;
    padding-bottom: 22px;
    border-bottom: 1px solid #edf0f4;
}

.checkout-card-number {
    display: grid;
    flex: 0 0 47px;
    width: 47px;
    height: 47px;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: #102b48;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(16, 43, 72, .17);
}

.checkout-card-label {
    display: block;
    margin-bottom: 5px;
    color: #7990aa;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.checkout-card-header h2 {
    margin: 0 0 6px;
    color: #14263a;
    font-size: 21px;
}

.checkout-card-header p {
    margin: 0;
    color: #7c8998;
    font-size: 13px;
    line-height: 1.6;
}

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

.checkout-field-full {
    grid-column: 1 / -1;
}

.checkout-field label {
    display: block;
    margin-bottom: 9px;
    color: #26384b;
    font-size: 13px;
    font-weight: 750;
}

.checkout-field label span {
    color: #d14242;
}

.checkout-field input,
.checkout-field textarea {
    width: 100%;
    border: 1px solid #dce3ea;
    border-radius: 12px;
    outline: none;
    color: #15283d;
    background: #fbfcfd;
    font-family: inherit;
    font-size: 14px;
    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.checkout-field input {
    min-height: 52px;
    padding: 0 15px;
}

.checkout-field textarea {
    min-height: 125px;
    padding: 15px;
    resize: vertical;
    line-height: 1.6;
}

.checkout-field input:focus,
.checkout-field textarea:focus {
    border-color: #58799e;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(46, 88, 132, .09);
}

.checkout-field small {
    display: block;
    margin-top: 7px;
    color: #8b96a3;
    font-size: 11px;
}

.checkout-input-wrap {
    position: relative;
}

.checkout-input-wrap input {
    padding-left: 47px;
}

.checkout-input-icon {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 16px;
    color: #708296;
    transform: translateY(-50%);
}

.checkout-info-strip {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 17px;
    padding: 13px 15px;
    border: 1px solid #dce7f3;
    border-radius: 12px;
    background: #f5f9fd;
}

.checkout-info-strip p {
    margin: 0;
    color: #65788c;
    font-size: 12px;
    line-height: 1.6;
}

.checkout-upload {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-top: 22px;
    padding: 22px;
    border: 1px dashed #bcc9d6;
    border-radius: 16px;
    background: #f8fafc;
}

.checkout-upload-icon {
    display: grid;
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 15px;
    color: #fff;
    background: #163552;
    font-size: 20px;
}

.checkout-upload-content {
    flex: 1;
}

.checkout-upload-content strong {
    display: block;
    color: #1b3046;
    font-size: 14px;
}

.checkout-upload-content p {
    margin: 6px 0 13px;
    color: #7c8997;
    font-size: 12px;
    line-height: 1.55;
}

.checkout-upload-content input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.checkout-upload-btn {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    border-radius: 9px;
    cursor: pointer;
    color: #fff;
    background: #173956;
    font-size: 12px;
    font-weight: 700;
}

#selectedFileName {
    display: inline-block;
    max-width: 260px;
    margin-left: 11px;
    overflow: hidden;
    color: #7b8794;
    font-size: 11px;
    text-overflow: ellipsis;
    vertical-align: middle;
    white-space: nowrap;
}

.checkout-file-note {
    margin: 10px 0 0;
    color: #8994a0;
    font-size: 11px;
}

.checkout-payment-list {
    display: grid;
    gap: 13px;
}

.checkout-payment-card {
    position: relative;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    border: 1px solid #dfe5eb;
    border-radius: 15px;
    cursor: pointer;
    background: #fff;
    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease,
        background .2s ease;
}

.checkout-payment-card:hover {
    border-color: #99aec3;
    transform: translateY(-1px);
}

.checkout-payment-card.active {
    border-color: #193d60;
    background: #f8fbfe;
    box-shadow: 0 10px 24px rgba(22, 53, 82, .09);
}

.checkout-payment-card > input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkout-payment-radio {
    position: relative;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin-top: 3px;
    border: 2px solid #bdc8d3;
    border-radius: 50%;
}

.checkout-payment-card.active .checkout-payment-radio {
    border-color: #183b5d;
}

.checkout-payment-card.active .checkout-payment-radio::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #183b5d;
    transform: translate(-50%, -50%);
}

.checkout-payment-icon {
    display: grid;
    flex: 0 0 43px;
    width: 43px;
    height: 43px;
    place-items: center;
    border-radius: 12px;
    background: #eef3f7;
}

.checkout-payment-content {
    min-width: 0;
    flex: 1;
}

.checkout-payment-title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
}

.checkout-payment-title strong {
    color: #1a2e43;
    font-size: 14px;
}

.checkout-payment-content p {
    margin: 7px 0 0;
    color: #788594;
    font-size: 12px;
    line-height: 1.6;
}

.checkout-recommended {
    padding: 4px 7px;
    border-radius: 30px;
    color: #195a43;
    background: #dff5ea;
    font-size: 8px;
    font-weight: 850;
    letter-spacing: .7px;
}

.checkout-payment-mini-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
}

.checkout-payment-mini-logos span {
    padding: 5px 8px;
    border: 1px solid #dce3e9;
    border-radius: 6px;
    color: #617386;
    background: #fff;
    font-size: 9px;
    font-weight: 750;
}

.checkout-agreements {
    display: grid;
    gap: 12px;
}

.checkout-agreement-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    border: 1px solid #e3e8ed;
    border-radius: 12px;
    cursor: pointer;
    background: #fbfcfd;
}

.checkout-agreement-item input {
    position: absolute;
    opacity: 0;
}

.checkout-custom-check {
    position: relative;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    border: 1.5px solid #b9c4cf;
    border-radius: 6px;
    background: #fff;
}

.checkout-agreement-item input:checked +
.checkout-custom-check {
    border-color: #193b5c;
    background: #193b5c;
}

.checkout-agreement-item input:checked +
.checkout-custom-check::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    transform: translate(-50%, -50%);
}

.checkout-agreement-text {
    color: #657383;
    font-size: 12px;
    line-height: 1.65;
}

.checkout-agreement-text a {
    color: #143c62;
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.checkout-sidebar {
    position: relative;
}

.checkout-summary-card {
    position: sticky;
    top: 96px;
    overflow: hidden;
    border: 1px solid #dfe5eb;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(25, 43, 64, .09);
}

.checkout-summary-header {
    padding: 25px 25px 20px;
    border-bottom: 1px solid #edf0f3;
}

.checkout-summary-header span {
    display: block;
    margin-bottom: 6px;
    color: #8190a0;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 1.6px;
}

.checkout-summary-header h2 {
    margin: 0;
    color: #172b40;
    font-size: 22px;
}

.checkout-summary-amount {
    padding: 22px 25px;
    color: #fff;
    background:
        linear-gradient(135deg, #102a45, #1d476c);
}

.checkout-summary-amount span {
    display: block;
    margin-bottom: 7px;
    color: rgba(255, 255, 255, .68);
    font-size: 11px;
}

.checkout-summary-amount strong {
    display: block;
    color: #fff;
    font-size: 30px;
    line-height: 1;
}

.checkout-summary-rows {
    display: grid;
    gap: 15px;
    padding: 22px 25px;
}

.checkout-summary-rows > div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.checkout-summary-rows span {
    color: #7a8795;
    font-size: 12px;
}

.checkout-summary-rows strong {
    max-width: 190px;
    color: #2e4053;
    font-size: 12px;
    text-align: right;
}

.checkout-summary-divider {
    height: 1px;
    margin: 0 25px;
    background: #e9edf1;
}

.checkout-summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
}

.checkout-summary-total span {
    color: #263a4e;
    font-size: 13px;
    font-weight: 750;
}

.checkout-summary-total strong {
    color: #102d49;
    font-size: 22px;
}

.checkout-primary-btn {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    border-radius: 12px;
    cursor: pointer;
    color: #fff;
    background:
        linear-gradient(135deg, #142f4c, #235982);
    box-shadow: 0 12px 24px rgba(23, 57, 87, .18);
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.checkout-primary-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(23, 57, 87, .24);
}

.checkout-submit-btn {
    width: calc(100% - 50px);
    margin: 0 25px 20px;
}

.checkout-secure-box {
    margin: 0 25px 20px;
    padding: 16px;
    border: 1px solid #e3e9ef;
    border-radius: 13px;
    background: #f8fafc;
}

.checkout-secure-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-secure-head strong,
.checkout-secure-head small {
    display: block;
}

.checkout-secure-head strong {
    color: #283d52;
    font-size: 11px;
}

.checkout-secure-head small {
    margin-top: 2px;
    color: #8793a0;
    font-size: 9px;
}

.checkout-official-logos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 14px;
    padding-top: 13px;
    border-top: 1px solid #e4e9ee;
}

.checkout-official-logos img {
    display: block;
    width: auto;
    max-width: 240px;
    height: 38px;
    object-fit: contain;
}

.checkout-official-logos img:first-child {
    max-width: 105px;
    height: 27px;
}

.checkout-support-box {
    padding: 20px 25px 24px;
    border-top: 1px solid #edf0f3;
    background: #fbfcfd;
}

.checkout-support-box span,
.checkout-support-box strong {
    display: block;
}

.checkout-support-box span {
    margin-bottom: 5px;
    color: #8793a0;
    font-size: 10px;
}

.checkout-support-box strong {
    color: #304459;
    font-size: 11px;
    line-height: 1.5;
}

.checkout-support-box a {
    display: inline-block;
    margin-top: 10px;
    color: #174c78;
    font-size: 11px;
    font-weight: 800;
}

.checkout-alert {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    margin-bottom: 24px;
    padding: 16px 18px;
    border-radius: 13px;
}

.checkout-alert > span {
    display: grid;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    font-weight: 900;
}

.checkout-alert strong,
.checkout-alert p {
    display: block;
}

.checkout-alert p {
    margin: 4px 0 0;
    font-size: 12px;
}

.checkout-alert-error {
    border: 1px solid #f0cbcb;
    color: #833333;
    background: #fff2f2;
}

.checkout-alert-error > span {
    color: #fff;
    background: #c54848;
}

.checkout-empty {
    max-width: 560px;
    margin: 30px auto;
    padding: 60px 35px;
    border: 1px solid #e1e7ed;
    border-radius: 22px;
    background: #fff;
    text-align: center;
    box-shadow: 0 16px 40px rgba(25, 43, 64, .07);
}

.checkout-empty-icon {
    margin-bottom: 15px;
    font-size: 44px;
}

.checkout-empty h2 {
    margin: 0 0 10px;
    color: #193048;
}

.checkout-empty p {
    margin: 0 0 22px;
    color: #7a8795;
    line-height: 1.65;
}

.checkout-mobile-submit {
    display: none;
}

@media (max-width: 1050px) {
    .checkout-layout {
        grid-template-columns: minmax(0, 1fr) 340px;
    }
}

@media (max-width: 900px) {
    .checkout-hero-inner {
        display: block;
    }

    .checkout-hero-trust {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        min-width: 0;
        margin-top: 25px;
        padding: 18px 0 0;
        border-top: 1px solid rgba(255, 255, 255, .14);
        border-left: 0;
    }

    .trust-item {
        align-items: flex-start;
    }

    .checkout-layout {
        display: block;
    }

    .checkout-sidebar {
        margin-top: 24px;
    }

    .checkout-summary-card {
        position: static;
    }

    .checkout-sidebar .checkout-submit-btn {
        display: none;
    }

    .checkout-mobile-submit {
        display: block;
    }

    .checkout-mobile-submit .checkout-submit-btn {
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 640px) {
    .checkout-hero {
        padding: 36px 0;
    }

    .checkout-hero h1 {
        font-size: 31px;
    }

    .checkout-hero-trust {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .checkout-page {
        padding: 30px 0 60px;
    }

    .checkout-progress {
        margin-bottom: 25px;
    }

    .checkout-progress-line {
        width: 45px;
        margin-right: 7px;
        margin-left: 7px;
    }

    .checkout-card {
        padding: 21px 17px;
        border-radius: 16px;
    }

    .checkout-card-header {
        gap: 12px;
    }

    .checkout-card-number {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .checkout-card-header h2 {
        font-size: 18px;
    }

    .checkout-form-grid {
        grid-template-columns: 1fr;
    }

    .checkout-field-full {
        grid-column: auto;
    }

    .checkout-upload {
        display: block;
        padding: 18px;
    }

    .checkout-upload-icon {
        margin-bottom: 13px;
    }

    #selectedFileName {
        display: block;
        margin: 10px 0 0;
    }

    .checkout-payment-card {
        padding: 16px;
    }

    .checkout-payment-icon {
        display: none;
    }

    .checkout-summary-card {
        border-radius: 16px;
    }
}
/* =========================================================
   PREMIUM FOOTER
========================================================= */

.site-footer {
    position: relative;
    overflow: hidden;
    color: #cbd5df;
    background: #07111d;
}

.site-footer a {
    color: inherit;
    text-decoration: none;
}

.footer-top {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(53, 113, 166, .22),
            transparent 34%
        ),
        linear-gradient(135deg, #0b1b2d, #112c47);
}

.footer-top::before {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -220px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
}

.footer-top-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-top: 46px;
    padding-bottom: 46px;
}

.footer-top-content {
    max-width: 700px;
}

.footer-eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #8fb7da;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 2px;
}

.footer-top-content h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(25px, 3vw, 38px);
    line-height: 1.15;
}

.footer-top-content p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .67);
    font-size: 14px;
    line-height: 1.75;
}

.footer-top-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 12px;
}

.footer-primary-btn,
.footer-secondary-btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 20px;
    border-radius: 11px;
    font-size: 12px;
    font-weight: 800;
    transition:
        transform .2s ease,
        background .2s ease,
        border-color .2s ease;
}

.footer-primary-btn {
    color: #10283f !important;
    background: #fff;
}

.footer-primary-btn:hover {
    transform: translateY(-2px);
}

.footer-secondary-btn {
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff !important;
    background: rgba(255, 255, 255, .05);
}

.footer-secondary-btn:hover {
    border-color: rgba(255, 255, 255, .34);
    background: rgba(255, 255, 255, .1);
    transform: translateY(-2px);
}

.footer-main {
    padding: 62px 0 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.5fr) repeat(3, minmax(150px, 1fr));
    gap: 48px;
}

.footer-brand {
    max-width: 390px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 17px;
    color: #fff !important;
    font-size: 25px;
    font-weight: 900;
    letter-spacing: -.6px;
}

.footer-brand > p {
    margin: 0;
    color: #8290a0;
    font-size: 13px;
    line-height: 1.8;
}

.footer-contact-mini {
    display: grid;
    gap: 9px;
    margin-top: 24px;
}

.footer-contact-mini a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 11px 13px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 10px;
    background: rgba(255, 255, 255, .025);
}

.footer-contact-mini a:hover {
    border-color: rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .05);
}

.footer-contact-mini span {
    color: #667587;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.footer-contact-mini strong {
    color: #d7dfe7;
    font-size: 11px;
    font-weight: 700;
    text-align: right;
}

.footer-column h4 {
    position: relative;
    margin: 4px 0 22px;
    padding-bottom: 11px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.footer-column h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    border-radius: 10px;
    background: #4c82af;
}

.footer-column a {
    position: relative;
    display: block;
    width: fit-content;
    margin-bottom: 12px;
    color: #8390a0;
    font-size: 12px;
    line-height: 1.45;
    transition:
        color .2s ease,
        transform .2s ease;
}

.footer-column a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-info {
    border-top: 1px solid rgba(255, 255, 255, .07);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    background: rgba(255, 255, 255, .018);
}

.footer-info-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
    gap: 30px;
    padding-top: 26px;
    padding-bottom: 26px;
}

.footer-address-card,
.footer-trust-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.footer-info-label {
    display: block;
    margin-bottom: 7px;
    color: #62758a;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 1.5px;
}

.footer-address-card p,
.footer-trust-card p {
    margin: 0;
    color: #9aa6b2;
    font-size: 11px;
    line-height: 1.65;
}

.footer-address-card p {
    max-width: 670px;
}

.footer-trust-card {
    padding-left: 30px;
    border-left: 1px solid rgba(255, 255, 255, .08);
}

.footer-trust-card > div:first-child {
    max-width: 270px;
}

.footer-payment-logos{
    display:flex;
    justify-content:center;
    align-items:center;
    background:#fff;
    padding:16px 20px;
    border-radius:12px;
    min-width:280px;
}

.footer-payment-logos img{
    display:block;
    width:100%;
    max-width:300px;
    height:auto;
}

.footer-payment-logos img:first-child {
    max-width: 98px;
    height: 26px;
}

.footer-bottom {
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.footer-bottom p,
.footer-made {
    margin: 0;
    color: #647182;
    font-size: 10px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-bottom-links a {
    color: #7f8c9b;
    font-size: 10px;
}

.footer-bottom-links a:hover {
    color: #fff;
}

.footer-made {
    text-align: right;
}

@media (max-width: 1050px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand {
        max-width: none;
    }

    .footer-info-grid {
        grid-template-columns: 1fr;
    }

    .footer-trust-card{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}
}

@media (max-width: 760px) {
    .footer-top-inner {
        display: block;
    }

    .footer-top-actions {
        margin-top: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-brand {
        padding-bottom: 28px;
        border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    .footer-address-card,
    .footer-trust-card {
        display: block;
    }

    .footer-payment-logos {
        width: fit-content;
        margin-top: 18px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-made {
        text-align: left;
    }
}

@media (max-width: 520px) {
    .footer-top-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-primary-btn,
    .footer-secondary-btn {
        width: 100%;
    }

    .footer-main {
        padding-top: 45px;
    }

    .footer-contact-mini a {
        display: block;
    }

    .footer-contact-mini strong {
        display: block;
        margin-top: 4px;
        text-align: left;
    }

    .footer-payment-logos {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom-links {
        justify-content: flex-start;
        gap: 12px;
    }
}
/* İYZİCO FOOTER LOGO KESİN BOYUT */
.site-footer .footer-payment-logos {
    display: flex;
    width: 300px;
    min-width: 300px;
    height: auto;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border-radius: 12px;
    background: #ffffff;
}

.site-footer .footer-payment-logos img {
    display: block !important;
    width: 260px !important;
    max-width: none !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
}
@media (max-width: 760px) {
    .site-footer .footer-payment-logos {
        width: 100%;
        min-width: 0;
        max-width: 360px;
    }

    .site-footer .footer-payment-logos img {
        width: 100% !important;
        max-width: 320px !important;
    }
}
/* =========================================================
   FAZ 19 - PREMIUM VİTRİN, BANNER, HOVER GALERİ,
   QUICK VIEW VE TAM EKRAN ÜRÜN GALERİSİ
========================================================= */
body.modal-open{overflow:hidden}
.section-kicker,.hero-kicker{display:block;margin-bottom:10px;font-size:12px;font-weight:900;letter-spacing:.18em;text-transform:uppercase;color:#dc2626}
.section-head>div>p{margin:8px 0 0;color:#64748b}

/* Hero slider */
.home-hero-slider{position:relative;min-height:650px;overflow:hidden;background:#0f172a}
.hero-slides{position:relative;min-height:650px}
.hero-slide{position:absolute;inset:0;opacity:0;visibility:hidden;transition:opacity .7s ease,visibility .7s ease;pointer-events:none}
.hero-slide.is-active{opacity:1;visibility:visible;pointer-events:auto;z-index:2}
.hero-slide picture,.hero-slide picture img{display:block;width:100%;height:100%}
.hero-slide picture{position:absolute;inset:0}
.hero-slide picture img{object-fit:cover;transform:scale(1.035);transition:transform 7s ease}
.hero-slide.is-active picture img{transform:scale(1)}
.hero-slide-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(3,7,18,.9) 0%,rgba(3,7,18,.66) 43%,rgba(3,7,18,.14) 76%,rgba(3,7,18,.1) 100%)}
.hero-slide-content{position:relative;z-index:3;min-height:650px;display:flex;flex-direction:column;justify-content:center;align-items:flex-start;color:#fff;padding:80px 0}
.hero-slide-content h1{max-width:850px;margin:0 0 22px;font-size:clamp(48px,6vw,92px);line-height:.95;letter-spacing:-.045em;color:#fff}
.hero-slide-content p{max-width:720px;margin:0 0 30px;font-size:20px;line-height:1.65;color:#e5e7eb}
.hero-kicker{color:#fca5a5}
.hero-arrow{position:absolute;top:50%;z-index:5;width:52px;height:52px;border:1px solid rgba(255,255,255,.35);border-radius:50%;background:rgba(15,23,42,.34);color:#fff;font-size:36px;line-height:1;cursor:pointer;backdrop-filter:blur(10px);transform:translateY(-50%);transition:.25s}
.hero-arrow:hover{background:#fff;color:#111827}
.hero-prev{left:24px}.hero-next{right:24px}
.hero-dots{position:absolute;z-index:5;left:50%;bottom:26px;display:flex;gap:8px;transform:translateX(-50%)}
.hero-dots button{width:34px;height:5px;border:0;border-radius:999px;background:rgba(255,255,255,.45);cursor:pointer;transition:.25s}
.hero-dots button.is-active{width:62px;background:#fff}

/* Benefits */
.home-benefits{position:relative;z-index:7;display:grid;grid-template-columns:repeat(4,1fr);margin-top:18px;padding:0;background:#fff;border:1px solid #e5e7eb;border-radius:22px;box-shadow:0 24px 70px rgba(15,23,42,.14);overflow:hidden}
.home-benefits>div{padding:24px 28px;border-right:1px solid #e5e7eb}
.home-benefits>div:last-child{border-right:0}
.home-benefits strong,.home-benefits span{display:block}.home-benefits strong{font-size:16px}.home-benefits span{margin-top:5px;font-size:13px;color:#64748b}

/* Promotion banners */
.home-promo-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px}
.home-promo-card{position:relative;min-height:360px;overflow:hidden;border-radius:28px;background:#111827;box-shadow:0 24px 60px rgba(15,23,42,.14)}
.home-promo-card picture,.home-promo-card img{display:block;width:100%;height:100%}
.home-promo-card picture{position:absolute;inset:0}.home-promo-card img{object-fit:cover;transition:transform .7s cubic-bezier(.2,.7,.2,1)}
.home-promo-card:hover img{transform:scale(1.055)}
.home-promo-overlay{position:absolute;inset:0;background:linear-gradient(0deg,rgba(3,7,18,.82),rgba(3,7,18,.08) 70%)}
.home-promo-copy{position:absolute;z-index:2;left:30px;right:30px;bottom:28px;color:#fff}
.home-promo-copy small,.home-promo-copy strong,.home-promo-copy em{display:block}.home-promo-copy small{margin-bottom:6px;color:#e5e7eb}.home-promo-copy strong{font-size:clamp(26px,3vw,42px);line-height:1.05}.home-promo-copy em{margin-top:14px;font-style:normal;font-weight:900}

/* Collection cards */
.collection-card{position:relative;min-height:380px;overflow:hidden;padding:0!important;background:#111827!important}
.collection-card>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .65s ease!important}
.collection-card:hover>img{transform:scale(1.06)!important}
.collection-card-shade{position:absolute;inset:0;background:linear-gradient(0deg,rgba(3,7,18,.86),rgba(3,7,18,.08) 74%)}
.collection-card-copy{position:absolute;z-index:2;left:22px;right:22px;bottom:22px;color:#fff}
.collection-card-copy h3,.collection-card-copy p{color:#fff!important}.collection-card-copy h3{font-size:25px}.collection-card-copy p{opacity:.82}.collection-card-copy em{display:block;margin-top:12px;font-style:normal;font-weight:900}

/* Product cards */
.premium-product-card{isolation:isolate;border-radius:24px!important;border:1px solid #e5e7eb!important;background:#fff!important;box-shadow:0 16px 42px rgba(15,23,42,.075)!important;overflow:hidden!important;transition:transform .35s ease,box-shadow .35s ease!important}
.premium-product-card:hover{transform:translateY(-9px)!important;box-shadow:0 30px 70px rgba(15,23,42,.16)!important}
.premium-product-card .product-media{position:relative;display:block;width:100%;aspect-ratio:1/1;overflow:hidden;background:linear-gradient(145deg,#f8fafc,#eef2f7)}
.premium-product-card .product-card-image{position:absolute;inset:0;width:100%!important;height:100%!important;object-fit:contain!important;padding:8px;opacity:0;transform:scale(1.035);transition:opacity .38s ease,transform .55s ease!important;pointer-events:none}
.premium-product-card .product-card-image.is-active{opacity:1;transform:scale(1)}
.premium-product-card:hover .product-card-image.is-active{transform:scale(1.025)}
.product-image-count{position:absolute;left:14px;bottom:14px;z-index:2;padding:8px 11px;border-radius:999px;background:rgba(17,24,39,.72);color:#fff;font-size:11px;font-weight:800;backdrop-filter:blur(8px)}
.product-card-body{padding:20px!important;min-height:245px!important}
.product-card-body h3 a:hover{color:#dc2626}
.premium-card-actions{display:grid!important;grid-template-columns:1fr 1fr!important;gap:8px!important;width:100%;margin-top:16px!important}
.quick-view-trigger,.premium-card-actions .btn{display:flex;align-items:center;justify-content:center;min-height:44px;margin:0!important;border-radius:999px!important;padding:10px 12px!important;font-size:13px!important;font-weight:900;cursor:pointer}
.quick-view-trigger{border:1px solid #111827;background:#fff;color:#111827}
.quick-view-trigger:hover{background:#111827;color:#fff}
.premium-card-actions .btn{border:1px solid #dc2626;background:#dc2626;color:#fff}
.product-card-actions{z-index:8}.product-card-actions a{transition:transform .2s ease,background .2s ease}.product-card-actions a:hover{transform:scale(1.08)}

/* Product detail */
.gallery-main-wrap{cursor:zoom-in!important}
.gallery-main-wrap:focus-visible{outline:3px solid rgba(220,38,38,.35);outline-offset:4px}
.gallery-counter{position:absolute;right:16px;bottom:16px;z-index:4;padding:8px 12px;border-radius:999px;background:rgba(17,24,39,.78);color:#fff;font-size:12px;font-weight:800}
.inline-gallery-arrow{position:absolute;z-index:5;top:50%;width:46px;height:46px;border:0;border-radius:50%;background:rgba(255,255,255,.92);box-shadow:0 10px 30px rgba(15,23,42,.2);font-size:30px;line-height:1;cursor:pointer;transform:translateY(-50%)}
.inline-gallery-arrow:hover{background:#111827;color:#fff}.inline-prev{left:14px}.inline-next{right:14px}
.product-accordion{margin-top:18px;border:1px solid #e5e7eb;border-radius:20px;overflow:hidden;background:#fff}
.product-accordion details+details{border-top:1px solid #e5e7eb}.product-accordion summary{position:relative;padding:18px 50px 18px 20px;font-weight:900;cursor:pointer;list-style:none}.product-accordion summary::-webkit-details-marker{display:none}.product-accordion summary::after{content:'+';position:absolute;right:20px;top:14px;font-size:26px;font-weight:400}.product-accordion details[open] summary::after{content:'−'}.product-accordion details>div{padding:0 20px 20px;color:#475569;line-height:1.7}.product-accordion dl{display:grid;grid-template-columns:145px 1fr;margin:0}.product-accordion dt,.product-accordion dd{margin:0;padding:10px 0;border-bottom:1px solid #eef2f7}.product-accordion dt{font-weight:900;color:#111827}

/* Quick view modal */
.quick-view-modal{position:fixed;inset:0;z-index:1000;display:none;align-items:center;justify-content:center;padding:24px}
.quick-view-modal.is-open{display:flex}
.quick-view-backdrop{position:absolute;inset:0;background:rgba(2,6,23,.78);backdrop-filter:blur(9px)}
.quick-view-dialog{position:relative;z-index:2;width:min(1080px,96vw);max-height:92vh;overflow:auto;border-radius:28px;background:#fff;box-shadow:0 34px 100px rgba(0,0,0,.35)}
.modal-close{position:sticky;float:right;top:16px;right:16px;z-index:9;width:44px;height:44px;margin:16px 16px -60px 0;border:0;border-radius:50%;background:#111827;color:#fff;font-size:28px;cursor:pointer}
.quick-view-loading{min-height:340px;display:grid;place-items:center;padding:70px;font-weight:900;color:#64748b}
.quick-view-content{display:grid;grid-template-columns:1.05fr .95fr;gap:0;min-height:600px}
.quick-gallery{padding:34px;background:#f8fafc}.quick-main-image{aspect-ratio:1/1;border-radius:22px;background:#fff;overflow:hidden}.quick-main-image img{width:100%;height:100%;object-fit:contain}
.quick-thumbs{display:flex;gap:8px;margin-top:12px;overflow:auto}.quick-thumbs button{flex:0 0 72px;width:72px;height:72px;padding:4px;border:2px solid transparent;border-radius:12px;background:#fff;cursor:pointer}.quick-thumbs button.is-active{border-color:#111827}.quick-thumbs img{width:100%;height:100%;object-fit:cover;border-radius:8px}
.quick-info{padding:44px 38px}.quick-category{display:inline-flex;margin-bottom:14px;padding:8px 12px;border-radius:999px;background:#f1f5f9;font-size:12px;font-weight:900}.quick-info h2{margin:0;font-size:clamp(30px,4vw,48px);line-height:1.05}.quick-info>p{color:#64748b;line-height:1.65}.quick-price{display:block;margin:18px 0;font-size:28px;color:#dc2626}
.quick-cart-form{display:grid;gap:14px}.quick-option>span,.quick-option legend{display:block;margin-bottom:7px;font-size:13px;font-weight:900}.quick-option{margin:0;padding:0;border:0}.quick-option select,.quick-option input[type=file],.quick-qty input{width:100%;min-height:46px;border:1px solid #d1d5db;border-radius:12px;padding:10px 12px;background:#fff}.quick-pills{display:flex;flex-wrap:wrap;gap:8px}.quick-pills input{display:none}.quick-pills span{display:inline-flex;padding:10px 13px;border:1px solid #d1d5db;border-radius:999px;cursor:pointer}.quick-pills input:checked+span{background:#111827;color:#fff;border-color:#111827}
.quick-qty{display:grid;grid-template-columns:120px 1fr;gap:10px;align-items:end}.quick-qty label{font-size:13px;font-weight:900}.quick-qty button{min-height:48px;border:0;border-radius:999px;background:#dc2626;color:#fff;font-weight:900;cursor:pointer}.quick-detail-link{display:block;margin-top:18px;font-weight:900}

/* Fullscreen lightbox */
.gallery-lightbox{position:fixed;inset:0;z-index:1100;display:none;grid-template-columns:80px 1fr 80px;grid-template-rows:70px 1fr 112px;background:rgba(2,6,23,.96);color:#fff}
.gallery-lightbox.is-open{display:grid}
.gallery-lightbox-backdrop{position:absolute;inset:0}
.gallery-lightbox-toolbar{position:relative;z-index:3;grid-column:1/-1;display:flex;align-items:center;justify-content:flex-end;gap:10px;padding:12px 20px}.gallery-lightbox-toolbar span{margin-right:auto;font-weight:900}.gallery-lightbox-toolbar button{width:44px;height:44px;border:1px solid rgba(255,255,255,.25);border-radius:50%;background:rgba(255,255,255,.08);color:#fff;font-size:24px;cursor:pointer}
.gallery-lightbox-stage{position:relative;z-index:2;grid-column:2;display:flex;align-items:center;justify-content:center;overflow:auto;padding:20px}.gallery-lightbox-stage img{max-width:100%;max-height:100%;object-fit:contain;transition:transform .22s ease;transform-origin:center}
.lightbox-arrow{position:relative;z-index:3;align-self:center;width:54px;height:54px;border:1px solid rgba(255,255,255,.25);border-radius:50%;background:rgba(255,255,255,.08);color:#fff;font-size:36px;cursor:pointer}.lightbox-prev{grid-column:1;grid-row:2;justify-self:center}.lightbox-next{grid-column:3;grid-row:2;justify-self:center}
.gallery-lightbox-thumbs{position:relative;z-index:3;grid-column:1/-1;display:flex;justify-content:center;gap:8px;padding:12px 20px;overflow:auto}.gallery-lightbox-thumbs button{flex:0 0 78px;width:78px;height:78px;padding:4px;border:2px solid transparent;border-radius:12px;background:rgba(255,255,255,.09);cursor:pointer}.gallery-lightbox-thumbs button.is-active{border-color:#fff}.gallery-lightbox-thumbs img{width:100%;height:100%;object-fit:cover;border-radius:8px}

@media(max-width:1000px){
  .home-benefits{grid-template-columns:repeat(2,1fr)}.home-benefits>div:nth-child(2){border-right:0}.home-benefits>div:nth-child(-n+2){border-bottom:1px solid #e5e7eb}
  .quick-view-content{grid-template-columns:1fr}.quick-gallery{padding:24px}.quick-info{padding:30px}.quick-view-dialog{max-height:95vh}
}
@media(max-width:700px){
  .home-hero-slider,.hero-slides,.hero-slide-content{min-height:590px}.hero-slide-content{justify-content:flex-end;padding:110px 0 72px}.hero-slide-content h1{font-size:46px}.hero-slide-content p{font-size:16px;line-height:1.5}.hero-slide-overlay{background:linear-gradient(0deg,rgba(3,7,18,.92),rgba(3,7,18,.18) 78%)}
  .hero-arrow{display:none}.hero-dots{bottom:18px}.home-benefits{margin-top:14px;border-radius:16px;grid-template-columns:1fr}.home-benefits>div{border-right:0!important;border-bottom:1px solid #e5e7eb!important;padding:18px 20px}.home-benefits>div:last-child{border-bottom:0!important}
  .home-promo-grid{grid-template-columns:1fr}.home-promo-card{min-height:300px;border-radius:20px}.collection-card{min-height:330px}
  .premium-card-actions{grid-template-columns:1fr!important}.product-card-body{min-height:230px!important}.product-card-actions a{width:34px;height:34px}
  .gallery-lightbox{grid-template-columns:52px 1fr 52px;grid-template-rows:62px 1fr 92px}.lightbox-arrow{width:42px;height:42px;font-size:28px}.gallery-lightbox-stage{padding:8px}.gallery-lightbox-thumbs{justify-content:flex-start;padding:8px 12px}.gallery-lightbox-thumbs button{flex-basis:64px;width:64px;height:64px}
  .quick-view-modal{padding:8px}.quick-view-dialog{width:100%;border-radius:20px}.quick-info{padding:26px 20px}.quick-gallery{padding:18px}.quick-qty{grid-template-columns:1fr}.modal-close{top:8px;right:8px;margin:8px 8px -52px 0}
  .product-accordion dl{grid-template-columns:105px 1fr}.zoom-hint{display:none}.inline-gallery-arrow{width:40px;height:40px}
}
@media(prefers-reduced-motion:reduce){.hero-slide,.hero-slide picture img,.premium-product-card,.premium-product-card .product-card-image,.home-promo-card img{transition:none!important}.reveal{opacity:1!important;transform:none!important}}

/* Faz 19 ürün kartı eski genel kurallardan izolasyon */
.premium-product-card>.product-card-actions{display:flex!important;flex:0 0 auto!important;flex-direction:row!important;padding:0!important;min-height:0!important}
.premium-product-card>.product-media{flex:0 0 auto!important;padding:0!important}
.premium-product-card>.product-card-body{display:flex!important;flex:1 1 auto!important;flex-direction:column!important}
@media(max-width:900px){.grid-products .premium-product-card>.product-card-actions{padding:0!important;min-height:0!important}.grid-products .premium-product-card>.product-card-body{padding:16px!important;min-height:230px!important}}
@media(max-width:560px){.grid-products .premium-product-card>.product-card-body{min-height:auto!important}}

/* =========================================================
   FAZ 19.1 VISUAL HOTFIX — MAĞAZA VE ÜRÜN KARTLARI
   ESKİ TASARIMDAN BELİRGİN ŞEKİLDE AYRI PREMIUM GÖRÜNÜM
========================================================= */
.storefront-hero{
    position:relative;
    overflow:hidden;
    min-height:390px;
    background:
        radial-gradient(circle at 82% 18%,rgba(220,38,38,.26),transparent 28%),
        radial-gradient(circle at 65% 95%,rgba(37,99,235,.16),transparent 35%),
        linear-gradient(125deg,#060914 0%,#0b1120 54%,#111827 100%);
    color:#fff;
}
.storefront-hero::before{
    content:"";
    position:absolute;
    inset:0;
    opacity:.13;
    background-image:linear-gradient(rgba(255,255,255,.12) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.12) 1px,transparent 1px);
    background-size:58px 58px;
    -webkit-mask-image:linear-gradient(90deg,#000,transparent 74%);
    mask-image:linear-gradient(90deg,#000,transparent 74%);
}
.storefront-hero::after{
    content:"";
    position:absolute;
    right:-80px;
    top:-210px;
    width:620px;
    height:620px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:50%;
    box-shadow:0 0 0 64px rgba(255,255,255,.025),0 0 0 128px rgba(255,255,255,.018);
}
.storefront-hero-inner{
    position:relative;
    z-index:2;
    min-height:390px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    padding-top:58px;
    padding-bottom:58px;
}
.storefront-copy{max-width:900px}
.storefront-kicker{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-bottom:18px;
    color:#fca5a5;
    font-size:12px;
    font-weight:900;
    letter-spacing:.18em;
}
.storefront-kicker::before{content:"";width:38px;height:2px;background:#ef4444}
.storefront-copy h1{
    margin:0;
    max-width:850px;
    color:#fff;
    font-size:clamp(46px,5vw,78px);
    line-height:.96;
    letter-spacing:-.048em;
}
.storefront-copy p{
    max-width:790px;
    margin:24px 0 0;
    color:#cbd5e1;
    font-size:18px;
    line-height:1.7;
}
.storefront-trust{display:flex;flex-wrap:wrap;gap:10px;margin-top:28px}
.storefront-trust span{
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:10px 14px;
    border:1px solid rgba(255,255,255,.14);
    border-radius:999px;
    background:rgba(255,255,255,.06);
    color:#e2e8f0;
    font-size:13px;
    font-weight:800;
    backdrop-filter:blur(10px);
}
.storefront-trust b{color:#fff}
.storefront-mark{
    position:relative;
    flex:0 0 230px;
    width:230px;
    height:230px;
    display:grid;
    place-items:center;
    border:1px solid rgba(255,255,255,.15);
    border-radius:50%;
    background:linear-gradient(145deg,rgba(255,255,255,.11),rgba(255,255,255,.02));
    box-shadow:inset 0 0 80px rgba(255,255,255,.05),0 28px 80px rgba(0,0,0,.32);
    transform:rotate(-8deg);
}
.storefront-mark::before,.storefront-mark::after{content:"";position:absolute;border-radius:50%;border:1px solid rgba(255,255,255,.1)}
.storefront-mark::before{inset:20px}.storefront-mark::after{inset:42px}
.storefront-mark span{font-size:58px;font-weight:1000;letter-spacing:-.08em;font-style:italic}
.storefront-mark small{position:absolute;bottom:62px;color:#fca5a5;font-weight:900;letter-spacing:.4em}

.storefront-section{padding-top:54px!important;padding-bottom:80px!important}
.premium-shop-layout{grid-template-columns:300px minmax(0,1fr)!important;gap:34px!important}
.premium-shop-filters{
    top:150px!important;
    padding:0!important;
    overflow:hidden;
    border:1px solid #e2e8f0!important;
    border-radius:26px!important;
    box-shadow:0 24px 70px rgba(15,23,42,.10)!important;
}
.filter-panel-head{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    padding:24px 24px 20px;
    color:#fff;
    background:linear-gradient(135deg,#0f172a,#111827);
}
.filter-panel-head span{display:block;margin-bottom:5px;color:#fca5a5;font-size:10px;font-weight:900;letter-spacing:.18em}
.filter-panel-head h3{margin:0!important;color:#fff;font-size:22px}
.filter-panel-head button{display:none;width:38px;height:38px;border:0;border-radius:50%;background:rgba(255,255,255,.1);color:#fff;font-size:25px;cursor:pointer}
.premium-shop-filters form{gap:17px!important;padding:24px!important}
.premium-shop-filters label>span{font-size:12px!important;font-weight:900;color:#334155;text-transform:uppercase;letter-spacing:.045em}
.premium-shop-filters input,.premium-shop-filters select{
    height:48px!important;
    border-color:#dbe3ee!important;
    border-radius:14px!important;
    background:#f8fafc!important;
    transition:border-color .2s,box-shadow .2s,background .2s;
}
.premium-shop-filters input:focus,.premium-shop-filters select:focus{outline:none;border-color:#dc2626!important;background:#fff!important;box-shadow:0 0 0 4px rgba(220,38,38,.08)}
.filter-search{position:relative}.filter-search i{position:absolute;left:14px;top:50%;z-index:2;transform:translateY(-50%);font-style:normal;font-size:20px;color:#94a3b8}.filter-search input{padding-left:42px!important}
.premium-shop-filters .filter-check{position:relative;gap:10px!important;padding:12px 0;color:#334155;font-weight:800}
.premium-shop-filters .filter-check>input{position:absolute;opacity:0;pointer-events:none}
.check-ui{width:22px;height:22px;margin:0!important;border:1px solid #cbd5e1;border-radius:7px;background:#fff;box-shadow:inset 0 0 0 4px #fff}
.filter-check input:checked+.check-ui{border-color:#dc2626;background:#dc2626}
.filter-submit{
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
    min-height:50px;
    padding:0 18px;
    border:0;
    border-radius:14px;
    background:linear-gradient(135deg,#dc2626,#ef4444);
    color:#fff;
    font-weight:900;
    cursor:pointer;
    box-shadow:0 14px 30px rgba(220,38,38,.22);
    transition:transform .2s,box-shadow .2s;
}
.filter-submit:hover{transform:translateY(-2px);box-shadow:0 20px 38px rgba(220,38,38,.3)}
.filter-submit em{font-size:20px;font-style:normal}
.filter-help{margin:0 16px 16px;padding:18px;border-radius:18px;background:#f1f5f9}
.filter-help strong,.filter-help span{display:block}.filter-help strong{font-size:14px}.filter-help span{margin-top:5px;color:#64748b;font-size:12px;line-height:1.5}.filter-help a{display:inline-flex;margin-top:12px;color:#15803d;font-size:12px;font-weight:900}

.shop-toolbar{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:24px;
    margin-bottom:24px;
    padding:0 2px 22px;
    border-bottom:1px solid #e2e8f0;
}
.toolbar-kicker{display:block;margin-bottom:7px;color:#dc2626;font-size:11px;font-weight:900;letter-spacing:.16em}
.shop-toolbar h2{margin:0;color:#0f172a;font-size:34px;letter-spacing:-.035em}.shop-toolbar p{margin:7px 0 0;color:#64748b}
.sort-form label{display:flex;align-items:center;gap:10px}.sort-form label>span{font-size:12px;font-weight:900;color:#64748b;text-transform:uppercase;letter-spacing:.06em}
.sort-form select{min-width:190px;height:48px;padding:0 42px 0 14px;border:1px solid #dbe3ee;border-radius:14px;background:#fff;font-weight:800;color:#0f172a;cursor:pointer}
.active-filter-row{display:flex;align-items:center;flex-wrap:wrap;gap:8px;margin:-8px 0 22px;padding:13px 15px;border:1px solid #fee2e2;border-radius:16px;background:#fff7f7;color:#7f1d1d;font-size:12px}
.active-filter-row span{padding:7px 10px;border-radius:999px;background:#fff;border:1px solid #fecaca;font-weight:800}.active-filter-row a{margin-left:auto;color:#dc2626;font-weight:900}
.filter-mobile-toggle{display:none}

.premium-grid-products{grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:24px!important}
.premium-product-card{
    position:relative!important;
    border:1px solid #e2e8f0!important;
    border-radius:26px!important;
    background:#fff!important;
    box-shadow:0 14px 38px rgba(15,23,42,.075)!important;
    overflow:hidden!important;
    transform:translateZ(0);
}
.premium-product-card::after{
    content:"";
    position:absolute;
    inset:auto 22px 0;
    height:3px;
    border-radius:999px 999px 0 0;
    background:linear-gradient(90deg,#dc2626,#fb7185);
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .35s ease;
}
.premium-product-card:hover{transform:translateY(-12px)!important;box-shadow:0 32px 72px rgba(15,23,42,.17)!important;border-color:#cbd5e1!important}
.premium-product-card:hover::after{transform:scaleX(1)}
.premium-product-card>.product-card-actions{
    position:absolute!important;
    top:16px!important;
    right:16px!important;
    z-index:10!important;
    gap:8px!important;
}
.premium-product-card>.product-card-actions a{
    width:42px!important;
    height:42px!important;
    border:1px solid rgba(255,255,255,.7)!important;
    background:rgba(255,255,255,.88)!important;
    color:#0f172a!important;
    box-shadow:0 10px 28px rgba(15,23,42,.16)!important;
    backdrop-filter:blur(12px);
}
.premium-product-card>.product-card-actions a:hover,.premium-product-card>.product-card-actions a.active{background:#dc2626!important;color:#fff!important;border-color:#dc2626!important}
.premium-product-card>.product-badge{left:16px!important;top:16px!important;padding:9px 12px!important;background:#0f172a!important;box-shadow:0 10px 28px rgba(15,23,42,.22)}
.premium-product-card>.product-media{
    position:relative!important;
    aspect-ratio:1/1.06!important;
    overflow:hidden!important;
    background:
        radial-gradient(circle at 75% 18%,rgba(255,255,255,.95),transparent 25%),
        linear-gradient(145deg,#f8fafc 0%,#edf2f7 100%)!important;
}
.premium-product-card>.product-media::before{
    content:"";
    position:absolute;
    inset:14px;
    border:1px solid rgba(148,163,184,.22);
    border-radius:20px;
    pointer-events:none;
    z-index:2;
}
.premium-product-card .product-card-image{padding:14px!important;transition:opacity .42s ease,transform .7s cubic-bezier(.2,.7,.2,1)!important}
.premium-product-card:hover .product-card-image.is-active{transform:scale(1.055)!important}
.product-media-shine{position:absolute;inset:-80% 45% -80% -70%;z-index:3;background:linear-gradient(90deg,transparent,rgba(255,255,255,.55),transparent);transform:rotate(14deg) translateX(-120%);transition:transform .8s ease;pointer-events:none}.premium-product-card:hover .product-media-shine{transform:rotate(14deg) translateX(320%)}
.product-hover-cue{position:absolute;left:50%;bottom:17px;z-index:5;transform:translateX(-50%);white-space:nowrap;padding:9px 12px;border-radius:999px;background:rgba(15,23,42,.84);color:#fff;font-size:10px;font-weight:900;letter-spacing:.035em;backdrop-filter:blur(10px);transition:opacity .25s,transform .25s}.premium-product-card:hover .product-hover-cue{opacity:0;transform:translate(-50%,8px)}
.product-hover-cue.single{background:rgba(15,23,42,.72)}
.product-gallery-dots{position:absolute;left:50%;bottom:18px;z-index:6;display:flex;gap:6px;transform:translate(-50%,10px);opacity:0;transition:.25s}.premium-product-card:hover .product-gallery-dots{opacity:1;transform:translate(-50%,0)}
.product-gallery-dots i{display:block;width:18px;height:4px;border-radius:999px;background:rgba(15,23,42,.25);transition:.25s}.product-gallery-dots i.is-active{width:30px;background:#dc2626}
.premium-product-card>.product-card-body{padding:20px 20px 22px!important;min-height:285px!important}
.product-card-meta{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:10px;color:#dc2626;font-size:10px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}.product-card-meta small{color:#94a3b8;font-size:10px;letter-spacing:.03em}
.premium-product-card h3{margin:0 0 10px!important;font-size:17px!important;line-height:1.35!important;letter-spacing:-.018em}.premium-product-card h3 a{color:#0f172a!important}
.premium-product-card p{display:-webkit-box;min-height:58px;margin:0!important;overflow:hidden;color:#64748b!important;font-size:13px!important;line-height:1.48!important;-webkit-line-clamp:3;-webkit-box-orient:vertical}
.product-price-row{display:flex;align-items:flex-end;justify-content:space-between;gap:10px;margin-top:18px;padding-top:15px;border-top:1px solid #eef2f7}.product-price-row .price{margin:0!important;color:#dc2626!important;font-size:21px!important;letter-spacing:-.025em}.product-price-row>span{padding-bottom:3px;color:#94a3b8;font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.04em}
.premium-card-actions{margin-top:16px!important;gap:10px!important}
.quick-view-trigger,.premium-card-actions .btn{
    min-height:48px!important;
    border-radius:14px!important;
    padding:0 14px!important;
    gap:8px;
    justify-content:space-between!important;
    transition:transform .2s,box-shadow .2s,background .2s!important;
}
.quick-view-trigger{border:1px solid #cbd5e1!important;background:#fff!important;color:#0f172a!important}.quick-view-trigger:hover{border-color:#0f172a!important;background:#0f172a!important;color:#fff!important;transform:translateY(-2px)}
.premium-card-actions .btn{border:0!important;background:linear-gradient(135deg,#dc2626,#ef4444)!important;color:#fff!important;box-shadow:0 12px 24px rgba(220,38,38,.18)!important}.premium-card-actions .btn:hover{transform:translateY(-2px);box-shadow:0 16px 32px rgba(220,38,38,.28)!important}.premium-card-actions b{font-size:16px}
.premium-empty{display:flex;flex-direction:column;align-items:flex-start;gap:8px;padding:45px!important}.premium-empty b{font-size:22px}.premium-empty span{color:#64748b}.premium-empty .btn{margin-top:8px}

@media(max-width:1280px){
    .premium-grid-products{grid-template-columns:repeat(2,minmax(0,1fr))!important}
    .storefront-mark{flex-basis:200px;width:200px;height:200px}
}
@media(max-width:900px){
    .storefront-hero-inner{min-height:360px}.storefront-mark{display:none}.storefront-copy h1{font-size:52px}
    .filter-mobile-toggle{display:flex;align-items:center;justify-content:space-between;width:100%;margin-bottom:18px;padding:14px 17px;border:0;border-radius:14px;background:#0f172a;color:#fff;font-weight:900}.filter-mobile-toggle b{display:grid;place-items:center;width:26px;height:26px;border-radius:50%;background:#dc2626}
    .premium-shop-layout{display:block!important}.premium-shop-filters{position:fixed!important;left:0!important;top:0!important;bottom:0!important;z-index:2000!important;width:min(390px,92vw)!important;border-radius:0 26px 26px 0!important;transform:translateX(-105%);transition:transform .28s ease;overflow:auto!important}.premium-shop-filters.is-open{transform:translateX(0)}.filter-panel-head button{display:grid;place-items:center}.filter-panel-head{position:sticky;top:0;z-index:2}
    body.filters-open::after{content:"";position:fixed;inset:0;z-index:1900;background:rgba(2,6,23,.58);backdrop-filter:blur(3px)}
    .shop-toolbar{align-items:flex-start;flex-direction:column}.sort-form,.sort-form label,.sort-form select{width:100%}.sort-form label{justify-content:space-between}.active-filter-row a{margin-left:0}
    .premium-grid-products{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:16px!important}
}
@media(max-width:620px){
    .storefront-hero,.storefront-hero-inner{min-height:400px}.storefront-hero-inner{padding-top:46px;padding-bottom:46px}.storefront-copy h1{font-size:44px}.storefront-copy p{font-size:15px}.storefront-trust span{font-size:11px;padding:9px 11px}
    .storefront-section{padding-top:26px!important}.shop-toolbar h2{font-size:28px}.premium-grid-products{grid-template-columns:1fr!important}.premium-product-card>.product-card-body{min-height:auto!important}.premium-product-card h3{font-size:18px!important}.premium-product-card p{min-height:auto}.premium-card-actions{grid-template-columns:1fr 1fr!important}
}

/* =========================================================
   FAZ 19 ANA SAYFA HAREKET PAKETİ
   Banner altı kayan bilgi bandı + otomatik ürün vitrini
========================================================= */
.home-motion-ticker{
    position:relative;
    z-index:6;
    overflow:hidden;
    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
    background:linear-gradient(90deg,#991b1b 0%,#dc2626 45%,#991b1b 100%);
    color:#fff;
    box-shadow:0 16px 36px rgba(127,29,29,.18);
}
.home-motion-ticker::before,.home-motion-ticker::after{
    content:"";
    position:absolute;
    z-index:2;
    top:0;
    bottom:0;
    width:120px;
    pointer-events:none;
}
.home-motion-ticker::before{left:0;background:linear-gradient(90deg,#991b1b,transparent)}
.home-motion-ticker::after{right:0;background:linear-gradient(-90deg,#991b1b,transparent)}
.home-motion-ticker-track{
    display:flex;
    align-items:center;
    width:max-content;
    min-width:200%;
    min-height:54px;
    gap:24px;
    padding:0 12px;
    animation:homeTickerMove 26s linear infinite;
    will-change:transform;
}
.home-motion-ticker:hover .home-motion-ticker-track{animation-play-state:paused}
.home-motion-ticker span{
    white-space:nowrap;
    font-size:12px;
    font-weight:950;
    letter-spacing:.13em;
}
.home-motion-ticker i{font-style:normal;color:#fecaca;font-size:13px}
@keyframes homeTickerMove{from{transform:translateX(0)}to{transform:translateX(-50%)}}

.home-product-showcase{
    position:relative;
    isolation:isolate;
    overflow:hidden;
    margin-top:54px;
    padding:82px 0 68px;
    background:
        linear-gradient(145deg,rgba(255,255,255,.98),rgba(248,250,252,.96)),
        radial-gradient(circle at top right,rgba(220,38,38,.1),transparent 34%);
    border-top:1px solid #eef2f7;
    border-bottom:1px solid #e5e7eb;
}
.home-product-showcase::before{
    content:"BDF";
    position:absolute;
    z-index:-1;
    right:-22px;
    top:-75px;
    color:rgba(15,23,42,.025);
    font-size:clamp(180px,28vw,430px);
    line-height:1;
    font-weight:1000;
    letter-spacing:-.09em;
    pointer-events:none;
}
.home-product-showcase-glow{
    position:absolute;
    z-index:-1;
    width:390px;
    height:390px;
    border-radius:50%;
    filter:blur(10px);
    opacity:.42;
    pointer-events:none;
}
.home-product-showcase-glow.glow-one{left:-190px;top:-180px;background:radial-gradient(circle,rgba(220,38,38,.22),transparent 68%)}
.home-product-showcase-glow.glow-two{right:-170px;bottom:-230px;background:radial-gradient(circle,rgba(15,23,42,.14),transparent 68%)}
.home-product-showcase-inner{position:relative;z-index:2}
.home-product-showcase-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:32px;
    margin-bottom:32px;
}
.home-product-showcase-head>div:first-child{max-width:780px}
.home-product-showcase-head h2{
    margin:0;
    color:#0f172a;
    font-size:clamp(34px,4.4vw,62px);
    line-height:1;
    letter-spacing:-.05em;
}
.home-product-showcase-head p{
    max-width:690px;
    margin:16px 0 0;
    color:#64748b;
    font-size:15px;
    line-height:1.7;
}
.home-product-carousel-controls{display:flex;align-items:center;gap:10px;flex:0 0 auto}
.home-product-carousel-controls button{
    display:grid;
    place-items:center;
    width:52px;
    height:52px;
    border:1px solid #cbd5e1;
    border-radius:50%;
    background:#fff;
    color:#0f172a;
    font-size:32px;
    line-height:1;
    cursor:pointer;
    box-shadow:0 12px 30px rgba(15,23,42,.08);
    transition:transform .2s ease,background .2s ease,color .2s ease,border-color .2s ease,box-shadow .2s ease;
}
.home-product-carousel-controls button:hover{
    transform:translateY(-3px);
    border-color:#dc2626;
    background:#dc2626;
    color:#fff;
    box-shadow:0 16px 34px rgba(220,38,38,.24);
}
.home-carousel-live{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-right:6px;
    padding:10px 13px;
    border:1px solid #fee2e2;
    border-radius:999px;
    background:#fff7f7;
    color:#991b1b;
    font-size:11px;
    font-weight:900;
    letter-spacing:.04em;
    white-space:nowrap;
}
.home-carousel-live i{
    display:block;
    width:8px;
    height:8px;
    border-radius:50%;
    background:#dc2626;
    box-shadow:0 0 0 0 rgba(220,38,38,.45);
    animation:homeLivePulse 1.8s ease-out infinite;
}
@keyframes homeLivePulse{70%{box-shadow:0 0 0 8px rgba(220,38,38,0)}100%{box-shadow:0 0 0 0 rgba(220,38,38,0)}}

.home-product-carousel-shell{position:relative}
.home-product-carousel-shell::before,.home-product-carousel-shell::after{
    content:"";
    position:absolute;
    z-index:7;
    top:0;
    bottom:0;
    width:52px;
    pointer-events:none;
}
.home-product-carousel-shell::before{left:-1px;background:linear-gradient(90deg,#f8fafc,rgba(248,250,252,0))}
.home-product-carousel-shell::after{right:-1px;background:linear-gradient(-90deg,#f8fafc,rgba(248,250,252,0))}
.home-product-carousel-viewport{
    width:100%;
    overflow-x:auto;
    overflow-y:visible;
    padding:12px 6px 34px;
    scroll-behavior:smooth;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
    cursor:grab;
    overscroll-behavior-inline:contain;
    -webkit-overflow-scrolling:touch;
}
.home-product-carousel-viewport::-webkit-scrollbar{display:none}
.home-product-carousel-viewport.is-dragging{cursor:grabbing;scroll-snap-type:none;user-select:none}
.home-product-carousel-track{
    display:flex;
    align-items:stretch;
    gap:22px;
    width:max-content;
    min-width:100%;
}
.home-product-carousel-track .premium-product-card{
    flex:0 0 clamp(290px,23vw,345px);
    width:clamp(290px,23vw,345px);
    scroll-snap-align:start;
    scroll-snap-stop:always;
}
.home-product-carousel-track .premium-product-card>.product-media{aspect-ratio:1/1.03!important}
.home-product-carousel-track .premium-product-card>.product-card-body{min-height:282px!important}
.home-product-carousel-track .premium-product-card:hover{transform:translateY(-8px)!important}
.home-product-carousel-footer{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    margin-top:2px;
}
.home-product-carousel-progress{
    position:relative;
    flex:1 1 auto;
    max-width:520px;
    height:5px;
    overflow:hidden;
    border-radius:999px;
    background:#e2e8f0;
}
.home-product-carousel-progress span{
    display:block;
    width:100%;
    height:100%;
    border-radius:inherit;
    background:linear-gradient(90deg,#991b1b,#ef4444);
    transform:scaleX(.08);
    transform-origin:left center;
    transition:transform .25s ease;
}
.home-product-carousel-footer>a{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 18px;
    border-radius:999px;
    background:#0f172a;
    color:#fff;
    font-size:13px;
    font-weight:900;
    box-shadow:0 14px 30px rgba(15,23,42,.16);
    transition:transform .2s ease,background .2s ease;
}
.home-product-carousel-footer>a:hover{transform:translateY(-2px);background:#dc2626}
.home-product-carousel-footer>a b{font-size:18px}

@media(max-width:980px){
    .home-product-showcase{padding:62px 0 54px}
    .home-product-showcase-head{align-items:flex-start;flex-direction:column}
    .home-product-carousel-controls{width:100%;justify-content:flex-end}
    .home-carousel-live{margin-right:auto}
    .home-product-carousel-track .premium-product-card{flex-basis:320px;width:320px}
}
@media(max-width:700px){
    .home-motion-ticker-track{min-height:46px;gap:17px;animation-duration:20s}
    .home-motion-ticker span{font-size:10px;letter-spacing:.1em}
    .home-motion-ticker::before,.home-motion-ticker::after{width:42px}
    .home-product-showcase{margin-top:34px;padding:50px 0 42px}
    .home-product-showcase-head{gap:22px;margin-bottom:22px}
    .home-product-showcase-head h2{font-size:38px}
    .home-product-showcase-head p{font-size:14px;line-height:1.6}
    .home-carousel-live{font-size:10px;padding:9px 11px}
    .home-product-carousel-controls button{width:44px;height:44px;font-size:27px}
    .home-product-carousel-shell::before,.home-product-carousel-shell::after{display:none}
    .home-product-carousel-viewport{margin-inline:-16px;width:calc(100% + 32px);padding:8px 16px 28px}
    .home-product-carousel-track{gap:14px}
    .home-product-carousel-track .premium-product-card{flex-basis:min(84vw,330px);width:min(84vw,330px)}
    .home-product-carousel-track .premium-product-card>.product-card-body{min-height:auto!important}
    .home-product-carousel-footer{align-items:stretch;flex-direction:column}
    .home-product-carousel-progress{width:100%;max-width:none}
    .home-product-carousel-footer>a{justify-content:center;width:100%}
}
@media(prefers-reduced-motion:reduce){
    .home-motion-ticker-track,.home-carousel-live i{animation:none!important}
    .home-product-carousel-viewport{scroll-behavior:auto}
}


/* =========================================================
   FAZ 19 - ÜRÜN ÜSTÜ TANITIM BANNERLARI + BUTON HOTFIX
========================================================= */
.home-product-promotions{position:relative;margin-top:44px;padding:68px 0 18px;overflow:hidden;background:linear-gradient(180deg,#fff 0%,#fffafa 100%)}
.home-product-promotions::before{content:"";position:absolute;inset:0;pointer-events:none;background:radial-gradient(circle at 8% 0%,rgba(220,38,38,.09),transparent 27%),radial-gradient(circle at 92% 100%,rgba(15,23,42,.07),transparent 29%)}
.home-product-promotions>.container{position:relative;z-index:1}
.home-product-promotions-head{display:flex;align-items:end;justify-content:space-between;gap:24px;margin-bottom:24px}
.home-product-promotions-head h2{margin:0;color:#0f172a;font-size:clamp(32px,4vw,54px);line-height:1;letter-spacing:-.045em}
.home-product-promotions-head p{max-width:650px;margin:14px 0 0;color:#64748b;line-height:1.7}
.home-product-promotions .home-promo-grid{display:grid;gap:20px}
.home-product-promotions .home-promo-count-1{grid-template-columns:1fr}
.home-product-promotions .home-promo-count-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.home-product-promotions .home-promo-count-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.home-product-promotions .home-promo-card{min-height:clamp(300px,29vw,440px);border:1px solid rgba(255,255,255,.24);border-radius:28px;box-shadow:0 24px 60px rgba(15,23,42,.14);transform:translateZ(0);transition:transform .42s cubic-bezier(.2,.8,.2,1),box-shadow .42s ease}
.home-product-promotions .home-promo-count-1 .home-promo-card{min-height:clamp(340px,36vw,520px)}
.home-product-promotions .home-promo-card:hover{transform:translateY(-9px);box-shadow:0 34px 80px rgba(15,23,42,.22)}
.home-product-promotions .home-promo-card img{transform:scale(1.01);transition:transform .85s cubic-bezier(.18,.78,.18,1),filter .55s ease}
.home-product-promotions .home-promo-card:hover img{transform:scale(1.095);filter:saturate(1.08) contrast(1.03)}
.home-product-promotions .home-promo-overlay{background:linear-gradient(0deg,rgba(2,6,23,.92) 0%,rgba(2,6,23,.35) 48%,rgba(2,6,23,.03) 78%)}
.home-product-promotions .home-promo-copy{left:28px;right:28px;bottom:28px;transition:transform .4s ease}
.home-product-promotions .home-promo-card:hover .home-promo-copy{transform:translateY(-5px)}
.home-product-promotions .home-promo-copy small{font-size:12px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:#fecaca}
.home-product-promotions .home-promo-copy strong{max-width:620px;font-size:clamp(25px,2.7vw,44px);text-shadow:0 4px 22px rgba(0,0,0,.28)}
.home-product-promotions .home-promo-copy em{display:inline-flex;align-items:center;gap:10px;width:max-content;margin-top:16px;padding:12px 16px;border-radius:999px;background:#dc2626;color:#fff;box-shadow:0 12px 30px rgba(220,38,38,.3)}
.home-product-promotions .home-promo-copy em b{font-size:18px;transition:transform .25s ease}
.home-product-promotions .home-promo-card:hover .home-promo-copy em b{transform:translateX(4px)}
.home-promo-motion{position:absolute;z-index:1;inset:-120% 55% -120% -70%;pointer-events:none;background:linear-gradient(90deg,transparent,rgba(255,255,255,.22),transparent);transform:rotate(16deg) translateX(-80%);transition:transform 1s ease}
.home-promo-card:hover .home-promo-motion{transform:rotate(16deg) translateX(330%)}
.home-product-carousel-track .premium-product-card>.product-card-body{position:relative;z-index:12}
.home-product-carousel-track .premium-card-actions{position:relative;z-index:20;pointer-events:auto}
.home-product-carousel-track .premium-card-actions>a,.home-product-carousel-track .premium-card-actions>button{position:relative;z-index:21;pointer-events:auto;touch-action:manipulation}
.quick-view-trigger{appearance:none;-webkit-appearance:none}
@media(max-width:980px){.home-product-promotions{padding-top:54px}.home-product-promotions .home-promo-count-3{grid-template-columns:repeat(2,minmax(0,1fr))}.home-product-promotions .home-promo-count-3 .home-promo-card:last-child{grid-column:1/-1}}
@media(max-width:700px){.home-product-promotions{margin-top:26px;padding:44px 0 8px}.home-product-promotions-head{margin-bottom:18px}.home-product-promotions-head h2{font-size:36px}.home-product-promotions-head p{font-size:14px}.home-product-promotions .home-promo-grid,.home-product-promotions .home-promo-count-1,.home-product-promotions .home-promo-count-2,.home-product-promotions .home-promo-count-3{grid-template-columns:1fr}.home-product-promotions .home-promo-count-3 .home-promo-card:last-child{grid-column:auto}.home-product-promotions .home-promo-card,.home-product-promotions .home-promo-count-1 .home-promo-card{min-height:340px;border-radius:22px}.home-product-promotions .home-promo-copy{left:20px;right:20px;bottom:20px}}
@media(prefers-reduced-motion:reduce){.home-product-promotions .home-promo-card,.home-product-promotions .home-promo-card img,.home-promo-motion{transition:none!important}}

/* =========================================================
   FAZ 19 - BÜYÜK BANNER + ÜRÜN ŞERİDİ BÖLÜMLERİ
========================================================= */
.home-story-stack{position:relative;overflow:hidden;background:#fff}
.home-story-section{position:relative;padding:76px 0 88px;border-top:1px solid rgba(148,163,184,.16)}
.home-story-section.is-odd{background:linear-gradient(180deg,#fff 0%,#f8fafc 100%)}
.home-story-section.is-even{background:linear-gradient(180deg,#fff7f7 0%,#fff 100%)}
.home-story-section::before{content:"";position:absolute;inset:0;pointer-events:none;opacity:.65;background:radial-gradient(circle at 8% 12%,rgba(220,38,38,.085),transparent 25%),radial-gradient(circle at 94% 85%,rgba(15,23,42,.06),transparent 28%)}
.home-story-section.is-even::before{transform:scaleX(-1)}
.home-story-inner{position:relative;z-index:1}
.home-story-banner{position:relative;display:block;min-height:clamp(380px,34vw,570px);overflow:hidden;border-radius:34px;background:#0f172a;box-shadow:0 30px 80px rgba(15,23,42,.18);isolation:isolate;transform:translateY(22px);opacity:0;transition:opacity .7s ease,transform .8s cubic-bezier(.2,.8,.2,1),box-shadow .45s ease}
.home-story-section.is-visible .home-story-banner{transform:translateY(0);opacity:1}
.home-story-banner picture,.home-story-banner img{position:absolute;inset:0;width:100%;height:100%}
.home-story-banner img{object-fit:cover;transform:scale(1.015);transition:transform 1.1s cubic-bezier(.16,.76,.16,1),filter .6s ease}
.home-story-banner:hover{box-shadow:0 42px 100px rgba(15,23,42,.28)}
.home-story-banner:hover img{transform:scale(1.085);filter:saturate(1.08) contrast(1.04)}
.home-story-shade{position:absolute;z-index:1;inset:0;background:linear-gradient(90deg,rgba(2,6,23,.9) 0%,rgba(2,6,23,.64) 37%,rgba(2,6,23,.2) 68%,rgba(2,6,23,.06) 100%)}
.home-story-section.is-even .home-story-shade{background:linear-gradient(-90deg,rgba(2,6,23,.9) 0%,rgba(2,6,23,.64) 37%,rgba(2,6,23,.2) 68%,rgba(2,6,23,.06) 100%)}
.home-story-copy{position:absolute;z-index:3;left:clamp(32px,5vw,78px);top:50%;display:flex;flex-direction:column;align-items:flex-start;max-width:min(650px,58%);transform:translateY(-50%);color:#fff}
.home-story-section.is-even .home-story-copy{right:clamp(32px,5vw,78px);left:auto;align-items:flex-end;text-align:right}
.home-story-copy small{margin-bottom:14px;color:#fecaca;font-size:12px;font-weight:900;letter-spacing:.17em;text-transform:uppercase}
.home-story-copy strong{font-size:clamp(38px,5vw,76px);line-height:.95;letter-spacing:-.055em;text-shadow:0 10px 35px rgba(0,0,0,.35)}
.home-story-copy em{display:inline-flex;align-items:center;gap:12px;margin-top:28px;padding:15px 20px;border-radius:999px;background:#dc2626;color:#fff;font-style:normal;font-size:13px;font-weight:900;box-shadow:0 18px 40px rgba(220,38,38,.34);transition:transform .25s ease,background .25s ease}
.home-story-banner:hover .home-story-copy em{transform:translateY(-3px);background:#ef4444}
.home-story-copy em b{font-size:19px;transition:transform .25s ease}
.home-story-banner:hover .home-story-copy em b{transform:translateX(5px)}
.home-story-number{position:absolute;z-index:2;right:28px;bottom:-24px;color:rgba(255,255,255,.13);font-size:clamp(110px,15vw,230px);font-weight:1000;line-height:1;letter-spacing:-.08em;pointer-events:none}
.home-story-section.is-even .home-story-number{right:auto;left:28px}
.home-story-shine{position:absolute;z-index:2;inset:-120% 62% -120% -62%;pointer-events:none;background:linear-gradient(90deg,transparent,rgba(255,255,255,.2),transparent);transform:rotate(16deg) translateX(-90%);transition:transform 1.15s ease}
.home-story-banner:hover .home-story-shine{transform:rotate(16deg) translateX(350%)}
.home-story-products{position:relative;margin-top:38px;padding:30px 30px 24px;border:1px solid rgba(148,163,184,.2);border-radius:28px;background:rgba(255,255,255,.9);box-shadow:0 22px 55px rgba(15,23,42,.09);backdrop-filter:blur(10px)}
.home-story-products-head{display:flex;align-items:flex-end;justify-content:space-between;gap:26px;margin-bottom:22px}
.home-story-products-head>div:first-child{max-width:720px}
.home-story-products-head h2{margin:2px 0 0;color:#0f172a;font-size:clamp(28px,3.4vw,46px);line-height:1;letter-spacing:-.045em}
.home-story-products .home-product-carousel-track .premium-product-card{flex-basis:clamp(265px,20.5vw,320px);width:clamp(265px,20.5vw,320px)}
.home-story-products .home-product-carousel-track .premium-product-card>.product-card-body{min-height:265px!important}
.home-story-products .home-product-carousel-shell::before{background:linear-gradient(90deg,#fff,rgba(255,255,255,0))}
.home-story-products .home-product-carousel-shell::after{background:linear-gradient(-90deg,#fff,rgba(255,255,255,0))}
.home-story-products .home-product-carousel-footer{margin-top:0}
.home-story-products .home-product-carousel-footer>a{background:#dc2626}
.home-story-products .home-product-carousel-footer>a:hover{background:#0f172a}

@media(max-width:980px){
  .home-story-section{padding:58px 0 68px}
  .home-story-banner{min-height:430px;border-radius:26px}
  .home-story-copy,.home-story-section.is-even .home-story-copy{right:32px;left:32px;bottom:38px;top:auto;max-width:none;align-items:flex-start;text-align:left;transform:none}
  .home-story-shade,.home-story-section.is-even .home-story-shade{background:linear-gradient(0deg,rgba(2,6,23,.94) 0%,rgba(2,6,23,.5) 52%,rgba(2,6,23,.08) 86%)}
  .home-story-number,.home-story-section.is-even .home-story-number{right:20px;left:auto;bottom:-10px}
  .home-story-products{padding:24px 20px 20px}
  .home-story-products-head{align-items:flex-start;flex-direction:column}
  .home-story-products-head .home-product-carousel-controls{width:100%}
}
@media(max-width:700px){
  .home-story-section{padding:42px 0 52px}
  .home-story-banner{min-height:470px;border-radius:22px}
  .home-story-banner img{object-position:center}
  .home-story-copy,.home-story-section.is-even .home-story-copy{right:22px;left:22px;bottom:25px}
  .home-story-copy small{font-size:10px;letter-spacing:.12em}
  .home-story-copy strong{font-size:clamp(35px,11vw,52px)}
  .home-story-copy em{margin-top:20px;padding:13px 17px}
  .home-story-number{font-size:118px!important;opacity:.8}
  .home-story-products{margin-top:20px;padding:22px 14px 18px;border-radius:20px}
  .home-story-products-head{gap:18px;margin-bottom:16px}
  .home-story-products-head h2{font-size:31px}
  .home-story-products .home-product-carousel-track .premium-product-card{flex-basis:min(82vw,320px);width:min(82vw,320px)}
}
@media(prefers-reduced-motion:reduce){
  .home-story-banner{opacity:1;transform:none;transition:none}
  .home-story-banner img,.home-story-shine{transition:none}
}

/* =========================================================
   FAZ 19 - ANA SAYFA DÖRT OTOMATİK ÜRÜN SECTION'I
========================================================= */
.home-catalog-stack{position:relative;overflow:hidden;background:#fff}
.home-catalog-section{
    --catalog-bg:#fff;
    --catalog-edge:255,255,255;
    position:relative;
    isolation:isolate;
    overflow:hidden;
    padding:82px 0 72px;
    border-top:1px solid rgba(148,163,184,.18);
    background:var(--catalog-bg);
}
.home-catalog-section.theme-new{
    --catalog-bg:linear-gradient(145deg,#fff 0%,#f8fafc 100%);
    --catalog-edge:248,250,252;
}
.home-catalog-section.theme-liked{
    --catalog-bg:linear-gradient(145deg,#fff8f8 0%,#fff 52%,#f8fafc 100%);
    --catalog-edge:255,250,250;
}
.home-catalog-section.theme-sellers{
    --catalog-bg:linear-gradient(145deg,#fff 0%,#f8fafc 100%);
    --catalog-edge:248,250,252;
    border-color:rgba(148,163,184,.18);
}
.home-catalog-section.theme-featured{
    --catalog-bg:linear-gradient(145deg,#f7f8fb 0%,#fff 48%,#fff3f3 100%);
    --catalog-edge:250,250,252;
}
.home-catalog-inner{position:relative;z-index:3}
.home-catalog-watermark{
    position:absolute;
    z-index:0;
    right:-28px;
    top:-56px;
    color:rgba(15,23,42,.035);
    font-size:clamp(150px,25vw,390px);
    font-weight:1000;
    line-height:1;
    letter-spacing:-.09em;
    pointer-events:none;
    user-select:none;
}
.theme-liked .home-catalog-watermark{right:4vw;color:rgba(220,38,38,.055);font-family:Arial,sans-serif}
.theme-sellers .home-catalog-watermark{color:rgba(15,23,42,.035)}
.theme-featured .home-catalog-watermark{color:rgba(220,38,38,.045)}
.home-catalog-accent{position:absolute;z-index:0;border-radius:50%;filter:blur(8px);pointer-events:none}
.home-catalog-accent.accent-one{left:-190px;top:-220px;width:430px;height:430px;background:radial-gradient(circle,rgba(220,38,38,.17),transparent 68%)}
.home-catalog-accent.accent-two{right:-200px;bottom:-260px;width:470px;height:470px;background:radial-gradient(circle,rgba(15,23,42,.12),transparent 68%)}
.theme-liked .accent-one{left:auto;right:-180px;background:radial-gradient(circle,rgba(244,63,94,.17),transparent 68%)}
.theme-liked .accent-two{right:auto;left:-210px;background:radial-gradient(circle,rgba(15,23,42,.07),transparent 68%)}
.theme-sellers .accent-one{background:radial-gradient(circle,rgba(220,38,38,.17),transparent 68%)}
.theme-sellers .accent-two{background:radial-gradient(circle,rgba(15,23,42,.12),transparent 68%)}
.theme-featured .accent-one{background:radial-gradient(circle,rgba(220,38,38,.12),transparent 68%)}
.home-catalog-head{position:relative;z-index:2}
.home-section-index{
    display:grid;
    place-items:center;
    min-width:52px;
    height:52px;
    padding:0 12px;
    border:1px solid rgba(148,163,184,.32);
    border-radius:16px;
    background:rgba(255,255,255,.72);
    color:#0f172a;
    font-size:14px;
    font-weight:950;
    letter-spacing:.1em;
    box-shadow:0 12px 28px rgba(15,23,42,.07);
    backdrop-filter:blur(9px);
}
.home-catalog-section .home-product-carousel-shell::before{background:linear-gradient(90deg,rgba(var(--catalog-edge),1),rgba(var(--catalog-edge),0))}
.home-catalog-section .home-product-carousel-shell::after{background:linear-gradient(-90deg,rgba(var(--catalog-edge),1),rgba(var(--catalog-edge),0))}
.home-catalog-section .premium-product-card{animation:catalogCardEnter .65s both;animation-play-state:paused}
.home-catalog-section.is-visible .premium-product-card{animation-play-state:running}
.home-catalog-section .premium-product-card:nth-child(2){animation-delay:.05s}
.home-catalog-section .premium-product-card:nth-child(3){animation-delay:.1s}
.home-catalog-section .premium-product-card:nth-child(4){animation-delay:.15s}
@keyframes catalogCardEnter{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:translateY(0)}}

@media(max-width:980px){
    .home-catalog-section{padding:64px 0 56px}
    .home-section-index{margin-right:auto}
}
@media(max-width:700px){
    .home-catalog-section{padding:52px 0 46px}
    .home-catalog-watermark{right:-16px;top:-20px;font-size:150px}
    .home-catalog-head .home-product-carousel-controls{display:grid;grid-template-columns:auto 1fr auto auto;align-items:center}
    .home-catalog-head .home-carousel-live{margin-right:0;justify-self:start}
    .home-section-index{min-width:44px;height:44px;border-radius:13px}
}
@media(prefers-reduced-motion:reduce){
    .home-catalog-section .premium-product-card{animation:none!important}
}


/* =========================================================
   FAZ 19 — ADMIN KATEGORİLERİNDEN DİNAMİK AÇILIR ÜST MENÜ
   ========================================================= */
.sports-nav{
    position:relative;
    z-index:140;
    background:#fff;
}
.sports-nav .nav-scroll{
    align-items:stretch;
    overflow:visible;
}
.sports-nav .nav-item{
    position:relative;
    display:flex;
    flex:0 0 auto;
    min-width:0;
}
.sports-nav .nav-parent-row{
    display:flex;
    align-items:stretch;
}
.sports-nav .nav-item > a,
.sports-nav .nav-primary-link{
    display:flex;
    align-items:center;
    min-height:54px;
    padding:0 22px;
    border-right:1px solid #f1f2f4;
    color:#101827;
    font-weight:900;
    white-space:nowrap;
    transition:background .2s ease,color .2s ease;
}
.sports-nav .nav-item > a:hover,
.sports-nav .nav-primary-link:hover,
.sports-nav .nav-item:focus-within > a,
.sports-nav .nav-item:focus-within .nav-primary-link{
    background:#f8fafc;
    color:#dc2626;
}
.sports-nav .nav-submenu-toggle{
    display:grid;
    place-items:center;
    width:34px;
    min-height:54px;
    margin-left:-14px;
    padding:0;
    border:0;
    border-right:1px solid #f1f2f4;
    background:transparent;
    color:#6b7280;
    cursor:pointer;
    transition:color .2s ease,transform .2s ease,background .2s ease;
}
.sports-nav .nav-submenu-toggle span{
    display:block;
    font-size:18px;
    line-height:1;
    transform:translateY(-2px);
}
.sports-nav .nav-item:hover .nav-submenu-toggle,
.sports-nav .nav-item:focus-within .nav-submenu-toggle,
.sports-nav .nav-item.is-open .nav-submenu-toggle{
    color:#dc2626;
    background:#f8fafc;
}
.sports-nav .nav-item.is-open .nav-submenu-toggle span,
.sports-nav .nav-item:hover .nav-submenu-toggle span{
    transform:translateY(1px) rotate(180deg);
}
.sports-nav .nav-dropdown{
    position:absolute;
    top:calc(100% + 1px);
    left:0;
    z-index:200;
    width:max-content;
    min-width:285px;
    max-width:360px;
    padding:10px;
    border:1px solid #e5e7eb;
    border-top:3px solid #dc2626;
    border-radius:0 0 14px 14px;
    background:rgba(255,255,255,.98);
    box-shadow:0 24px 60px rgba(15,23,42,.18);
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    pointer-events:none;
    transition:opacity .2s ease,transform .2s ease,visibility .2s ease;
}
.sports-nav .nav-dropdown::before{
    content:"";
    position:absolute;
    top:-9px;
    left:24px;
    width:14px;
    height:14px;
    border-left:1px solid #e5e7eb;
    border-top:1px solid #e5e7eb;
    background:#fff;
    transform:rotate(45deg);
}
.sports-nav .nav-item:hover .nav-dropdown,
.sports-nav .nav-item:focus-within .nav-dropdown,
.sports-nav .nav-item.is-open .nav-dropdown{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
    pointer-events:auto;
}
.sports-nav .nav-dropdown-heading{
    position:relative;
    z-index:1;
    padding:9px 13px 11px;
    color:#dc2626;
    font-size:11px;
    font-weight:900;
    letter-spacing:.11em;
    text-transform:uppercase;
}
.sports-nav .nav-dropdown a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    min-height:0;
    padding:13px 14px;
    border:0;
    border-radius:9px;
    color:#253044;
    font-size:14px;
    font-weight:700;
    white-space:normal;
    transition:background .18s ease,color .18s ease,transform .18s ease;
}
.sports-nav .nav-dropdown a + a{
    border-top:1px solid #f1f5f9;
}
.sports-nav .nav-dropdown a b{
    color:#dc2626;
    font-size:16px;
    transition:transform .18s ease;
}
.sports-nav .nav-dropdown a:hover,
.sports-nav .nav-dropdown a:focus{
    background:#fff1f2;
    color:#b91c1c;
    transform:translateX(3px);
}
.sports-nav .nav-dropdown a:hover b,
.sports-nav .nav-dropdown a:focus b{
    transform:translateX(3px);
}

@media (max-width: 900px){
    .sports-nav .nav-scroll{
        overflow-x:auto !important;
        overflow-y:hidden !important;
        align-items:stretch;
    }
    .sports-nav .nav-item > a,
    .sports-nav .nav-primary-link{
        min-height:48px;
        padding:0 16px !important;
        font-size:13px !important;
    }
    .sports-nav .nav-submenu-toggle{
        width:32px;
        min-height:48px;
        margin-left:-10px;
    }
    .sports-nav .nav-item:hover .nav-dropdown{
        opacity:0;
        visibility:hidden;
        pointer-events:none;
        transform:translateY(10px);
    }
    .sports-nav .nav-item.is-open .nav-dropdown{
        position:fixed;
        top:var(--mobile-nav-dropdown-top, 120px);
        right:16px;
        left:16px;
        width:auto;
        min-width:0;
        max-width:none;
        max-height:min(65vh,520px);
        overflow:auto;
        opacity:1;
        visibility:visible;
        pointer-events:auto;
        transform:none;
        border-radius:14px;
    }
    .sports-nav .nav-item.is-open .nav-dropdown::before{
        display:none;
    }
}

/* =========================================================
   FAZ 19 - Ana sayfa ürün sliderı: masaüstü 3 / tablet 2 / mobil 1
   Kart genişliği JS tarafından sliderın gerçek iç genişliğine göre hesaplanır.
   ========================================================= */
.home-product-carousel-track .premium-product-card,
.home-story-products .home-product-carousel-track .premium-product-card{
    flex:0 0 var(--home-slider-card-width, clamp(290px,31vw,390px)) !important;
    width:var(--home-slider-card-width, clamp(290px,31vw,390px)) !important;
    max-width:none !important;
}

@media (min-width:1051px){
    .home-product-carousel-track{gap:24px}
    .home-product-carousel-track .premium-product-card>.product-media{aspect-ratio:1/1.02!important}
}

@media (max-width:1050px) and (min-width:721px){
    .home-product-carousel-track{gap:18px}
}

@media (max-width:720px){
    .home-product-carousel-track{gap:14px}
}
