/* =============================================
   Birbilisim Portal — Frontend CSS (Responsive)
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary:   #2563eb;
    --primary-d: #1d4ed8;
    --dark:      #0f172a;
    --text:      #1e293b;
    --muted:     #64748b;
    --border:    #e2e8f0;
    --bg:        #f8fafc;
    --white:     #ffffff;
    --radius:    10px;
    --shadow:    0 2px 12px rgba(0,0,0,.08);
    --header-h:  64px;
    --max-w:     1200px;
    --hdr-sticky-offset: 72px;
    --hdr-mega-side-gap: 130px;
    --bb-slider-inset-x: 20px;
    --bb-slider-header-gap: 10px;
    --bb-slider-inner-gap: 20px;
    --bb-slider-after-gap: 20px;
    --bb-layout-container-pad-x: 20px;
}

body { font-family: 'Segoe UI', system-ui, sans-serif; font-size: 15px; color: var(--text); background: var(--white); line-height: 1.6; }

a { color: inherit; text-decoration: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; width: 100%; box-sizing: border-box; }

/* ── HEADER ─────────────────────────────── */
.page-product-pdp .site-header {
    box-shadow: none !important;
    border-bottom: none !important;
}
.site-header {
    position: sticky; top: 0; z-index: 500;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 8px rgba(0,0,0,.06);
    height: var(--header-h);
    overflow: visible;
}
/* Mega: header gövdesi akışta; yapışkanlık .hdr-sticky-zone--active ile (sticky_scope) */
.site-header.site-header--mega {
    position: relative !important;
    height: auto !important;
    box-shadow: none;
    border-bottom: none;
}
/* Mega yapışkan: JS pin (data-hdr-pin) — position:sticky bazı ortamlarda güvenilir değil */
.site-header--mega[data-hdr-pin="1"] .hdr-sticky-zone--active {
    position: relative !important;
    top: auto !important;
}
.site-header--mega .hdr-sticky-zone--active.hdr-sticky-js {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    background: var(--header-bg, var(--white)) !important;
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.07);
}
.site-header--mega .hdr-sticky-zone--top.hdr-sticky-js {
    top: 0 !important;
    z-index: 504 !important;
    box-shadow: none !important;
}
.site-header--mega .hdr-sticky-zone--nav.hdr-sticky-js {
    z-index: 503 !important;
}
.site-header--mega .hdr-sticky-zone--top {
    overflow: visible;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.hdr-sticky-ph {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
}
.header-inner {
    height: var(--header-h);
    display: flex; align-items: center; gap: 12px;
    min-width: 0;
    width: 100%;
}
.site-logo {
    display: flex; align-items: center; gap: 10px;
    min-width: 0; flex-shrink: 1; order: 0;
    overflow: hidden;
}
.site-logo img { max-width: 100%; height: auto; object-fit: contain; }
.logo-text  { font-size: 20px; font-weight: 800; color: var(--primary); letter-spacing: -.5px; }

/* Nav sits in the center via margin auto trick */
.site-nav { display: flex; align-items: center; gap: 4px; order: 1; flex: 1; justify-content: center; min-width: 0; }
.nav-link {
    padding: 7px 12px; border-radius: 6px;
    font-size: 14px; font-weight: 500; color: var(--muted);
    transition: color .2s, background .2s; white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--text); background: var(--bg); }
.nav-link.nav-btn {
    background: var(--primary); color: var(--white); padding: 7px 18px;
}
.nav-link.nav-btn:hover { background: var(--primary-d); }

/* User+Cart always right */
.hdr-user-wrap {
    display: flex; align-items: center; gap: 6px;
    flex-shrink: 0; order: 2; margin-left: auto;
    min-width: 0;
}
.hdr-search-wrap { flex-shrink: 1; min-width: 0; }
.hdr-search-wrap.hdr-search-bar .hdr-search-form { min-width: 0; flex: 1; }
.hdr-search-wrap.hdr-search-bar .hdr-search-inp { min-width: 0; }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px; flex-shrink: 0;
    background: none; border: none; cursor: pointer; padding: 4px;
}
/* nav-toggle inside hdr-user-wrap: no fixed order, follows flex flow */
.hdr-user-wrap .nav-toggle { order: unset; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

/* İki katmanlı mega header (layouts/frontend.php — header_mega_nav) */
.site-header--mega {
    height: auto !important;
}
.header-inner--mega {
    flex-direction: column;
    align-items: stretch;
    height: auto !important;
    min-height: 0;
    gap: 0;
    padding-top: 10px;
    padding-bottom: 8px;
}
.hdr-row--top {
    width: 100%;
    min-width: 0;
}
.site-header--mega .hdr-row--mega-grid {
    display: grid;
    grid-template-columns:
        auto
        var(--hdr-mega-side-gap, 130px)
        minmax(120px, 1fr)
        var(--hdr-mega-side-gap, 130px)
        auto;
    align-items: center;
    column-gap: 0;
    width: 100%;
}
.site-header--mega .hdr-row--mega-grid .site-logo {
    justify-self: start;
    grid-column: 1;
}
.site-header--mega .hdr-row--mega-grid .hdr-search-slot {
    justify-self: stretch;
    grid-column: 3;
    width: 100%;
    max-width: none;
    flex: unset !important;
    padding: 0;
    margin: 0;
    min-width: 0;
    box-sizing: border-box;
}
.site-header--mega .hdr-row--mega-grid .hdr-user-wrap {
    justify-self: end;
    grid-column: 5;
    margin-left: 0 !important;
}
.site-header--mega .hdr-row--mega-grid .hdr-mega-nav-slot {
    justify-self: stretch;
    grid-column: 3;
    width: 100%;
    max-width: none;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.site-header--mega.site-header--mega-nav-top .hdr-row--mega-grid {
    position: relative;
    overflow: visible;
}
.site-header--mega.site-header--mega-nav-top .hdr-mega-nav-slot {
    position: static;
}
.site-header--mega.site-header--mega-nav-top .hdr-sticky-zone--nav {
    display: none !important;
}
/* Mobil mega arama (ikon + çekmece) — geniş ekranda gizli */
.site-header--mega .hdr-mega-mob-search-btn,
.site-header--mega .hdr-mega-mob-search-drawer {
    display: none;
}
.hdr-search-slot {
    flex: 1;
    min-width: 0;
    padding: 0 12px;
}
.hdr-search-wrap--mega.hdr-search-bar .hdr-search-form--mega {
    width: 100%;
}

/* Oval arama çubuğu — sağda gömülü ikon (ölçü --hdr-search-pill-min-h ile) */
.hdr-search-pill {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    width: 100%;
    gap: 4px;
    min-height: var(--hdr-search-pill-min-h, 48px);
    padding: 2px 8px 2px 16px;
    border: 1px solid rgba(15, 23, 42, 0.14);
    border-radius: 999px;
    background: var(--white);
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.05);
    transition: border-color 0.28s ease, box-shadow 0.28s ease;
}
.hdr-search-pill:hover {
    border-color: rgba(37, 99, 235, 0.35);
}
.hdr-search-pill:focus-within {
    border-color: var(--primary);
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.05), 0 0 0 3px rgba(37, 99, 235, 0.16);
}
.hdr-search-pill__input {
    flex: 1;
    min-width: 0;
    border: none !important;
    outline: none !important;
    background: transparent !important;
    font-size: 0.9rem !important;
    padding: var(--hdr-search-inp-pad-y, 9px) 6px var(--hdr-search-inp-pad-y, 9px) 2px !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}
.hdr-search-pill__input--no-btn {
    padding-inline-end: 4px !important;
}
.hdr-search-pill__submit {
    box-sizing: border-box;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(var(--hdr-search-pill-min-h, 48px) - 4px);
    height: calc(var(--hdr-search-pill-min-h, 48px) - 4px);
    max-width: calc(var(--hdr-search-pill-min-h, 48px) - 4px);
    max-height: calc(var(--hdr-search-pill-min-h, 48px) - 4px);
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease;
}
.hdr-search-pill__submit svg {
    width: clamp(14px, calc(var(--hdr-search-pill-min-h, 48px) * 0.46), 22px);
    height: clamp(14px, calc(var(--hdr-search-pill-min-h, 48px) * 0.46), 22px);
    flex-shrink: 0;
    display: block;
}
.hdr-search-pill__submit:hover {
    background: rgba(37, 99, 235, 0.09);
    color: var(--primary-d, var(--primary));
}
.hdr-search-pill__submit:active {
    background: rgba(37, 99, 235, 0.14);
}
.hdr-search-pill__submit--sm {
    width: calc(var(--hdr-search-pill-min-h, 48px) - 8px);
    height: calc(var(--hdr-search-pill-min-h, 48px) - 8px);
    max-width: calc(var(--hdr-search-pill-min-h, 48px) - 8px);
    max-height: calc(var(--hdr-search-pill-min-h, 48px) - 8px);
}
.hdr-search-pill__submit--sm svg {
    width: clamp(13px, calc(var(--hdr-search-pill-min-h, 48px) * 0.42), 20px);
    height: clamp(13px, calc(var(--hdr-search-pill-min-h, 48px) * 0.42), 20px);
}
.hdr-search-pill--classic {
    max-width: 100%;
}
.hdr-search-pill--compact {
    padding: 2px 6px 2px 12px;
}
.hdr-search-pill--compact .hdr-search-pill__input {
    font-size: 0.88rem !important;
    padding: var(--hdr-search-inp-pad-y-compact, 7px) 4px !important;
}
.hdr-search-expand-btn svg {
    width: calc(var(--hdr-search-expand-btn-sz, 40px) * 0.42);
    height: calc(var(--hdr-search-expand-btn-sz, 40px) * 0.42);
}
.hdr-search-form--classic-bar {
    width: 100%;
    min-width: 0;
}

