/*
 * CARMEL & BLANC — ana vitrin stilleri (`index.html` ile eşlenir).
 * ÖNEMLİ: Bu dosya `assets/` altında olduğu için `url()` adresleri SAYFAYA değil BURAYA göre çözülür.
 * Görseller `assets/` ile aynı klasördeyse kullanın: url('dosya.png?v=…') — kullanmayın: url('assets/dosya.png') (404 / çift klasör).
 */
        /* --- CSS VARIABLES & RESET --- */
        :root {
            --bg-color: #f8f7f5; 
            --bg-white: #fdfcfa;
            --text-main: #111;
            --text-muted: #666;
            --border-color: #f0efe9;
            /* Ürün kutusu: ana zeminden ayrışan sıcak kırık beyaz */
            --product-tile-bg: #fbf9f5;
            /* Ürünler arası ince ayırıcı (grid gap rengi) */
            /* Grid: soft stone — luxury / minimal contrast */
            --product-grid-line: #a39a8c;
            --header-h: 82px;
            /* Üst şerit: sıcak kırık beyaz (gövde ile uyumlu) */
            --nav-surface: #fdfcfa;
            --nav-on-surface: #111;
            --nav-border: #f0efe9;
            --font-main: 'Jost', sans-serif;
            /* Referans: geometrik sans, toplu metin (geniş yayık kerning yok) */
            --font-lux: 'Montserrat', 'Helvetica Neue', -apple-system, system-ui, sans-serif;
            --ls-tight: -0.02em;
            --ls-ui: 0.03em;
            --ls-none: 0.01em;
            --font-serif: 'Playfair Display', serif;
            /* Üst wordmark: VAKKO-benzeri keskin didone (Libre Bodoni) — Bodoni Moda yedek */
            --font-wordmark: 'Libre Bodoni', 'Bodoni Moda', 'Playfair Display', Georgia, 'Times New Roman', serif;
            /* Yatay genişletme (sx>1); dikey hafif uzatma */
            --brand-mark-scale-x: 1.14;
            --brand-mark-scale-y: 1.42;
            --font-logo: 'Cormorant Garamond', 'Times New Roman', serif;
            --cart-badge-color: #00a2ff;
            /* Altın oran φ — hero CTA köşe boşluğu için */
            --phi: 1.6180339887;
            /* Ürün detay galerisi (grid dışı); geniş ekranda vh ile tavan */
            --product-card-height: clamp(350px, min(58vh, 20vw + 265px), 580px);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        body { font-family: var(--font-main); background-color: var(--bg-white); color: var(--text-main); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
        html {
            scrollbar-width: none;
        }
        html::-webkit-scrollbar {
            display: none;
            width: 0;
            height: 0;
        }
        html::-webkit-scrollbar-corner {
            background: transparent;
        }
        #ph-scroll-thumb {
            position: fixed;
            top: 4px;
            right: 10px;
            width: 6px;
            min-height: 42px;
            border-radius: 999px;
            border: none;
            background: rgba(17, 17, 17, 0.30);
            opacity: 0.78;
            z-index: 160;
            cursor: grab;
            touch-action: none;
            user-select: none;
            -webkit-user-select: none;
            transition: opacity 0.22s ease, background-color 0.22s ease;
        }
        #ph-scroll-thumb:hover {
            opacity: 0.96;
            background: rgba(17, 17, 17, 0.42);
        }
        #ph-scroll-thumb.is-dragging {
            cursor: grabbing;
            opacity: 1;
            background: rgba(17, 17, 17, 0.52);
        }
        #ph-scroll-thumb.is-hidden {
            opacity: 0;
            pointer-events: none;
        }
        @media (max-width: 1024px), (pointer: coarse) {
            #ph-scroll-thumb {
                display: none !important;
            }
        }
        body.site-body-layout {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        .site-main { flex: 1 0 auto; width: 100%; }
        a { text-decoration: none; color: inherit; cursor: pointer; }
        button { border: none; background: none; cursor: pointer; font-family: inherit; }
        /* Mobilde dokunma gecikmesini azaltır (özellikle iOS Safari) */
        a, button, [role="button"] {
            touch-action: manipulation;
        }
        ul { list-style: none; }
        input, select { font-family: inherit; }

        /* --- NAVIGATION: 1fr | logo (auto) | 1fr grid — logo gerçek viewport merkezinde; yan sütun genişlikleri asimetrik olsa da orta sütun ortalanır --- */
        .navbar {
            position: fixed; top: 0; left: 0; width: 100%; height: var(--header-h);
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            column-gap: 0;
            /* Logo viewport'un tam merkezinde kalsın: container padding yerine yan alanları padding'le */
            padding: 0;
            box-sizing: border-box;
            /* Kaydırılınca: sıcak antrasit cam */
            background-color: rgba(20, 18, 17, 0.9);
            color: var(--nav-on-surface);
            -webkit-backdrop-filter: blur(14px) saturate(118%);
            backdrop-filter: blur(14px) saturate(118%);
            border-bottom: none;
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.055),
                0 10px 40px rgba(0, 0, 0, 0.22);
            z-index: 100;
            isolation: isolate;
            font-family: var(--font-lux);
            font-size: 12.5px;
            letter-spacing: var(--ls-ui);
            font-weight: 500;
            text-transform: uppercase;
            transition:
                background-color 1.55s cubic-bezier(0.1, 0.98, 0.26, 1),
                box-shadow 1.55s cubic-bezier(0.1, 0.98, 0.26, 1),
                color 1.08s cubic-bezier(0.12, 0.94, 0.28, 1),
                -webkit-backdrop-filter 1.55s cubic-bezier(0.1, 0.98, 0.26, 1),
                backdrop-filter 1.55s cubic-bezier(0.1, 0.98, 0.26, 1);
            transform: translateY(0) !important;
        }
        .nav-area-left {
            grid-column: 1;
            grid-row: 1;
            justify-self: start;
            align-self: center;
            display: flex;
            align-items: center;
            gap: 32px;
            padding-left: 32px;
            min-width: 0;
            position: relative;
            z-index: 2;
            animation: navChromeZoomOut 0.82s cubic-bezier(0.22, 0.61, 0.36, 1) both;
            animation-delay: 0.08s;
            transform-origin: center center;
        }
        .nav-hamburger {
            display: none;
            width: 40px;
            height: 40px;
            margin: 0;
            padding: 0;
            border: none;
            background: none;
            color: inherit;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 7px;
            -webkit-tap-highlight-color: transparent;
            cursor: pointer;
            transition: color 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
        }
        .nav-hamburger-line {
            display: block;
            width: 28px;
            height: 1.5px;
            min-height: 1.5px;
            flex: 0 0 1.5px;
            background: currentColor;
            border: none;
            border-radius: 0;
            transform-origin: center center;
            transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.2s ease, background 0.2s ease;
            box-sizing: border-box;
        }
        .nav-hamburger.is-open .nav-hamburger-line:nth-child(1) {
            transform: translateY(8.5px) rotate(45deg);
        }
        .nav-hamburger.is-open .nav-hamburger-line:nth-child(2) {
            opacity: 0;
            transform: scaleX(0.65);
        }
        .nav-hamburger.is-open .nav-hamburger-line:nth-child(3) {
            transform: translateY(-8.5px) rotate(-45deg);
        }
        .nav-hamburger.is-open { color: #111 !important; }
        body.has-side-menu-open #nav-hamburger.is-open { color: #fff !important; }
        .nav-only-narrow { display: none; }
        .nav-only-narrow--flex { display: none; }
        .nav-search-btn {
            display: none;
            width: 52px;
            height: 52px;
            padding: 0;
            align-items: center;
            justify-content: center;
            color: inherit;
            border: none;
            background: none;
            -webkit-tap-highlight-color: transparent;
            transition: color 0.25s ease, transform 0.22s ease;
        }
        .nav-search-btn svg {
            width: 30px;
            height: 30px;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.12;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .nav-account-icon-btn {
            display: none;
            width: 52px;
            height: 52px;
            padding: 0;
            align-items: center;
            justify-content: center;
            color: inherit;
            border: none;
            background: none;
            -webkit-tap-highlight-color: transparent;
            transition: color 0.25s ease, transform 0.22s ease;
        }
        .nav-fav-btn {
            display: none;
            width: 52px;
            height: 52px;
            padding: 0;
            align-items: center;
            justify-content: center;
            color: inherit;
            border: none;
            background: none;
            -webkit-tap-highlight-color: transparent;
            transition: color 0.25s ease, transform 0.22s ease;
            position: relative;
        }
        .nav-account-icon-btn svg {
            width: 30px;
            height: 30px;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.12;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .nav-fav-btn svg {
            width: 30px;
            height: 30px;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.12;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .nav-fav-btn.is-active { color: #e61f00; }
        .nav-fav-btn.is-active svg { fill: currentColor; }
        .cart-btn.is-filling {
            color: #111;
            animation: cartFillPulse 0.52s cubic-bezier(0.22, 0.61, 0.36, 1);
        }
        .cart-btn.is-filling .cart-icon-svg {
            animation: cartFillGlow 0.52s cubic-bezier(0.22, 0.61, 0.36, 1);
        }
        .nav-search-btn svg,
        .nav-account-icon-btn svg,
        .nav-fav-btn svg,
        .nav-search-lux-btn svg {
            transition: transform 0.24s ease;
        }
        .navbar:not(.navbar--transparent-top) .nav-search-btn:hover,
        .navbar:not(.navbar--transparent-top) .nav-search-lux-btn:hover,
        .navbar:not(.navbar--transparent-top) .nav-fav-btn:hover,
        .navbar:not(.navbar--transparent-top) .nav-account-icon-btn:hover {
            color: rgba(255, 255, 255, 0.9);
            transform: translateY(-1px);
        }
        .navbar.navbar--transparent-top .nav-search-btn:hover,
        .navbar.navbar--transparent-top .nav-search-lux-btn:hover,
        .navbar.navbar--transparent-top .nav-fav-btn:hover,
        .navbar.navbar--transparent-top .nav-account-icon-btn:hover {
            color: rgba(255, 255, 255, 0.9);
            transform: translateY(-1px);
        }
        body.has-side-menu-open .navbar {
            background-color: rgba(22, 20, 18, 0.94) !important;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 8px 28px rgba(0, 0, 0, 0.2) !important;
            -webkit-backdrop-filter: blur(12px) saturate(115%) !important;
            backdrop-filter: blur(12px) saturate(115%) !important;
        }
        body.has-side-menu-open .navbar .brand-logo,
        body.has-side-menu-open .navbar .nav-links a,
        body.has-side-menu-open .navbar .nav-account-btn,
        body.has-side-menu-open .navbar .nav-account-icon-btn,
        body.has-side-menu-open .navbar .cart-btn,
        body.has-side-menu-open .navbar .nav-hamburger,
        body.has-side-menu-open .navbar .nav-search-btn,
        body.has-side-menu-open .navbar .nav-search-lux-btn,
        body.has-side-menu-open .navbar .nav-fav-btn {
            color: #fff !important;
        }
        body:not(.has-side-menu-open) .navbar:not(.navbar--transparent-top) .brand-logo,
        body:not(.has-side-menu-open) .navbar:not(.navbar--transparent-top) .nav-links a,
        body:not(.has-side-menu-open) .navbar:not(.navbar--transparent-top) .nav-account-btn,
        body:not(.has-side-menu-open) .navbar:not(.navbar--transparent-top) .nav-account-icon-btn,
        body:not(.has-side-menu-open) .navbar:not(.navbar--transparent-top) .cart-btn,
        body:not(.has-side-menu-open) .navbar:not(.navbar--transparent-top) .nav-hamburger,
        body:not(.has-side-menu-open) .navbar:not(.navbar--transparent-top) .nav-search-btn,
        body:not(.has-side-menu-open) .navbar:not(.navbar--transparent-top) .nav-search-lux-btn,
        body:not(.has-side-menu-open) .navbar:not(.navbar--transparent-top) .nav-fav-btn {
            color: #fff;
        }
        body:not(.has-side-menu-open) .navbar.navbar--transparent-top .brand-logo,
        body:not(.has-side-menu-open) .navbar.navbar--transparent-top .nav-links a,
        body:not(.has-side-menu-open) .navbar.navbar--transparent-top .nav-account-btn,
        body:not(.has-side-menu-open) .navbar.navbar--transparent-top .nav-account-icon-btn,
        body:not(.has-side-menu-open) .navbar.navbar--transparent-top .cart-btn,
        body:not(.has-side-menu-open) .navbar.navbar--transparent-top .nav-hamburger,
        body:not(.has-side-menu-open) .navbar.navbar--transparent-top .nav-search-btn,
        body:not(.has-side-menu-open) .navbar.navbar--transparent-top .nav-search-lux-btn,
        body:not(.has-side-menu-open) .navbar.navbar--transparent-top .nav-fav-btn {
            color: #fff;
        }
        body.has-side-menu-open .navbar .nav-fav-btn.is-active {
            color: #e61f00 !important;
        }
        body.has-side-menu-open .navbar .nav-fav-btn.is-active svg {
            fill: currentColor !important;
        }
        body.has-side-menu-open .navbar .nav-fav-btn:hover,
        body.has-side-menu-open .navbar .nav-fav-btn:focus-visible {
            color: #fff !important;
        }
        body.has-side-menu-open .navbar .nav-fav-btn.is-active:hover,
        body.has-side-menu-open .navbar .nav-fav-btn.is-active:focus-visible {
            color: #e61f00 !important;
        }
        .navbar .nav-fav-btn.is-active,
        .navbar .nav-fav-btn.is-active:hover,
        .navbar .nav-fav-btn.is-active:focus-visible {
            color: #e61f00 !important;
        }
        .navbar .nav-fav-btn.is-active svg,
        .navbar .nav-fav-btn.is-active svg path {
            fill: currentColor !important;
            stroke: currentColor !important;
        }
        .nav-search-btn:hover svg,
        .nav-search-lux-btn:hover svg,
        .nav-fav-btn:hover svg,
        .nav-account-icon-btn:hover svg {
            transform: scale(1.04);
        }
        /* Favori ikonu hover'da siyaha dönmesin */
        .navbar:not(.navbar--transparent-top) .nav-fav-btn:hover { color: rgba(255, 255, 255, 0.92) !important; }
        .navbar.navbar--transparent-top .nav-fav-btn:hover { color: rgba(255, 255, 255, 0.92) !important; }
        .navbar .nav-fav-btn.is-active:hover { color: #e61f00 !important; }
        .nav-fav-badge {
            position: absolute;
            top: 11px;
            right: 8px;
            min-width: 14px;
            height: 14px;
            padding: 0 3px;
            border-radius: 999px;
            background: #111;
            color: #fff;
            font-size: 8px;
            line-height: 1;
            display: none;
            align-items: center;
            justify-content: center;
            font-family: var(--font-lux);
            font-weight: 600;
            letter-spacing: 0;
        }
        .cart-label--hide-narrow { display: inline; }
        /* Sürgülü sol menü */
        .nav-drawer-backdrop {
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            top: var(--header-h);
            z-index: 120;
            background: rgba(0,0,0,0.35);
            opacity: 0;
            pointer-events: none;
            visibility: hidden;
            /* Panel ile aynı süre / aynı yumuşak kapanma */
            transition:
                opacity var(--ph-pane-overlay-duration) var(--ph-pane-overlay-ease),
                visibility 0s var(--ph-pane-overlay-duration);
        }
        .nav-drawer-backdrop.is-open { opacity: 1; pointer-events: auto; visibility: visible; transition-delay: 0s; }
        .nav-drawer {
            --nav-drawer-snap: var(--ph-pane-ease);
            --nav-panel-dur: var(--ph-pane-duration);
            /* Menü satırları: yatay kayma, yavaş ve yumuşak oturma */
            --nav-link-slide: 1.05s;
            --nav-link-fade: 0.82s;
            --nav-link-ease: cubic-bezier(0.16, 0.88, 0.18, 1);
            --nav-link-fade-ease: cubic-bezier(0.25, 0.46, 0.4, 1);
            --nav-row-slide-px: 72px;
            --nav-row-appear-delay: 0.13s;
            position: fixed;
            top: 0;
            left: 0;
            width: min(100%, 380px);
            height: 100%;
            max-height: 100dvh;
            z-index: 130;
            background: #fff;
            color: #111;
            display: flex;
            flex-direction: column;
            transform: translate3d(-100%, 0, 0);
            box-shadow: 4px 0 28px rgba(0,0,0,0.07);
            overflow: visible;
            /* Aç/kapa: hızlı hareket, yumuşak bitiş (aynı eğri) */
            transition: transform var(--nav-panel-dur) var(--nav-drawer-snap);
            -webkit-overflow-scrolling: touch;
        }
        .nav-drawer.is-open {
            transform: translate3d(0, 0, 0);
        }
        @media (prefers-reduced-motion: reduce) {
            .nav-drawer { --nav-panel-dur: 0.2s; --nav-link-slide: 0.2s; --nav-link-fade: 0.15s; }
            .nav-drawer { transition: transform 0.2s ease; }
            .nav-drawer-backdrop { transition: opacity 0.2s ease, visibility 0s 0.2s; }
            .nav-drawer .nav-drawer-primary a,
            .nav-drawer .nav-drawer-primary .nav-drawer-primary-account,
            .nav-drawer .nav-drawer-primary .nav-drawer-mobile-search,
            .nav-drawer .nav-drawer-secondary a,
            .nav-drawer .nav-drawer-secondary button,
            .nav-drawer .nav-drawer-social a { transition: none !important; }
            .nav-drawer.is-open .nav-drawer-primary a,
            .nav-drawer.is-open .nav-drawer-primary .nav-drawer-primary-account,
            .nav-drawer.is-open .nav-drawer-primary .nav-drawer-mobile-search,
            .nav-drawer.is-open .nav-drawer-secondary a,
            .nav-drawer.is-open .nav-drawer-secondary button,
            .nav-drawer.is-open .nav-drawer-social a {
                opacity: 1 !important;
                transform: none !important;
            }
            .brand-logo,
            .nav-area-left,
            .nav-utils {
                animation: none !important;
                opacity: 1;
                transform: none;
            }
        }
        .nav-drawer-header {
            flex: 0 0 auto;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 0 8px 0 12px;
            min-height: var(--header-h);
            border-bottom: 1px solid #e5e2dc;
        }
        .nav-drawer-close {
            width: 40px;
            height: 40px;
            padding: 0;
            border: none;
            background: none;
            color: #111;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 7px;
        }
        .nav-drawer-close-line {
            display: block;
            width: 28px;
            height: 1.5px;
            min-height: 1.5px;
            flex: 0 0 1.5px;
            background: currentColor;
            border-radius: 0;
            transform-origin: center center;
        }
        .nav-drawer-close-line:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
        .nav-drawer-close-line:nth-child(2) { opacity: 0; transform: scaleX(0.65); }
        .nav-drawer-close-line:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }
        .nav-drawer-close:hover { opacity: 0.8; }
        .nav-drawer-close:focus-visible {
            outline: 2px solid #111;
            outline-offset: 2px;
        }
        .nav-drawer-body {
            flex: 1;
            min-height: 0;
            display: flex;
            flex-direction: column;
            overflow-y: auto;
            padding: 0 0 20px;
        }
        .nav-drawer-primary { border-top: none; }
        .nav-drawer-primary a,
        .nav-drawer-primary .nav-drawer-primary-account {
            font-family: var(--font-lux);
            font-size: 15px;
            font-weight: 500;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: #1a1a1a;
            padding: 20px 24px;
            border-bottom: 1px solid #e5e2dc;
            text-decoration: none;
        }
        .nav-drawer-primary a { display: block; }
        .nav-drawer-primary .nav-drawer-mobile-search {
            display: none;
            width: 100%;
            text-align: left;
            align-items: center;
            justify-content: flex-start;
            gap: 8px;
            font-family: var(--font-lux);
            font-size: 15px;
            font-weight: 500;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: #1a1a1a;
            padding: 20px 24px;
            border-bottom: 1px solid #e5e2dc;
            background: none;
            border-left: none;
            border-right: none;
            border-top: none;
            cursor: pointer;
        }
        .nav-drawer-primary .nav-drawer-mobile-search svg {
            width: 18px;
            height: 18px;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            flex: 0 0 auto;
            transform: translateY(0);
        }
        .nav-drawer-primary .nav-drawer-mobile-search span {
            display: inline-block;
            line-height: 1;
        }
        .nav-drawer-primary .nav-drawer-primary-account {
            display: flex;
            width: 100%;
            box-sizing: border-box;
            align-items: center;
            justify-content: flex-start;
            gap: 6px;
            text-align: left;
            background: none;
            cursor: pointer;
            -webkit-tap-highlight-color: transparent;
            text-transform: none;
        }
        .nav-drawer-primary .nav-drawer-primary-account__label-col {
            display: flex;
            min-width: 0;
            flex: 1 1 auto;
            flex-wrap: wrap;
            align-items: center;
            column-gap: 0.45em;
            row-gap: 0.2em;
        }
        .nav-drawer-primary .nav-drawer-primary-account__head {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            flex: 0 0 auto;
        }
        .nav-drawer-primary .nav-drawer-primary-account__text { text-transform: uppercase; }
        .nav-drawer-primary .nav-drawer-primary-account__welcome {
            font-size: 13px;
            font-weight: 500;
            letter-spacing: var(--ls-none);
            text-transform: none;
            color: #5a5a5a;
            margin-inline-start: 1.15em;
        }
        .nav-drawer-primary .nav-drawer-primary-account__welcome:empty { display: none; }
        .nav-drawer-primary .nav-drawer-primary-account__icon {
            width: 22px;
            height: 22px;
            flex-shrink: 0;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.12;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .nav-drawer-primary > :first-child { border-top: none; }
        .nav-drawer-primary a:hover,
        .nav-drawer-primary .nav-drawer-primary-account:hover,
        .nav-drawer-primary .nav-drawer-mobile-search:hover { background: #faf9f6; }
        .nav-drawer-secondary {
            margin-top: 12px;
            padding: 4px 24px 8px;
        }
        .nav-drawer-secondary a,
        .nav-drawer-secondary button {
            display: block;
            width: 100%;
            text-align: left;
            font-family: var(--font-lux);
            font-size: 13px;
            font-weight: 500;
            text-transform: none;
            letter-spacing: var(--ls-none);
            color: #7a7a7a;
            padding: 9px 0;
            background: none;
            border: none;
            cursor: pointer;
        }
        .nav-drawer-secondary a:hover,
        .nav-drawer-secondary button:hover { color: #1a1a1a; }
        .nav-drawer-social {
            display: flex;
            justify-content: space-around;
            align-items: center;
            margin-top: auto;
            padding: 18px 20px 8px;
            border-top: 1px solid #e5e2dc;
        }
        .nav-drawer-social a { color: #4a4a4a; }
        .nav-drawer-social a:hover { color: #111; }
        .nav-drawer-social svg { width: 22px; height: 22px; }
        /* Panel açıldıktan satırlar: soldan sağa yatay kayma (Y yok; üstten-alta sıra yok) */
        .nav-drawer .nav-drawer-primary a,
        .nav-drawer .nav-drawer-primary .nav-drawer-primary-account,
        .nav-drawer .nav-drawer-primary .nav-drawer-mobile-search,
        .nav-drawer .nav-drawer-secondary a,
        .nav-drawer .nav-drawer-secondary button,
        .nav-drawer .nav-drawer-social a {
            opacity: 0;
            /* Sadece yatay ofset; dikey 0’da kilit */
            transform: translate3d(calc(-1 * var(--nav-row-slide-px, 72px)), 0, 0);
            transition:
                transform var(--nav-link-slide) var(--nav-link-ease, cubic-bezier(0.16, 0.88, 0.18, 1)),
                opacity var(--nav-link-fade) var(--nav-link-fade-ease, cubic-bezier(0.25, 0.46, 0.4, 1));
            transition-delay: 0s, 0s;
        }
        .nav-drawer.is-open .nav-drawer-primary a,
        .nav-drawer.is-open .nav-drawer-primary .nav-drawer-primary-account,
        .nav-drawer.is-open .nav-drawer-primary .nav-drawer-mobile-search,
        .nav-drawer.is-open .nav-drawer-secondary a,
        .nav-drawer.is-open .nav-drawer-secondary button,
        .nav-drawer.is-open .nav-drawer-social a {
            opacity: 1;
            transform: translate3d(0, 0, 0);
            /* Panel oturduktan sonra tümü aynı anda: yatay kayma hissi, dikey kademe yok */
            transition-delay: var(--nav-row-appear-delay), var(--nav-row-appear-delay);
        }
        /* Anasayfa: yalnızca scroll tam en üstte şeffaf (beyaz şerit yok); aşağı kaydırınca kırık beyaz şerit (animasyonlu) */
        .navbar.navbar--transparent-top {
            background: transparent;
            background-color: transparent;
            -webkit-backdrop-filter: none;
            backdrop-filter: none;
            border-bottom: none;
            box-shadow: none;
            color: #fff;
        }
        /* Kaydırmalı barda link hover “ısıtılmış krem” aşağıda */
        body:not(.has-side-menu-open) .navbar:not(.navbar--transparent-top) .nav-links a {
            letter-spacing: 0.11em;
        }
        body:not(.has-side-menu-open) .navbar:not(.navbar--transparent-top) .nav-links a:hover {
            color: rgba(252, 246, 232, 0.94);
            transform: translateY(-1px);
        }
        .navbar .brand-logo,
        .navbar .nav-links a,
        .navbar .nav-account-btn,
        .navbar .nav-account-icon-btn,
        .navbar .cart-btn,
        .navbar .nav-hamburger,
        .navbar .nav-search-btn,
        .navbar .nav-search-lux-btn {
            text-shadow: none;
            transition: text-shadow 0.32s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.2s ease, color 0.26s ease, opacity 0.2s ease;
        }
        .navbar.navbar--transparent-top .brand-logo,
        .navbar.navbar--transparent-top .nav-links a,
        .navbar.navbar--transparent-top .nav-account-btn,
        .navbar.navbar--transparent-top .nav-account-icon-btn,
        .navbar.navbar--transparent-top .cart-btn,
        .navbar.navbar--transparent-top .nav-hamburger,
        .navbar.navbar--transparent-top .nav-search-btn,
        .navbar.navbar--transparent-top .nav-search-lux-btn {
            text-shadow: 0 1px 14px rgba(0, 0, 0, 0.45);
        }
        .navbar .brand-logo {
            color: #e6c982 !important;
            text-shadow:
                0 1px 0 rgba(98, 67, 10, 0.62),
                0 0 4px rgba(255, 232, 156, 0.52),
                0 0 10px rgba(255, 214, 105, 0.32);
            z-index: 4;
            filter: brightness(1.14) saturate(1.16) contrast(1.06);
        }
        .navbar .brand-logo .brand-logo__row {
            color: #e6c982 !important;
            -webkit-text-fill-color: #e6c982 !important;
            background-image: none !important;
            filter: brightness(1.14) saturate(1.16) contrast(1.06);
        }
        .navbar .brand-logo .brand-logo__word:last-of-type {
            filter: brightness(1.06) saturate(1.06);
            font-weight: 520;
        }
        .navbar.navbar--transparent-top .brand-logo {
            text-shadow:
                0 1px 0 rgba(104, 72, 12, 0.72),
                0 0 5px rgba(255, 235, 168, 0.62),
                0 0 13px rgba(255, 220, 116, 0.40);
        }
        .navbar:not(.navbar--transparent-top) .brand-logo {
            text-shadow:
                0 1px 0 rgba(98, 67, 10, 0.64),
                0 0 4px rgba(255, 232, 156, 0.46),
                0 0 9px rgba(255, 206, 86, 0.28);
        }
        @media (max-width: 768px) {
            body.has-side-menu-open .navbar .brand-logo {
                color: #e6c982 !important;
                text-shadow:
                    0 1px 0 rgba(98, 67, 10, 0.62),
                    0 0 4px rgba(255, 232, 156, 0.50),
                    0 0 10px rgba(255, 214, 105, 0.30) !important;
                filter: brightness(1.16) saturate(1.16) contrast(1.06) !important;
            }
            body.has-side-menu-open .navbar .brand-logo .brand-logo__row {
                background-image: none !important;
                color: #e6c982 !important;
                -webkit-text-fill-color: #e6c982 !important;
            }
        }
        .navbar.navbar--transparent-top .nav-links a:hover { transform: translateY(-2px); color: rgba(255, 255, 255, 0.9); }
        .navbar.navbar--transparent-top .nav-account-btn:hover { transform: translateY(-2px); color: rgba(255, 255, 255, 0.9); }
        .nav-links { display: flex; flex-wrap: nowrap; gap: 35px; margin: 0; padding: 0; }
        .nav-links li { flex: 0 0 auto; list-style: none; }
        .nav-links a {
            display: inline-block;
            width: max-content;
            max-width: 100%;
            padding: 0;
            font-family: var(--font-lux);
            font-weight: 600;
            font-size: 12.5px;
            letter-spacing: var(--ls-ui);
            text-transform: uppercase;
            color: inherit;
            transition: transform 0.2s ease, color 0.26s ease, text-shadow 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
        }
        .nav-links a:hover { transform: translateY(-2px); color: #000; }

        .brand-logo {
            grid-column: 2;
            grid-row: 1;
            justify-self: center;
            align-self: center;
            position: relative;
            left: auto;
            right: auto;
            top: auto;
            width: max-content;
            max-width: min(92vw, calc(100vw - 140px));
            height: auto;
            min-height: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;
            z-index: 0;
            pointer-events: none;
            font-family: var(--font-wordmark);
            font-size: 18px;
            font-weight: 400;
            font-synthesis: none;
            font-optical-sizing: auto;
            text-rendering: optimizeLegibility;
            text-transform: uppercase;
            line-height: 1.02;
            letter-spacing: 0;
            white-space: nowrap;
            color: inherit;
            -webkit-font-smoothing: antialiased;
            font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
            animation: navChromeZoomOut 0.82s cubic-bezier(0.22, 0.61, 0.36, 1) both;
            transform-origin: center center;
            transition: transform 0.2s ease, opacity 0.2s ease, text-shadow 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
            -webkit-tap-highlight-color: transparent;
            outline: none;
        }
        .brand-logo:focus,
        .brand-logo:focus-visible,
        .brand-logo:active {
            outline: none;
            box-shadow: none;
            background: transparent;
        }
        .brand-logo__row {
            display: inline-flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            width: max-content;
            max-width: 100%;
            min-width: 0;
            position: relative;
            pointer-events: none;
            /* Hover kalkışı burada: üst .brand-logo’da transform animasyonu olduğu için translateY aynı elemanda uygulanmıyordu */
            transition: transform 0.26s cubic-bezier(0.22, 0.61, 0.36, 1);
            will-change: transform;
        }
        .brand-logo__mark {
            position: relative;
            /* 1fr | & | 1fr: orta sütunun merkezi = markanın ve (navbar’da) sitenin merkezi; kelimeler orta sütuna yaslanır */
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
            align-items: center;
            justify-items: stretch;
            column-gap: 0.14em;
            min-width: 0;
            width: max-content;
            max-width: 100%;
            box-sizing: border-box;
            white-space: nowrap;
            font-size: 1em;
            font-weight: 400;
            text-align: center;
            font-variant-ligatures: common-ligatures;
            /* scale: yatay geniş + dikey hafif uzun */
            transform: scale(var(--brand-mark-scale-x), var(--brand-mark-scale-y));
            transform-origin: center center;
            transition: transform 0.26s cubic-bezier(0.22, 0.61, 0.36, 1);
            pointer-events: auto;
        }
        .brand-logo__word {
            min-width: 0;
            letter-spacing: 0.58em;
        }
        .brand-logo__word:first-of-type {
            justify-self: end;
            text-align: right;
            padding-right: 0.36em;
            padding-left: 0;
        }
        .brand-logo__word:last-of-type {
            justify-self: start;
            text-align: left;
            /* B harfi optik olarak &’ye daha yakın; Carmel ile hizalı mesafe için biraz fazla */
            padding-left: 0.76em;
            padding-right: 0;
        }
        .brand-logo__amp {
            justify-self: center;
            align-self: center;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-wordmark);
            font-style: normal;
            font-weight: 500;
            font-synthesis: weight;
            font-size: 1em;
            line-height: 1;
            letter-spacing: 0;
            margin: 0;
            padding-inline: 0.22em;
            pointer-events: none;
        }
        .brand-logo:hover .brand-logo__row,
        .brand-logo:focus-visible .brand-logo__row {
            transform: translateY(-2px);
        }

        .nav-utils {
            grid-column: 3;
            grid-row: 1;
            justify-self: end;
            align-self: center;
            display: flex;
            gap: 12px;
            align-items: center;
            position: relative;
            z-index: 2;
            min-width: 0;
            padding-right: 32px;
            animation: navChromeZoomOut 0.82s cubic-bezier(0.22, 0.61, 0.36, 1) both;
            animation-delay: 0.16s;
            transform-origin: center center;
        }
        .nav-utils > .nav-search-btn,
        .nav-utils > .nav-fav-btn,
        .nav-utils > .cart-btn {
            margin: 0;
            flex: 0 0 auto;
        }
        .nav-utils > .nav-search-btn,
        .nav-utils > .nav-fav-btn,
        .nav-utils > .cart-btn {
            width: 52px;
            height: 52px;
            flex-basis: 52px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0;
        }
        .nav-account-btn {
            background: none;
            border: none;
            cursor: pointer;
            font-family: var(--font-lux);
            font-size: 12.5px;
            letter-spacing: var(--ls-ui);
            font-weight: 500;
            text-transform: uppercase;
            color: inherit;
            padding: 0;
            width: max-content;
            min-width: 0;
            max-width: 100%;
            transition: transform 0.2s ease, color 0.26s ease, text-shadow 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
        }
        .nav-account-btn:hover { transform: translateY(-2px); color: #000; }
        .nav-search-lux {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
        }
        .nav-search-lux-btn {
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: inherit;
            border: none;
            background: none;
            padding: 0;
            cursor: pointer;
            opacity: 0.9;
            transition:
                opacity 0.22s ease,
                transform 0.22s ease,
                color 0.26s ease,
                text-shadow 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
        }
        .nav-search-lux-btn:hover { opacity: 1; transform: translateY(-1px); }
        .nav-search-lux-btn svg {
            width: 30px;
            height: 30px;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.12;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .nav-search-lux-input {
            position: absolute;
            right: calc(100% + 8px);
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            opacity: 0;
            pointer-events: none;
            border: none;
            border-bottom: 1px solid currentColor;
            background: transparent;
            color: inherit;
            font-family: var(--font-lux);
            font-size: 11.5px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            line-height: 1;
            padding: 5px 0 4px;
            transition:
                width var(--ph-nav-search-width-dur) var(--ph-nav-search-width-ease),
                opacity 0.42s var(--ph-pane-overlay-ease);
        }
        .nav-search-lux-input::placeholder {
            color: currentColor;
            opacity: 0.58;
            letter-spacing: 0.08em;
        }
        .nav-search-lux-input:focus { outline: none; opacity: 1; }
        .nav-search-lux.is-open .nav-search-lux-input {
            width: 180px;
            opacity: 0.95;
            pointer-events: auto;
        }
        .nav-mobile-search-backdrop {
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            top: var(--header-h);
            z-index: 108;
            background: rgba(0, 0, 0, 0.26);
            opacity: 0;
            pointer-events: none;
            visibility: hidden;
            transition:
                opacity var(--ph-pane-overlay-duration) var(--ph-pane-overlay-ease),
                visibility 0s var(--ph-pane-overlay-duration);
        }
        .nav-mobile-search-backdrop.is-open {
            opacity: 1;
            pointer-events: auto;
            visibility: visible;
            transition-delay: 0s;
        }
        .nav-mobile-search-sheet {
            position: fixed;
            left: 0;
            right: 0;
            width: 100%;
            max-width: 100%;
            top: var(--header-h);
            z-index: 109;
            background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.95));
            border-top: 1px solid rgba(0,0,0,0.08);
            border-bottom: 1px solid rgba(0,0,0,0.08);
            border-radius: 0;
            -webkit-backdrop-filter: blur(10px) saturate(120%);
            backdrop-filter: blur(10px) saturate(120%);
            box-shadow: 0 10px 26px rgba(0, 0, 0, 0.10);
            transform: translate3d(100%, 0, 0);
            opacity: 1;
            pointer-events: none;
            transition: transform var(--ph-pane-duration) var(--ph-pane-ease);
        }
        .nav-mobile-search-sheet.is-open {
            transform: translate3d(0, 0, 0);
            pointer-events: auto;
        }
        .nav-mobile-search-inner {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 14px;
            max-width: 100%;
            margin: 0;
        }
        .nav-mobile-search-input {
            flex: 1 1 auto;
            height: 44px;
            border: none;
            border-bottom: 1px solid rgba(17, 17, 17, 0.58);
            border-radius: 0;
            background: transparent;
            box-shadow: none;
            color: #111;
            padding: 0 6px 0 8px;
            font-family: var(--font-lux);
            /* iOS Safari: 16px altında odak = otomatik sayfa zoom’u; en az 16px tutulur */
            font-size: 16px;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }
        .nav-mobile-search-input::placeholder {
            color: rgba(22, 22, 22, 0.62);
            opacity: 1;
            transition: opacity 0.16s ease;
        }
        .nav-mobile-search-input:not(:placeholder-shown)::placeholder {
            opacity: 0;
        }
        .nav-mobile-search-input:focus {
            outline: none;
            border-bottom-color: rgba(17, 17, 17, 0.86);
            box-shadow: none;
        }
        .nav-mobile-search-close {
            width: 44px;
            height: 44px;
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #111;
            border: none;
            border-radius: 0;
            background: transparent;
            box-shadow: none;
            padding: 0;
        }
        .nav-mobile-search-close svg {
            width: 18px;
            height: 18px;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.9;
            stroke-linecap: round;
        }
        .cart-btn {
            display: flex; align-items: center; gap: 8px;
            font-family: var(--font-lux);
            font-weight: 500; letter-spacing: var(--ls-ui); text-transform: uppercase; font-size: 12.5px;
            color: inherit;
            background: none;
            border: none;
            padding: 0;
            width: max-content;
            min-width: 0;
            max-width: 100%;
            cursor: pointer;
            transition: color 0.26s ease, transform 0.2s ease, text-shadow 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
            -webkit-tap-highlight-color: transparent;
            outline: none;
        }
        .cart-btn:focus,
        .cart-btn:focus-visible,
        .cart-btn:active {
            outline: none;
            box-shadow: none;
            background: transparent;
        }
        .navbar:not(.navbar--transparent-top) .cart-btn:hover { color: rgba(255, 255, 255, 0.9); }
        .navbar.navbar--transparent-top .cart-btn:hover { color: rgba(255, 255, 255, 0.9); }
        .cart-icon-wrapper { position: relative; display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; }
        .cart-icon-svg {
            width: 30px;
            height: 30px;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.05;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: transform 0.3s;
        }
        .cart-btn:hover .cart-icon-svg { transform: translateY(-1px) scale(1.04); }
        .cart-btn:hover .cart-badge { transform: translateY(-1px) scale(1.04); }

        .cart-badge {
            position: absolute;
            top: 6px;
            right: 4px;
            box-sizing: border-box;
            min-width: 16px;
            height: 16px;
            padding: 0 4px;
            border-radius: 999px;
            display: none;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            font-family: var(--font-lux);
            font-size: 9px;
            font-weight: 600;
            font-variant-numeric: tabular-nums;
            letter-spacing: 0;
            line-height: 1;
            color: #111;
            background: #f6f4ef;
            border: 1px solid #d8d3c9;
            transition: transform 0.24s ease;
            z-index: 2;
        }
        .cart-badge.pop { transform: scale(1.4); }

        @media (max-width: 1024px) {
            .navbar { padding: 0 12px 0 14px; column-gap: 0; }
            .brand-logo {
                font-size: 15px;
                max-width: min(88vw, calc(100vw - 170px));
            }
            .nav-drawer-header { display: none; }
            .nav-drawer {
                top: var(--header-h);
                height: calc(100vh - var(--header-h));
                max-height: calc(100dvh - var(--header-h));
            }
            .nav-drawer-backdrop {
                top: var(--header-h);
                left: 0;
                right: 0;
                bottom: 0;
            }
            .fav-drawer {
                top: var(--header-h);
                left: auto;
                right: 0;
                width: 100%;
                max-width: 100%;
                height: calc(100vh - var(--header-h));
                max-height: calc(100dvh - var(--header-h));
                transform: translate3d(100%, 0, 0);
                transition: transform var(--ph-pane-duration) var(--ph-pane-ease);
            }
            .fav-drawer.active { transform: translate3d(0, 0, 0); }
            .nav-hamburger { display: inline-flex; margin: 0; }
            .nav-only-narrow { display: block; }
            .nav-only-narrow--flex { display: flex !important; align-items: center; }
            .nav-only-wide { display: none !important; }
            .nav-search-lux { display: none !important; }
            .nav-search-btn { display: none !important; }
            .nav-drawer-primary .nav-drawer-mobile-search { display: flex; }
            .nav-fav-btn {
                display: inline-flex !important;
                width: 34px;
                height: 34px;
            }
            /* Hesap: üst çubukta yok, hamburger menüde */
            .nav-account-icon-btn { display: none !important; }
            .nav-area-left .nav-links { display: none; }
            .nav-utils { gap: 1px; }
            .cart-label--hide-narrow { position: absolute; width: 1px; height: 1px; padding: 0; margin: 0; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
            .nav-search-btn,
            .nav-account-icon-btn,
            .cart-btn {
                width: 32px;
                height: 32px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                padding: 0;
            }
            .nav-utils > .nav-search-btn,
            .nav-utils > .nav-fav-btn,
            .nav-utils > .cart-btn {
                width: 32px;
                height: 32px;
                flex-basis: 32px;
            }
            .nav-search-btn svg,
            .nav-account-icon-btn svg {
                width: 20px;
                height: 20px;
                stroke-width: 1.5;
            }
            .nav-fav-btn svg {
                width: 20px;
                height: 20px;
                stroke-width: 1.5;
            }
            .nav-fav-badge {
                top: 5px;
                right: 4px;
                min-width: 14px;
                height: 14px;
                padding: 0 3px;
                font-size: 8px;
            }
            .cart-icon-wrapper {
                width: 32px;
                height: 32px;
            }
            .cart-icon-svg {
                width: 20px;
                height: 20px;
                stroke-width: 1.5;
            }
            .cart-badge {
                top: 1px;
                right: 0;
                min-width: 14px;
                height: 14px;
                padding: 0 3px;
                font-size: 8px;
            }
            .cart-btn { gap: 0; }
        }
        @media (min-width: 1025px) {
            /* Desktop'ta da mobil navigasyon düzeni: hamburger + drawer */
            .nav-drawer-header { display: none; }
            .nav-drawer {
                top: var(--header-h);
                height: calc(100vh - var(--header-h));
                max-height: calc(100dvh - var(--header-h));
            }
            .nav-drawer-backdrop {
                top: var(--header-h);
                left: 0;
                right: 0;
                bottom: 0;
            }
            .nav-hamburger { display: inline-flex !important; margin: 0; }
            .nav-area-left .nav-links { display: none; }
            .nav-only-wide { display: none !important; }
            .nav-only-narrow { display: block !important; }
            .nav-only-narrow--flex { display: flex !important; align-items: center; }
            .nav-search-btn,
            .nav-account-icon-btn,
            .cart-btn {
                width: 52px;
                height: 52px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                padding: 0;
            }
            .nav-search-btn { display: flex !important; }
            .nav-search-lux { display: none !important; }
            .nav-search-lux,
            .nav-search-lux-btn {
                width: 52px;
                height: 52px;
            }
            /* Hesap üst çubukta değil, drawer içinde */
            .nav-account-icon-btn { display: inline-flex !important; }
            .nav-fav-btn { display: inline-flex !important; }
            .nav-account-btn { display: none !important; }
            .cart-btn { gap: 0; }
            .cart-label--hide-narrow {
                position: absolute;
                width: 1px;
                height: 1px;
                padding: 0;
                margin: 0;
                overflow: hidden;
                clip: rect(0,0,0,0);
                border: 0;
            }
            .nav-utils { gap: 8px; }
            .nav-search-btn svg,
            .nav-account-icon-btn svg,
            .nav-fav-btn svg {
                width: 30px;
                height: 30px;
            }
            .cart-icon-wrapper {
                width: 52px;
                height: 52px;
            }
            .cart-icon-svg {
                width: 30px;
                height: 30px;
            }
            .cart-badge {
                top: 11px;
                right: 8px;
                min-width: 14px;
                height: 14px;
                padding: 0 3px;
                font-size: 8px;
            }
            .nav-mobile-search-input {
                text-align: center;
                padding-left: 0;
                padding-right: 0;
            }
            .nav-mobile-search-input:focus:placeholder-shown {
                caret-color: transparent;
            }
            .nav-mobile-search-input:focus:not(:placeholder-shown) {
                caret-color: #111;
            }
        }

        /* Favoriler */
        .fav-overlay { position: fixed; left: 0; right: 0; bottom: 0; top: var(--header-h); background: rgba(0,0,0,0.3); backdrop-filter: blur(4px); z-index: 199; opacity: 0; pointer-events: none; transition: opacity var(--ph-pane-overlay-duration) var(--ph-pane-overlay-ease); }
        .fav-overlay.active { opacity: 1; pointer-events: auto; }
        .fav-drawer { position: fixed; top: var(--header-h); right: 0; left: auto; width: 420px; max-width: 100vw; height: calc(100vh - var(--header-h)); max-height: calc(100dvh - var(--header-h)); background: #fff; z-index: 200; transform: translate3d(100%, 0, 0); transition: transform var(--ph-pane-duration) var(--ph-pane-ease); display: flex; flex-direction: column; box-shadow: -10px 0 30px rgba(0,0,0,0.1); }
        .fav-drawer.active { transform: translateX(0); }
        @media (max-width: 1024px) {
            .fav-drawer {
                top: var(--header-h);
                left: auto;
                right: 0;
                width: 100%;
                max-width: 100%;
                height: calc(100vh - var(--header-h));
                max-height: calc(100dvh - var(--header-h));
                transform: translate3d(100%, 0, 0);
                transition: transform var(--ph-pane-duration) var(--ph-pane-ease);
                box-shadow: -10px 0 30px rgba(0,0,0,0.1);
            }
            .fav-drawer.active { transform: translate3d(0, 0, 0); }
        }
        .fav-header { padding: 30px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
        .fav-title { font-family: var(--font-lux); font-size: 24px; font-weight: 600; letter-spacing: var(--ls-tight); }
        .close-fav { font-size: 20px; color: var(--text-muted); transition: color 0.2s; }
        .close-fav:hover { color: #000; }
        .fav-items-container { flex: 1; padding: 30px; overflow-y: auto; display: flex; flex-direction: column; gap: 20px; }
        .fav-item { display: flex; gap: 15px; border-bottom: 1px solid var(--border-color); padding-bottom: 15px; }
        .fav-item--clickable { cursor: pointer; }
        .fav-item-img { width: 88px; height: 88px; background: #f7f6f2; display: flex; align-items: center; justify-content: center; }
        .fav-item-img img { width: 100%; height: 100%; object-fit: contain; }
        .fav-item-details { flex: 1; display: flex; flex-direction: column; justify-content: space-between; gap: 8px; }
        .fav-item-title { font-family: var(--font-lux); font-size: 13px; font-weight: 600; letter-spacing: var(--ls-none); text-transform: none; line-height: 1.35; }
        .fav-item-remove-btn {
            width: 30px;
            height: 30px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: none;
            background: transparent;
            color: #e61f00;
            cursor: pointer;
            transition: transform 0.2s ease, opacity 0.2s ease;
        }
        .fav-item-remove-btn:hover {
            transform: translateY(-1px);
            opacity: 0.92;
        }
        .fav-item-remove-btn svg {
            width: 18px;
            height: 18px;
            stroke: currentColor;
            fill: currentColor;
            stroke-width: 1.6;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .product-fav-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 34px;
            height: 34px;
            border: none;
            border-radius: 0;
            background: transparent;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #111;
            -webkit-tap-highlight-color: transparent;
            z-index: 3;
            transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
        }
        .product-fav-btn:hover { transform: translateY(-1px); background: transparent; }
        .product-fav-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.6; }
        .product-fav-btn.is-active { color: #e61f00; }
        .product-fav-btn.is-active svg { fill: currentColor; }
        .product-fav-btn svg path,
        .nav-fav-btn svg path {
            transition: fill 0.28s ease, stroke 0.28s ease;
        }
        .product-fav-btn.is-filling,
        .nav-fav-btn.is-filling,
        .detail-fav-icon-btn.is-filling {
            color: #e61f00;
            animation: favoriteFillPulse 0.52s cubic-bezier(0.22, 0.61, 0.36, 1);
        }
        .product-fav-btn.is-filling svg path,
        .nav-fav-btn.is-filling svg path,
        .detail-fav-icon-btn.is-filling svg path {
            animation: favoriteFillInk 0.46s cubic-bezier(0.22, 0.61, 0.36, 1);
        }
        @keyframes favoriteFillPulse {
            0% { transform: scale(0.9); opacity: 0.65; filter: drop-shadow(0 0 0 rgba(230,31,0,0)); }
            45% { transform: scale(1.18); opacity: 1; filter: drop-shadow(0 0 8px rgba(230,31,0,0.36)); }
            100% { transform: scale(1); opacity: 1; filter: drop-shadow(0 0 0 rgba(230,31,0,0)); }
        }
        @keyframes favoriteFillInk {
            0% { fill: rgba(230,31,0,0); opacity: 0.55; }
            40% { fill: #ff6a55; opacity: 1; }
            100% { fill: currentColor; opacity: 1; }
        }
        @keyframes cartFillPulse {
            0% { transform: scale(0.9); opacity: 0.7; }
            45% { transform: scale(1.14); opacity: 1; }
            100% { transform: scale(1); opacity: 1; }
        }
        @keyframes cartFillGlow {
            0% { filter: drop-shadow(0 0 0 rgba(0,0,0,0)); }
            45% { filter: drop-shadow(0 0 8px rgba(0,0,0,0.35)); }
            100% { filter: drop-shadow(0 0 0 rgba(0,0,0,0)); }
        }

        /* --- PAGE ROUTING SYSTEM --- */
        .page { display: none; animation: fadeInPage 0.4s ease forwards; padding-top: var(--header-h); }
        .page.active { display: block; }
        #page-men,
        #page-women {
            padding-top: 0;
        }
        @keyframes fadeInPage { from { opacity: 0; } to { opacity: 1; } }
        /* Anasayfa açılış: #page-home fade’i alttaki body beyazını gösteriyordu; yalnızca nav yazıları animasyonlu */
        #page-home.page.active {
            animation: none;
            opacity: 1;
            padding-top: 0;
        }

        @keyframes navChromeZoomOut {
            from {
                opacity: 0;
                /* Yakınlık yarıya: 1 + (3.6 − 1) / 2 */
                transform: scale(2.3);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes homeHeroZoomOut {
            from { transform: scale(1.26); }
            to { transform: scale(1); }
        }

        /* Anasayfa: üst kahraman sabit (tam ekran); içerik üzerinden kayar — navbar daha üst katmanda */
        #page-home.active > .home-image-hero {
            margin-top: 0;
            position: fixed;
            left: 0;
            right: 0;
            top: 0;
            width: 100%;
            z-index: 12;
        }
        .home-image-hero-spacer {
            pointer-events: none;
            width: 100%;
            flex-shrink: 0;
            height: 100vh;
            min-height: 100vh;
        }
        @supports (height: 100dvh) {
            .home-image-hero-spacer {
                height: 100dvh;
                min-height: 100dvh;
            }
        }
        #page-home.active > .home-over-fixed-hero {
            position: relative;
            z-index: 13;
        }

        /* site-main dışındaki alt bloklar; sabit hero yoksa gereksiz, varsa kahramanın altında kalmasını önler */
        body.site-body-layout:has(#page-home.page.active) .site-trust-band,
        body.site-body-layout:has(#page-home.page.active) .site-footer,
        body.site-body-layout:has(#page-home.page.active) .site-strap {
            position: relative;
            z-index: 13;
        }

        /* --- HERO SECTIONS --- */
        .home-image-hero {
            height: 100vh;
            min-height: 100vh;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: flex-start;
            /* Sol = alt; değer ≈ (viewport kısa kenarı) / φ / 9 — altın orana dayalı, öncekinden daha geniş */
            --home-hero-cta-inset: clamp(28px, calc(100vmin / var(--phi) / 9), 76px);
            padding: 0 0 var(--home-hero-cta-inset) var(--home-hero-cta-inset);
            color: white;
            background: none;
        }
        @supports (height: 100dvh) {
            .home-image-hero { height: 100dvh; min-height: 100dvh; }
        }
        .home-image-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 0;
            background: linear-gradient(to right, rgba(0,0,0,0.4), rgba(0,0,0,0.1)), url('newhf_20260428_162514_3ed04ac9-ae9a-4522-9c52-b010f48820fe.png?v=1') center/cover no-repeat;
            transform-origin: center center;
            animation: homeHeroZoomOut 2s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
        }
        .home-image-hero > * {
            position: relative;
            z-index: 1;
        }
        .home-scroll-cue {
            position: absolute;
            left: 50%;
            bottom: max(16px, calc(env(safe-area-inset-bottom) + 12px));
            transform: translateX(-50%);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 12px;
            border: none;
            border-radius: 0;
            background: transparent;
            color: rgba(255,255,255,0.92);
            cursor: pointer;
            opacity: 1;
            transition: opacity 0.42s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
            animation: homeScrollCueFloat 1.55s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
        }
        .home-scroll-cue svg { width: 56px; height: 56px; display: block; }
        .home-scroll-cue:hover { opacity: 1; color: rgba(255,255,255,0.98); }
        .home-scroll-cue:focus-visible { outline: 2px solid rgba(255,255,255,0.9); outline-offset: 5px; }
        .home-scroll-cue.is-hidden {
            opacity: 0;
            transform: translateX(-50%) translateY(10px) scale(0.98);
            pointer-events: none;
            animation: none;
        }
        @keyframes homeScrollCueFloat {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(7px); }
        }
        @media (prefers-reduced-motion: reduce) {
            .home-image-hero::before {
                animation: none;
                transform: none;
            }
            .home-scroll-cue { animation: none; transition: none; }
            .home-gender-split-grid .home-gender-split-tile--banner-fill::before {
                transition: none;
            }
        }
        .btn-white {
            font-family: var(--font-lux);
            background: #fff;
            color: #000;
            padding: 13px 28px;
            font-size: 11px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            font-weight: 600;
            width: fit-content;
            border: none;
            border-radius: 3px;
            transition: box-shadow 0.25s ease, transform 0.25s ease;
        }
        .btn-white:hover { box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22); transform: translateY(-2px); }

        /* --- HOME: MEN / WOMEN (ürün gridi ile aynı çizgi / gap) --- */
        .home-gender-split {
            width: 100%;
            border-bottom: 1px solid var(--border-color);
            background: var(--bg-white);
        }
        .home-gender-split-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            /* Erkek / Kadın arasında grid boşluğunda görünen çok ince ayırıcı (1px) */
            gap: 1px;
            border: 1px solid var(--product-grid-line);
            background: rgba(255, 255, 255, 0.22);
            min-height: clamp(240px, 22vw, 360px);
        }
        .home-gender-split-tile {
            margin: 0;
            padding: 24px 20px;
            border: none;
            cursor: pointer;
            background: var(--product-tile-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: clamp(240px, 22vw, 360px);
            font-family: var(--font-lux);
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.02em;
            text-transform: uppercase;
            color: #111;
            transition: background-color 0.2s ease, color 0.2s ease;
        }
        .home-gender-split-tile--logo-copy {
            font-family: var(--font-lux);
            font-weight: 400;
            letter-spacing: 0.58em;
            text-transform: none;
            font-size: clamp(20px, 2.1vw, 34px);
        }
        .home-gender-split-tile:hover { background: #f5f2ec; color: #000; }
        .home-gender-split-tile:focus-visible {
            outline: 2px solid #111;
            outline-offset: -4px;
            position: relative;
            z-index: 1;
        }
        .home-best-sellers-wrap {
            width: 100%;
            border-bottom: none;
            background: var(--bg-white);
        }
        .home-best-sellers-grid {
            display: grid;
            grid-template-columns: 1fr;
            /* Üstte product-grid’in alt border’ı var; burada border-top yok — çift çizgi kalınlığını önler */
            border: 1px solid var(--product-grid-line);
            border-top: none;
            background: var(--product-grid-line);
        }
        /* Çok satanlar + anasayfa Erkek/Kadın: aynı tam dolu foto banner (tek buton, arka plan cover) */
        .home-best-sellers-wrap .home-gender-split-tile,
        .home-gender-split-grid .home-gender-split-tile--banner-fill {
            width: 100%;
            color: #fff;
            text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
        }
        .home-best-sellers-wrap .home-gender-split-tile {
            height: 55vh;
            min-height: 400px;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.42)), url('home-best-sellers-banner.png?v=2') center center / cover no-repeat;
        }
        /* Erkek/Kadın foto kutuları: görsel ::before’da; hover’da zoom-in + mevcut gradient (~%10 daha yüksek) */
        .home-gender-split-grid .home-gender-split-tile--banner-fill {
            position: relative;
            isolation: isolate;
            overflow: hidden;
            background: none;
            height: calc(100vh - var(--header-h));
            min-height: calc(100vh - var(--header-h));
            max-height: none;
        }
        @supports (height: 100dvh) {
            .home-gender-split-grid .home-gender-split-tile--banner-fill {
                height: calc(100dvh - var(--header-h));
                min-height: calc(100dvh - var(--header-h));
            }
        }
        .home-gender-split-grid .home-gender-split-tile--banner-fill::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: -1;
            transform: scale(1);
            transform-origin: center center;
            transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
        }
        .home-gender-split-grid .home-gender-split-tile--banner-fill.home-gender-split-tile--men::before {
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.42)), url('men-home-gender-hero.png?v=2') center center / cover no-repeat;
        }
        .home-gender-split-grid .home-gender-split-tile--banner-fill.home-gender-split-tile--women::before {
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.42)), url('women-home-gender-hero.png?v=1') center center / cover no-repeat;
        }
        .home-gender-split-grid .home-gender-split-tile--banner-fill:hover {
            color: #fff;
        }
        .home-gender-split-grid .home-gender-split-tile--banner-fill.home-gender-split-tile--men:hover::before {
            background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.38)), url('men-home-gender-hero.png?v=2');
            background-position: center center, center center;
            background-size: cover, cover;
            background-repeat: no-repeat, no-repeat;
            transform: scale(1.08);
        }
        .home-gender-split-grid .home-gender-split-tile--banner-fill.home-gender-split-tile--women:hover::before {
            background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.38)), url('women-home-gender-hero.png?v=1');
            background-position: center center, center center;
            background-size: cover, cover;
            background-repeat: no-repeat, no-repeat;
            transform: scale(1.08);
        }
        .home-best-sellers-wrap .home-gender-split-tile:hover {
            background-color: transparent;
            background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.38)), url('home-best-sellers-banner.png?v=2');
            background-position: center center;
            background-size: cover;
            color: #fff;
        }
        #home-women-grid,
        #home-men-grid { scroll-margin-top: calc(var(--header-h) + 12px); }

        /* Anasayfa kadın şeridi: sonsuz yatay marquee (hover’da durur, sürükle + atalet) */
        .home-women-marquee-root {
            width: 100%;
            box-sizing: border-box;
            border: 1px solid var(--product-grid-line);
            background: var(--product-grid-line);
            /* Genişlik: aynı satırda #home-men-grid .product-grid ile hizalı (4×1fr + 1px gap) */
            container-type: inline-size;
            container-name: home-women-marquee;
            --home-marquee-cols: 4;
            --home-marquee-gap-total: 3px;
        }
        .home-women-marquee-viewport {
            overflow: hidden;
            position: relative;
            cursor: grab;
            /* Sadece pan-y: iOS WebKit yatay jesti vermez; pan-x+pan-y: yatay JS, dikey çoğu durumda sayfada */
            touch-action: pan-x pan-y;
            -webkit-user-select: none;
            user-select: none;
        }
        .home-women-marquee-viewport.is-dragging {
            cursor: grabbing;
        }
        .home-women-marquee-viewport.is-dragging .product-img,
        .home-women-marquee-viewport.is-dragging .product-img-wrapper {
            pointer-events: none;
        }
        .home-women-marquee-root img {
            -webkit-user-drag: none;
            user-select: none;
            -webkit-user-select: none;
        }
        .home-women-marquee-track {
            display: flex;
            flex-direction: row;
            width: max-content;
            gap: 1px;
            will-change: transform;
        }
        .home-women-marquee-segment {
            display: flex;
            flex-direction: row;
            gap: 1px;
            flex: 0 0 auto;
        }
        .home-women-marquee-segment .product-card {
            flex: 0 0 calc((100cqw - var(--home-marquee-gap-total)) / var(--home-marquee-cols));
            width: calc((100cqw - var(--home-marquee-gap-total)) / var(--home-marquee-cols));
            min-width: 0;
            box-sizing: border-box;
            /* Ana katalog 4 sütun kartı ile aynı yükseklik (cqw = kart genişliğine göre) */
            height: clamp(340px, min(80vh, calc(44cqw + 48px)), 800px);
            container-type: size;
        }
        .home-women-marquee-segment .product-img-wrapper.catalog-full-bleed .product-img,
        .home-women-marquee-segment .product-img-wrapper.catalog-full-bleed .product-img-stack .product-img {
            max-width: 100% !important;
            max-height: 100% !important;
        }

        .category-hero { height: 45vh; min-height: 400px; display: flex; border-bottom: 1px solid var(--border-color); }
        .hero-text-side { flex: 1; color: #fff; padding: 60px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
        .bg-black { background-color: #050505; }
        .bg-grey { background-color: #8a8883; } 
        .hero-text-side::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at top right, rgba(255,255,255,0.05) 0%, transparent 60%); pointer-events: none; }
        .category-title {
            font-family: var(--font-lux);
            font-size: clamp(34px, 4.2vw, 48px);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: var(--ls-tight);
            line-height: 1.05;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }
        .category-desc { font-size: 14px; color: rgba(255, 255, 255, 0.85); line-height: 1.8; max-width: 32em; position: relative; z-index: 2; letter-spacing: var(--ls-none); }
        .hero-image-side { flex: 1; background-position: center; background-size: cover; background-repeat: no-repeat; }
        /* Erkek / Kadın kategori hero: sağ görsel cover + merkezde */
        #page-men .category-hero .hero-image-side,
        #page-women .category-hero .hero-image-side {
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center center;
        }

        .particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
        .particle { position: absolute; width: 2px; height: 2px; background: rgba(255,255,255,0.2); border-radius: 50%; animation: floatUp var(--duration) linear infinite; }

        /* --- PRODUCT GRID & CARDS --- */
        .section-heading {
            padding: 24px 40px 22px;
            font-family: var(--font-lux);
            font-size: clamp(15px, 1.7vw, 22px);
            font-weight: 600;
            text-transform: uppercase;
            /* Pair kerning kapalı: tüm aralık letter-spacing ile eşitlenir (ör. KA sık, DIN gevşek görünmez) */
            font-kerning: none;
            font-feature-settings: "kern" 0;
            letter-spacing: 0.1em;
            line-height: 1.1;
            color: #0a0a0a;
            text-align: center;
            border-bottom: 1px solid var(--border-color);
            background: var(--bg-white);
        }
        .section-heading.section-heading--border-top { border-top: 1px solid var(--border-color); }
        .filter-bar { display: flex; border-bottom: 1px solid var(--border-color); background: var(--bg-white); }
        /* Sadece Sort+Filter varken 2×%25 = yarım boş şerit kalıyordu — Women/Men aynı tam genişlik bölünmüş sütun */
        .filter-item {
            padding: 16px 40px;
            font-family: var(--font-lux);
            font-size: 11.5px;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            flex: 1 1 0;
            min-width: 0;
            border-right: 1px solid var(--border-color);
            transition: background 0.2s;
        }
        .filter-item:last-child { border-right: none; }
        .filter-item:hover { background: #f9f9f9; }
        .sort-control { position: relative; cursor: pointer; user-select: none; }
        .sort-control:hover { background: #f9f9f9; }
        .sort-label { color: #111; }
        .sort-plus,
        .filter-plus {
            flex-shrink: 0;
            font-size: 16px;
            line-height: 1;
            color: var(--text-muted);
            padding: 2px 4px;
            margin-left: 8px;
            pointer-events: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 1.35em;
            height: 1.35em;
            transition: transform 0.38s cubic-bezier(0.34, 1.2, 0.64, 1), color 0.25s ease;
            transform: rotate(0deg);
        }
        .filter-item:hover .sort-plus,
        .filter-item:hover .filter-plus,
        .sort-control.is-open .sort-plus,
        .filter-control.is-open .filter-plus {
            color: #111;
        }
        .sort-control.is-open .sort-plus,
        .filter-control.is-open .filter-plus {
            transform: rotate(45deg);
        }
        .sort-dropdown {
            position: absolute;
            top: calc(100% - 1px);
            left: 0;
            width: 100%;
            z-index: 15;
            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows 0.45s cubic-bezier(0.33, 1, 0.65, 1);
            pointer-events: none;
        }
        .sort-dropdown.open {
            grid-template-rows: 1fr;
            pointer-events: auto;
        }
        .sort-dropdown-inner {
            overflow: hidden;
            min-height: 0;
            opacity: 0;
            transform: translateY(-12px);
            transition:
                opacity 0.38s ease,
                transform 0.45s cubic-bezier(0.33, 1, 0.65, 1);
            display: flex;
            flex-direction: column;
            background: #fff;
            border: 1px solid var(--border-color);
        }
        .sort-dropdown.open .sort-dropdown-inner {
            opacity: 1;
            transform: translateY(0);
        }
        .sort-option {
            width: 100%;
            text-align: left;
            font-size: 11px;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 10px 12px;
            border-bottom: 1px solid var(--border-color);
            color: #111;
        }
        .sort-option:last-child { border-bottom: none; }
        .sort-option:hover { background: #f9f9f9; }
        .sort-option.active { background: #f2f2f2; }
        .filter-control { position: relative; cursor: pointer; user-select: none; }
        .filter-control:hover { background: #f9f9f9; }
        .filter-dropdown {
            position: absolute;
            top: calc(100% - 1px);
            left: 0;
            width: 100%;
            z-index: 15;
            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows 0.45s cubic-bezier(0.33, 1, 0.65, 1);
            pointer-events: none;
        }
        .filter-dropdown.open {
            grid-template-rows: 1fr;
            pointer-events: auto;
        }
        .filter-dropdown-inner {
            overflow: hidden;
            min-height: 0;
            opacity: 0;
            transform: translateY(-12px);
            transition:
                opacity 0.38s ease,
                transform 0.45s cubic-bezier(0.33, 1, 0.65, 1);
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding: 12px;
            background: #fff;
            border: 1px solid var(--border-color);
        }
        .filter-dropdown.open .filter-dropdown-inner {
            opacity: 1;
            transform: translateY(0);
        }
        .filter-group { display: flex; flex-direction: column; gap: 6px; }
        .filter-group label { font-size: 10px; letter-spacing: 1px; color: #666; text-transform: uppercase; }
        .filter-select {
            border: 1px solid var(--border-color);
            background: #fff;
            color: #111;
            font-size: 11px;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            padding: 8px 10px;
            outline: none;
            width: 100%;
        }
        .filter-select:focus { border-color: #111; }
        .filter-actions { display: flex; justify-content: flex-end; }
        .filter-clear-btn { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; text-decoration: underline; color: #111; }

        .page-inner {
            width: 100%;
        }
        .product-grid {
            container-type: inline-size;
            container-name: catalog;
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            width: 100%;
            box-sizing: border-box;
            background: var(--product-grid-line);
            gap: 1px;
            border: 1px solid var(--product-grid-line);
        }
        .product-card {
            background: var(--product-tile-bg);
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
            min-height: 0;
            height: var(--product-card-height);
        }
        /* Katalog: sütun genişliğine göre yükseklik — resize’da sabit; aspect-ratio kaldırıldı (best sellers üstüne taşma/ızgara kaybı) */
        .product-grid > .product-card {
            min-width: 0;
            width: 100%;
            box-sizing: border-box;
            /* Geniş ekranda 660 tavan yalnızca sütun genişler, yükseklik sabit kalırdı — görüntü büyüyemiyordu */
            height: clamp(340px, min(80vh, calc(44cqw + 48px)), 800px);
            /* Görsellerde cqi/cqh: padding’li (non-bleed) tavanlar */
            container-type: size;
        }
        .product-img-wrapper {
            flex: 1;
            width: 100%;
            min-height: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px 17% 100px;
            cursor: pointer;
            background: var(--product-tile-bg);
            isolation: isolate;
        }
        .product-img {
            width: auto;
            height: auto;
            max-width: 68%;
            max-height: min(38vw, 200px, 34vh);
            object-fit: contain;
            object-position: center;
            filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.09));
            mix-blend-mode: multiply;
        }
        .product-grid > .product-card .product-img-wrapper:not(.catalog-full-bleed) .product-img {
            max-width: min(72%, 82cqi);
            max-height: min(52cqh, 90cqi);
        }
        .product-img-wrapper.fill-card-image { padding: 18px 14% 100px; }
        .product-img.fill-card-image { max-width: 72%; max-height: min(44vw, 240px, 38vh); }
        .product-grid > .product-card .product-img-wrapper:not(.catalog-full-bleed) .product-img.fill-card-image {
            max-width: min(78%, 90cqi);
            max-height: min(58cqh, 98cqi);
        }
        /* Canvas vitrin: görüntü kutuyu 100%×100% doldurur, object-fit: contain ile sınıra kadar büyür */
        .product-img-wrapper.catalog-full-bleed {
            position: relative;
            padding: 0;
            align-items: stretch;
            justify-content: stretch;
        }
        .product-img-wrapper.catalog-full-bleed > .product-img {
            display: block;
            width: 100%;
            height: 100%;
            max-width: 100%;
            max-height: 100%;
            min-width: 0;
            min-height: 0;
            object-fit: contain;
            object-position: center center;
            filter: none;
            mix-blend-mode: normal;
            flex: 1 1 auto;
        }
        .product-img-wrapper.catalog-full-bleed .product-img-stack {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            display: block;
        }
        .product-img-stack {
            flex: 1;
            width: 100%;
            min-height: 0;
            display: grid;
            grid-template: 1fr / 1fr;
            place-items: center;
        }
        .product-img-stack > .product-img {
            grid-area: 1 / 1;
        }
        .product-img-wrapper.catalog-full-bleed .product-img-stack > .product-img {
            position: absolute;
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            max-width: 100%;
            max-height: 100%;
            box-sizing: border-box;
            object-fit: contain;
            object-position: center center;
            grid-area: auto;
            filter: none;
            mix-blend-mode: normal;
        }
        .product-img-stack .product-img-primary {
            z-index: 2;
            opacity: 1;
            transition: opacity 0.2s ease;
        }
        .product-img-stack .product-img-hover {
            z-index: 1;
            opacity: 0;
            transition: opacity 0.2s ease;
        }
        .product-card:hover .product-img-stack .product-img-primary {
            opacity: 0;
            pointer-events: none;
        }
        .product-card:hover .product-img-stack .product-img-hover {
            opacity: 1;
        }

        @media (min-width: 1400px) {
            .product-grid > .product-card .product-img-wrapper.catalog-full-bleed .product-img-stack {
                max-width: 100%;
            }
        }

        .product-info-default { padding: 14px 16px; text-align: center; transition: opacity 0.3s; width: 100%; box-sizing: border-box; }
        @media (min-width: 1025px) {
            .product-info-default { position: absolute; bottom: 14px; left: 0; pointer-events: none; }
        }
        .product-title { font-family: var(--font-lux); font-size: 14px; font-weight: 500; margin-bottom: 4px; color: #111; letter-spacing: var(--ls-none); }
        .product-price { font-size: 12px; color: var(--text-main); font-weight: 400; }

        /* --- HOVER PANEL (görsel alanı sabit; alttan kayan overlay) --- */
        .product-hover-panel { position: absolute; bottom: 0; left: 0; width: 100%; background: #fff; padding: 13px 14px 14px; transform: translateY(101%); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); text-align: center; border-top: 1px solid var(--border-color); box-shadow: 0 -6px 18px rgba(0,0,0,0.04); }
        .product-card:hover .product-info-default { opacity: 0; }
        .product-card:hover .product-hover-panel { transform: translateY(0); }
        .hover-panel-title { font-family: var(--font-lux); font-size: 13px; font-weight: 500; margin-bottom: 2px; color: #111; line-height: 1.3; letter-spacing: var(--ls-none); }
        .hover-panel-price { font-size: 13px; margin-bottom: 8px; }
        .size-block { margin-bottom: 11px; }
        .size-block .size-grid { margin-bottom: 0; }
        .card-size-top-row {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            column-gap: 5px;
            align-items: baseline;
            margin-bottom: 10px;
            font-size: 11px;
            line-height: 1.25;
        }
        .size-block-prompt {
            margin: 0;
            font-size: 11px;
            line-height: 1.25;
        }
        .size-block-prompt strong {
            color: #111;
            font-weight: 600;
            font-size: 11px;
        }
        .size-block-prompt-sub {
            color: var(--text-muted);
            font-weight: 400;
            font-size: 11px;
        }
        .card-size-top-row .card-eu-label {
            font-size: 11px;
            line-height: 1.25;
        }
        .card-size-top-row--women .size-block-prompt,
        .card-size-top-row--men .size-block-prompt { grid-column: 1 / 5; text-align: left; min-width: 0; }
        .card-size-top-row--women .card-eu-label,
        .card-size-top-row--men .card-eu-label {
            grid-column: 5;
            justify-self: end;
            position: relative;
            right: -2px;
            left: auto;
        }
        .size-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 5px; margin-bottom: 11px; }
        .size-btn {
            border: 1px solid var(--border-color);
            background: #fff;
            padding: 8px 0 7px;
            min-height: 36px;
            font-size: 13px;
            line-height: 1.15;
            color: var(--text-muted);
            transition: all 0.2s;
            box-sizing: border-box;
        }
        .size-btn:hover { border-color: #111; color: #111; }
        .size-btn.selected { background: #111; color: #fff; border-color: #111; font-weight: 600; }
        .add-to-cart-btn { width: 100%; background: #222; color: #fff; padding: 11px 8px; font-size: 11px; font-family: var(--font-lux); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; transition: all 0.3s; position: relative; overflow: hidden; }
        .add-to-cart-btn:hover { background: #000; }

        /* + quick add: sadece dar katalog (≤1024) — büyük ekranda yok */
        .product-quick-add-btn {
            display: none;
            margin-top: 4px;
            width: 29px;
            height: 29px;
            border-radius: 8px;
            border: none;
            background: #111;
            color: #fff;
            cursor: pointer;
            padding: 0;
            box-shadow: 0 1px 5px rgba(0, 0, 0, 0.085);
            pointer-events: auto;
            -webkit-tap-highlight-color: transparent;
            flex-shrink: 0;
            align-items: center;
            justify-content: center;
        }
        .product-quick-add-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            line-height: 1;
            font-size: 16px;
            font-weight: 500;
            font-family: var(--font-lux);
            margin: 0;
            padding: 0;
            transform: rotate(0deg) scale(1);
            transform-origin: center center;
            transition: transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
        }
        .product-quick-add-btn.is-open .product-quick-add-icon {
            transform: rotate(45deg) scale(1);
        }
        @media (prefers-reduced-motion: reduce) {
            .product-quick-add-icon { transition: none; }
        }
        .product-quick-add-btn:hover { background: #000; color: #fff; }
        .product-quick-add-btn:active { opacity: 0.9; }
        @media (max-width: 768px) {
            .product-quick-add-btn {
                margin-top: 5px;
                width: 32px;
                height: 32px;
                border-radius: 8px;
                box-shadow: 0 2px 6px rgba(0, 0, 0, 0.09);
            }
            .product-quick-add-icon {
                font-size: 19px;
                font-weight: 600;
            }
        }
        @media (max-width: 1024px) {
            .product-hover-panel { display: none !important; }
            .product-card:hover .product-info-default { opacity: 1 !important; }
            /* Fiyat/ünlem görselin ALTINDA; görselin üstüne binmez */
            .product-info-default {
                position: relative;
                left: auto;
                bottom: auto;
                margin-top: 0;
                flex: 0 0 auto;
                padding: 6px 10px 10px;
                display: flex;
                flex-direction: column;
                align-items: center;
                pointer-events: none;
            }
            .product-title { margin-bottom: 2px; line-height: 1.25; }
            .product-quick-add-btn { display: flex; }
        }
        @media (max-width: 1024px) and (hover: none) {
            .product-card:hover .product-img-stack .product-img-primary { opacity: 1 !important; }
            .product-card:hover .product-img-stack .product-img-hover { opacity: 0 !important; }
        }
        .quick-add-root {
            position: fixed;
            inset: 0;
            z-index: 300;
            pointer-events: none;
            visibility: hidden;
            transition: visibility 0s 0.55s;
        }
        .quick-add-root.is-open { pointer-events: auto; visibility: visible; transition-delay: 0s; }
        .quick-add-backdrop {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            top: var(--header-h);
            background: rgba(0,0,0,0.4);
            opacity: 0;
            backdrop-filter: blur(0px);
            -webkit-backdrop-filter: blur(0px);
            transition:
                opacity 0.5s cubic-bezier(0.22, 0.61, 0.36, 1),
                backdrop-filter 0.5s ease,
                -webkit-backdrop-filter 0.5s ease;
        }
        .quick-add-root.is-open .quick-add-backdrop {
            opacity: 1;
            backdrop-filter: blur(3px);
            -webkit-backdrop-filter: blur(3px);
        }
        @media (prefers-reduced-motion: reduce) {
            .quick-add-backdrop { backdrop-filter: none; -webkit-backdrop-filter: none; transition: opacity 0.2s ease; }
        }
        .quick-add-sheet {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            max-height: 90vh;
            background: #fff;
            border-radius: 20px 20px 0 0;
            box-shadow: 0 -12px 50px rgba(0,0,0,0.16);
            padding: 20px 18px calc(20px + env(safe-area-inset-bottom, 0));
            box-sizing: border-box;
            transform: translate3d(0, 100%, 0) scale(0.97);
            opacity: 0.92;
            will-change: transform, opacity;
            transition:
                transform 0.52s cubic-bezier(0.2, 0.85, 0.3, 1),
                opacity 0.4s ease;
            overflow: auto;
            -webkit-overflow-scrolling: touch;
        }
        .quick-add-root.is-open .quick-add-sheet {
            transform: translate3d(0, 0, 0) scale(1);
            opacity: 1;
        }
        @media (prefers-reduced-motion: reduce) {
            .quick-add-sheet { transition: opacity 0.2s ease, transform 0.25s ease; transform: translate3d(0, 100%, 0); will-change: auto; }
            .quick-add-root.is-open .quick-add-sheet { transform: translate3d(0,0,0); }
        }
        @keyframes quickadd-block-in {
            from { opacity: 0; transform: translate3d(0, 10px, 0); }
            to { opacity: 1; transform: translate3d(0, 0, 0); }
        }
        .quick-add-root.is-open .quick-add-header,
        .quick-add-root.is-open .quick-add-size-top,
        .quick-add-root.is-open #qa-size-grid,
        .quick-add-root.is-open .quick-add-cta {
            animation: quickadd-block-in 0.5s cubic-bezier(0.22, 0.9, 0.35, 1) both;
        }
        .quick-add-root.is-open .quick-add-size-top { animation-delay: 0.04s; }
        .quick-add-root.is-open #qa-size-grid { animation-delay: 0.1s; }
        .quick-add-root.is-open .quick-add-cta { animation-delay: 0.16s; }
        @media (prefers-reduced-motion: reduce) {
            .quick-add-root.is-open .quick-add-header,
            .quick-add-root.is-open .quick-add-size-top,
            .quick-add-root.is-open #qa-size-grid,
            .quick-add-root.is-open .quick-add-cta { animation: none; }
        }
        .qa-size-label,
        .card-eu-label {
            font-size: 11px;
            color: #111;
            font-weight: 600;
            font-family: var(--font-lux);
            letter-spacing: 0.05em;
            text-transform: uppercase;
            text-decoration: underline;
            text-decoration-thickness: 1px;
            text-underline-offset: 2px;
        }
        /* EU, alttaki 5’li beden ızgarasındaki 40 sütunuyla aynı hizaya (görselde sağ) */
        .quick-add-size-top {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            column-gap: 5px;
            align-items: baseline;
            margin-bottom: 12px;
        }
        .quick-add-size-top .quick-add-prompt {
            grid-column: 1 / 5;
            margin: 0;
            min-width: 0;
        }
        .quick-add-size-top .qa-size-label {
            grid-column: 5;
            grid-row: 1;
            justify-self: end;
            margin: 0;
            position: relative;
            right: -2px;
            left: auto;
        }
        .quick-add-close {
            position: absolute;
            top: 12px;
            right: 14px;
            width: 40px;
            height: 40px;
            border: none;
            background: none;
            font-size: 22px;
            line-height: 1;
            color: #111;
            cursor: pointer;
            z-index: 1;
        }
        .quick-add-header { display: flex; gap: 12px; align-items: center; text-align: left; margin-bottom: 20px; padding-right: 36px; }
        .quick-add-thumb { width: 64px; height: 64px; flex-shrink: 0; background: var(--product-tile-bg); display: flex; align-items: center; justify-content: center; }
        .quick-add-thumb img { max-width: 90%; max-height: 90%; object-fit: contain; }
        .quick-add-title { font-family: var(--font-lux); font-size: 16px; font-weight: 500; margin: 0 0 4px; color: #111; line-height: 1.2; letter-spacing: var(--ls-none); }
        .quick-add-price { font-size: 14px; margin: 0; color: #111; font-weight: 500; }
        .quick-add-prompt { font-size: 12px; color: var(--text-muted); margin: 0; }
        .quick-add-prompt em { color: #111; font-style: normal; }
        .quick-add-size-grid { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 18px; }
        .quick-add-size-grid .size-btn {
            flex: 1 1 calc(20% - 4px);
            min-width: 44px;
            min-height: 36px;
            padding: 8px 0 7px;
            font-size: 13px;
            line-height: 1.15;
            box-sizing: border-box;
        }
        .quick-add-cta {
            width: 100%;
            border: none;
            background: #1a1a1a;
            color: #fff;
            font-family: var(--font-lux);
            font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
            padding: 16px 12px; border-radius: 4px; cursor: pointer;
        }
        .quick-add-cta.shake { text-transform: none; }
        .quick-add-cta:hover { background: #000; }

        .shake { animation: shake 0.4s cubic-bezier(.36,.07,.19,.97) both; background-color: #d93025 !important; color: white !important; }
        @keyframes shake { 10%, 90% { transform: translate3d(-1px, 0, 0); } 20%, 80% { transform: translate3d(2px, 0, 0); } 30%, 50%, 70% { transform: translate3d(-4px, 0, 0); } 40%, 60% { transform: translate3d(4px, 0, 0); } }

        /* --- CART DRAWER --- */
        .cart-overlay { position: fixed; left: 0; right: 0; bottom: 0; top: var(--header-h); background: rgba(0,0,0,0.3); backdrop-filter: blur(4px); z-index: 199; opacity: 0; pointer-events: none; transition: opacity var(--ph-pane-overlay-duration) var(--ph-pane-overlay-ease); }
        .cart-overlay.active { opacity: 1; pointer-events: auto; }
        .cart-drawer { position: fixed; top: var(--header-h); right: 0; left: auto; width: 420px; max-width: 100vw; height: calc(100vh - var(--header-h)); max-height: calc(100dvh - var(--header-h)); background: #fff; z-index: 200; transform: translate3d(100%, 0, 0); transition: transform var(--ph-pane-duration) var(--ph-pane-ease); display: flex; flex-direction: column; box-shadow: -10px 0 30px rgba(0,0,0,0.1); }
        .cart-drawer.active { transform: translateX(0); }
        @media (max-width: 1024px) {
            .cart-drawer {
                top: var(--header-h);
                left: auto;
                right: 0;
                width: 100%;
                max-width: 100%;
                height: calc(100vh - var(--header-h));
                max-height: calc(100dvh - var(--header-h));
                transform: translate3d(100%, 0, 0);
                transition: transform var(--ph-pane-duration) var(--ph-pane-ease);
                box-shadow: -10px 0 30px rgba(0,0,0,0.1);
            }
            .cart-drawer.active { transform: translate3d(0, 0, 0); }
        }
        .cart-header { padding: 30px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
        .cart-title { font-family: var(--font-lux); font-size: 24px; font-weight: 600; letter-spacing: var(--ls-tight); }
        .close-cart { font-size: 20px; color: var(--text-muted); transition: color 0.2s; }
        .close-cart:hover { color: #000; }
        .cart-items-container { flex: 1; padding: 30px; overflow-y: auto; display: flex; flex-direction: column; gap: 20px; }
        
        /* Sepetteki Ürün Görünümü */
        .cart-item { display: flex; gap: 15px; border-bottom: 1px solid var(--border-color); padding-bottom: 15px; }
        .cart-item--clickable { cursor: pointer; transition: opacity 0.18s ease; }
        .cart-item--clickable:hover { opacity: 0.9; }
        .cart-item-remove { cursor: pointer; }
        .cart-item-img { width: 80px; height: 80px; background: var(--bg-white); display: flex; align-items: center; justify-content: center; border-radius: 4px;}
        .cart-item-img img { max-width: 90%; max-height: 90%; mix-blend-mode: multiply; }
        .cart-item-details { flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
        .cart-item-title { font-family: var(--font-lux); font-size: 14px; font-weight: 500; color: #111; letter-spacing: var(--ls-none); }
        .cart-item-meta { font-size: 12px; color: var(--text-muted); }
        .cart-item-price { font-weight: 600; font-size: 14px; color: #111;}

        .cart-footer { padding: 30px; border-top: 1px solid var(--border-color); background: #fafafa; }
        .cart-subtotal { display: flex; justify-content: space-between; font-weight: 600; font-size: 16px; margin-bottom: 20px; }
        .btn-checkout { width: 100%; background: #111; color: #fff; padding: 18px; font-size: 12px; font-family: var(--font-lux); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; transition: all 0.3s; }
        .btn-checkout:hover { background: #000; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,0,0,0.2); }

        /* --- CHECKOUT PAGE (Shopify Style) --- */
        .checkout-layout { display: flex; min-height: calc(100vh - var(--header-h)); background: #fff; }
        .checkout-left { flex: 6; padding: 50px 8%; border-right: 1px solid var(--border-color); }
        .checkout-right { flex: 4; background: #fafafa; padding: 50px 5%; border-left: 1px solid var(--border-color); }
        
        .checkout-section-title { font-size: 18px; font-family: var(--font-lux); font-weight: 600; letter-spacing: 0.02em; margin-bottom: 20px; margin-top: 30px; display: flex; justify-content: space-between; align-items: center; }
        .checkout-saved-addresses-wrap { margin-bottom: 8px; }
        .checkout-saved-addresses-wrap[hidden] { display: none !important; }
        .checkout-saved-addresses-label { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: #111; margin: 0 0 12px; }
        .checkout-saved-address-hint { font-size: 11px; color: var(--text-muted); margin: 0 0 12px; line-height: 1.45; }
        .checkout-address-cards-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 18px;
            align-items: stretch;
        }
        .checkout-address-card-ui {
            flex: 1 1 calc(50% - 8px);
            min-width: 220px;
            min-height: 132px;
            border: 1px solid var(--border-color);
            border-radius: 10px;
            padding: 16px 16px 14px;
            text-align: left;
            cursor: pointer;
            background: #fff;
            font-family: inherit;
            color: #111;
            transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            gap: 6px;
            box-sizing: border-box;
        }
        .checkout-address-card-ui:hover {
            border-color: #bbb;
            background: #fafafa;
        }
        .checkout-address-card-ui.is-selected {
            border-color: #111;
            box-shadow: 0 0 0 1px #111;
            background: #fff;
        }
        .checkout-address-card-ui--new {
            min-height: 132px;
            border-style: dashed;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 8px;
        }
        .checkout-address-card-ui--new .checkout-address-card-new-icon {
            font-size: 22px;
            font-weight: 300;
            line-height: 1;
            color: #111;
        }
        .checkout-address-card-ui--new .checkout-address-card-new-title {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }
        .checkout-address-card-ui--new .checkout-address-card-new-sub {
            font-size: 11px;
            color: var(--text-muted);
            line-height: 1.35;
            max-width: 200px;
        }
        .checkout-address-card-title {
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.02em;
            color: #111;
            line-height: 1.25;
        }
        .checkout-address-card-badge {
            display: inline-block;
            margin-left: 6px;
            font-size: 9px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #666;
            vertical-align: middle;
        }
        .checkout-address-card-lines {
            font-size: 12px;
            line-height: 1.45;
            color: #444;
            flex: 1;
        }
        .checkout-address-card-phone {
            font-size: 11px;
            color: #666;
            margin-top: auto;
            padding-top: 4px;
        }
        .express-checkout { display: flex; gap: 10px; margin-bottom: 30px; }
        .btn-express { flex: 1; padding: 12px; border-radius: 4px; font-weight: 600; display: flex; align-items: center; justify-content: center; font-size: 14px; }
        .btn-shop { background: #5a31f4; color: white; }
        .btn-paypal { background: #ffc439; color: #003087; }
        .btn-apple { background: #000; color: white; }
        .divider { text-align: center; font-size: 12px; color: var(--text-muted); margin: 20px 0; position: relative; }
        .divider::before, .divider::after { content: ''; position: absolute; top: 50%; width: 45%; height: 1px; background: var(--border-color); }
        .divider::before { left: 0; } .divider::after { right: 0; }
        
        .form-row { display: flex; gap: 10px; margin-bottom: 10px; }
        .form-input { width: 100%; padding: 14px; border: 1px solid var(--border-color); border-radius: 4px; font-size: 13px; outline: none; transition: border 0.3s; }
        .form-input:focus { border-color: #111; }
        
        .summary-item { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
        .summary-item--clickable { cursor: pointer; transition: opacity 0.18s ease; }
        .summary-item--clickable:hover { opacity: 0.9; }
        .summary-img { width: 64px; height: 64px; background: var(--bg-white); border: 1px solid var(--border-color); border-radius: 8px; display: flex; align-items: center; justify-content: center; position: relative; }
        .summary-img img { max-width: 80%; max-height: 80%; }
        .summary-badge { position: absolute; top: -8px; right: -8px; background: rgba(114,114,114,0.9); color: white; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; }
        .summary-info { flex: 1; font-size: 13px; }
        .summary-price { font-weight: 500; font-size: 13px;}
        .summary-totals { border-top: 1px solid var(--border-color); margin-top: 20px; padding-top: 20px; }
        .summary-line { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 13px; color: var(--text-muted); }
        .summary-total-line { display: flex; justify-content: space-between; margin-top: 15px; font-size: 20px; font-weight: 600; color: #111; align-items: center; }

        /* --- LOGIN (ACCOUNT) --- */
        .login-page {
            min-height: calc(100vh - var(--header-h));
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 48px 24px 64px;
            background: var(--bg-white);
        }
        /* [hidden] + .login-page(display:flex) bazı motorlarda çakışıyordu; giriş kabuğu tamamen kalksın */
        #account-auth-shell[hidden],
        #page-account.account-logged-in #account-auth-shell {
            display: none !important;
        }
        #account-dashboard[hidden] {
            display: none !important;
        }
        .login-card { width: 100%; max-width: 420px; text-align: center; }
        .login-title { font-family: var(--font-lux); font-size: 28px; font-weight: 600; letter-spacing: var(--ls-tight); margin-bottom: 12px; color: #111; }
        .login-lead { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.5; }
        .login-input-stack { border: 1px solid #111; text-align: left; margin-bottom: 0; }
        .login-input {
            width: 100%;
            padding: 14px 16px;
            border: none;
            font-size: 13px;
            outline: none;
            background: var(--bg-white);
            font-family: var(--font-main);
            color: #111;
        }
        .login-input::placeholder { color: #999; }
        /* Yalnızca stack’in doğrudan çocukları: şifre satırı içindeki input :last-child değil sayılıp çift alt çizgi oluşturmasın */
        .login-input-stack > .login-stack-cell:not(:last-child) { border-bottom: 1px solid #111; }
        .login-password-row { position: relative; }
        .login-input-password { padding-right: 46px; }
        .login-password-toggle {
            position: absolute;
            right: 4px;
            top: 50%;
            transform: translateY(-50%);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            padding: 0;
            border: none;
            background: transparent;
            color: #111;
            cursor: pointer;
            border-radius: 4px;
            z-index: 1;
        }
        .login-password-toggle:hover { opacity: 0.8; }
        .login-password-toggle:focus-visible { outline: 2px solid #111; outline-offset: 1px; }
        .login-password-toggle svg { width: 20px; height: 20px; flex-shrink: 0; display: block; }
        /* Çizgi: maskelenmiş şifre (göz üstü çizgi) iken görünür; metin açıkken kaybolur (tersine çevrilmiş) */
        .login-password-strike {
            opacity: 1;
            transform: none;
            transition: opacity 0.22s ease, transform 0.22s ease;
        }
        .login-password-toggle[aria-pressed="true"] .login-password-strike {
            opacity: 0;
            transform: scale(0.4) rotate(-6deg);
        }
        .login-forgot {
            font-size: 11px;
            letter-spacing: 0.3px;
            text-decoration: underline;
            color: #111;
            cursor: pointer;
            background: none;
            border: none;
            font-family: inherit;
            padding: 0;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .login-forgot:hover { opacity: 0.7; }
        .login-remember-row {
            margin-top: 12px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            width: 100%;
            text-align: left;
            font-size: 12px;
            color: #333;
        }
        .login-remember-row label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            user-select: none;
            min-width: 0;
        }
        .login-remember-row input[type="checkbox"] {
            width: 14px;
            height: 14px;
            accent-color: #111;
        }
        .login-submit {
            width: 100%;
            margin-top: 24px;
            padding: 16px 20px;
            background: #111;
            color: #fff;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            cursor: pointer;
            font-family: var(--font-lux);
            transition: background 0.2s;
        }
        .login-submit:hover { background: #333; }
        .login-register { margin-top: 28px; font-size: 13px; color: var(--text-muted); }
        .login-text-btn {
            background: none;
            border: none;
            font-family: inherit;
            font-size: inherit;
            color: #111;
            text-decoration: underline;
            cursor: pointer;
            padding: 0;
        }
        .login-text-btn:hover { opacity: 0.7; }
        .login-msg {
            font-size: 13px;
            margin: -8px 0 16px;
            text-align: left;
            line-height: 1.45;
        }
        .login-msg[hidden] { display: none !important; }
        .login-msg.error { color: #b00020; }
        .login-msg.success { color: #1a6b3c; }
        .register-msg { font-size: 13px; margin: -8px 0 16px; text-align: left; color: #b00020; line-height: 1.45; }
        .register-msg[hidden] { display: none !important; }
        .login-back-row { margin-top: 24px; font-size: 13px; color: var(--text-muted); }
        .forgot-success-text { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; text-align: left; }
        .forgot-success-text strong { color: #111; }

        /* --- ACCOUNT DASHBOARD (post-login) --- */
        #page-account { background: var(--bg-white); }
        .account-dashboard {
            padding-bottom: 48px;
        }
        .account-dash-hero {
            position: relative;
            isolation: isolate;
            min-height: clamp(160px, 22vw, 260px);
            background:
                radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0,0,0,0.04) 0%, transparent 55%),
                radial-gradient(circle at 15% 80%, rgba(0,0,0,0.03) 0%, transparent 40%),
                #ebe4d8;
            border-bottom: 1px solid var(--border-color);
            overflow: hidden;
        }
        .account-dash-doodle {
            position: absolute;
            pointer-events: none;
            opacity: 0.92;
        }
        .account-dash-doodle svg { display: block; }
        .account-dash-nav-wrap {
            background: var(--bg-white);
            border-bottom: 1px solid var(--border-color);
        }
        .account-dash-nav {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: stretch;
            gap: 0;
        }
        .account-dash-tab {
            flex: 0 1 auto;
            padding: 18px 16px 14px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            color: #111;
            background: none;
            border: none;
            cursor: pointer;
            font-family: var(--font-lux);
            border-bottom: 3px solid transparent;
            margin-bottom: -1px;
            transition: color 0.2s, border-color 0.2s;
        }
        .account-dash-tab:hover { color: #444; }
        .account-dash-tab.is-active {
            border-bottom-color: #111;
        }
        .account-dash-tab-logout { margin-left: auto; }
        .account-dash-main {
            max-width: 1100px;
            margin: 0 auto;
            padding: 40px 24px 0;
        }
        .account-dash-welcome {
            text-align: center;
            margin-bottom: 28px;
        }
        .account-dash-welcome h1 {
            font-family: var(--font-lux);
            font-size: clamp(26px, 4vw, 34px);
            font-weight: 600;
            letter-spacing: var(--ls-tight);
            color: #111;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .account-dash-rule {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            max-width: 520px;
            margin: 0 auto;
        }
        .account-dash-rule::before,
        .account-dash-rule::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #111;
            opacity: 0.35;
        }
        .account-dash-rule span {
            font-size: 14px;
            font-weight: 300;
            color: #111;
            opacity: 0.6;
        }
        .account-dash-panels { margin-top: 36px; }
        .account-dash-panel { display: none; }
        .account-dash-panel.is-visible { display: block; }
        .account-dash-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            align-items: stretch;
        }
        .account-dash-card {
            background: #fff;
            border: 1px solid var(--border-color);
            padding: 28px 24px 32px;
            text-align: left;
            min-height: 200px;
            display: flex;
            flex-direction: column;
        }
        .account-dash-card h2 {
            font-family: var(--font-lux);
            font-size: 20px;
            font-weight: 500;
            margin-bottom: 14px;
            color: #111;
        }
        .account-dash-card p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.55;
            flex: 1;
        }
        .account-dash-address-preview {
            margin: 0 0 12px;
            text-align: left;
        }
        .account-dash-address-preview-line {
            font-size: 13px;
            line-height: 1.45;
            color: #111;
            padding: 10px 0;
            border-top: 1px solid var(--border-color);
        }
        .account-dash-address-preview-line:first-child {
            border-top: none;
            padding-top: 0;
        }
        .account-dash-btn-dark {
            align-self: flex-start;
            margin-top: 20px;
            padding: 12px 22px;
            background: #222;
            color: #fff;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            font-family: var(--font-lux);
            transition: background 0.2s;
        }
        .account-dash-btn-dark:hover { background: #000; }
        .account-dash-shop-link {
            display: inline-block;
            margin-top: 32px;
            font-size: 12px;
            letter-spacing: 0.5px;
            color: var(--text-muted);
            text-decoration: underline;
            cursor: pointer;
            background: none;
            border: none;
            font-family: inherit;
            padding: 0;
        }
        .account-dash-shop-link:hover { color: #111; }
        .account-dash-empty-page {
            text-align: center;
            padding: 48px 20px 64px;
            max-width: 480px;
            margin: 0 auto;
        }
        .account-dash-empty-page h2 {
            font-family: var(--font-lux);
            font-size: 22px;
            margin-bottom: 12px;
        }
        .account-dash-empty-page p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

        /* --- ACCOUNT ORDERS --- */
        .account-orders-page {
            max-width: 640px;
            margin: 0 auto;
            padding: 8px 0 48px;
        }
        .account-orders-head {
            text-align: center;
            margin-bottom: 28px;
        }
        .account-orders-title {
            font-family: var(--font-lux);
            font-size: clamp(22px, 4vw, 28px);
            font-weight: 600;
            letter-spacing: var(--ls-none);
            color: #111;
            margin-bottom: 10px;
        }
        .account-orders-lead {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.55;
            letter-spacing: var(--ls-none);
            font-weight: 400;
        }
        .account-orders-empty {
            text-align: center;
            padding: 36px 20px 48px;
            border: 1px dashed var(--border-color);
            background: #fafaf8;
        }
        .account-orders-empty p {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 20px;
            letter-spacing: var(--ls-none);
        }
        .account-orders-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .account-order-card {
            background: #fff;
            border: 1px solid var(--border-color);
            text-align: left;
            overflow: hidden;
        }
        .account-order-card__summary {
            display: block;
            width: 100%;
            margin: 0;
            padding: 0;
            border: none;
            background: linear-gradient(180deg, #fcfcfa 0%, #faf9f6 100%);
            cursor: pointer;
            text-align: left;
            font-family: var(--font-lux);
            transition: background 0.22s ease;
        }
        .account-order-card__summary:hover {
            background: #f3f1ec;
        }
        .account-order-card__summary:focus-visible {
            outline: 2px solid #111;
            outline-offset: -2px;
        }
        .account-order-card__sum-strip {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px 14px;
            min-height: 54px;
            padding: 11px 16px 11px 14px;
            border-bottom: 1px solid var(--border-color);
            box-sizing: border-box;
        }
        .account-order-card.is-open .account-order-card__sum-strip {
            border-bottom-color: #e8e4dc;
            background: linear-gradient(180deg, #fff 0%, #fdfcfa 100%);
        }
        .account-order-card__sum-status {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }
        .account-order-card__sum-pay {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: var(--ls-none);
            color: #111;
            max-width: 118px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        @media (min-width: 520px) {
            .account-order-card__sum-pay { max-width: 160px; }
        }
        .account-order-card__sum-meta {
            flex: 1 1 140px;
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .account-order-card__sum-ref {
            font-size: 12px;
            font-weight: 600;
            color: #111;
            letter-spacing: var(--ls-none);
        }
        .account-order-card__sum-date {
            font-size: 11px;
            color: var(--text-muted);
            letter-spacing: var(--ls-none);
        }
        .account-order-card__sum-total {
            font-size: 13px;
            font-weight: 600;
            color: #111;
            flex-shrink: 0;
            letter-spacing: var(--ls-none);
        }
        .account-order-card__sum-detail {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            flex-shrink: 0;
            margin-left: auto;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #111;
        }
        .account-order-card__chevron {
            flex-shrink: 0;
            transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
            color: #111;
        }
        .account-order-card.is-open .account-order-card__chevron {
            transform: rotate(180deg);
        }
        .account-order-card__expand {
            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows 0.44s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .account-order-card.is-open .account-order-card__expand {
            grid-template-rows: 1fr;
        }
        .account-order-card__expand-inner {
            overflow: hidden;
            min-height: 0;
        }
        .account-order-card__top {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            justify-content: space-between;
            gap: 14px;
            padding: 18px 18px 14px;
            border-bottom: 1px solid var(--border-color);
            background: linear-gradient(180deg, #fdfcfa 0%, #fff 100%);
        }
        .account-order-status {
            display: flex;
            flex-direction: column;
            gap: 4px;
            min-width: 0;
        }
        .account-order-status__row {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: var(--ls-none);
            color: #111;
        }
        .account-order-status__dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            flex-shrink: 0;
            background: #2d6a4f;
        }
        .account-order-status__dot--muted { background: #b8b3a8; }
        .account-order-status__sub {
            font-size: 11px;
            font-weight: 500;
            color: var(--text-muted);
            letter-spacing: var(--ls-none);
            padding-left: 15px;
        }
        .account-order-meta {
            text-align: right;
            font-size: 11px;
            color: var(--text-muted);
            letter-spacing: var(--ls-none);
            line-height: 1.45;
        }
        .account-order-meta__ref {
            font-weight: 600;
            color: #111;
            font-size: 12px;
        }
        .account-order-toolbar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px 12px;
            padding: 10px 18px 12px;
            border-bottom: 1px solid var(--border-color);
            background: #fff;
            font-family: var(--font-lux);
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }
        .account-order-toolbar__linkish {
            font-family: inherit;
            font-size: inherit;
            font-weight: inherit;
            letter-spacing: inherit;
            text-transform: inherit;
            color: #111;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            text-decoration: underline;
            text-underline-offset: 3px;
        }
        .account-order-toolbar__linkish:hover { color: #444; }
        a.account-order-toolbar__linkish { text-decoration: underline; }
        .account-order-toolbar__sep {
            color: #d8d3c9;
            font-weight: 400;
            user-select: none;
        }
        .account-order-deliv {
            padding: 12px 18px;
            border-bottom: 1px solid var(--border-color);
            background: #fdfcfa;
            font-size: 12px;
            letter-spacing: var(--ls-none);
            line-height: 1.5;
        }
        .account-order-deliv__label {
            display: block;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 6px;
        }
        .account-order-deliv__text { color: #333; }
        .account-order-track {
            padding: 16px 18px 18px;
            border-bottom: 1px solid var(--border-color);
            background: linear-gradient(180deg, #f4f7fb 0%, #fafbfd 100%);
        }
        .account-order-track--empty {
            background: #fafafa;
        }
        .account-order-track__label {
            display: block;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 8px;
            font-family: var(--font-lux);
        }
        .account-order-track__no {
            font-size: 12px;
            font-weight: 500;
            color: #111;
            letter-spacing: var(--ls-none);
            margin-bottom: 10px;
        }
        .account-order-track__cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 40px;
            padding: 10px 18px;
            font-family: var(--font-lux);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: #fff;
            background: #111;
            text-decoration: none;
            border: 1px solid #111;
            transition: background 0.2s, color 0.2s;
        }
        .account-order-track__cta:hover {
            background: #333;
            border-color: #333;
            color: #fff;
        }
        .account-order-track__hint {
            margin-top: 10px;
            font-size: 11px;
            line-height: 1.5;
            color: var(--text-muted);
            letter-spacing: var(--ls-none);
        }
        .account-order-track__pending {
            margin: 0;
            font-size: 12px;
            line-height: 1.55;
            color: var(--text-muted);
            letter-spacing: var(--ls-none);
        }
        .account-order-lines {
            padding: 0 18px;
        }
        .account-order-line {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
            font-size: 13px;
            letter-spacing: var(--ls-none);
        }
        .account-order-line:last-child { border-bottom: none; }
        .account-order-line__img {
            width: 48px;
            height: 48px;
            flex-shrink: 0;
            background: var(--bg-white);
            border-radius: 4px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .account-order-line__img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .account-order-line__mid {
            flex: 1;
            min-width: 0;
        }
        .account-order-line__title {
            font-family: var(--font-lux);
            font-weight: 500;
            color: #111;
            line-height: 1.35;
        }
        .account-order-line__size {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 2px;
        }
        .account-order-line__price {
            font-weight: 500;
            color: #111;
            flex-shrink: 0;
        }
        .account-order-foot {
            padding: 14px 18px 18px;
            background: #fafafa;
            border-top: 1px solid var(--border-color);
            font-size: 12px;
            color: var(--text-muted);
            letter-spacing: var(--ls-none);
            line-height: 1.55;
        }
        .account-order-foot__total {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 8px;
            font-family: var(--font-lux);
        }
        .account-order-foot__total span:first-child { font-weight: 500; color: #111; }
        .account-order-foot__total strong {
            font-size: 15px;
            font-weight: 600;
            color: #111;
        }
        .account-order-foot__meta {
            font-size: 11px;
            color: #777;
            margin-bottom: 10px;
            letter-spacing: var(--ls-none);
        }
        .account-order-foot__estimate {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px solid #ece8e2;
            line-height: 1.5;
            letter-spacing: var(--ls-none);
        }
        .account-dash-order-preview {
            margin: 0 0 14px;
            text-align: left;
            padding: 14px 14px 12px;
            border: 1px solid var(--border-color);
            background: #fdfcfa;
            font-size: 12px;
            line-height: 1.5;
            letter-spacing: var(--ls-none);
        }
        .account-dash-order-preview__ref { font-weight: 600; color: #111; }
        .account-dash-btn-dark--compact { margin-top: 4px; }

        /* --- ACCOUNT ADDRESSES (reference layout) --- */
        .account-address-screen {
            max-width: 520px;
            margin: 0 auto;
            padding: 32px 20px 56px;
            text-align: center;
        }
        .account-address-title {
            font-family: var(--font-lux);
            font-size: clamp(28px, 5vw, 38px);
            font-weight: 500;
            color: #111;
            margin-bottom: 16px;
            line-height: 1.2;
        }
        .account-address-lead {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.55;
            margin-bottom: 28px;
        }
        .account-address-add-btn {
            display: inline-block;
            width: 100%;
            max-width: 320px;
            padding: 16px 24px;
            background: #111;
            color: #fff;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            font-family: var(--font-lux);
            border: none;
            cursor: pointer;
            transition: background 0.2s;
        }
        .account-address-add-btn:hover { background: #333; }
        .account-address-field {
            margin-bottom: 12px;
        }
        .account-address-field label {
            display: block;
            font-size: 10px;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 6px;
        }
        .account-address-field input,
        .account-address-field select {
            width: 100%;
            padding: 12px 14px;
            border: 1px solid #111;
            font-size: 13px;
            background: #fff;
        }
        .account-address-list {
            max-width: 560px;
            margin: 24px auto 0;
            text-align: left;
        }
        .account-address-card {
            border: 1px solid var(--border-color);
            padding: 40px 20px 18px;
            margin-bottom: 12px;
            background: #fff;
            font-size: 13px;
            line-height: 1.5;
            position: relative;
            transition: opacity 0.28s ease, transform 0.28s ease, margin 0.28s ease;
        }
        .account-address-card.account-address-card--removing {
            opacity: 0;
            transform: translateY(-12px);
            pointer-events: none;
            margin-bottom: 0;
        }
        .account-address-card-actions {
            position: absolute;
            top: 12px;
            right: 12px;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .account-address-card .account-address-edit-btn {
            font-size: 11px;
            font-weight: 600;
            text-decoration: underline;
            text-underline-offset: 3px;
            color: #111;
            background: none;
            border: none;
            cursor: pointer;
            font-family: inherit;
        }
        .account-address-card .account-address-edit-btn:hover {
            color: #000;
        }
        .account-address-card button.remove {
            position: static;
            font-size: 11px;
            text-decoration: underline;
            color: var(--text-muted);
            background: none;
            border: none;
            cursor: pointer;
            font-family: inherit;
        }
        .account-address-invoice-note {
            display: inline-block;
            margin-top: 6px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: #444;
            font-family: var(--font-lux);
        }
        .account-address-invoice-note--corp {
            color: #1a1a1a;
        }
        .account-address-add-secondary {
            margin-top: 20px;
            text-align: center;
        }

        /* Adres ekle: sayfa içi panel (popup değil) */
        .account-address-form-panel {
            max-width: 560px;
            margin: 28px auto 0;
            padding: 24px 22px 28px;
            text-align: left;
            border: 1px solid var(--border-color);
            background: #fff;
            box-sizing: border-box;
        }
        .account-address-form-panel[hidden] {
            display: none !important;
        }
        .account-address-form-panel__account-type {
            display: flex;
            width: 100%;
            margin: 0 0 22px;
            padding: 0;
            border: 1px solid #000;
            box-sizing: border-box;
            background: #fff;
        }
        .account-address-form-panel__account-type label {
            flex: 1;
            margin: 0;
            cursor: pointer;
            display: block;
            min-width: 0;
            position: relative;
        }
        .account-address-form-panel__account-type label:first-child span {
            border-right: 1px solid #000;
        }
        .account-address-form-panel__account-type input {
            position: absolute;
            opacity: 0;
            width: 0;
            height: 0;
            margin: 0;
            pointer-events: none;
        }
        .account-address-form-panel__account-type span {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 48px;
            padding: 14px 10px;
            box-sizing: border-box;
            font-family: var(--font-lux);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: none;
            color: #111;
            background: #fff;
            border-radius: 0;
            transition: background 0.15s ease, color 0.15s ease;
        }
        .account-address-form-panel__account-type input:checked + span {
            background: #000;
            color: #fff;
        }
        .account-address-form-panel__account-type label:has(input:focus-visible) span {
            outline: 2px solid #333;
            outline-offset: 2px;
            z-index: 1;
        }
        .account-address-form-panel .account-address-field {
            margin-bottom: 14px;
        }
        .account-address-form-panel .account-address-field label {
            display: block;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.04em;
            text-transform: none;
            color: #555;
            margin-bottom: 8px;
            font-family: var(--font-lux);
        }
        .account-address-form-panel .account-address-field input,
        .account-address-form-panel .account-address-field select {
            width: 100%;
            padding: 13px 14px;
            border: 1px solid #d8d4ce;
            border-radius: 4px;
            font-size: 14px;
            font-family: var(--font-lux);
            letter-spacing: var(--ls-none);
            background: #fff;
            color: #111;
            transition: border-color 0.15s ease, box-shadow 0.15s ease;
        }
        .account-address-form-panel .account-address-field input::placeholder {
            color: #9a9590;
        }
        .account-address-form-panel .account-address-field input:focus,
        .account-address-form-panel .account-address-field select:focus {
            outline: none;
            border-color: #111;
            box-shadow: 0 0 0 1px #111;
        }
        .account-address-form-panel .account-address-field select:disabled {
            opacity: 0.65;
            cursor: not-allowed;
            background: #f7f6f4;
        }
        .account-address-form-panel__row2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }
        @media (max-width: 520px) {
            .account-address-form-panel__row2 {
                grid-template-columns: 1fr;
            }
        }
        .account-address-form-panel__check {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin: 22px 0 8px;
            font-size: 13px;
            color: #666;
            cursor: pointer;
            letter-spacing: var(--ls-none);
            font-family: var(--font-lux);
        }
        .account-address-form-panel__check input {
            margin-top: 3px;
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            accent-color: #111;
        }
        .account-address-form-panel__submit {
            width: 100%;
            margin-top: 22px;
            padding: 16px 20px;
            background: #1a1a1a;
            color: #fff;
            border: none;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            font-family: var(--font-lux);
            cursor: pointer;
            border-radius: 4px;
            transition: background 0.2s ease;
        }
        .account-address-form-panel__submit:hover {
            background: #000;
        }

        /* --- SITE FOOTER --- */
        .site-footer {
            flex-shrink: 0;
            background: #fff;
            border-top: none;
            margin-top: auto;
        }
        .site-trust-band {
            width: 100%;
            background: #fff;
            margin-top: 0;
            padding-top: 40px;
        }
        .site-trust-band__inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 22px 32px 30px;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: clamp(24px, 5vw, 48px);
            align-items: center;
            border-bottom: 1px solid var(--product-grid-line);
        }
        .site-trust-band__item--shipping {
            justify-content: center;
            gap: 8px;
        }
        .site-trust-band__item--shipping .site-trust-band__text {
            display: inline-flex;
            flex-direction: column;
            gap: 6px;
            flex: 0 1 auto;
            min-width: 0;
            max-width: min(100%, 22em);
            align-items: stretch;
            text-align: center;
        }
        .site-trust-band__item--shipping .site-trust-band__title,
        .site-trust-band__item--shipping .site-trust-band__desc {
            text-align: center;
            width: 100%;
        }
        .site-trust-band__item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            min-width: 0;
            color: #2a2a2a;
            transform: translateY(-10px);
        }
        .site-trust-band__icon {
            width: 24px;
            height: 24px;
            color: #3a3a3a;
            flex-shrink: 0;
        }
        .site-trust-band__text {
            display: flex;
            flex-direction: column;
            gap: 5px;
            min-width: 0;
        }
        .site-trust-band__item--safe .site-trust-band__text,
        .site-trust-band__item--return .site-trust-band__text {
            align-items: flex-start;
            text-align: left;
        }
        .site-trust-band__item--safe .site-trust-band__title,
        .site-trust-band__item--return .site-trust-band__title {
            font-family: var(--font-lux);
            font-size: 12px;
            font-weight: 600;
            line-height: 1.35;
            letter-spacing: 0.12em;
            text-transform: none;
            color: #2a2a2a;
            white-space: nowrap;
        }
        .site-trust-band__item--return .site-trust-band__icon {
            margin-inline-start: 16px;
        }
        .site-trust-band__item--return .site-trust-band__text {
            margin-inline-start: -6px;
        }
        .site-trust-band__item--safe .site-trust-band__text {
            margin-inline-start: -5px;
        }
        .site-trust-band__item--shipping .site-trust-band__title {
            font-family: var(--font-lux);
            font-size: 13px;
            font-weight: 600;
            line-height: 1.35;
            letter-spacing: 0.12em;
            text-transform: none;
            color: #2a2a2a;
            white-space: nowrap;
        }
        .site-trust-band__title {
            margin: 0;
            font-family: var(--font-lux);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.12em;
            color: #2a2a2a;
            line-height: 1.35;
            text-transform: none;
            white-space: nowrap;
        }
        .site-trust-band__desc {
            margin: 0;
            font-family: var(--font-lux);
            font-size: 11px;
            font-weight: 400;
            letter-spacing: var(--ls-none);
            color: #8a8a8a;
            line-height: 1.5;
            white-space: nowrap;
        }
        .site-trust-band__item--shipping .site-trust-band__desc {
            font-size: 12px;
            line-height: 1.45;
        }
        .site-footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 48px 24px 32px;
        }
        .site-footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px 24px;
        }
        .site-footer-col h3 {
            font-family: var(--font-lux);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 18px;
            color: #111;
        }
        .site-footer-col ul { display: flex; flex-direction: column; gap: 10px; }
        .site-footer-col button.footer-link {
            display: block;
            width: fit-content;
            text-align: left;
            font-size: 13px;
            color: var(--text-muted);
            background: none;
            border: none;
            padding: 0;
            cursor: pointer;
            font-family: var(--font-lux);
            font-weight: 500;
            letter-spacing: 0.01em;
            transition: color 0.2s;
        }
        .site-footer-col button.footer-link:hover,
        .site-footer-col a.footer-link:hover { color: #111; }
        .site-footer-col a.footer-link {
            font-size: 13px;
            font-family: var(--font-lux);
            font-weight: 500;
            letter-spacing: 0.01em;
            color: var(--text-muted);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .site-footer-col ul a.footer-link {
            text-decoration: none;
            display: block;
            width: fit-content;
        }
        .site-footer-social {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .site-footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border: 1px solid var(--border-color);
            color: #111;
            transition: border-color 0.2s, background 0.2s;
        }
        .site-footer-social a:hover { border-color: #111; background: #fafafa; }
        .site-footer-social svg { width: 18px; height: 18px; }
        .site-footer-mail p {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.55;
            margin-bottom: 16px;
        }
        .site-footer-newsletter {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .site-footer-newsletter input {
            width: 100%;
            padding: 12px 14px;
            border: 1px solid var(--border-color);
            font-size: 13px;
        }
        .site-footer-newsletter button.subscribe {
            padding: 14px;
            background: #111;
            color: #fff;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            cursor: pointer;
            font-family: var(--font-lux);
            border: none;
        }
        .site-footer-newsletter button.subscribe:hover { background: #333; }
        .site-footer-bar {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 24px 28px;
            border-top: 1px solid var(--border-color);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            font-size: 11px;
            color: var(--text-muted);
        }
        .site-footer-bar a { text-decoration: underline; cursor: pointer; }
        .site-footer-bar select.region-select {
            padding: 8px 12px;
            border: 1px solid var(--border-color);
            font-size: 11px;
            background: #fff;
            cursor: pointer;
            font-family: inherit;
        }
        .site-footer-pay {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: flex-end;
            min-height: 64px;
        }
        .site-footer-pay-img {
            display: block;
            height: 64px;
            width: auto;
            max-width: min(100%, 980px);
            object-fit: contain;
            object-position: right center;
        }
        @media (min-width: 600px) {
            .site-footer-pay { min-height: 82px; }
            .site-footer-pay-img { height: 82px; max-width: min(100%, 1200px); }
        }
        @media (min-width: 900px) {
            .site-footer-pay { min-height: 100px; }
            .site-footer-pay-img { height: 100px; max-width: min(100%, 1280px); }
        }
        @media (min-width: 1200px) {
            .site-footer-pay { min-height: 112px; }
            .site-footer-pay-img { height: 112px; }
        }
        .site-toast {
            position: fixed;
            top: calc(var(--header-h) + 12px);
            left: 50%;
            transform: translateX(-50%) translateY(-20px);
            max-width: min(90vw, 420px);
            padding: 14px 20px;
            background: #111;
            color: #fff;
            font-size: 13px;
            line-height: 1.45;
            z-index: 260;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.25s, transform 0.25s;
            text-align: center;
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }
        .site-toast.is-visible {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
            pointer-events: auto;
        }
        @media (max-width: 900px) {
            /* Üst: Marka|Yardım %50-%50; Alt: Sosyal | E-posta dengeli (%50-%50) */
            .site-footer-grid {
                display: grid;
                grid-template-columns: repeat(8, minmax(0, 1fr));
                grid-template-areas:
                    "brand brand brand brand help help help help"
                    "social social social social mail mail mail mail";
                gap: 24px 14px;
                align-items: stretch;
                padding-inline-start: 18px;
                box-sizing: border-box;
            }
            .site-footer-grid > .site-footer-col:nth-child(1) {
                grid-area: social;
                min-width: 0;
            }
            .site-footer-grid > .site-footer-col:nth-child(2) {
                grid-area: help;
                min-width: 0;
                display: flex;
                flex-direction: column;
            }
            .site-footer-grid > .site-footer-col:nth-child(3) {
                grid-area: brand;
                min-width: 0;
                display: flex;
                flex-direction: column;
            }
            .site-footer-grid > .site-footer-col:nth-child(4) {
                grid-area: mail;
                min-width: 0;
            }
            .site-footer-grid > .site-footer-col:nth-child(2) ul,
            .site-footer-grid > .site-footer-col:nth-child(3) ul {
                flex: 1 1 auto;
            }
            .site-footer-grid > .site-footer-col:nth-child(4) h3 {
                margin-bottom: 14px;
            }
            .site-footer-grid > .site-footer-col:nth-child(4) p {
                font-size: 12px;
                margin-bottom: 12px;
                line-height: 1.5;
            }
            .site-footer-grid > .site-footer-col:nth-child(4) .site-footer-newsletter input {
                padding: 11px 12px;
                font-size: 13px;
            }
            .site-footer-grid > .site-footer-col:nth-child(4) .site-footer-newsletter button.subscribe {
                padding: 11px 14px;
                font-size: 11px;
            }
            .site-trust-band__inner {
                grid-template-columns: 1fr auto auto 1fr;
                grid-template-rows: auto auto;
                column-gap: 0;
                row-gap: 18px;
                padding: 18px clamp(16px, 4.5vw, 26px) 24px;
                box-sizing: border-box;
            }
            .site-trust-band__item {
                justify-content: flex-start;
                align-items: center;
                gap: 12px;
                transform: none;
            }
            .site-trust-band__item--safe {
                grid-column: 2;
                grid-row: 1;
                justify-self: center;
            }
            .site-trust-band__item--return {
                grid-column: 3;
                grid-row: 1;
                justify-self: center;
                /* Dar ekranda çok büyük margin sağdaki metni kıyıya dayıyordu; sağa nefes aldır */
                margin-inline-start: clamp(10px, 4vw, 40px);
                padding-inline-end: 4px;
            }
            .site-trust-band__item--return .site-trust-band__icon {
                margin-inline-start: 20px;
            }
            .site-trust-band__item--return .site-trust-band__text {
                margin-inline-start: -9px;
            }
            .site-trust-band__item--safe .site-trust-band__text {
                margin-inline-start: -7px;
            }
            .site-trust-band__item--safe,
            .site-trust-band__item--return {
                transform: translateY(-22px);
            }
            .site-trust-band__item--safe .site-trust-band__text,
            .site-trust-band__item--return .site-trust-band__text {
                align-items: flex-start;
                text-align: left;
            }
            .site-trust-band__item--shipping {
                transform: translateY(-10px);
                grid-column: 1 / -1;
                grid-row: 2;
                justify-self: center;
                width: 100%;
                max-width: 100%;
                justify-content: center;
                align-items: center;
                gap: 6px;
            }
            .site-trust-band__item--shipping .site-trust-band__text {
                display: inline-flex;
                flex-direction: column;
                gap: 6px;
                flex: 0 1 auto;
                min-width: 0;
                max-width: min(100%, 22em);
                align-items: stretch;
                text-align: center;
            }
            .site-trust-band__item--shipping .site-trust-band__title,
            .site-trust-band__item--shipping .site-trust-band__desc {
                text-align: center;
                width: 100%;
            }
            .site-trust-band__item--safe .site-trust-band__title,
            .site-trust-band__item--return .site-trust-band__title {
                font-size: 11px;
                font-weight: 600;
                line-height: 1.35;
                letter-spacing: 0.11em;
                white-space: nowrap;
            }
            .site-trust-band__item--shipping .site-trust-band__title {
                font-size: 12px;
                font-weight: 600;
                line-height: 1.35;
                letter-spacing: 0.11em;
                white-space: nowrap;
            }
            .site-trust-band__item--shipping .site-trust-band__desc {
                font-size: 12px;
                white-space: normal;
                line-height: 1.45;
            }
        }
        @media (max-width: 520px) {
            .site-trust-band__inner {
                row-gap: 16px;
                column-gap: 0;
                padding: 16px 18px calc(22px + env(safe-area-inset-bottom, 0px)) 18px;
                box-sizing: border-box;
            }
            .site-trust-band__item--return {
                margin-inline-start: clamp(6px, 2.2vw, 24px);
                padding-inline-end: 6px;
            }
            .site-trust-band__item--return .site-trust-band__text {
                margin-inline-start: -10px;
            }
            .site-footer-bar { flex-direction: column; align-items: flex-start; }
            .site-footer-pay { width: 100%; justify-content: flex-start; }
            .site-footer-pay-img { max-width: 100%; object-position: left center; }
        }

        /* --- COOKIE BANNER --- */
        body.has-cookie-banner { padding-bottom: 100px; }
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 250;
            background: #111;
            color: #fff;
            padding: 14px 24px;
            display: none;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
            font-size: 12px;
            line-height: 1.45;
        }
        .cookie-banner.is-visible { display: flex; }
        .cookie-banner.prefs-expanded { align-items: flex-start; }
        .cookie-banner-text { flex: 1 1 280px; max-width: 720px; }
        .cookie-banner-text a { color: #fff; text-decoration: underline; }
        .cookie-banner-actions {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px 14px;
        }
        .cookie-link-btn {
            background: none;
            border: none;
            color: #fff;
            font-size: 12px;
            font-family: inherit;
            text-decoration: underline;
            cursor: pointer;
            padding: 0;
        }
        .cookie-link-btn:hover { opacity: 0.85; }
        .cookie-solid-btn {
            padding: 10px 18px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            cursor: pointer;
            font-family: var(--font-main);
            border: none;
            background: #fff;
            color: #111;
            transition: opacity 0.2s;
        }
        .cookie-solid-btn:hover { opacity: 0.92; }
        .cookie-solid-btn.cookie-decline { background: #f0efe9; color: #111; }
        .cookie-prefs-panel {
            width: 100%;
            flex-basis: 100%;
            display: none;
            padding-top: 14px;
            margin-top: 8px;
            border-top: 1px solid rgba(255,255,255,0.2);
        }
        .cookie-banner.prefs-expanded .cookie-prefs-panel { display: block; }
        .cookie-prefs-row {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 24px;
            margin-top: 10px;
            font-size: 12px;
        }
        .cookie-prefs-row label { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; }

        /* --- PRODUCT DETAIL (geniş galeri + sağ sütun: fiyat, açılır açıklamalar, pair with) --- */
        .product-detail-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(394px, 567px);
            align-items: start;
            min-height: calc(100vh - var(--header-h));
            width: 100%;
            background: #fff;
        }
        .product-detail-gallery {
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            min-height: 0;
            background: #fff;
        }
        .detail-gallery-outer { width: 100%; min-width: 0; position: relative; }
        .detail-gallery-dots {
            display: none;
            justify-content: center;
            align-items: center;
            gap: 6px;
            padding: 10px 0 2px;
            list-style: none;
            margin: 0;
        }
        .detail-gallery-dots li { list-style: none; margin: 0; padding: 0; }
        .detail-gallery-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            padding: 0;
            border: none;
            background: #c9c3ba;
            cursor: pointer;
            font-size: 0;
        }
        .detail-gallery-dot.is-active { background: #111; }
        .detail-gallery-expand {
            display: none !important;
            position: absolute;
            top: 8px;
            right: 8px;
            z-index: 3;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #e0ddd6;
            background: #fff;
            color: #111;
            font-size: 20px;
            line-height: 1;
            cursor: pointer;
            font-family: inherit;
        }
        @media (max-width: 1024px) {
            .detail-gallery-outer { padding: 0; }
        }
        .detail-gallery-outer.has-gallery-carousel .detail-gallery-dots { display: flex; }
        .detail-gallery-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1px;
            width: 100%;
            align-content: start;
            background: #e0ddd6;
            border: 1px solid #e0ddd6;
            box-sizing: border-box;
        }
        .detail-gallery-grid.detail-gallery-grid--carousel {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            gap: 0;
            border: none;
            border-bottom: 1px solid #e0ddd6;
            background: #e0ddd6;
            overflow-x: auto;
            overflow-y: hidden;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            touch-action: pan-x pinch-zoom;
            overscroll-behavior-x: contain;
            cursor: grab;
        }
        .detail-gallery-grid.detail-gallery-grid--carousel.is-dragging {
            cursor: grabbing;
            scroll-snap-type: none;
        }
        .detail-gallery-grid.detail-gallery-grid--carousel::-webkit-scrollbar { display: none; }
        .detail-gallery-cell {
            position: relative;
            background: #fbf9f5;
            width: 100%;
            min-height: 0;
            aspect-ratio: 1;
            max-height: min(78vh, 56vw);
            overflow: hidden;
            isolation: isolate;
            cursor: pointer;
        }
        .detail-gallery-cell.is-hero { grid-column: 1 / -1; aspect-ratio: 1.2; max-height: min(82vh, 100vw); }
        .detail-gallery-cell.span-2 { grid-column: span 2; }
        .detail-gallery-grid--carousel .detail-gallery-cell {
            flex: 0 0 100%;
            min-width: 100%;
            width: 100%;
            max-height: min(75vh, 100vw);
            aspect-ratio: 1;
            scroll-snap-align: start;
            touch-action: pan-x pinch-zoom;
        }
        .detail-gallery-grid--carousel .detail-gallery-cell.is-hero { grid-column: auto; max-height: min(75vh, 100vw); aspect-ratio: 1.05; }
        .detail-gallery-grid--carousel .detail-gallery-cell.span-2 { grid-column: auto; }
        .detail-gallery-lightbox {
            position: fixed; inset: 0; z-index: 10050; min-height: 0;
            display: flex; flex-direction: column; align-items: stretch; justify-content: center;
            /* Galeri hücresi (detail-gallery-cell) ile aynı arka plan rengi */
            background: var(--product-tile-bg, #fbf9f5);
            /* body altında, üst katman: grid sayfasının üstünde kalır */
        }
        .detail-gallery-lightbox[hidden] { display: none !important; }
        .detail-gallery-lb-fog {
            position: absolute; inset: 0; z-index: 0;
            cursor: pointer;
            background: var(--product-tile-bg, #fbf9f5);
        }
        .detail-gallery-lb-x {
            /* Üst = sağ: aynı iç boşluk; safe-area eklentisi; duvardan yeterince uzak */
            --detail-gallery-lb-inset: 30px;
            position: fixed;
            top: calc(env(safe-area-inset-top, 0px) + var(--detail-gallery-lb-inset));
            right: calc(env(safe-area-inset-right, 0px) + var(--detail-gallery-lb-inset));
            z-index: 10060;
            width: 52px;
            height: 52px;
            padding: 0;
            border: none;
            background: transparent;
            color: var(--text-main, #111);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: inherit;
            transition: opacity 0.2s ease, color 0.2s ease;
        }
        @media (min-width: 769px) {
            .detail-gallery-lb-x { --detail-gallery-lb-inset: 36px; }
        }
        .detail-gallery-lb-x:hover { opacity: 0.65; }
        .detail-gallery-lb-x:focus-visible {
            outline: 2px solid var(--text-main, #111);
            outline-offset: 2px;
        }
        .detail-gallery-lb-x-icon {
            display: block;
            width: 40px;
            height: 40px;
        }
        .detail-gallery-lb-scroller {
            position: relative; z-index: 1;
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            overflow-x: auto;
            overflow-y: hidden;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            touch-action: pan-x;
            scrollbar-width: none;
            width: 100%;
            max-width: 100%;
            max-height: 100vh;
            max-height: 100dvh;
            min-height: 0;
            margin: 0 auto;
            flex: 0 1 auto;
            box-sizing: border-box;
        }
        .detail-gallery-lb-scroller::-webkit-scrollbar { display: none; }
        .detail-gallery-lb-slide {
            flex: 0 0 100%;
            min-width: 100%;
            min-height: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;
            padding: 0 2px 4px;
            scroll-snap-align: start;
        }
        .detail-gallery-lb-img-wrap {
            --lb-origin-x: 50%;
            --lb-origin-y: 50%;
            position: relative;
            max-width: 100%;
            max-height: min(100vh, 100vw);
            max-height: min(100dvh, 100vw);
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            box-sizing: border-box;
            cursor: zoom-in;
        }
        .detail-gallery-lb-img-wrap.is-zoomed {
            cursor: zoom-out;
        }
        .detail-gallery-lb-img-wrap img {
            max-width: 100%;
            max-height: min(100vh, 100vw);
            max-height: min(100dvh, 100vw);
            width: auto;
            height: auto;
            object-fit: contain;
            display: block;
            pointer-events: auto;
            transform-origin: var(--lb-origin-x) var(--lb-origin-y);
            transition: transform 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            -webkit-tap-highlight-color: transparent;
        }
        .detail-gallery-lb-img-wrap.is-zoomed img {
            transform: scale(2.45);
        }
        .detail-gallery-cell img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center center;
            /* contain ile kalan boşluğu azalt: ayakkabıyı kenerlara yaklaştır */
            transform: scale(1.24);
            transform-origin: center center;
            mix-blend-mode: normal;
        }
        @media (max-width: 1024px) {
            .detail-gallery-cell img {
                transform: scale(1.18);
                -webkit-user-drag: none;
                user-select: none;
            }
        }
        @media (max-width: 600px) {
            .detail-gallery-cell img { transform: scale(1.14); }
        }

        .product-detail-info {
            position: sticky;
            top: var(--header-h);
            align-self: start;
            /* Ana sayfa scroll’u: galeri iner, bu blok header altında sabit kalır; içte ikinci scroll yok */
            width: 100%;
            min-width: 0;
            height: min-content;
            max-height: none;
            overflow: visible;
            padding: 40px 40px 50px 42px;
            border-left: 1px solid var(--border-color);
            background: #fff;
            box-sizing: border-box;
        }
        @media (min-width: 1025px) {
            .product-detail-info { padding-bottom: 36px; }
        }
        .detail-breadcrumb { font-size: 11px; color: #888; margin-bottom: 16px; line-height: 1.4; }
        .detail-breadcrumb a { text-decoration: underline; text-underline-offset: 2px; }
        .detail-breadcrumb a:hover { color: #111; }
        .detail-bc-sep { margin: 0 0.25em; color: #c5c0b8; font-weight: 300; }
        .detail-bc-cat { color: #888; }
        .detail-bc-pname { color: #111; }
        .detail-title { font-family: var(--font-lux); font-size: clamp(26px, 2.5vw, 36px); font-weight: 500; line-height: 1.12; margin: 0 0 10px; letter-spacing: var(--ls-tight); }
        .detail-reviews-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 12px; color: #555; }
        .detail-stars { letter-spacing: 1px; color: #111; line-height: 1; }
        .detail-reviews-sep { color: #ccc; }
        .detail-reviews-link { text-decoration: underline; text-underline-offset: 2px; color: #555; cursor: pointer; background: none; border: none; font: inherit; padding: 0; }
        .detail-reviews-link:hover { color: #111; }
        .detail-price-row { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; margin-bottom: 20px; }
        .detail-price { font-size: 22px; font-weight: 500; }
        .detail-points-wrap { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #666; }
        .detail-points-ico { width: 16px; height: 16px; border: 1px solid #d0d0d0; border-radius: 50%; font-size: 10px; line-height: 1; display: flex; align-items: center; justify-content: center; color: #888; flex-shrink: 0; }
        .detail-meta-line { font-family: var(--font-lux); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; margin: 0 0 8px; color: #111; }
        .detail-meta-line #detail-style { font-weight: 500; }
        .detail-swatches { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
        .detail-swatch {
            width: 52px;
            height: 52px;
            border: 1px solid #e0ddd6;
            background: #f8f6f1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4px;
            isolation: isolate;
            border-radius: 0;
        }
        .detail-swatch.is-active { box-shadow: inset 0 0 0 2px #111; }
        .detail-swatch img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: normal; }
        .detail-size-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 10px; font-size: 12px; flex-wrap: wrap; }
        .detail-size-label { color: #111; }
        .detail-size-label em { color: #888; font-style: normal; font-size: 12px; }
        .detail-size-controls { display: inline-flex; align-items: center; gap: 10px; margin-left: auto; }
        .detail-fav-icon-btn {
            width: 52px;
            height: 52px;
            padding: 0;
            border: none;
            background: transparent;
            color: #111;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.22s ease, color 0.22s ease;
            -webkit-tap-highlight-color: transparent;
        }
        .detail-fav-icon-btn:hover { transform: translateY(-1px); }
        .detail-fav-icon-btn svg {
            width: 30px;
            height: 30px;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.12;
        }
        .detail-fav-icon-btn.is-active { color: #e61f00; }
        .detail-fav-icon-btn.is-active svg { fill: currentColor; }
        .detail-size-grid-row {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .detail-size-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(48px, 1fr));
            gap: 8px;
            margin-bottom: 0;
            flex: 1;
        }
        .detail-size-btn {
            border: 1px solid #e0ddd6; min-height: 44px; padding: 10px 0; font-size: 12px; color: #111; background: #fff; transition: background 0.2s, border-color 0.2s, color 0.2s;
        }
        .detail-size-btn:hover { border-color: #111; }
        .detail-size-btn.active { border-color: #111; background: #111; color: #fff; }
        .detail-size-hint { font-size: 11px; color: #666; line-height: 1.45; margin-bottom: 20px; display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; }
        .detail-size-hint a { text-decoration: underline; text-underline-offset: 2px; }
        .detail-cta { width: 100%; background: #111; color: #fff; padding: 16px 20px; font-size: 11px; font-family: var(--font-lux); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; margin-bottom: 12px; border: none; cursor: pointer; }
        .detail-cta:hover { background: #000; }
        .detail-cta:disabled { opacity: 0.45; cursor: not-allowed; }
        .detail-shipping { font-size: 11px; color: #666; margin-bottom: 24px; line-height: 1.5; }
        .detail-feature-pills { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 28px; }
        @media (max-width: 520px) { .detail-feature-pills { grid-template-columns: 1fr; } }
        .detail-feature-pill { text-align: center; font-size: 10px; color: #333; line-height: 1.4; border-top: 1px solid #e8e4dc; padding-top: 10px; }
        .detail-feature-ico { font-size: 16px; margin: 0 auto 6px; line-height: 1; opacity: 0.85; }
        .detail-feature-line { text-transform: uppercase; letter-spacing: 0.04em; }
        .detail-pair-with { margin-top: 8px; padding-top: 28px; border-top: 1px solid #e8e4dc; }
        .detail-pair-title { font-family: var(--font-lux); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: #111; margin: 0 0 16px; font-weight: 600; }
        .detail-pair-list { display: flex; flex-direction: column; gap: 16px; }
        .detail-pair-item { display: flex; gap: 14px; align-items: flex-start; }
        .detail-pair-item img { width: 64px; height: 64px; object-fit: contain; background: #f5f2ec; border: 1px solid #eee8df; padding: 4px; }
        .detail-pair-item-body { flex: 1; min-width: 0; }
        .detail-pair-name { font-family: var(--font-lux); font-size: 14px; font-weight: 500; margin: 0 0 4px; }
        .detail-pair-price { font-size: 12px; margin-bottom: 8px; color: #111; }
        .detail-pair-cta { width: 100%; max-width: 200px; padding: 8px; font-size: 10px; font-family: var(--font-lux); letter-spacing: 0.07em; text-transform: uppercase; background: #111; color: #fff; border: none; cursor: pointer; }
        .detail-pair-cta:hover { background: #000; }
        .detail-description { font-size: 13px; color: #333; line-height: 1.7; margin: 0; }

        .detail-accordions { margin-top: 8px; border-bottom: 1px solid var(--product-grid-line); }
        .detail-accordion { border-top: 1px solid var(--product-grid-line); }
        .detail-accordion-head {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 12px;
            padding: 14px 0;
            margin: 0;
            border: none;
            background: transparent;
            font-family: var(--font-main);
            font-size: 11px;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: var(--text-muted);
            cursor: pointer;
            text-align: left;
        }
        .detail-accordion-head:hover,
        .detail-accordion-head:hover .detail-accordion-label { color: #111; }
        .detail-accordion-label { flex: 1; min-width: 0; }
        /* Filtre çubuğundaki + ile aynı tipografi; açıkken 45° → “×” */
        .detail-accordion-icon {
            flex-shrink: 0;
            font-size: 16px;
            line-height: 1;
            color: var(--text-muted);
            padding: 2px 4px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 1.35em;
            height: 1.35em;
            transition: transform 0.38s cubic-bezier(0.34, 1.2, 0.64, 1), color 0.25s ease;
            transform: rotate(0deg);
        }
        .detail-accordion-head:hover .detail-accordion-icon,
        .detail-accordion.is-open .detail-accordion-icon { color: #111; }
        .detail-accordion.is-open .detail-accordion-icon { transform: rotate(45deg); }
        .detail-accordion-panel {
            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows 0.45s cubic-bezier(0.33, 1, 0.65, 1);
        }
        .detail-accordion.is-open .detail-accordion-panel {
            grid-template-rows: 1fr;
        }
        .detail-accordion-panel-inner {
            overflow: hidden;
            min-height: 0;
            opacity: 0;
            transform: translateY(-12px);
            transition:
                opacity 0.38s ease,
                transform 0.45s cubic-bezier(0.33, 1, 0.65, 1);
        }
        .detail-accordion.is-open .detail-accordion-panel-inner {
            opacity: 1;
            transform: translateY(0);
            padding: 0 0 18px;
        }
        .detail-spec-list { margin: 0; padding: 0; font-size: 13px; line-height: 1.75; color: #333; }
        .detail-spec-list dt { font-weight: 600; display: inline; margin: 0; }
        .detail-spec-list dt::after { content: ' '; }
        .detail-spec-list dd { display: inline; margin: 0 0 0.35em; }
        .detail-spec-list dd::after { content: ''; display: block; }
        .detail-ship-block { margin-bottom: 22px; }
        .detail-ship-block:last-child { margin-bottom: 0; }
        .detail-ship-block h3 {
            font-family: var(--font-main);
            font-size: 15px;
            font-weight: 700;
            margin: 0 0 12px;
            color: #111;
        }
        .detail-ship-table { width: 100%; border-collapse: collapse; font-size: 12px; margin-bottom: 14px; }
        .detail-ship-table th {
            text-align: left;
            font-size: 10px;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            padding: 8px 0;
            border-bottom: 1px solid var(--product-grid-line);
        }
        .detail-ship-table td { padding: 10px 0; vertical-align: top; border-bottom: 1px solid rgba(163, 154, 140, 0.35); }
        .detail-ship-table td:first-child { font-weight: 700; font-style: italic; width: 38%; }
        .detail-ship-block p { font-size: 12px; line-height: 1.65; color: #333; margin: 0 0 10px; }
        .detail-ship-block p:last-child { margin-bottom: 0; }
        .detail-care-cta { font-weight: 600; margin-top: 14px; }
        .detail-care-cta-link { color: inherit; text-decoration: underline; text-underline-offset: 2px; }

        @keyframes floatUp { 0% { transform: translateY(100%) translateX(0); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { transform: translateY(-50px) translateX(20px); opacity: 0; } }
        @media (prefers-reduced-motion: reduce) {
            .product-img-stack .product-img-primary,
            .product-img-stack .product-img-hover {
                transition: none !important;
            }
            .detail-accordion-icon {
                transition: color 0.2s ease;
            }
            .detail-accordion-panel {
                transition: none;
            }
            .detail-accordion-panel-inner {
                transition: opacity 0.15s ease;
                transform: none;
            }
            .sort-dropdown,
            .filter-dropdown {
                transition: none;
            }
            .sort-dropdown-inner,
            .filter-dropdown-inner {
                transition: opacity 0.15s ease;
                transform: none;
            }
            .sort-plus,
            .filter-plus {
                transition: color 0.2s ease;
            }
        }
        @media (max-width: 1024px) {
            /* Daha “portre” kart — görseli uzunlamasına cömert, full-bleed’de küçültme yok */
            :root { --product-card-height: clamp(416px, min(81.12vh, 52vw + 208px), 666px); }
            .home-women-marquee-root {
                --home-marquee-cols: 2;
                --home-marquee-gap-total: 1px;
            }
            .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .product-card { height: var(--product-card-height); }
            .product-grid > .product-card {
                height: clamp(416px, min(85.3vh, calc(60.3cqw + 125px)), 707px);
            }
            /* Dar katalog (kayıtlı ayar; yeni ürün: penny-house-product-cards.mdc): cover + top; zoom yok. full-bleed’de .product-img-stack inset:0 → padding işe yaramaz; stack’e top ile görsel alanını indir */
            .product-img-wrapper {
                padding: 12px 10% 6px;
                align-items: stretch;
                justify-content: stretch;
            }
            .product-img-wrapper.catalog-full-bleed {
                padding: 0;
                overflow: hidden;
            }
            .product-img-wrapper.catalog-full-bleed .product-img-stack {
                inset: auto;
                top: clamp(18px, 7.5cqh, 56px);
                left: 0;
                right: 0;
                bottom: 0;
                width: 100%;
                height: auto;
            }
            /* Hover yoksa tek img hâlâ wrapper’ın çocuğu; stack yokken aşağı kaydır (scale değil) */
            .product-img-wrapper.catalog-full-bleed > .product-img {
                transform: translateY(clamp(14px, 6cqh, 52px));
            }
            .product-grid > .product-card .product-img-wrapper:not(.catalog-full-bleed) .product-img,
            .product-grid > .product-card .product-img-wrapper:not(.catalog-full-bleed) .product-img.fill-card-image {
                width: 100%;
                height: 100%;
                max-width: none;
                max-height: none;
                flex: 1 1 auto;
                min-height: 0;
                object-fit: cover;
                object-position: center top;
            }
            .product-img-wrapper.catalog-full-bleed > .product-img,
            .product-img-wrapper.catalog-full-bleed .product-img-stack .product-img {
                max-width: 100% !important;
                max-height: 100% !important;
                object-fit: cover;
                object-position: center top;
            }
            .checkout-layout { flex-direction: column-reverse; }
            .checkout-left, .checkout-right { padding: 30px; border: none; }
            .checkout-address-card-ui { flex: 1 1 100%; min-width: 0; }
            .product-detail-layout { grid-template-columns: 1fr; }
            .product-detail-gallery { min-height: 0; }
            .product-detail-info {
                position: static;
                max-height: none;
                overflow: visible;
                border-left: none;
                border-top: 1px solid var(--border-color);
            }
            .home-gender-split-grid {
                min-height: clamp(160px, 18vw, 240px);
            }
            .home-gender-split-tile {
                min-height: clamp(160px, 18vw, 240px);
                padding: 18px 16px;
            }
            .home-best-sellers-wrap .home-gender-split-tile {
                min-height: clamp(220px, 40vh, 360px);
                max-height: 48vh;
            }
            .home-gender-split-grid .home-gender-split-tile--banner-fill {
                height: calc(100vh - var(--header-h));
                min-height: calc(100vh - var(--header-h));
                max-height: none;
            }
            .home-women-marquee-segment .product-card {
                flex: 0 0 calc((100cqw - var(--home-marquee-gap-total)) / var(--home-marquee-cols));
                width: calc((100cqw - var(--home-marquee-gap-total)) / var(--home-marquee-cols));
                height: clamp(400px, min(82vh, calc(58cqw + 120px)), 680px);
            }
        }
        @media (max-width: 768px) {
            :root { --product-card-height: clamp(354px, min(66.56vh, 52vw + 125px), 541px); }
            #page-men,
            #page-women,
            #page-account {
                padding-top: var(--header-h) !important;
                background-color: var(--bg-white);
                background-image: linear-gradient(#000, #000);
                background-repeat: no-repeat;
                background-size: 100% var(--header-h);
                background-position: top center;
            }
            .home-image-hero .btn-white { display: none; }
            /* Sabit kahraman: mobilde masaüstü ile aynı (fixed + güvenilir çizim) */
            #page-home.active > .home-image-hero {
                position: fixed;
                left: 0;
                right: 0;
                top: 0;
                width: 100%;
                max-width: 100%;
                z-index: 12;
                margin-top: 0;
                -webkit-backface-visibility: hidden;
                backface-visibility: hidden;
            }
            .home-image-hero-spacer {
                pointer-events: none;
            }
            .home-scroll-cue {
                -webkit-tap-highlight-color: transparent;
                outline: none;
            }
            .home-scroll-cue:focus,
            .home-scroll-cue:focus-visible,
            .home-scroll-cue:active {
                outline: none;
                box-shadow: none;
                background: transparent;
            }
            /* NAVBAR LOCK (mobile): keep fixed and non-moving. */
            .navbar {
                padding: 0 6px;
                align-items: center;
                position: fixed !important;
                top: 0 !important;
                left: 0 !important;
                right: 0 !important;
                width: 100% !important;
                transform: translateY(0) !important;
            }
            .brand-logo {
                position: relative;
                left: auto;
                justify-self: center;
                transform: none;
                animation: none !important;
                max-width: calc(100vw - 132px);
                height: 100%;
                align-self: center;
            }
            .nav-area-left {
                padding-left: 14px;
                min-width: 0;
                height: 100%;
                align-self: center;
                align-items: center;
            }
            .nav-utils {
                gap: 4px;
                padding-left: clamp(10px, 2.5vw, 16px);
                padding-right: 8px;
                height: 100%;
                align-self: center;
                align-items: center;
            }
            .nav-area-left,
            .nav-utils {
                min-width: 0;
                flex: 1 1 0;
            }
            .nav-area-left { justify-content: flex-start; }
            .nav-utils { justify-content: flex-end; }
            .nav-fav-btn,
            .cart-btn {
                width: 40px;
                height: 40px;
            }
            .nav-utils > .nav-fav-btn,
            .nav-utils > .cart-btn {
                width: 40px;
                height: 40px;
                flex-basis: 40px;
            }
            .nav-fav-btn svg,
            .cart-icon-svg {
                width: 28px;
                height: 28px;
            }
            .cart-icon-svg {
                width: 31px;
                height: 31px;
            }
            .category-hero { flex-direction: column; height: auto; min-height: 0; } .hero-text-side { padding: 40px 20px; } .hero-image-side { height: 300px; }
            .brand-logo:hover .brand-logo__row,
            .brand-logo:focus-visible .brand-logo__row {
                transform: translateY(-1px);
            }
            .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .filter-item { flex: 1 1 0; min-width: 0; width: auto; padding: 12px 14px; } .cart-drawer { width: 100%; }
            .product-card { height: var(--product-card-height); }
            .product-grid > .product-card {
                height: clamp(333px, min(66.56vh, calc(58.2cqw + 104px)), 541px);
            }
            .express-checkout { flex-direction: column; }
            .detail-size-grid { grid-template-columns: repeat(5, 1fr); }
            .detail-feature-pills { grid-template-columns: 1fr; }
            .detail-gallery-grid { grid-template-columns: 1fr; }
            .detail-gallery-cell.span-2 { grid-column: auto; }
            /* Çerez: mobilde yarı ekranı kaplamasın; metin kısaysa scroll */
            body.has-cookie-banner { padding-bottom: min(120px, 28dvh); }
            .cookie-banner {
                flex-direction: column;
                align-items: stretch;
                max-height: 300px;
                max-height: min(42dvh, 300px);
                padding: 10px 12px 12px;
                gap: 8px 10px;
            }
            .cookie-banner-text {
                flex: 0 1 auto;
                min-height: 0;
                max-width: 100%;
                max-height: 120px;
                max-height: min(22dvh, 120px);
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
                font-size: 11px;
                line-height: 1.38;
            }
            .cookie-banner-actions { flex-shrink: 0; justify-content: flex-start; flex-wrap: wrap; gap: 6px 8px; }
            .cookie-solid-btn { padding: 8px 12px; font-size: 10px; letter-spacing: 0.55px; }
            .cookie-link-btn { font-size: 11px; }
            .cookie-banner.prefs-expanded { max-height: min(72dvh, 520px); }
            .cookie-banner.prefs-expanded .cookie-banner-text { max-height: min(28dvh, 200px); }
            /* Üst logo: açılış scale animasyonu + dar alan = iOS’ta çift/yarılı metin; mobilde sade, sıkı harf aralığı */
            .brand-logo {
                min-width: 0;
                animation: none !important;
                opacity: 1;
                transform: none;
                /* Dar şerit: hamburger+ikonlar için alan; telefonda okunaklı boy */
                font-size: clamp(11px, 3.1vw, 18px);
                max-width: min(100%, calc(100vw - 158px));
            }
            .brand-logo__word { letter-spacing: 0.34em; }
            .brand-logo__mark {
                min-width: 0;
                width: max-content;
                column-gap: 0.1em;
                --brand-mark-scale-x: 1.06;
                --brand-mark-scale-y: 1.32;
            }
            .brand-logo__word:first-of-type {
                padding-right: 0.32em;
            }
            .brand-logo__word:last-of-type {
                padding-left: 0.62em;
            }
            .brand-logo__amp {
                padding-inline: 0.18em;
                font-weight: 600;
                font-synthesis: weight;
            }
            .brand-logo__row { will-change: auto; }
            .navbar.navbar--transparent-top .brand-logo {
                text-shadow:
                    0 1px 0 rgba(104, 72, 12, 0.72),
                    0 0 5px rgba(255, 235, 168, 0.62),
                    0 0 13px rgba(255, 220, 116, 0.40) !important;
            }
            .account-dash-cards { grid-template-columns: 1fr; }
            .account-dash-tab-logout { margin-left: 0; }
            .account-dash-nav { justify-content: flex-start; }
            .home-gender-split-grid {
                grid-template-columns: 1fr 1fr;
                min-height: 0;
            }
            .home-gender-split-tile {
                min-height: clamp(96px, 20vw, 140px);
                padding: 16px 14px;
            }
            .home-best-sellers-wrap .home-gender-split-tile {
                height: auto;
                min-height: clamp(220px, 48vw, 360px);
                max-height: 60vh;
            }
            .home-gender-split-grid .home-gender-split-tile--banner-fill {
                height: calc(100vh - var(--header-h));
                min-height: calc(100vh - var(--header-h));
                max-height: none;
            }
            .home-women-marquee-segment .product-card {
                flex: 0 0 calc((100cqw - var(--home-marquee-gap-total)) / var(--home-marquee-cols));
                width: calc((100cqw - var(--home-marquee-gap-total)) / var(--home-marquee-cols));
                height: clamp(333px, min(66.56vh, calc(58.2cqw + 104px)), 541px);
            }
            .section-heading {
                padding: 14px 16px 13px;
                font-size: 16px;
                text-align: center;
            }
            .product-title { font-size: 12px; }
            .product-price { font-size: 11px; }
            .hover-panel-title { font-size: 11px; }
            .card-size-top-row { margin-bottom: 10px; }
            .size-grid { gap: 4px; }
            .size-btn { padding: 7px 0 6px; min-height: 34px; font-size: 12px; }
            .quick-add-size-top { margin-bottom: 11px; }
            .quick-add-size-grid { gap: 4px; }
            .quick-add-size-grid .size-btn { min-height: 34px; padding: 7px 0 6px; font-size: 12px; }
            .add-to-cart-btn { padding: 9px 6px; font-size: 10px; letter-spacing: 0.8px; }
        }
        @media (max-width: 768px) and (orientation: landscape) {
            .product-grid > .product-card {
                height: clamp(270px, min(72.8vh, calc(45.7cqw + 83px)), 437px);
            }
            .home-women-marquee-segment .product-card {
                height: clamp(270px, min(72.8vh, calc(45.7cqw + 83px)), 437px);
            }
        }