.hdr-user-wrap--mega {
    gap: 10px 14px;
    align-items: flex-end;
    flex-wrap: nowrap;
}
/* Mega: hesap / favori / arama / sepet tek küme (mobilde grid sağ sütunu) */
.hdr-mega-icons-cluster {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    min-width: 0;
}

/* Klasik satırda favori: ikon yığını */
.hdr-action-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: inherit;
    font-size: 0.62rem;
    font-weight: 700;
    position: relative;
    min-width: 52px;
    transition: opacity 0.2s ease, transform 0.22s ease;
}
.hdr-action-icon__glyph {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

/* Mega: hesap / favori / sepet — düz ikon; hover’da gri kutu / gölge yok */
.hdr-action-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    padding: 6px 8px;
    margin: 0;
    border: none;
    background: transparent;
    border-radius: 14px;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition: opacity 0.2s ease;
}
.hdr-action-tile--link.hdr-cart-btn {
    width: auto;
    height: auto;
    border: none;
    background: transparent;
    border-radius: 14px;
}
.hdr-action-tile:hover,
.hdr-action-tile:focus-visible {
    background: transparent;
    transform: none;
    box-shadow: none;
}
.hdr-action-tile:active {
    transform: none;
    transition-duration: 0.12s;
}
.hdr-action-tile:focus-visible .hdr-action-tile__ring {
    outline: 2px solid var(--primary, #2563eb);
    outline-offset: 3px;
}
.hdr-action-tile__ring {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    box-shadow: none;
    transition: none;
}
.hdr-action-tile:hover .hdr-action-tile__ring,
.hdr-action-tile:focus-visible .hdr-action-tile__ring {
    border-color: transparent;
    background: transparent;
    transform: none;
    box-shadow: none;
}
.hdr-action-tile__lbl {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.15;
    color: var(--text);
    opacity: 0.88;
    max-width: 76px;
    text-align: center;
    transition: opacity 0.22s ease, color 0.2s ease;
}
.hdr-action-tile:hover .hdr-action-tile__lbl {
    opacity: 0.88;
    color: inherit;
}
.hdr-actions--icons-only .hdr-action-tile {
    padding: 4px 4px;
}
.hdr-fav-tile .hdr-action-tile__ring svg {
    stroke: #dc2626;
}
.hdr-fav-tile:hover .hdr-action-tile__ring {
    border-color: transparent;
    background: transparent;
}
/* Inline layout still şunu ekliyor: .hdr-cart-btn:hover { border-color … } — mega karolar için iptal */
.site-header .hdr-cart-btn.hdr-action-tile:hover,
.site-header .hdr-fav-btn.hdr-action-tile:hover {
    border-color: transparent !important;
    color: inherit;
    box-shadow: none !important;
}

/* Mega header: halkada hover / basılı geri bildirim */
.site-header--mega .hdr-action-tile__ring {
    transition: background 0.2s ease, transform 0.15s ease;
}
@media (hover: hover) and (pointer: fine) {
    .site-header--mega .hdr-action-tile:hover:not(:active) .hdr-action-tile__ring {
        background: rgba(15, 23, 42, 0.075);
    }
    .site-header--mega .hdr-fav-tile:hover:not(:active) .hdr-action-tile__ring {
        background: rgba(254, 226, 226, 0.55);
    }
}
.site-header--mega .hdr-action-tile:active .hdr-action-tile__ring {
    background: rgba(15, 23, 42, 0.14);
    transform: scale(0.93);
}
.site-header--mega .hdr-fav-tile:active .hdr-action-tile__ring {
    background: rgba(254, 202, 202, 0.65);
    transform: scale(0.93);
}
.site-header--mega .nav-toggle--mega {
    display: none !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 0;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.15s ease;
}
@media (hover: hover) and (pointer: fine) {
    .site-header--mega .nav-toggle--mega:hover:not(:active) {
        background: rgba(15, 23, 42, 0.075);
    }
}
.site-header--mega .nav-toggle--mega:active {
    background: rgba(15, 23, 42, 0.14);
    transform: scale(0.93);
}

/* ── HERO ────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: var(--white);
    padding: 80px 0 90px;
    text-align: center;
}
.hero-title { font-size: clamp(28px,5vw,52px); font-weight: 800; margin-bottom: 16px; letter-spacing: -.5px; }
.hero-desc  { font-size: clamp(15px,2.5vw,20px); opacity: .85; max-width: 640px; margin: 0 auto 32px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-hero {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 13px 28px; border-radius: 10px; font-size: 15px; font-weight: 600;
    background: var(--primary); color: #fff; border: none; cursor: pointer;
    font-family: inherit; text-decoration: none;
    transition: background .2s, transform .1s, box-shadow .2s;
}
.btn-hero:hover { background: var(--primary-d); box-shadow: 0 4px 16px rgba(37,99,235,.3); transform: translateY(-1px); }
.btn-hero:active { transform: translateY(0); }
@keyframes fadeIn { from { opacity:0; transform:scale(.97); } to { opacity:1; transform:scale(1); } }
.btn-hero-outline {
    background: transparent; border: 2px solid rgba(255,255,255,.6); color: var(--white);
}
.btn-hero-outline:hover { background: rgba(255,255,255,.1); }

/* ── CMS BANNER (.bb-banner) + fullscreen slider görsel zoom ───────── */
.bb-banner {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.bb-banner__media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1);
    transform-origin: center center;
    transition: transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0;
}
.bb-banner:hover .bb-banner__media {
    transform: scale(var(--bb-banner-scale, 1.07));
}
.bb-banner__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: var(--bb-banner-ov, rgba(0, 0, 0, 0.4));
    transition: background 0.45s ease, opacity 0.45s ease;
}
.bb-banner:hover .bb-banner__overlay {
    background: var(--bb-banner-ov-hover, var(--bb-banner-ov, rgba(0, 0, 0, 0.4)));
}
.bb-banner__content {
    position: relative;
    z-index: 2;
    height: 100%;
    min-height: 0;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.35s ease, text-shadow 0.35s ease;
}
.bb-banner:hover .bb-banner__content {
    transform: translateY(-5px);
    text-shadow: 0 6px 28px rgba(0, 0, 0, 0.38);
}
.bb-banner__content.bb-banner__content--hover-tint:hover {
    color: var(--bb-banner-text-hover, inherit);
}
.bb-banner__title {
    font-size: clamp(1.6rem, 5vw, 3rem);
    font-weight: 800;
    margin: 0 0 10px;
    line-height: 1.15;
}
.bb-banner__subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.25rem);
    margin: 0 0 22px;
    max-width: 600px;
    opacity: 0.92;
    line-height: 1.55;
}
.bb-banner__cta {
    display: inline-block;
    padding: 13px 32px;
    background: #f97316;
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.bb-banner:hover .bb-banner__cta {
    box-shadow: 0 10px 28px rgba(249, 115, 22, 0.35);
    transform: translateY(-2px);
}
.bb-slide.bb-slide--fs.bb-slide-fs-zoom {
    position: relative;
    overflow: hidden;
}
.bb-slide-fs__media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
    transform: scale(1);
    transform-origin: center center;
    transition: transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}
/* Slayt hover zoom kapatıldı — yalnızca CTA hover */
.bb-slide-fs-hit {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.bb-slide-fs-layer {
    position: relative;
    z-index: 2;
}
/* ── Magazine slider (hero grid) ───────────────── */
.bb-slider-hero {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 100%;
    align-items: stretch;
}
.bb-slider-hero__main {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #f0f9f4;
    touch-action: pan-y;
    min-width: 0;
}
.bb-slider-hero__main.bb-slider-draggable {
    cursor: grab;
    user-select: none;
}
.bb-slider-hero__main.bb-slider-gesture {
    cursor: grabbing;
}
.bb-slider-hero__side {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
    min-height: 0;
}
.bb-slider-hero .bb-slides {
    display: flex;
    transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.bb-slider-hero .bb-slide--mag {
    min-width: 100%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background: #e2e8f0;
}
.bb-slider-hero .bb-slide--mag .bb-slide-mag__media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
}
.bb-slider-hero .bb-slide--mag .bb-slide-mag__hit {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.bb-slider-hero .bb-slide--mag .bb-slide-mag__layer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 24px 20px 48px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.12) 45%, transparent 70%);
    pointer-events: none;
}
.bb-slider-hero .bb-slide-mag__title {
    font-size: clamp(1.15rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.2;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}
.bb-slider-hero .bb-slide-mag__sub {
    font-size: clamp(0.85rem, 1.8vw, 1rem);
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 14px;
    line-height: 1.5;
    max-width: 520px;
}
.bb-slider-hero .bb-slide-mag__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    pointer-events: auto;
}
.bb-slider-promo {
    position: relative;
    flex: 1 1 0;
    min-height: 0;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    background: #e2e8f0;
    text-decoration: none;
    color: inherit;
}
.bb-slider-hero__side .bb-slider-promo {
    flex: 1 1 0;
    min-height: 0;
    height: 0;
}
a.bb-slider-promo {
    cursor: pointer;
}
.bb-slider-promo__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}
.bb-slider-promo__layer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 18px 16px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    pointer-events: none;
}
.bb-slider-promo__title {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.25;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}
.bb-slider-promo__hit {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.bb-slider-promo__actions {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    pointer-events: auto;
}
.bb-slider-promo__layer .bb-slider-cta {
    pointer-events: auto;
    flex-shrink: 0;
}
.bb-slider-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: 100%;
    padding: 10px 14px 10px 16px;
    background: #fff;
    color: #0f172a;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
    line-height: 1.2;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.22s ease, transform 0.22s ease;
}
.bb-slider-cta__label {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}
.bb-slider-cta__arrow {
    position: relative;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.28s ease, color 0.28s ease;
}
.bb-slider-cta__icon {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 13px;
    height: 13px;
    margin: -6.5px 0 0 -6.5px;
    display: block;
    transition: opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1), transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.bb-slider-cta__icon--right {
    opacity: 0;
    transform: scale(0.88);
}
.bb-slider-cta__icon--diag {
    opacity: 1;
    transform: scale(1);
}
.bb-slider-cta:hover .bb-slider-cta__arrow,
.bb-slider-cta:focus-visible .bb-slider-cta__arrow {
    background: #0f172a;
    color: #fff;
}
.bb-slider-cta:hover .bb-slider-cta__icon--diag,
.bb-slider-cta:focus-visible .bb-slider-cta__icon--diag {
    opacity: 0;
    transform: scale(0.88);
}
.bb-slider-cta:hover .bb-slider-cta__icon--right,
.bb-slider-cta:focus-visible .bb-slider-cta__icon--right {
    opacity: 1;
    transform: scale(1);
}
.bb-slider-cta:hover,
.bb-slider-cta:focus-visible {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}
.bb-slider-dots {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    z-index: 15;
    pointer-events: none;
}
.bb-slider-dots .bb-slider-dot {
    pointer-events: auto;
    border: none;
    padding: 0;
    cursor: pointer;
    height: 8px;
    width: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    transition: width 0.32s ease, background 0.25s ease, opacity 0.25s ease;
}
.bb-slider-dots .bb-slider-dot.is-active {
    width: 22px;
    background: #fff;
}
.bb-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    color: #374151;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    padding: 0;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}
.bb-slider-nav--prev {
    left: 12px;
}
.bb-slider-nav--next {
    right: 12px;
}
.bb-slider-nav:hover,
.bb-slider-nav:focus-visible {
    background: #fff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.16);
}
.bb-slider-hero__main .bb-slider-nav {
    color: #fff;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
}
.bb-slider-hero__main .bb-slider-nav:hover,
.bb-slider-hero__main .bb-slider-nav:focus-visible {
    background: rgba(0, 0, 0, 0.52);
}
.bb-slider-wrap .bb-slides {
    display: flex;
    transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.bb-slider-wrap .bb-slider-dots .bb-slider-dot {
    background: rgba(0, 0, 0, 0.22);
}
.bb-slider-wrap .bb-slider-dots .bb-slider-dot.is-active {
    width: 22px;
    background: #1a5c3a;
}
.bb-slider-wrap {
    position: relative;
}
.bb-category-slider {
    width: 100%;
    max-width: var(--max-w, 1200px);
    margin: 20px auto;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}
.bb-category-slider__track {
    display: flex;
    gap: var(--bb-cat-gap, 15px);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 15px 0;
    cursor: grab;
    touch-action: pan-y;
}
.bb-category-slider__track::-webkit-scrollbar {
    display: none;
}
.bb-category-slider__track.is-dragging {
    cursor: grabbing;
    user-select: none;
    scroll-behavior: auto;
}
.bb-category-slider.is-dragging a {
    pointer-events: none;
}
.bb-category-slider__item {
    flex: 0 0 var(--bb-cat-item-desktop);
    min-width: 0;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
}
.bb-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
}
.bb-category-card__media {
    width: 100%;
    aspect-ratio: 1;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.035);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.bb-category-card__media img {
    width: 75%;
    height: 75%;
    object-fit: contain;
    display: block;
}
.bb-category-card__placeholder {
    width: 58%;
    aspect-ratio: 1;
    border-radius: 999px;
    background: #fff7ed;
    color: #c2410c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(2rem, 7vw, 4rem);
    font-weight: 800;
}
.bb-category-card__title {
    margin-top: 12px;
    color: #333;
    font-family: 'Quicksand', 'Segoe UI', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
}
.bb-category-slider__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 15px;
}
.bb-category-slider__dot {
    width: 6px;
    height: 6px;
    border: 0;
    border-radius: 999px;
    background: #ddd;
    padding: 0;
    cursor: pointer;
    transition: width 0.28s ease, background 0.28s ease;
}
.bb-category-slider__dot.is-active {
    width: 18px;
    background: #e38c26;
}
@media (min-width: 769px) {
    .bb-category-card:hover .bb-category-card__media,
    .bb-category-card:focus-visible .bb-category-card__media {
        transform: translateY(-5px);
        border-color: #e38c26;
        box-shadow: 0 10px 20px rgba(227, 140, 38, 0.1);
    }
    .bb-category-slider__dots {
        display: none;
    }
}
@media (max-width: 767px) {
    .bb-category-slider {
        margin: 14px auto;
    }
    .bb-category-slider__track {
        padding: 10px 0;
    }
    .bb-category-slider__item {
        flex-basis: var(--bb-cat-item-mobile);
    }
    .bb-category-card__title {
        font-size: 13px;
    }
    .bb-category-slider__dot {
        width: 5px;
        height: 5px;
    }
    .bb-category-slider__dot.is-active {
        width: 14px;
    }
}


.bb-slider-dots--classic {
    position: absolute;
    bottom: 14px;
    left: 0;
    right: 0;
    z-index: 15;
}
/* Ana sayfa / sayfa builder: header altı boşluk + slayt hizası (logo–sepet bandı) */
.bb-layout-root > .bb-layout-stack {
    padding-top: var(--bb-slider-header-gap, 10px);
}
.bb-layout-item > .bb-slider-hero,
.bb-layout-item > .bb-slider-wrap,
.bb-layout-item > .bb-category-slider {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}
/* Tam genişlik satır: .container ile aynı içerik kutusu (banner hizası) */
.bb-layout-section__width--full .bb-layout-item > .bb-slider-hero,
.bb-layout-section__width--full .bb-layout-item > .bb-slider-wrap,
.bb-layout-section__width--full .bb-layout-item > .bb-category-slider {
    max-width: var(--max-w, 1200px);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--bb-slider-inset-x, 20px);
    padding-right: var(--bb-slider-inset-x, 20px);
}
.bb-layout-section__width--container .bb-layout-item > .bb-slider-hero,
.bb-layout-section__width--container .bb-layout-item > .bb-slider-wrap,
.bb-layout-section__width--container .bb-layout-item > .bb-category-slider,
.bb-layout-section__width--full-inset .bb-layout-item > .bb-slider-hero,
.bb-layout-section__width--full-inset .bb-layout-item > .bb-slider-wrap,
.bb-layout-section__width--full-inset .bb-layout-item > .bb-category-slider {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}
/* Yan kartlar / banner: builder --bb-gap-y ile çift boşluk olmasın, toplam 20px */
.bb-layout-stack > .bb-layout-section:has(.bb-slider-hero) + .bb-layout-section,
.bb-layout-stack > .bb-layout-section:has(.bb-slider-wrap) + .bb-layout-section,
.bb-layout-stack > .bb-layout-section:has(.bb-category-slider) + .bb-layout-section {
    margin-top: calc(var(--bb-slider-after-gap, 20px) - var(--bb-gap-y, 0px));
}
.bb-layout-section__width > .bb-layout-row:has(.bb-slider-hero) + .bb-layout-row,
.bb-layout-section__width > .bb-layout-row:has(.bb-slider-wrap) + .bb-layout-row,
.bb-layout-section__width > .bb-layout-row:has(.bb-category-slider) + .bb-layout-row {
    margin-top: calc(var(--bb-slider-after-gap, 20px) - var(--bb-gap-y, 0px));
}
@media (max-width: 767px) {
    :root {
        --bb-slider-inset-x: 10px;
    }
    /*
     * Mobil 10px: negatif margin kullanma (site-main-xclip overflow-x:clip sola yapıştırır).
     * Boşluk layout-item’da; container/full-inset bölüm padding’i slayt satırında sıfırlanır.
     */
    .bb-layout-section__width--container:has(.bb-slider-hero),
    .bb-layout-section__width--container:has(.bb-slider-wrap),
    .bb-layout-section__width--container:has(.bb-category-slider),
    .bb-layout-section__width--full-inset:has(.bb-slider-hero),
    .bb-layout-section__width--full-inset:has(.bb-slider-wrap),
    .bb-layout-section__width--full-inset:has(.bb-category-slider) {
        padding-left: 0;
        padding-right: 0;
    }
    .bb-layout-item:has(> .bb-slider-hero),
    .bb-layout-item:has(> .bb-slider-wrap),
    .bb-layout-item:has(> .bb-category-slider) {
        padding-left: var(--bb-slider-inset-x, 10px);
        padding-right: var(--bb-slider-inset-x, 10px);
        box-sizing: border-box;
    }
    .bb-layout-item > .bb-slider-hero,
    .bb-layout-item > .bb-slider-wrap,
    .bb-layout-item > .bb-category-slider,
    .bb-layout-section__width--full .bb-layout-item > .bb-slider-hero,
    .bb-layout-section__width--full .bb-layout-item > .bb-slider-wrap,
    .bb-layout-section__width--full .bb-layout-item > .bb-category-slider,
    .bb-layout-section__width--container .bb-layout-item > .bb-slider-hero,
    .bb-layout-section__width--container .bb-layout-item > .bb-slider-wrap,
    .bb-layout-section__width--container .bb-layout-item > .bb-category-slider,
    .bb-layout-section__width--full-inset .bb-layout-item > .bb-slider-hero,
    .bb-layout-section__width--full-inset .bb-layout-item > .bb-slider-wrap,
    .bb-layout-section__width--full-inset .bb-layout-item > .bb-category-slider {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .bb-slider-hero {
        display: flex;
        flex-direction: column;
        gap: var(--bb-slider-inner-gap, 20px);
        row-gap: var(--bb-slider-inner-gap, 20px);
        margin-bottom: 0;
    }
    .bb-slider-hero__main {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        flex: 0 0 auto;
        border-radius: 12px;
        box-sizing: border-box;
    }
    .bb-slider-hero__side {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto !important;
        min-height: 0 !important;
        gap: var(--bb-gap-y, 12px);
        margin-top: 0;
    }
    .bb-slider-hero__side .bb-slider-promo {
        height: auto !important;
        min-height: min(42vw, 220px) !important;
        flex: 0 0 auto;
        width: 100%;
    }
    .bb-slider-promo__layer {
        padding: 14px 12px 16px;
    }
    .bb-slider-promo__title {
        margin-bottom: 10px;
        font-size: clamp(0.9rem, 4.2vw, 1.1rem);
    }
    .bb-slider-promo__actions {
        flex-wrap: nowrap;
        overflow: visible;
    }
    .bb-slider-promo .bb-slider-cta {
        display: inline-flex;
        flex-wrap: nowrap;
        white-space: nowrap;
        max-width: 100%;
        font-size: 0.75rem;
        padding: 8px 10px 8px 14px;
        gap: 8px;
    }
    .bb-slider-promo .bb-slider-cta__label {
        overflow: visible;
        text-overflow: clip;
        white-space: nowrap;
    }
    .bb-slider-promo .bb-slider-cta__arrow {
        width: 26px;
        height: 26px;
        flex-shrink: 0;
    }
}
@media (prefers-reduced-motion: reduce) {
    .bb-slider-hero .bb-slides,
    .bb-slider-wrap .bb-slides {
        transition: none;
    }
    .bb-slider-cta__arrow,
    .bb-slider-cta__icon {
        transition: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bb-banner:hover .bb-banner__media {
        transform: none;
    }
    .bb-banner:hover .bb-banner__content {
        transform: none;
    }
    .bb-banner:hover .bb-banner__cta {
        transform: none;
    }
}

/* ── SECTIONS ────────────────────────────── */
.section     { padding: 64px 0; }
.section-alt { background: var(--bg); }
.section-title { font-size: 26px; font-weight: 700; margin-bottom: 32px; color: var(--dark); }

/* ── PRODUCTS ────────────────────────────── */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 20px; }

/* Mağaza / kategori: sol filtre sütunu + liste */
.shop-plp-shell .shop-plp-grid {
    display: grid;
    grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
    gap: 28px 32px;
    align-items: start;
}
@media (max-width: 991px) {
    /* Akordeon sırası: tetikleyici → filtre paneli → ürün listesi (.shop-plp-grid display:contents ile) */
    .shop-plp-shell {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .shop-plp-shell .shop-plp-grid {
        display: contents;
    }
    .shop-plp-filter-trigger-wrap {
        order: 1;
    }
    .shop-plp-shell .shop-plp-sidebar {
        order: 2;
    }
    .shop-plp-shell .shop-plp-main {
        order: 3;
    }
}
.shop-plp-sidebar {
    min-width: 0;
}
@media (min-width: 992px) {
    .shop-plp-sidebar {
        position: sticky;
        top: calc(var(--hdr-offset, 0px) + 12px);
    }
}

/* Mağaza PLP — mobil: üst «Filtrele» + akordeon (backdrop / fixed drawer yok — tıklama güvenilir) */
.shop-plp-filter-trigger-wrap {
    display: none;
}
@media (max-width: 991px) {
    .shop-plp-shell .shop-plp-sidebar {
        position: static;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        margin: 0;
        padding-top: 0;
        padding-bottom: 0;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1), margin-bottom 0.38s ease;
        border: none;
        background: transparent;
        z-index: auto;
    }
    .shop-plp-shell.shop-plp-filter-accordion-open .shop-plp-sidebar {
        max-height: min(78vh, 920px);
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 16px;
        padding-bottom: 4px;
    }
    .shop-plp-filter-trigger-wrap {
        display: block;
        width: 100%;
        margin-bottom: 14px;
        flex-shrink: 0;
        position: relative;
        z-index: 6;
    }
    .shop-plp-filter-fab.shop-plp-filter-trigger {
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        width: 100%;
        box-sizing: border-box;
        position: relative;
        z-index: 1;
        padding: 12px 18px;
        min-height: 48px;
        border: none;
        border-radius: var(--site-btn-radius, 10px);
        font-size: 15px;
        font-weight: 700;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        box-shadow: 0 2px 12px rgba(15, 23, 42, 0.12);
        transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
    }
    .shop-plp-filter-trigger__chev {
        display: inline-flex;
        margin-left: auto;
        transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .shop-plp-shell.shop-plp-filter-accordion-open .shop-plp-filter-trigger__chev {
        transform: rotate(180deg);
    }
    .shop-plp-filter-fab.shop-plp-filter-trigger:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 16px rgba(15, 23, 42, 0.14);
    }
    .shop-plp-filter-fab.shop-plp-filter-trigger:active {
        transform: translateY(0);
    }
}
@media (max-width: 991px) and (prefers-reduced-motion: reduce) {
    .shop-plp-shell .shop-plp-sidebar {
        transition-duration: 0.01ms;
    }
    .shop-plp-filter-fab.shop-plp-filter-trigger {
        transition: none;
    }
    .shop-plp-filter-fab.shop-plp-filter-trigger:hover {
        transform: none;
    }
    .shop-plp-filter-trigger__chev {
        transition: none;
    }
}
.shop-sidebar-filters {
    background: #fff;
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 14px;
    padding: 16px 14px 18px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}
.shop-sidebar-form {
    min-width: 0;
    max-width: 100%;
}
.shop-sidebar-filters .form-control,
.shop-sidebar-filters select.shop-filter-select {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border: 1px solid #e8ecf1;
    border-radius: 10px;
    padding: 9px 11px;
    font-size: 14px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.shop-sidebar-filters .form-control:focus,
.shop-sidebar-filters select.shop-filter-select:focus {
    outline: none;
    border-color: #cbd5e1;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}
.shop-sidebar-submit.shop-filter-submit {
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.22);
}
.shop-sidebar-submit.shop-filter-submit:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}
.shop-sidebar-form .shop-filter-field {
    margin-bottom: 14px;
}
.shop-filter-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.shop-filter-acc {
    border-top: 1px solid #f1f5f9;
    padding-top: 10px;
    margin-top: 10px;
}
.shop-filter-acc--first {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}
.shop-filter-acc-sum {
    list-style: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark, #0f172a);
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    transition: color 0.18s ease;
}
.shop-filter-acc-sum::-webkit-details-marker {
    display: none;
}
.shop-filter-acc-sum::after {
    content: '\203A';
    flex-shrink: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #94a3b8;
    line-height: 1;
    transition: transform 0.22s ease, color 0.18s ease;
}
.shop-filter-acc[open] > .shop-filter-acc-sum::after {
    transform: rotate(90deg);
    color: #64748b;
}
.shop-filter-acc-body {
    padding-bottom: 8px;
    overflow: hidden;
    transition: opacity 0.2s ease;
}
.shop-filter-acc[open] > .shop-filter-acc-body {
    animation: shop-acc-reveal 0.22s ease-out;
}
@keyframes shop-acc-reveal {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.shop-filter-select {
    width: 100%;
    max-width: 100%;
}
.shop-filter-cat-trail {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    line-height: 1.35;
    margin-bottom: 10px;
    padding: 8px 10px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}
.shop-filter-cat-all {
    margin-bottom: 8px;
}
.shop-filter-cat-node {
    margin: 4px 0;
    border-radius: 8px;
}
.shop-filter-cat-sum {
    list-style: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    padding: 6px 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.shop-filter-cat-sum::-webkit-details-marker {
    display: none;
}
.shop-filter-cat-sum::after {
    content: '\203A';
    flex-shrink: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #94a3b8;
    transition: transform 0.22s ease;
}
.shop-filter-cat-node[open] > .shop-filter-cat-sum::after {
    transform: rotate(90deg);
}
.shop-filter-cat-body {
    padding-bottom: 4px;
}
.shop-filter-cat-leaf {
    margin: 2px 0;
}
.shop-filter-cat-link {
    display: block;
    font-size: 13px;
    padding: 6px 8px;
    border-radius: 8px;
    color: #475569;
    text-decoration: none;
}
.shop-filter-cat-link:hover {
    background: #f1f5f9;
    color: #0f172a;
}
.shop-filter-cat-link.is-current {
    background: #1e3a5f;
    color: #fff;
    font-weight: 600;
}
.shop-filter-price-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
.shop-filter-price-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 11px;
    color: #64748b;
    min-width: 0;
    max-width: 100%;
}
.shop-filter-price-field .form-control {
    min-width: 0;
}
.shop-filter-sublabel {
    font-weight: 600;
}

/* Üst satır: gösterim bilgisi + grid ikonları + sıralama tek hizada */
.shop-plp-toolbar-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
    flex-wrap: nowrap;
    min-width: 0;
}
.shop-plp-toolbar-bar .shop-list-meta {
    flex: 1 1 auto;
    margin-bottom: 0;
    min-width: 0;
}
.shop-plp-toolbar-bar .shop-plp-toolbar {
    flex: 0 0 auto;
    margin-bottom: 0;
    max-width: 100%;
}
@media (max-width: 540px) {
    .shop-plp-toolbar-bar {
        flex-wrap: wrap;
    }
    .shop-plp-toolbar-bar .shop-plp-toolbar {
        flex: 1 1 100%;
        justify-content: flex-end;
    }
}

/* Liste araç çubuğu: sıralamanın solunda grid ikonları, kompakt (masaüstü) */
.shop-plp-main {
    min-width: 0;
}
.shop-plp-toolbar {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 18px;
    min-width: 0;
}
.shop-plp-toolbar--sort-only {
    justify-content: flex-end;
}
.shop-plp-toolbar-cluster {
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    min-width: 0;
    max-width: 100%;
}
.shop-plp-layout {
    display: inline-flex;
    flex-shrink: 0;
    gap: 2px;
    padding: 2px;
    background: #fff;
    border: 1px solid #e8ecf1;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}
.shop-plp-layout-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 30px;
    padding: 0;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: #94a3b8;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.shop-plp-layout-btn:hover {
    color: #475569;
    background: #f8fafc;
}
.shop-plp-layout-btn--active {
    background: #1e3a5f;
    color: #fff;
}
.shop-plp-layout-btn--active:hover {
    background: #1e3a5f;
    color: #fff;
}
.shop-plp-only-desktop {
    display: inline-flex;
}
.shop-plp-only-mobile {
    display: inline-flex;
}
@media (max-width: 768px) {
    .shop-plp-only-desktop {
        display: none !important;
    }
    .shop-plp-layout-btn {
        width: 38px;
        height: 34px;
    }
}
@media (min-width: 769px) {
    .shop-plp-only-mobile {
        display: none !important;
    }
    .shop-plp-layout-btn {
        width: 28px;
        height: 26px;
    }
    .shop-plp-layout {
        padding: 1px;
        gap: 1px;
        border-radius: 6px;
    }
}
.shop-plp-sort-dd {
    position: relative;
    min-width: 0;
    flex: 0 1 auto;
    width: min(240px, 100%);
    max-width: min(260px, 100%);
}
@media (min-width: 769px) {
    .shop-plp-sort-dd {
        width: min(220px, 100%);
        max-width: 260px;
    }
}
.shop-plp-sort-summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark, #0f172a);
    background: #fff;
    border: 1px solid #e8ecf1;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.07);
    transition: box-shadow 0.18s ease, border-color 0.18s ease;
}
.shop-plp-sort-summary:hover {
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.09);
}
.shop-plp-sort-summary::-webkit-details-marker {
    display: none;
}
.shop-plp-sort-dd[open] .shop-plp-sort-summary {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
}
.shop-plp-sort-panel {
    position: absolute;
    right: 0;
    left: 0;
    z-index: 30;
    padding: 6px;
    background: #fff;
    border: 1px solid #e8ecf1;
    border-top: none;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
}
.shop-plp-sort-opt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 6px;
    font-size: 13px;
    color: var(--dark, #0f172a);
    text-decoration: none;
}
.shop-plp-sort-opt:hover {
    background: #f1f5f9;
}
.shop-plp-sort-opt.is-active {
    background: #f1f5f9;
    font-weight: 600;
}
.shop-plp-sort-check {
    font-size: 13px;
    color: #475569;
}

@media (max-width: 768px) {
    #shop-product-grid.product-grid.shop-plp-cols-1 {
        grid-template-columns: 1fr !important;
    }
    #shop-product-grid.product-grid.shop-plp-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (min-width: 769px) {
    #shop-product-grid.product-grid.shop-plp-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    #shop-product-grid.product-grid.shop-plp-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    #shop-product-grid.product-grid.shop-plp-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
.product-card-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
}
.product-card {
    background: var(--white); border-radius: var(--radius);
    border: 1px solid var(--border); overflow: hidden;
    box-shadow: var(--shadow); transition: box-shadow .2s, transform .2s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}
.product-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.12); transform: translateY(-2px); }
/* Ürün kartı görseli: mağaza en-boy oranı (--product-img-aspect-*) layout’tan gelir */
.product-img-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: var(--product-img-aspect-w, 1) / var(--product-img-aspect-h, 1);
    max-height: var(--product-list-max-h, 440px);
    background: var(--bg);
    contain: layout;
    border-radius: 10px;
}
/* Görsel alanı: gerçek href ile sağ tık / yeni sekme (galeri görselleri üstte, pointer-events yok) */
.product-card-media-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
}
.product-card-media-link:focus-visible {
    outline: 2px solid var(--primary, #2563eb);
    outline-offset: 2px;
    z-index: 9;
}
.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: var(--product-list-object-fit, cover);
    display: block;
}
/* Hover galerisi + renk şeridi */
.product-img-wrap--scrub {
    cursor: ew-resize;
    touch-action: pan-y;
}
/* Tıklama: altındaki .product-card-media-link’e gitsin; hover galeri JS wrap üzerinde dinlenir */
.product-card__gallery {
    pointer-events: none;
}
.product-img-wrap--enhanced .product-card__gallery {
    position: absolute;
    inset: 0;
    z-index: 2;
}
.product-card__gallery-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.16s ease-out, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    transform: scale(1);
    pointer-events: none;
}
.product-card__gallery-img.is-active {
    opacity: 1;
    z-index: 1;
}
.product-card__gallery-img.product-card__gallery-img--broken {
    object-fit: contain;
    background: #f8fafc;
}
.product-card:hover .product-img-wrap--enhanced .product-card__gallery-img.is-active {
    transform: scale(1.04);
}
.product-card__gallery-dots {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    pointer-events: none;
}
.product-card__gallery-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.25);
    transition: background 0.15s ease, transform 0.15s ease;
}
.product-card__gallery-dot.is-active {
    background: #f97316;
    transform: scale(1.15);
}
.product-img-wrap--enhanced .product-card-cover-video,
.product-img-wrap--enhanced .bb-pt-cover--video {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}
.product-img-wrap .bb-pt-cover--video video,
.product-img-wrap video.bb-pt-video {
    pointer-events: none;
}
.product-video-badge.product-video-badge--card {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: auto;
    z-index: 5;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.78);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.product-img-wrap--enhanced:has(.product-card-color-popover) .product-video-badge.product-video-badge--card {
    bottom: 52px;
}
.product-card-color-popover {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 8;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    pointer-events: auto;
    outline: none;
}
.product-card-color-popover:focus-visible {
    border-radius: 999px;
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.35);
}
.product-card-color-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 10px 5px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 1px 8px rgba(15, 23, 42, 0.08);
    cursor: default;
}
.product-card-color-badge__swatches {
    position: relative;
    width: 26px;
    height: 16px;
    flex-shrink: 0;
}
.product-card-color-badge__dot {
    position: absolute;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-sizing: border-box;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.18);
}
.product-card-color-badge__dot--a {
    left: 0;
    background: #cbd5e1;
    z-index: 1;
}
.product-card-color-badge__dot--b {
    left: 9px;
    background: #94a3b8;
    z-index: 2;
}
.product-card-color-badge__num {
    font-size: 12px;
    font-weight: 700;
    color: #475569;
    letter-spacing: -0.02em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.product-card-color-popover .product-card-variant-hover {
    position: absolute;
    bottom: calc(100% + 8px);
    right: 0;
    z-index: 12;
    width: max-content;
    min-width: 148px;
    max-width: min(240px, 86vw);
    padding: 8px 10px 10px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
    pointer-events: none;
}
.product-card-color-popover .product-card-variant-hover::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -12px;
    height: 12px;
}
.product-card-color-popover:hover .product-card-variant-hover,
.product-card-color-popover:focus-within .product-card-variant-hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.product-card-variant-hover__title {
    font-size: 10px;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 8px;
    line-height: 1.2;
}
.product-card-variant-hover__thumbs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}
a.product-card-variant-thumb {
    flex: 0 0 auto;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 7px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}
a.product-card-variant-thumb[style*='--variant-ring'] {
    border-color: var(--variant-ring);
}
a.product-card-variant-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    vertical-align: top;
}
a.product-card-variant-thumb.is-current {
    border-color: rgba(249, 115, 22, 0.85);
    box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.25);
}
.product-card-variant-thumb__ph {
    display: block;
    width: 100%;
    height: 100%;
    background: #e8ecf1;
}
@media (prefers-reduced-motion: reduce) {
    .product-card__gallery-img,
    .product-card:hover .product-img-wrap--enhanced .product-card__gallery-img.is-active {
        transition-duration: 0.01ms;
        transform: none;
    }
    .product-card-color-popover .product-card-variant-hover {
        transition-duration: 0.01ms;
    }
}
.product-card-list-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 2;
    border-radius: 3px;
}
.product-card-list-embed-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
    z-index: 2;
    border-radius: 3px;
}
.product-img-placeholder {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    background: var(--bg);
    color: var(--muted);
}
.product-info   { padding: 14px 16px; }
a.product-info.product-card-info-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.product-name   { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.product-price  { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.btn-product {
    display: inline-block; padding: 8px 20px; border-radius: 6px; font-size: 13px; font-weight: 600;
    background: var(--primary); color: var(--white); transition: background .2s;
}
.btn-product:hover { background: var(--primary-d); }

/* ── CAMPAIGNS ───────────────────────────── */
.campaign-grid  { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 20px; }
.campaign-card  {
    background: var(--white); border-radius: var(--radius); padding: 22px;
    border: 1px solid var(--border); box-shadow: var(--shadow);
}
.campaign-title    { font-size: 16px; font-weight: 600; margin-bottom: 14px; }
.progress-bar-wrap { background: var(--border); border-radius: 99px; height: 10px; overflow: hidden; margin-bottom: 8px; }
.progress-bar      { background: var(--primary); height: 100%; border-radius: 99px; transition: width .6s ease; }
.campaign-stats    { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 6px; }
.raised            { font-weight: 700; color: var(--primary); }
.percent           { font-weight: 700; color: var(--muted); }
.campaign-deadline { font-size: 12px; color: var(--muted); margin-bottom: 14px; }

/* ── FOOTER ──────────────────────────────── */
.site-footer { background: var(--dark); color: #94a3b8; padding: 40px 0 24px; margin-top: 64px; }
.footer-inner { display: grid; grid-template-columns: 1fr auto auto; align-items: start; gap: 32px; }
.footer-brand .logo-text { color: var(--white); font-size: 18px; }
.footer-brand p { margin-top: 8px; font-size: 13px; max-width: 320px; line-height: 1.6; }
.footer-social  { display: flex; gap: 10px; align-items: flex-start; }
.social-link {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border-radius: 6px;
    background: rgba(255,255,255,.08); color: #cbd5e1; font-size: 11px; font-weight: 700;
    transition: background .2s;
}
.social-link:hover { background: var(--primary); color: var(--white); }
.footer-copy    { color: #64748b; font-size: 12px; align-self: end; white-space: nowrap; }

/* ── PRODUCT CARD (görsel + bilgi alanı gerçek <a href>) ──────── */
.product-card-wrap > .product-card {
    flex: 1 1 auto;
    min-height: 0;
}
.product-card-wrap a.product-wish-btn {
    -webkit-tap-highlight-color: transparent;
}
.product-card-info-link:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px var(--primary, #2563eb);
    border-radius: 0 0 var(--radius, 8px) var(--radius, 8px);
}
/* Favori: kart sarmalayıcı üzerinde; ürün linki ile iç içe <a> olmaz */
.product-card-wrap .product-wish-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 6;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    opacity: 0;
    pointer-events: none;
    transition: color 0.2s, background 0.2s, transform 0.15s, opacity 0.2s;
}
.product-card-wrap:hover .product-wish-btn,
.product-card-wrap:focus-within .product-wish-btn,
.product-card-wrap .product-wish-btn.in-wishlist {
    opacity: 1;
    pointer-events: auto;
}
.product-card-wrap .product-wish-btn:hover,
.product-card-wrap .product-wish-btn.in-wishlist {
    color: #dc2626;
    background: #fff;
}
.product-card-wrap .product-wish-btn.in-wishlist {
    box-shadow: 0 0 0 2px #fecaca, 0 4px 14px rgba(220, 38, 38, 0.18);
}
.product-price-wrap { display:flex; align-items:baseline; gap:8px; }
.product-price-old  { text-decoration:line-through; color:#94a3b8; font-size:13px; }
.product-price.sale { color:#16a34a; }
.product-category-tag { display:inline-block; font-size:11px; color:#64748b; background:#f1f5f9; padding:3px 8px; border-radius:6px; margin-bottom:6px; }

/* ── SHOP PAGE ────────────────────────── */
.shop-header { background:var(--bg); border-bottom:1px solid var(--border); padding:24px 0; }
.shop-filters { display:flex; flex-wrap:wrap; gap:10px; align-items:center; }
.shop-filters .form-control { padding:8px 12px; border:1px solid var(--border); border-radius:6px; font-size:14px; background:var(--white); }
.shop-filters .btn-product { padding:9px 18px; }

/* ── CART ICON ────────────────────────── */
.cart-icon { position:relative; display:inline-flex; align-items:center; padding:6px 8px; }
.cart-badge { position:absolute; top:0; right:0; background:#ef4444; color:#fff; font-size:10px; font-weight:700; min-width:16px; height:16px; border-radius:8px; display:flex; align-items:center; justify-content:center; padding:0 3px; }

/* ── COLOR SWATCHES — yuvarlatılmış dikdörtgen ────────── */
.color-swatch { width:52px; height:52px; border-radius:10px; border:2px solid #e2e8f0; overflow:hidden; display:inline-flex; flex-direction:column; align-items:center; text-decoration:none; transition:border-color .2s,transform .15s,box-shadow .15s; flex-shrink:0; position:relative; }
.color-swatch img { width:100%; height:100%; object-fit:cover; }
.color-swatch:hover { border-color:var(--primary); transform:translateY(-2px); box-shadow:0 4px 12px rgba(37,99,235,.18); }
.color-swatch.active { border-color:var(--primary); box-shadow:0 0 0 3px rgba(37,99,235,.2); }
.color-swatch small { position:absolute; bottom:-20px; left:50%; transform:translateX(-50%); font-size:10px; white-space:nowrap; color:#64748b; }
@media (max-width: 900px) {
    .footer-inner { grid-template-columns: 1fr; gap: 20px; }
}



/* ── Breadcrumb ─────────────────────────────── */
.breadcrumb-bar {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 3px 0;
}
.breadcrumb-bar .container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    min-width: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.breadcrumb-bar .container::-webkit-scrollbar {
    display: none;
    height: 0;
}
.breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: nowrap !important;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin: 0;
    padding: 0;
    width: max-content;
    max-width: none;
    box-sizing: border-box;
}
.breadcrumb-list li { display: flex; align-items: center; flex-shrink: 0; }
.breadcrumb-list a {
    color: #64748b;
    text-decoration: none;
    transition: color .15s;
    white-space: nowrap;
}
.breadcrumb-list a:hover { color: var(--primary); }
.breadcrumb-list .breadcrumb-sep {
    color: #cbd5e1;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    user-select: none;
    padding: 0 1px;
    flex-shrink: 0;
}
.breadcrumb-list .current {
    color: #1e293b;
    font-weight: 500;
    white-space: nowrap;
}
.page-product-pdp .breadcrumb-bar {
    background: transparent;
    border-bottom: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
}
.page-product-pdp .mk-pdp-breadcrumb {
    margin: 0;
    padding: 7px 0 0;
}
.page-product-pdp .mk-pdp.section {
    padding-top: 0;
    margin-top: 0;
}
.page-product-pdp .mk-pdp-grid {
    margin-top: 25px;
}

/* ── Responsive — Tüm sayfalar ─────────────── */
@media (max-width: 900px) {
    .footer-inner { grid-template-columns: 1fr; gap: 24px; }
    .footer-brand p { max-width: 100%; }
}

@media (max-width: 768px) {
    /* Header — position:relative yapışkanı kırıyordu; konumlandırma inline / üst kurallardan */
    .site-header { overflow: visible; }
    .site-header .container { padding-left: 12px; padding-right: 12px; }
    .header-inner { gap: 6px; }
    /* Admin: Tasarım → Header — mobil üst/alt iç boşluk (:root --hdr-mobile-pt / --hdr-mobile-pb) */
    .site-header .header-inner {
        padding-top: var(--hdr-mobile-pt, 10px);
        padding-bottom: var(--hdr-mobile-pb, 8px);
    }
    .site-header--mega .hdr-row--mega-grid {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        grid-template-rows: auto;
        align-items: center;
        column-gap: 6px;
        position: relative;
        overflow: visible;
        min-width: 0;
    }
    /* Masaüstü arama slotu mobilde ikon + altta çekmece */
    .site-header--mega .hdr-row--mega-grid .hdr-search-slot--mega,
    .site-header--mega .hdr-row--mega-grid .hdr-mega-nav-slot {
        display: none !important;
    }
    .site-header--mega .hdr-mega-icons-cluster .hdr-search-wrap {
        display: none !important;
    }
    .site-header--mega .hdr-row--mega-grid > .hdr-user-wrap--mega {
        display: contents;
    }
    .site-header--mega .hdr-row--mega-grid .hdr-mega-act--menu {
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
        position: relative;
        z-index: 2;
    }
    .site-header--mega .hdr-row--mega-grid .hdr-mega-act--logo {
        grid-column: 2;
        grid-row: 1;
        justify-self: center;
        align-self: center;
        min-width: 0;
        max-width: min(240px, calc(100vw - 128px));
        margin: 0;
        width: auto;
        position: relative;
        z-index: 1;
    }
    .site-header--mega .hdr-row--mega-grid .hdr-mega-act--logo img {
        max-height: 48px !important;
        width: auto !important;
        max-width: 100% !important;
        height: auto !important;
        object-fit: contain;
        object-position: center;
    }
    .site-header--mega .hdr-row--mega-grid .hdr-mega-icons-cluster {
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
        display: flex;
        align-items: center;
        gap: 2px;
        min-width: 0;
        position: relative;
        /* Arama çekmecesinin üstünde: Hesabım açılır menüsü */
        z-index: 1030;
    }
    .site-header--mega .hdr-mega-mob-search-btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        border: none;
        background: transparent;
        padding: 0;
        cursor: pointer;
        color: inherit;
        font: inherit;
        -webkit-tap-highlight-color: transparent;
    }
    /* Çekmece akışta ikinci satır oluşturmasın: ikonlar hep tek satır */
    .site-header--mega .hdr-mega-mob-search-drawer {
        display: block !important;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        z-index: 1020;
        width: 100%;
        min-width: 0;
        margin: 0;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transform: translateY(-4px);
        transition:
            max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
            opacity 0.28s ease,
            transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
        background: var(--white, #fff);
        border-bottom: 1px solid var(--border, #e2e8f0);
        box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    }
    .site-header--mega .hdr-mega-mob-search-drawer.hdr-mega-mob-search-drawer--open {
        max-height: 240px;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    .site-header--mega .hdr-mega-mob-search-drawer__inner {
        position: relative;
        padding: 8px 0 12px;
    }
    .site-header--mega .hdr-row--mega-grid .site-logo,
    .site-header--mega .hdr-row--mega-grid .hdr-user-wrap {
        grid-column: unset;
        justify-self: unset;
    }
    .site-logo { max-width: min(140px, 45vw); }
    .site-logo img { max-height: 40px !important; object-fit: contain; }
    .site-nav {
        display: none; flex-direction: column; align-items: stretch; flex: unset;
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--white); border-bottom: 1px solid var(--border);
        padding: 12px 20px; gap: 4px; box-shadow: 0 8px 24px rgba(0,0,0,.1);
        z-index: 600; order: 99;
    }
    .site-nav.open { display: flex; }
    .nav-toggle { display: flex; flex-shrink: 0; }
    /* hdr-user-wrap stays visible, compact */
    .hdr-user-wrap { order: 2; margin-left: auto; gap: 4px; flex-shrink: 0; }
    .hdr-btn-label { display: none; }
    .hdr-oturum-btn { padding: 6px 8px; gap: 4px; font-size: .82rem; min-width: 0; }
    .hdr-cart-btn:not(.hdr-action-tile), .hdr-search-expand-btn {
        width: min(var(--hdr-search-expand-btn-sz, 40px), 36px);
        height: min(var(--hdr-search-expand-btn-sz, 40px), 36px);
    }
    .hdr-cart-btn.hdr-action-tile,
    .hdr-fav-btn.hdr-action-tile {
        width: auto !important;
        height: auto !important;
        min-width: 0;
        align-items: center;
    }
    .hdr-user-wrap--mega .hdr-action-tile__ring {
        width: 32px;
        height: 32px;
    }
    .hdr-user-wrap--mega .hdr-action-tile__ring svg {
        width: 18px;
        height: 18px;
    }
    .site-header--mega .hdr-mega-mob-search-btn .hdr-action-tile__ring {
        width: 32px;
        height: 32px;
    }
    .site-header--mega .hdr-mega-mob-search-btn .hdr-action-tile__ring svg {
        width: 18px;
        height: 18px;
    }
    .site-header--mega .hdr-row--mega-grid .nav-toggle--mega {
        display: flex !important;
        width: 36px;
        height: 36px;
        padding: 0;
    }
    .site-header--mega .hdr-row--mega-grid .hdr-action-tile {
        padding: 2px;
    }
    /* Tek satır için yazı etiketleri mobilde kapat */
    .site-header--mega .hdr-row--mega-grid .hdr-action-tile__lbl {
        display: none !important;
    }
    .site-header--mega .hdr-row--mega-grid .nav-toggle span {
        width: 18px;
    }
    /* Bar style search: full width on mobile */
    .hdr-search-wrap.hdr-search-bar { flex: 1; min-width: 0; }
    .hdr-search-wrap.hdr-search-bar .hdr-search-form { width: 100%; flex: 1; }
    .hdr-search-wrap.hdr-search-bar .hdr-search-inp { width: 100% !important; min-width: 0; flex: 1; }
    .hdr-search-wrap.hdr-search-bar .hdr-search-pill { width: 100%; }
    /* Yatay taşma: body yerine daha düşük özgüllük — .frontend-layout head içinde visible ile ezilir */
    body { overflow-x: hidden; max-width: 100vw; }
    body.frontend-layout { overflow-x: visible !important; }
    /* body bottom padding for mobile footer menu */
    body.has-mobile-menu { padding-bottom: 68px; }
    /* Hide desktop-only label on mobile, but keep cart visible */
    .hdr-cart-desktop { display: flex !important; }
    .hdr-btn-label { display: none; }

    /* Hero */
    .hero { padding: 56px 0 60px; }
    .section { padding: 44px 0; }

    /* Products */
    .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap: 14px; }
    .campaign-grid { grid-template-columns: 1fr; }

    /* Auth pages */
    .auth-page-wrap { padding: 24px 16px 48px; }
    .auth-card { max-width: 100%; }
    .auth-body { padding: 20px; }
    .auth-header { padding: 24px 20px 20px; }

    /* Cart */
    .cart-wrap { padding: 20px 12px 48px; }
    .cart-layout { grid-template-columns: 1fr !important; }
    .cart-summary { position: static !important; }
    .cart-item { flex-wrap: wrap; gap: 12px; }
    .cart-item-right { width: 100%; justify-content: space-between; margin-left: 96px; }
    .cart-title { font-size: 20px; }

    /* Checkout */
    .co-wrap { padding: 20px 12px 48px; }
    .co-layout { grid-template-columns: 1fr !important; }
    .co-summary { position: static !important; display: none !important; }
    #mobileSummary { display: block !important; }
    .co-form-row { grid-template-columns: 1fr !important; }
    .auth-tabs-header { font-size: 13px; }
    .auth-tab-btn { padding: 12px 8px; font-size: 13px; }
    .co-steps { font-size: 12px; }
    .co-step-num { width: 22px; height: 22px; font-size: 11px; }

    /* Checkout 3-col address row */
    [style*="grid-template-columns:1fr 1fr 120px"] { grid-template-columns: 1fr 1fr !important; }

    /* Footer cols */
    .footer-inner { grid-template-columns: 1fr !important; }
    .footer-social { margin-bottom: 10px; }
    .footer-copy { align-self: flex-start; }
    
    /* General Responsive Fixes */
    img { max-width: 100%; height: auto; }
    .container { padding: 0 16px; }
}

@media (max-width: 480px) {
    .product-grid { grid-template-columns: 1fr 1fr; }
    .hero-title   { font-size: 26px; }

    /* Cart compact */
    .cart-item-img, .cart-item-img-ph { width: 60px; height: 60px; }
    .cart-item-right { margin-left: 72px; }
    .qty-wrap { scale: .9; }

    /* Auth tab icons — sadece text */
    .auth-tab-btn svg { display: none; }

    /* Checkout */
    .co-greeting { flex-wrap: wrap; }
    [style*="grid-template-columns:1fr 1fr 1fr"] { grid-template-columns: 1fr !important; }
}

/* ── Mobil yan menü çekmece (hamburger) ────────────────────────── */
.mob-nav-drawer {
    position: fixed;
    inset: 0;
    z-index: 10045;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0s linear 0.28s;
}
.mob-nav-drawer--open {
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
}
.mob-nav-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    opacity: 0;
    transition: opacity 0.28s ease;
}
.mob-nav-drawer--open .mob-nav-drawer__backdrop {
    opacity: 1;
}
.mob-nav-drawer__panel {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: min(88vw, 380px);
    max-width: 100%;
    background: #fff;
    box-shadow: 8px 0 32px rgba(15, 23, 42, 0.12);
    display: flex;
    flex-direction: column;
    transform: translateX(-105%);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.mob-nav-drawer--open .mob-nav-drawer__panel {
    transform: translateX(0);
}
.mob-nav-drawer__top {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid #e8ecf1;
}
.mob-nav-drawer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    text-decoration: none;
    color: #0f172a;
}
.mob-nav-drawer__logo {
    max-height: 36px;
    width: auto;
    object-fit: contain;
}
.mob-nav-drawer__brand-text {
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
}
.mob-nav-drawer__close {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 10px;
    background: #f1f5f9;
    color: #334155;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    transition: background 0.15s ease;
}
.mob-nav-drawer__close:hover {
    background: #e2e8f0;
}
.mob-nav-drawer__body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 24px;
}
body.mob-nav-drawer-on {
    overflow: hidden;
    touch-action: none;
}

.mob-dr-link {
    display: block;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
}
.mob-dr-link:hover {
    background: #f8fafc;
}
.mob-dr-link--accent {
    margin: 16px 14px 8px;
    padding: 14px 16px;
    text-align: center;
    border-radius: 10px;
    border: none;
    background: #1e3a5f;
    color: #fff !important;
    font-weight: 700;
}
.mob-dr-link--muted {
    color: #64748b;
    font-weight: 500;
}

.mob-dr-acc__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 18px;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.mob-dr-acc__bar:active {
    background: #f8fafc;
}
.mob-dr-acc__title {
    flex: 1;
    min-width: 0;
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
}
.mob-dr-acc__title--link {
    text-decoration: none;
    color: inherit;
}
.mob-dr-acc__chev-btn {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.mob-dr-acc__chev-btn:hover {
    background: #f1f5f9;
}
.mob-dr-acc__chev {
    transition: transform 0.22s ease;
}
.mob-dr-acc--open .mob-dr-acc__chev {
    transform: rotate(180deg);
}
.mob-dr-acc__panel {
    padding: 8px 0 16px;
    background: #fafbfc;
    border-bottom: 1px solid #e8ecf1;
}
.mob-dr-sec {
    margin-bottom: 14px;
    padding: 0 14px;
}
.mob-dr-sec__head {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #475569;
    padding: 10px 12px 6px;
    background: #eef2f6;
    border-radius: 6px;
    margin-bottom: 8px;
}
.mob-dr-sec__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mob-dr-sec__list li {
    border-bottom: 1px solid #eef2f6;
}
.mob-dr-sec__list li:last-child {
    border-bottom: none;
}
.mob-dr-sublink {
    display: block;
    padding: 12px 10px;
    font-size: 14px;
    color: #334155;
    text-decoration: none;
}
.mob-dr-sublink:hover {
    color: #0f172a;
    background: rgba(255, 255, 255, 0.7);
}
.mob-dr-subacc__btn {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    gap: 10px; padding: 12px 10px; border: 0; background: transparent;
    color: #334155; font: inherit; font-size: 14px; text-align: left; cursor: pointer;
}
.mob-dr-subacc__chev { flex: 0 0 auto; transition: transform .22s ease; }
.mob-dr-subacc.is-open > .mob-dr-subacc__btn .mob-dr-subacc__chev { transform: rotate(180deg); }
.mob-dr-subacc__panel { list-style: none; margin: 0 0 6px 10px; padding: 2px 0 2px 10px; border-left: 1px solid #dbe3ec; }
.mob-dr-sublink--depth3 { padding: 10px 8px; font-size: 13px; }
.mob-dr-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 8px 10px;
    font-size: 13px;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
}
.mob-dr-flat {
    list-style: none;
    margin: 0;
    padding: 0 14px;
}
.mob-dr-flat > li {
    border-bottom: 1px solid #e8ecf1;
}
.mob-dr-nested__lbl {
    display: block;
    padding: 10px 8px 4px;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.mob-dr-sec__list--tight .mob-dr-sublink {
    padding-left: 16px;
}

@media (prefers-reduced-motion: reduce) {
    .mob-nav-drawer,
    .mob-nav-drawer__backdrop,
    .mob-nav-drawer__panel,
    .mob-dr-acc__chev {
        transition-duration: 0.01ms !important;
    }
}

.blog-front {
    width: 100%;
    max-width: none;
    margin: 40px auto 64px;
    padding: 0;
    box-sizing: border-box;
}
.blog-front-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 38px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, .16), transparent 34%),
        linear-gradient(135deg, #f8fafc, #ffffff);
    border: 1px solid #e5e7eb;
    box-shadow: 0 16px 34px rgba(15, 23, 42, .08);
}
.blog-front-hero > a {
    flex: 0 0 auto;
    display: inline-flex;
    padding: 12px 18px;
    border-radius: 999px;
    background: #0f172a;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
}
.blog-front-hero span,
.blog-front-chip {
    display: inline-flex;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(37, 99, 235, .1);
    color: #2563eb;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}
.blog-front-hero h1,
.blog-front-post h1 {
    margin: 12px 0 8px;
    color: #0f172a;
    letter-spacing: -.03em;
}
.blog-front-hero p,
.blog-front-card p,
.blog-front-lead,
.blog-front-meta {
    color: #64748b;
}
.blog-front-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 24px;
    margin-top: 24px;
}
.blog-front-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}
.blog-front-cats a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #334155;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(15, 23, 42, .05);
}
.blog-front-cats a:hover,
.blog-front-cats a.is-active {
    background: #2563eb;
    border-color: #2563eb;
    color: #fff;
}
.blog-front-cats small {
    opacity: .75;
}
.blog-front-list {
    display: grid;
    grid-template-columns: repeat(var(--blog-cols-desktop, 3), minmax(0, 1fr));
    gap: 16px;
}
.blog-front-card,
.blog-front-post,
.blog-front-sidebar {
    padding: 22px;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .06);
}
.blog-front-card { overflow: hidden; padding: 0; }
.blog-front-card__body { padding: 20px; }
.blog-front-card__cover {
    display: grid;
    place-items: center;
    min-height: 150px;
    background:
        radial-gradient(circle at 25% 20%, rgba(255,255,255,.28), transparent 30%),
        linear-gradient(135deg, #1d4ed8, #7c3aed);
    color: #fff;
    text-decoration: none;
    overflow: hidden;
}
.blog-front-card__cover.has-image { background: #e5e7eb; }
.blog-front-card__cover img {
    width: 100%;
    height: 190px;
    display: block;
    object-fit: cover;
    transition: transform .25s ease;
}
.blog-front-card:hover .blog-front-card__cover img {
    transform: scale(1.04);
}
.blog-front-card__cover span {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: rgba(255,255,255,.18);
    font-size: 34px;
    font-weight: 900;
}
.blog-front-card h2 {
    margin: 10px 0 8px;
    font-size: 22px;
}
.blog-front-card h2 a {
    color: #0f172a;
    text-decoration: none;
}
.blog-front-card h2 a:hover {
    color: #2563eb;
}
.blog-front-card small,
.blog-front-sidebar small {
    color: #94a3b8;
    white-space: nowrap;
}
.blog-front-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
}
.blog-front-card__meta a {
    color: #2563eb;
    font-weight: 800;
    text-decoration: none;
}
.blog-front-sidebar {
    align-self: start;
    display: grid;
    gap: 10px;
}
.blog-front-sidebar h3 {
    margin: 0 0 6px;
}
.blog-front-sidebar a {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    color: #334155;
    text-decoration: none;
}
.blog-front-sidebar a:hover,
.blog-front-sidebar a.is-active {
    background: #eff6ff;
    color: #2563eb;
}
.blog-front-post {
    max-width: none;
    margin: 0;
}
.blog-front-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 28px;
    align-items: start;
}
.blog-front-detail-sidebar {
    position: sticky;
    top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.blog-front-sidebox {
    padding: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .05);
}
.blog-front-sidebox h3 {
    margin: 0 0 12px;
    font-size: 15px;
    color: #0f172a;
}
.blog-front-side-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.blog-front-side-list a {
    display: flex;
    gap: 10px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 8px;
    border-radius: 12px;
    transition: background .15s;
}
.blog-front-side-list a:hover {
    background: #f8fafc;
}
.blog-front-side-list img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}
.blog-front-side-list strong {
    display: block;
    font-size: 13px;
    line-height: 1.35;
    color: #0f172a;
}
.blog-front-side-list small {
    display: block;
    margin-top: 2px;
    font-size: 11px;
    color: #64748b;
}
.blog-front-side-all {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 10px;
    background: #f1f5f9;
    color: #0f172a;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
}
.blog-front-meta__dot {
    margin: 0 6px;
    opacity: .5;
}
.blog-front-content {
    margin-top: 22px;
    color: #1f2937;
    line-height: 1.75;
}
.blog-front-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}
.blog-front-content h2,
.blog-front-content h3,
.blog-front-content h4 {
    margin-top: 1.4em;
    color: #0f172a;
}
.blog-front-more {
    max-width: 1120px;
    margin: 28px auto 0;
}
.blog-front-more__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}
.blog-front-more__head h2 {
    margin: 0;
    color: #0f172a;
}
.blog-front-more__head a,
.blog-front-more__grid article > a {
    color: #2563eb;
    font-weight: 800;
    text-decoration: none;
}
.blog-front-more__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.blog-front-more__grid article {
    padding: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
}
.blog-front-more__grid span {
    color: #2563eb;
    font-size: 12px;
    font-weight: 900;
}
.blog-front-more__grid h3 {
    margin: 10px 0 8px;
}
.blog-front-more__grid h3 a {
    color: #0f172a;
    text-decoration: none;
}
.blog-front-more__grid p {
    color: #64748b;
}
.blog-front-empty {
    padding: 24px;
    border-radius: 18px;
    background: #f8fafc;
    color: #64748b;
}
@media (max-width: 960px) {
    .blog-front-layout {
        grid-template-columns: 1fr;
    }
    .blog-front-detail-layout {
        grid-template-columns: 1fr;
    }
    .blog-front-detail-sidebar {
        position: static;
    }
    .blog-front-more__grid { grid-template-columns: 1fr; }
    .blog-front-hero { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 768px) {
    .blog-front-list {
        grid-template-columns: repeat(var(--blog-cols-mobile, 2), minmax(0, 1fr));
    }
}
