﻿
        :root {
            --bg: #FFFFFF;
            --surface: #F4F6F8;
            --ink: #111111;
            --ink-muted: #6B7280;
            --ink-faint: #9CA3AF;
            --accent: #0B63F3;
            --accent-warm: #FF5C00;
            --border: #E5E7EB;
            --card-radius: 16px;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg);
            color: var(--ink);
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, .syne { font-family: 'Inter', sans-serif; }

        ::-webkit-scrollbar { width: 0; background: transparent; }

        /* ── STICKY TOP ── */
        #stickyTop {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
        }




        /* ── HEADER ── */
        header {
            position: relative;
            z-index: 1;
            background: rgba(255,255,255,0.96);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-bottom: 1px solid var(--border);
        }

        .header-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 28px;
            height: 68px;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        /* Logo */
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
            text-decoration: none;
        }
        .logo-mark {
            width: 36px;
            height: 36px;
            background: var(--ink);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        .logo-mark::before {
            content: '';
            position: absolute;
            width: 18px;
            height: 18px;
            border: 2.5px solid #fff;
            border-radius: 4px;
            transform: rotate(15deg);
        }
        .logo-mark::after {
            content: '';
            position: absolute;
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 2px;
            bottom: 7px;
            right: 7px;
        }
        .logo-text {
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            font-size: 19px;
            letter-spacing: -0.02em;
            color: var(--ink);
            line-height: 1;
        }
        .logo-sub {
            display: block;
            font-family: 'Syne', sans-serif;
            font-size: 10.5px;
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--accent);
            margin-top: 0px;
        }

        /* Search */
        .search-wrap {
            flex: 1;
            max-width: 480px;
            margin: 0 auto;
            position: relative;
        }
        .search-wrap i {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--ink-muted);
            font-size: 13px;
            pointer-events: none;
        }
        .search-input {
            width: 100%;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 11px 18px 11px 42px;
            font-family: 'Inter', sans-serif;
            font-size: 13.5px;
            color: var(--ink);
            outline: none;
            transition: border-color 0.2s, box-shadow 0.2s;
        }
        .search-input::placeholder { color: var(--ink-faint); }
        .search-input:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(0,87,255,0.08);
        }

        /* Buttons */
        .btn-ghost {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid var(--border);
            background: var(--surface);
            color: var(--ink-muted);
            cursor: pointer;
            transition: all 0.18s;
            position: relative;
            flex-shrink: 0;
        }
        .btn-ghost:hover { border-color: var(--ink); color: var(--ink); }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #0B63F3;
            color: #fff;
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.01em;
            padding: 10px 22px;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            transition: all 0.18s;
            flex-shrink: 0;
            white-space: nowrap;
            box-shadow: 0 2px 8px rgba(11,99,243,0.25);
        }
        .btn-primary:hover { background: #0952d4; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(11,99,243,0.35); }
        .btn-primary i { font-size: 11px; transition: transform 0.18s; }
        .btn-primary:hover i { transform: translateX(3px); }

        .badge {
            position: absolute;
            top: -4px;
            right: -4px;
            background: #FF3B30;
            color: #fff;
            font-size: 9px;
            font-weight: 700;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--bg);
        }

        /* ── MOBILE SEARCH ── */
        .mobile-search-bar {
            display: none;
            background: rgba(244,243,239,0.98);
            border-bottom: 1px solid var(--border);
            padding: 8px 14px;
            transition: transform 0.25s ease, opacity 0.25s ease;
        }
        .mobile-search-bar.search-hidden {
            transform: translateY(-100%);
            opacity: 0;
            pointer-events: none;
        }

        /* ── HERO STRIP ── */
        .hero-strip {
            max-width: 1400px;
            margin: 16px auto 0;
            padding: 0 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }
        .hero-slogan {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .hero-slogan-eyebrow { display: none; }
        .hero-slogan-eyebrow::before { display: none; }
        .hero-slogan-main {
            display: flex;
            flex-direction: column;
            gap: 1px;
        }
        .hero-tagline {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(20px, 2.6vw, 33px);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.15;
            color: var(--ink);
            position: relative;
            min-height: 0;
        }
        /* Rotating slogan slides */
        .hero-tagline-slide {
            display: none;
        }
        .hero-tagline-slide.active {
            display: inline;
            animation: taglineFadeIn 0.6s ease forwards;
        }
        .hero-tagline-slide.exit {
            display: inline;
            animation: taglineFadeOut 0.5s ease forwards;
        }
        .hero-tagline-line2 {
            display: block;
        }
        @keyframes taglineFadeIn {
            from { opacity: 0; transform: translateY(6px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        @keyframes taglineFadeOut {
            from { opacity: 1; transform: translateY(0); }
            to   { opacity: 0; transform: translateY(-6px); }
        }
        /* Mobile: shorter pill */
        .pill-short { display: none; }
        @media (max-width: 520px) {
            .pill-long { display: none; }
            .pill-short { display: inline; }
        }
        .hero-tagline .dot-sep {
            color: var(--ink-faint);
            font-weight: 300;
            margin: 0 3px;
        }
        .hero-tagline .hl {
            color: #0B63F3;
        }
        .hero-slogan-sub {
            font-size: 11.5px;
            font-weight: 500;
            color: #4A4A4A;
            line-height: 1.6;
            white-space: nowrap;
            letter-spacing: 0.01em;
            margin-top: 4px;
        }
        @media (max-width: 768px) {
            .hero-tagline { font-size: 19px; }
            .hero-slogan-sub { font-size: 10.5px; max-width: 240px; }
            .hero-slogan-eyebrow { display: none; }
        }
        @media (max-width: 380px) {
            .hero-tagline { font-size: 17px; }
        }
        .product-count-pill {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 6px 14px;
            font-size: 11.5px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            color: var(--ink-muted);
            white-space: nowrap;
            flex-shrink: 0;
        }
        .product-count-pill span { color: var(--ink); }

        /* ── DIVIDER ── */
        .divider {
            max-width: 1400px;
            margin: 14px auto 0;
            padding: 0 28px;
            border-top: 1px solid var(--border);
        }

        /* ── GRID ── */
        main {
            max-width: 1400px;
            margin: 28px auto 120px;
            padding: 0 28px;
        }

        #productGrid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        @media (max-width: 1100px) {
            #productGrid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
        }

        /* ── PRODUCT CARD ── */
        .product-card {
            background: #FFFFFF;
            border: 1px solid var(--border);
            border-radius: var(--card-radius);
            overflow: hidden;
            cursor: pointer;
            transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
            position: relative;
            display: flex;
            flex-direction: column;
            user-select: none;
            -webkit-user-select: none;
            -webkit-tap-highlight-color: transparent;
        }
        .product-card:hover {
            border-color: rgba(0,0,0,0.12);
            box-shadow: 0 12px 40px rgba(0,0,0,0.09);
            transform: translateY(-3px);
        }

        .product-img-wrap {
            aspect-ratio: 1;
            background: #F4F6F8;
            overflow: hidden;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .product-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
        }
        @media (hover: hover) and (pointer: fine) { .product-card:hover .product-img-wrap img { transform: scale(1.07); } }

        .card-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            font-size: 10px;
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            letter-spacing: 0.04em;
            padding: 4px 10px;
            border-radius: 6px;
            color: #fff;
            z-index: 2;
        }
        /* Etiket renk sınıfları — Tailwind JIT'e bağımlı olmadan explicit tanım */
        .card-tag.bg-red-500    { background: #EF4444; }
        .card-tag.bg-blue-500   { background: #3B82F6; }
        .card-tag.bg-yellow-500 { background: #D97706; color: #fff !important; }
        .card-tag.bg-black      { background: #111111; }
        .card-tag.bg-green-500  { background: #22C55E; }
        .card-tag.bg-purple-500 { background: #A855F7; }
        .card-tag.bg-orange-500 { background: #F97316; }
        .card-tag.bg-pink-500   { background: #EC4899; }

        .fav-btn {
            position: absolute;
            top: 6px;
            right: 6px;
            z-index: 2;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.9);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.18s;
            color: var(--ink-faint);
            /* Genişletilmiş dokunma alanı — parmakla kolayca basılır */
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }
        @media (hover: hover) and (pointer: fine) { .fav-btn:hover { color: #FF9500; background: rgba(255,255,255,1); box-shadow: 0 2px 8px rgba(0,0,0,0.12); } }
        .fav-btn.active { color: #FF9500; background: rgba(255,255,255,1); box-shadow: 0 2px 8px rgba(0,0,0,0.12); }
        .fav-btn i { font-size: 14px; pointer-events: none; }
        @media (max-width: 768px) {
            .fav-btn { width: 44px; height: 44px; top: 4px; right: 4px; }
            .fav-btn i { font-size: 15px; }
        }

        .card-body {
            padding: 14px 16px 16px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .card-code {
            font-size: 11.5px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            letter-spacing: 0;
            color: var(--ink-muted);
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 6px;
            padding: 4px 9px;
            display: inline-block;
        }
        .card-title {
            font-size: 15px;
            font-weight: 500;
            color: var(--ink);
            margin-top: 4px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .card-footer {
            margin-top: auto;
            padding-top: 12px;
            border-top: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 12px;
        }
        .card-info-btn {
            height: 30px;
            padding: 0 10px;
            border-radius: 8px;
            background: var(--surface);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
            color: var(--ink-muted);
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 600;
            white-space: nowrap;
            transition: all 0.15s;
        }
        .card-info-btn:hover { background: var(--ink); color: #fff; }
        .card-info-btn i { font-size: 11px; pointer-events: none; }

        .card-qty {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 11.5px;
            font-weight: 500;
            color: var(--ink-muted);
            background: var(--surface);
            padding: 5px 10px;
            border-radius: 8px;
        }
        .card-qty i { font-size: 10px; color: var(--ink-faint); }

        /* Loading state */
        .loading-state {
            grid-column: 1 / -1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 80px 20px;
            gap: 16px;
            color: var(--ink-muted);
        }
        .loading-spinner {
            width: 36px;
            height: 36px;
            border: 2.5px solid var(--border);
            border-top-color: var(--ink);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }
        @keyframes spin { to { transform: rotate(360deg); } }
        .loading-state p { font-size: 13px; font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: 0.04em; }

        /* Empty state */
        .empty-state {
            grid-column: 1 / -1;
            text-align: center;
            padding: 80px 20px;
            color: var(--ink-muted);
        }
        .empty-icon { font-size: 40px; margin-bottom: 16px; opacity: 0.25; }
        .empty-state h3 { font-size: 16px; font-family: 'Inter', sans-serif; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
        .empty-state p { font-size: 13px; }

        /* ── FAV DRAWER ── */
        #favDrawer {
            position: fixed;
            top: 0;
            right: 0;
            height: 100%;
            width: 100%;
            max-width: 380px;
            background: #FFFFFF;
            border-left: 1px solid var(--border);
            z-index: 60;
            transform: translateX(100%);
            transition: transform 0.3s cubic-bezier(0.32,0.72,0,1);
            display: flex;
            flex-direction: column;
        }
        .drawer-header {
            padding: 22px 22px 18px;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .drawer-title {
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .drawer-title i { color: #FF9500; }
        .drawer-body { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
        .drawer-footer { padding: 16px; border-top: 1px solid var(--border); }

        .fav-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px;
            background: var(--surface);
            border-radius: 12px;
            border: 1px solid transparent;
            transition: border-color 0.15s;
        }
        .fav-item:hover { border-color: var(--border); }
        .fav-item img { width: 48px; height: 48px; object-fit: cover; border-radius: 8px; background: #eee; }
        .fav-item-info { flex: 1; min-width: 0; }
        .fav-item-code { font-size: 10px; font-family: 'Inter', sans-serif; font-weight: 500; letter-spacing: 0.02em; color: var(--ink-muted); background: var(--surface); border: 1px solid var(--border); border-radius: 4px; padding: 2px 6px; display: inline-block; }
        .fav-item-title { font-size: 12px; font-weight: 500; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .fav-remove { width: 28px; height: 28px; border-radius: 8px; border: none; background: transparent; cursor: pointer; color: var(--ink-faint); transition: all 0.15s; display: flex; align-items: center; justify-content: center; font-size: 12px; }
        .fav-remove:hover { background: #FFE9E9; color: #FF3B30; }

        .fav-empty { text-align: center; padding: 40px 20px; color: var(--ink-muted); font-size: 13px; }
        .fav-empty i { font-size: 32px; display: block; margin-bottom: 10px; opacity: 0.2; }

        /* ── OVERLAY ── */
        #drawerOverlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.25);
            backdrop-filter: blur(4px);
            z-index: 50;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }
        #drawerOverlay.active { opacity: 1; pointer-events: auto; }

        /* ── MOBILE FAV BTN ── */
        #mobileFavBtn {
            display: none;
            position: fixed;
            bottom: 24px;
            right: 20px;
            z-index: 45;
            width: 54px;
            height: 54px;
            background: #0B63F3;
            color: #fff;
            border-radius: 12px;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            box-shadow: 0 4px 16px rgba(11,99,243,0.35);
            cursor: pointer;
            border: none;
            transition: transform 0.18s, box-shadow 0.18s;
            animation: cartBtnPulse 10s ease-in-out infinite;
        }
        #mobileFavBtn:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(11,99,243,0.5); }

        @keyframes favBtnPulse {
            0%   { box-shadow: 0 4px 16px rgba(11,99,243,0.35); transform: scale(1); }
            88%  { box-shadow: 0 4px 16px rgba(11,99,243,0.35); transform: scale(1); }
            91%  { box-shadow: 0 0 0 6px rgba(11,99,243,0.25), 0 0 0 14px rgba(11,99,243,0.1), 0 6px 24px rgba(11,99,243,0.55); transform: scale(1.1); }
            94%  { box-shadow: 0 4px 16px rgba(11,99,243,0.35); transform: scale(1); }
            97%  { box-shadow: 0 0 0 5px rgba(11,99,243,0.2), 0 0 0 11px rgba(11,99,243,0.07), 0 6px 20px rgba(11,99,243,0.45); transform: scale(1.07); }
            100% { box-shadow: 0 4px 16px rgba(11,99,243,0.35); transform: scale(1); }
        }

        /* ── LIGHTBOX ── */
        #imageModal {
            position: fixed;
            inset: 0;
            z-index: 80;
            display: none;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        #imageModal.open { display: flex; }
        #modalOverlay {
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.35);
            backdrop-filter: blur(28px) saturate(0.7);
            -webkit-backdrop-filter: blur(28px) saturate(0.7);
        }
        .modal-nav {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.12);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.15s;
            flex-shrink: 0;
            z-index: 2;
        }
        .modal-nav:hover { background: rgba(255,255,255,0.16); }
        .modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            z-index: 3;
        }
        .modal-img-wrap {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 720px;
            padding: 0 12px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-sizing: border-box;
        }
        #modalImage {
            flex: 1;
            min-width: 0;
            max-width: 100%;
            max-height: 80vh;
            object-fit: contain;
            border-radius: 12px;
            display: block;
            user-select: none;
            -webkit-user-drag: none;
            touch-action: pan-y pinch-zoom;
        }
        #modalDots {
            position: absolute;
            bottom: 18px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            display: flex;
            gap: 6px;
            align-items: center;
        }
        .modal-dot {
            width: 6px; height: 6px;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            transition: background 0.2s, transform 0.2s;
            cursor: pointer;
        }
        .modal-dot.active {
            background: #fff;
            transform: scale(1.3);
        }
        @media (max-width: 768px) {
            .modal-nav { display: none; }
            .modal-nav.modal-close { display: flex; }
            .modal-img-wrap { padding: 0; justify-content: center; }
            #modalImage { max-height: 75vh; border-radius: 8px; }
            .modal-close { top: 12px; right: 12px; width: 40px; height: 40px; }
        }

        /* ── INFO MODAL ── */
        #infoModal {
            position: fixed;
            inset: 0;
            z-index: 90;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 16px;
        }
        #infoModal.open { display: flex; }
        #infoOverlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); backdrop-filter: blur(6px); }
        #infoBox {
            background: #FFFFFF;
            border-radius: 20px;
            width: 100%;
            max-width: 420px;
            padding: 28px;
            position: relative;
            z-index: 2;
            box-shadow: 0 32px 80px rgba(0,0,0,0.2);
            transform: scale(0.96);
            transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
        }
        #infoBox.open { transform: scale(1); }
        .info-close {
            position: absolute;
            top: 16px;
            right: 16px;
        }
        #infoTitle {
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 14px;
            padding-right: 32px;
            line-height: 1.3;
        }
        #infoDesc {
            font-size: 13.5px;
            line-height: 1.7;
            color: var(--ink-muted);
            max-height: 260px;
            overflow-y: auto;
            white-space: normal;
        }

        /* ── PRODUCT DETAIL MODAL ── */
        #productDetailModal {
            position: fixed; inset: 0; z-index: 90;
            display: none; align-items: center; justify-content: center; padding: 16px;
        }
        #productDetailModal.open { display: flex; }
        #productDetailOverlay {
            position: absolute; inset: 0;
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
        }
        #productDetailBox {
            background: #FFFFFF; border-radius: 24px;
            width: 100%; max-width: 840px; max-height: 90vh; overflow: hidden;
            position: relative; z-index: 2;
            box-shadow: 0 32px 80px rgba(0,0,0,0.25);
            display: flex; flex-direction: row;
            transform: scale(0.96) translateY(8px);
            transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
        }
        #productDetailBox.open { transform: scale(1) translateY(0); }
        .pd-close {
            position: absolute; top: 14px; right: 14px; z-index: 5;
            width: 32px; height: 32px; border-radius: 50%;
            background: rgba(0,0,0,0.07); border: none; cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            color: var(--ink); font-size: 12px; transition: background 0.15s;
        }
        .pd-close:hover { background: rgba(0,0,0,0.14); }
        .pd-img-section {
            flex: 0 0 400px; background: var(--surface);
            position: relative; display: flex; align-items: center; justify-content: center;
        }
        .pd-img-wrap { width: 100%; aspect-ratio: 1; position: relative; overflow: hidden; }
        .pd-img-wrap img {
            width: 100%; height: 100%; object-fit: cover; display: block;
            pointer-events: none; -webkit-user-drag: none;
        }
        .pd-nav {
            position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
            width: 34px; height: 34px; border-radius: 50%;
            background: rgba(255,255,255,0.9); border: 1px solid rgba(0,0,0,0.08);
            color: var(--ink); display: flex; align-items: center; justify-content: center;
            cursor: pointer; transition: background 0.15s; font-size: 11px;
        }
        .pd-nav:hover { background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.12); }
        #pdPrev { left: 10px; } #pdNext { right: 10px; }
        .pd-dots {
            position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
            display: flex; gap: 6px; z-index: 3;
        }
        .pd-dot {
            width: 6px; height: 6px; border-radius: 50%;
            background: rgba(0,0,0,0.18); cursor: pointer;
            transition: background 0.2s, transform 0.2s;
        }
        .pd-dot.active { background: var(--ink); transform: scale(1.35); }
        .pd-info-section {
            flex: 1; overflow-y: auto; padding: 32px 24px; display: flex;
            flex-direction: column; gap: 10px; min-width: 0;
        }
        .pd-code-pill {
            font-size: 11px; font-weight: 600; color: var(--ink-muted);
            background: var(--surface); border: 1px solid var(--border);
            border-radius: 6px; padding: 4px 10px; display: inline-block; width: fit-content;
        }
        .pd-title {
            font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 700;
            color: var(--ink); line-height: 1.35; letter-spacing: -0.01em;
        }
        .pd-desc { font-size: 13.5px; line-height: 1.75; color: var(--ink-muted); }
        @media (max-width: 640px) {
            #productDetailModal { align-items: flex-end; padding: 0; }
            #productDetailBox {
                flex-direction: column; border-radius: 20px 20px 0 0;
                max-width: 100%; max-height: 90vh; overflow-y: auto;
            }
            .pd-img-section { flex: none; width: 100%; }
            .pd-info-section { padding: 18px 16px 32px; overflow-y: visible; }
        }

        /* ── QUOTE MODAL ── */
        #quoteModal {
            position: fixed;
            inset: 0;
            z-index: 85;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 16px;
        }
        #quoteModal.open { display: flex; }
        #quoteOverlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); backdrop-filter: blur(8px); }
        #quoteBox {
            background: #FFFFFF;
            border-radius: 24px;
            width: 100%;
            max-width: 460px;
            padding: 32px;
            position: relative;
            z-index: 2;
            box-shadow: 0 32px 80px rgba(0,0,0,0.2);
            transform: scale(0.96) translateY(8px);
            transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
        }
        #quoteBox.open { transform: scale(1) translateY(0); }
        .quote-close { position: absolute; top: 18px; right: 18px; }
        .quote-title {
            font-family: 'Inter', sans-serif;
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 6px;
            letter-spacing: -0.01em;
        }
        .quote-subtitle { font-size: 13px; color: var(--ink-muted); margin-bottom: 24px; }

        .form-group { margin-bottom: 14px; }
        .form-label {
            display: block;
            font-size: 11.5px;
            font-weight: 700;
            font-family: 'Inter', sans-serif;
            letter-spacing: 0.03em;
            color: var(--ink);
            margin-bottom: 6px;
        }
        .form-input, .form-textarea {
            width: 100%;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 12px 14px;
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            color: var(--ink);
            outline: none;
            transition: border-color 0.18s, box-shadow 0.18s;
        }
        .form-input:focus, .form-textarea:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(0,87,255,0.08);
            background: #fff;
        }
        .form-textarea { resize: none; min-height: 90px; line-height: 1.6; }
        .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .fav-codes-check {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 10px 14px;
            margin-bottom: 18px;
            cursor: pointer;
        }
        .fav-codes-check input { width: 14px; height: 14px; cursor: pointer; accent-color: var(--accent); flex-shrink: 0; }
        .fav-codes-check label { font-size: 12.5px; color: var(--ink-muted); cursor: pointer; }

        /* ── HERO TRUST ROW ── */
        .hero-trust-row {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 10px;
            flex-wrap: wrap;
        }
        .hero-trust-item {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 11px;
            font-weight: 500;
            color: var(--ink-muted);
        }
        .hero-trust-item i {
            font-size: 11px;
            color: var(--accent);
            opacity: 0.8;
        }
        .hero-trust-sep {
            width: 1px;
            height: 12px;
            background: var(--border);
            flex-shrink: 0;
        }
        @media (max-width: 768px) {
            .hero-trust-row { display: none; }
        }



        /* Body top padding = banner(42) + header(68) + rates(36) */
        body { padding-top: calc(42px + 68px + 36px); }

        @media (max-width: 768px) {
            /* marquee + header + mobile search bar */
            body { padding-top: calc(38px + 58px + 32px + 46px); }
            .header-inner { padding: 0 14px; gap: 10px; height: 58px; }
            .search-wrap { display: none; }
            .mobile-search-bar { display: block; }
            #productGrid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
            main { padding: 0 12px; margin-top: 16px; margin-bottom: 100px; }
            .hero-strip { padding: 4px 12px; margin-top: 0; flex-direction: row; align-items: center; gap: 10px; }
            .hero-strip p { display: none; }
            .divider { padding: 0 12px; margin-top: 14px; }
            #mobileFavBtn { display: flex; }
            /* hide desktop cart btn on mobile */
            #desktopCartBtn { display: none; }
            .btn-primary { padding: 9px 14px; font-size: 12px; }
            /* Push teklif btn to far right */
            .header-inner { justify-content: space-between; }
            .header-inner .search-wrap { display: none; }
            /* spacer to push btn right */
            #desktopFavBtn { margin-left: auto; }
            /* logo smaller */
            .logo-text { font-size: 15px; }
            .logo-mark { width: 30px; height: 30px; border-radius: 8px; }
            /* cards */
            .card-body { padding: 10px 11px 12px; }
            .card-title { font-size: 14px; }
            .card-code { font-size: 10.5px; padding: 3px 7px; }
            /* drawer full-width on mobile */
            #cartDrawer { max-width: 100%; border-left: none; border-top: 1px solid var(--border); top: auto; height: 85vh; border-radius: 20px 20px 0 0; bottom: 0; top: auto; transform: translateY(100%); }
            /* modals */
            #quoteBox { padding: 24px 20px; border-radius: 20px 20px 0 0; position: fixed; bottom: 0; left: 0; right: 0; width: 100%; max-width: 100%; transform: translateY(100%); border-radius: 20px 20px 0 0; max-height: 92vh; overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }
            #quoteBox.open { transform: translateY(0); }
            #quoteModal { align-items: flex-end; padding: 0; }
            #infoBox { padding: 22px 18px; }
            /* mobile cart button */
            #mobileCartBtn { bottom: 20px; right: 16px; width: 52px; height: 52px; }
            /* welcome modal — mobilde tam ekrana sığacak şekilde */
            #welcomeModal { align-items: flex-end; padding: 0; }
            .welcome-box {
                border-radius: 20px 20px 0 0;
                position: fixed;
                bottom: 0; left: 0; right: 0;
                max-width: 100%;
                max-height: 90vh;
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
            }
            .welcome-hero { padding: 20px 18px 16px; }
            .welcome-title { font-size: 24px; }
            .welcome-body { padding: 16px 18px 28px; }
            .welcome-text-block p { font-size: 13.5px; line-height: 1.7; }
            .welcome-text-highlight { padding: 12px 14px; gap: 10px; }
            .welcome-highlight-icon { width: 34px; height: 34px; font-size: 13px; }
            .welcome-close-btn { padding: 13px; font-size: 13.5px; }
        }

        @media (max-width: 380px) {
            #productGrid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
            .card-title { font-size: 13px; }
        }

        @media (min-width: 769px) {
            body { padding-top: calc(42px + 68px + 36px); }
        }

        /* ── ANIMATIONS ── */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(16px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .product-card {
            animation: fadeUp 0.35s ease both;
        }

        /* ── WELCOME MODAL ── */
        #welcomeModal {
            position: fixed;
            inset: 0;
            z-index: 200;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }
        #welcomeModal.visible {
            opacity: 1;
            pointer-events: auto;
        }
        #welcomeOverlay {
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        .welcome-box {
            position: relative;
            z-index: 2;
            background: #FFFFFF;
            border-radius: 24px;
            width: 100%;
            max-width: 480px;
            overflow: hidden;
            box-shadow: 0 40px 100px rgba(0,0,0,0.3);
            transform: translateY(28px) scale(0.96);
            transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
        }
        #welcomeModal.visible .welcome-box {
            transform: translateY(0) scale(1);
        }

        /* Header bölümü */
        .welcome-hero {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
            padding: 32px 32px 28px;
            position: relative;
            overflow: hidden;
        }
        .welcome-hero::before {
            content: '';
            position: absolute;
            width: 260px; height: 260px;
            background: var(--accent);
            border-radius: 50%;
            top: -100px; right: -80px;
            opacity: 0.1;
        }
        .welcome-title {
            font-family: 'Inter', sans-serif;
            font-size: 34px;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.03em;
            line-height: 1.1;
            position: relative;
            z-index: 1;
        }
        .welcome-title span {
            color: #4D8AFF;
        }

        /* İçerik bölümü */
        .welcome-body {
            padding: 28px 32px 32px;
        }

        /* Ana metin bloğu */
        .welcome-text-block {
            margin-bottom: 20px;
        }
        .welcome-text-block p {
            font-size: 15px;
            line-height: 1.8;
            color: #2a2a2a;
            margin: 0;
        }
        .welcome-text-block p + p {
            margin-top: 12px;
        }
        .welcome-text-block strong {
            color: #111;
            font-weight: 700;
        }
        .welcome-text-highlight {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            background: linear-gradient(135deg, #f8faff 0%, #eef3ff 100%);
            border: 1px solid rgba(11,99,243,0.12);
            border-radius: 14px;
            padding: 16px 18px;
            margin-top: 18px;
        }
        .welcome-highlight-icon {
            width: 38px;
            height: 38px;
            background: #0B63F3;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: #fff;
            font-size: 15px;
        }
        .welcome-highlight-text {
            flex: 1;
        }
        .welcome-highlight-title {
            font-size: 13px;
            font-weight: 700;
            color: #111;
            line-height: 1.4;
            margin-bottom: 3px;
        }
        .welcome-highlight-sub {
            font-size: 12px;
            font-weight: 500;
            color: #5a6a8a;
            line-height: 1.5;
        }
        /* orphaned rule removed */

        /* CTA butonu */
        .welcome-close-btn {
            width: 100%;
            background: linear-gradient(135deg, #0B63F3 0%, #1a7aff 100%);
            color: #fff;
            font-family: 'Inter', sans-serif;
            font-size: 14.5px;
            font-weight: 700;
            padding: 15px;
            border-radius: 14px;
            border: none;
            cursor: pointer;
            transition: all 0.22s;
            letter-spacing: 0.01em;
            position: relative;
            overflow: hidden;
        }
        .welcome-close-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg,
                transparent 0%,
                rgba(255,255,255,0.18) 40%,
                rgba(255,255,255,0.28) 50%,
                rgba(255,255,255,0.18) 60%,
                transparent 100%);
            transform: translateX(-100%);
            animation: btnShimmer 2.4s ease-in-out infinite;
        }
        @keyframes btnShimmer {
            0%   { transform: translateX(-100%); }
            60%  { transform: translateX(100%); }
            100% { transform: translateX(100%); }
        }
        .welcome-close-btn:hover {
            background: linear-gradient(135deg, #0952d4 0%, #0B63F3 100%);
            transform: translateY(-1px);
        }
        .welcome-dismiss {
            text-align: center;
            margin-top: 12px;
            font-size: 11.5px;
            color: var(--ink-faint);
            cursor: pointer;
            transition: color 0.15s;
        }
        .welcome-dismiss:hover { color: var(--ink-muted); }

        /* ── PREMIUM BANNER ── */
        #premiumBanner {
            height: 42px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #0a0a0a;
            transition: background 1.2s ease;
        }
        /* Ambient glow — changes per theme */
        #premiumBanner::before {
            content: '';
            position: absolute;
            inset: 0;
            opacity: 1;
            transition: background 1.2s ease;
            background: radial-gradient(ellipse 60% 120% at 50% 50%, var(--banner-glow, rgba(192,0,106,0.18)) 0%, transparent 70%);
            pointer-events: none;
        }
        /* Bottom shimmer line */
        #premiumBanner::after {
            content: '';
            position: absolute;
            bottom: 0; left: -100%; right: 0;
            height: 1px;
            width: 300%;
            background: linear-gradient(90deg,
                transparent 0%,
                var(--banner-shimmer, rgba(192,0,106,0.5)) 30%,
                rgba(255,255,255,0.25) 50%,
                var(--banner-shimmer, rgba(192,0,106,0.5)) 70%,
                transparent 100%);
            animation: shimmerLine 3.5s linear infinite;
        }
        @keyframes shimmerLine {
            0%   { transform: translateX(0); }
            100% { transform: translateX(33.33%); }
        }
        /* Theme variations */
        #premiumBanner[data-theme="fuchsia"] {
            --banner-glow: rgba(192,0,106,0.2);
            --banner-shimmer: rgba(232,0,122,0.6);
        }
        #premiumBanner[data-theme="green"] {
            --banner-glow: rgba(0,168,120,0.18);
            --banner-shimmer: rgba(0,200,140,0.55);
        }
        #premiumBanner[data-theme="blue"] {
            --banner-glow: rgba(0,87,255,0.18);
            --banner-shimmer: rgba(60,130,255,0.55);
        }
        #premiumBanner[data-theme="gold"] {
            --banner-glow: rgba(200,160,0,0.16);
            --banner-shimmer: rgba(240,190,0,0.5);
        }
        .banner-messages {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
        }
        .banner-msg {
            position: absolute;
            display: flex;
            align-items: center;
            gap: 10px;
            opacity: 0;
            transform: translateY(9px);
            transition: opacity 0.65s ease, transform 0.65s ease;
            pointer-events: none;
            white-space: nowrap;
        }
        .banner-msg.active  { opacity: 1; transform: translateY(0); }
        .banner-msg.exit    { opacity: 0; transform: translateY(-9px); }
        /* Per-message glow text */
        .banner-label {
            font-family: 'Inter', sans-serif;
            font-size: 11.5px;
            font-weight: 500;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.55);
            transition: color 1s ease;
        }
        .banner-label b {
            font-weight: 800;
            letter-spacing: 0.04em;
        }
        /* Theme text colors */
        #premiumBanner[data-theme="fuchsia"] .banner-label { color: rgba(255,180,215,0.75); }
        #premiumBanner[data-theme="fuchsia"] .banner-label b { color: #FF66B2; text-shadow: 0 0 14px rgba(232,0,122,0.7); }
        #premiumBanner[data-theme="green"]   .banner-label { color: rgba(160,240,210,0.7); }
        #premiumBanner[data-theme="green"]   .banner-label b { color: #4DFFC3; text-shadow: 0 0 14px rgba(0,200,140,0.65); }
        #premiumBanner[data-theme="blue"]    .banner-label { color: rgba(160,190,255,0.7); }
        #premiumBanner[data-theme="blue"]    .banner-label b { color: #80AAFF; text-shadow: 0 0 14px rgba(60,130,255,0.65); }
        #premiumBanner[data-theme="gold"]    .banner-label { color: rgba(255,220,100,0.7); }
        #premiumBanner[data-theme="gold"]    .banner-label b { color: #FFD84D; text-shadow: 0 0 14px rgba(240,190,0,0.65); }
        /* dot */
        .banner-dot {
            width: 5px; height: 5px;
            border-radius: 50%;
            flex-shrink: 0;
            transition: background 1s ease, box-shadow 1s ease;
        }
        /* Banner indicators */
        .banner-indicators {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 3;
            display: flex;
            gap: 5px;
            align-items: center;
        }
        .banner-ind {
            width: 4px; height: 4px;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
            transition: background 0.4s, transform 0.4s;
            cursor: pointer;
        }
        .banner-ind.active { background: rgba(255,255,255,0.7); transform: scale(1.35); }
        @media (max-width: 768px) {
            #premiumBanner { height: 38px; }
            .banner-label { font-size: 10px; letter-spacing: 0.04em; }
            .banner-indicators { right: 10px; }
        }


        /* ── FİLTRE SİSTEMİ ── */
        #filterBar {
            max-width: 1400px;
            margin: 0 auto;
            padding: 16px 28px 0;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            flex-wrap: wrap;
        }
        /* Ana Filtre butonu */
        .filter-main-btn {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.02em;
            padding: 8px 16px;
            border-radius: 8px;
            border: 1.5px solid var(--border);
            background: var(--surface);
            color: var(--ink);
            cursor: pointer;
            transition: all 0.18s;
            white-space: nowrap;
            -webkit-tap-highlight-color: transparent;
            position: relative;
        }
        .filter-main-btn:hover { border-color: var(--ink-muted); }
        .filter-main-btn.has-active {
            background: var(--ink);
            border-color: var(--ink);
            color: #fff;
        }
        .filter-main-btn i { font-size: 11px; transition: transform 0.2s; }
        .filter-main-btn.open i.fa-chevron-down { transform: rotate(180deg); }
        .filter-active-count {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #0B63F3;
            color: #fff;
            font-size: 9px;
            font-weight: 800;
            width: 16px; height: 16px;
            border-radius: 50%;
            margin-left: 2px;
        }
        /* Dropdown panel */
        .filter-dropdown {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            z-index: 30;
            background: var(--surface);
            border: 1.5px solid var(--border);
            border-radius: 16px;
            box-shadow: 0 16px 48px rgba(0,0,0,0.10);
            min-width: 280px;
            overflow: hidden;
            display: none;
        }
        .filter-dropdown.open { display: block; }
        .filter-section {
            padding: 14px 16px;
            border-bottom: 1px solid var(--border);
        }
        .filter-section:last-child { border-bottom: none; }
        /* Alt bölüm başlığı — tıklanabilir */
        .filter-section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            user-select: none;
            padding-bottom: 10px;
        }
        .filter-section-title {
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--ink-muted);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .filter-section-title i { color: var(--ink-faint); font-size: 10px; }
        .filter-section-chevron {
            color: var(--ink-faint);
            font-size: 10px;
            transition: transform 0.2s;
        }
        .filter-section-chevron.open { transform: rotate(180deg); }
        .filter-section-body {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .filter-section-body.collapsed { display: none; }
        /* Pill butonlar (etiket + kategori) */
        .filter-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 600;
            padding: 5px 12px;
            border-radius: 8px;
            border: 1.5px solid var(--border);
            background: var(--surface);
            color: var(--ink-muted);
            cursor: pointer;
            transition: all 0.15s;
            white-space: nowrap;
            -webkit-tap-highlight-color: transparent;
        }
        .filter-btn:hover { border-color: var(--ink-muted); color: var(--ink); }
        .filter-btn.active {
            background: var(--ink);
            border-color: var(--ink);
            color: #fff;
        }
        .filter-btn.active .filter-dot { opacity: 0.7; }
        .filter-btn .filter-dot {
            width: 7px; height: 7px;
            border-radius: 50%;
            flex-shrink: 0;
        }
        /* Aktif filtre pill'leri (seçilmiş olanlar filterBar dışında gösterilir) */
        .active-filters-row {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .active-filter-pill {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 600;
            padding: 5px 10px;
            border-radius: 8px;
            background: var(--ink);
            color: #fff;
            cursor: pointer;
            white-space: nowrap;
        }
        .active-filter-pill i { font-size: 9px; opacity: 0.7; }
        .active-filter-pill:hover i { opacity: 1; }
        /* Tümünü Temizle */
        .filter-clear-all {
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 600;
            color: var(--ink-muted);
            background: none;
            border: 1.5px solid var(--border);
            border-radius: 8px;
            padding: 5px 12px;
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.15s;
            display: none;
        }
        .filter-clear-all:hover { background: var(--danger); color: #fff; border-color: var(--danger); }
        /* Uygula footer */
        .filter-dropdown-footer {
            padding: 10px 16px 14px;
            border-top: 1px solid var(--border);
            display: flex;
            gap: 8px;
            align-items: center;
        }
        .filter-apply-btn {
            flex: 1;
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-weight: 700;
            padding: 8px 0;
            border-radius: 8px;
            border: none;
            background: var(--ink);
            color: #fff;
            cursor: pointer;
            transition: opacity 0.15s;
        }
        .filter-apply-btn:hover { opacity: 0.82; }
        .filter-reset-btn {
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 600;
            padding: 8px 14px;
            border-radius: 8px;
            border: 1.5px solid var(--border);
            background: none;
            color: var(--ink-muted);
            cursor: pointer;
            transition: all 0.15s;
            white-space: nowrap;
        }
        .filter-reset-btn:hover { border-color: var(--ink-muted); color: var(--ink); }
        @media (max-width: 768px) {
            #filterBar { padding: 12px 12px 0; gap: 6px; }
            .filter-dropdown { min-width: 240px; }
            .filter-main-btn { font-size: 11px; padding: 7px 13px; }
            /* Mobilde hero-strip'teki sayı pill'i gizle */
            #productCountPill { display: none !important; }
        }
        /* Mobil pill filterBar içinde */
        .product-count-pill--mobile {
            display: none;
        }
        @media (max-width: 768px) {
            .product-count-pill--mobile {
                display: flex !important;
                align-items: center;
                margin-left: auto;
            }
        }


        /* ── DÖVİZ ŞERİDİ ── */
        #ratesPanel {
            background: var(--surface);
            border-bottom: 1px solid var(--border);
            height: 36px;
            display: flex;
            align-items: center;
            overflow: hidden;
            transition: height 0.28s ease, opacity 0.28s ease;
        }
        #ratesPanel.rates-hidden {
            height: 0 !important;
            opacity: 0;
            pointer-events: none;
        }
        .rates-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 28px;
            display: flex;
            align-items: center;
            gap: 0;
            width: 100%;
            height: 100%;
        }
        .rates-label {
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--ink-faint);
            flex-shrink: 0;
            padding-right: 14px;
            border-right: 1px solid var(--border);
            margin-right: 14px;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .rates-label-dot {
            width: 5px; height: 5px;
            border-radius: 50%;
            background: #00C88C;
            box-shadow: 0 0 5px rgba(0,200,140,0.7);
            animation: ratePulse 2.2s ease-in-out infinite;
            flex-shrink: 0;
        }
        @keyframes ratePulse {
            0%,100% { opacity:1; }
            50%      { opacity:0.3; }
        }
        .rates-label-text { color: var(--ink-faint); }
        .rates-grid {
            display: flex;
            align-items: center;
            gap: 0;
            flex: 1;
            overflow: hidden;
        }
        .rate-card {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 0 16px 0 0;
            margin-right: 16px;
            border-right: 1px solid var(--border);
            flex-shrink: 0;
            white-space: nowrap;
        }
        .rate-card:last-child { border-right: none; }
        .rate-flag { display: none; }
        .rate-info { display: contents; }
        .rate-name {
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.03em;
            color: var(--ink-muted);
        }
        .rate-value {
            font-family: 'Inter', sans-serif;
            font-size: 11.5px;
            font-weight: 800;
            letter-spacing: -0.01em;
            color: var(--ink);
        }
        .rate-unit, .rate-change { display: none; }
        .rates-updated {
            font-size: 9px;
            color: var(--ink-faint);
            margin-left: auto;
            flex-shrink: 0;
            letter-spacing: 0.04em;
        }
        .rates-error { font-size: 10px; color: var(--ink-faint); }
        @media (max-width: 768px) {
            .rates-inner { padding: 0 12px; }
            .rates-label-text { display: none; }
            .rates-grid {
                overflow-x: auto;
                overflow-y: hidden;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }
            .rates-grid::-webkit-scrollbar { display: none; }
            .rate-card { padding: 0 12px 0 0; margin-right: 12px; gap: 5px; }
            .rate-value { font-size: 10.5px; }
            .rate-name { font-size: 9.5px; }
            .rates-updated { display: none; }
            /* Döviz barını mobilde gizle */
            #ratesPanel { display: none !important; }
        }

        /* ── MOBİL DÖVİZ TICKER (hero strip içinde) ── */
        #mobilRateTicker {
            display: none;
        }
        @media (max-width: 768px) {
            #mobilRateTicker {
                display: flex;
                align-items: center;
                gap: 5px;
                background: var(--surface);
                border: 1px solid var(--border);
                border-radius: 8px;
                padding: 5px 12px;
                font-family: 'Inter', sans-serif;
                white-space: nowrap;
                flex-shrink: 0;
                min-width: 90px;
                justify-content: center;
                overflow: hidden;
            }
            .mobil-rate-slide {
                display: none;
                align-items: center;
                gap: 5px;
            }
            .mobil-rate-slide.active {
                display: flex;
                animation: mobRateFade 0.4s ease;
            }
            @keyframes mobRateFade {
                from { opacity: 0; transform: translateY(4px); }
                to   { opacity: 1; transform: translateY(0); }
            }
            .mobil-rate-flag { display: none; }
            .mobil-rate-name {
                font-size: 10px;
                font-weight: 600;
                color: var(--ink-muted);
                letter-spacing: 0.03em;
            }
            .mobil-rate-value {
                font-size: 11px;
                font-weight: 800;
                color: var(--ink);
                letter-spacing: -0.01em;
            }
            .mobil-rate-dot {
                width: 4px; height: 4px;
                border-radius: 50%;
                background: #00C88C;
                flex-shrink: 0;
            }
        }


        /* ── TELEFON AKSESUAR BANNER KARTI ── */
        .phone-banner-card {
            background-color: #192035;
            background-image: radial-gradient(rgba(77,138,255,0.07) 1.5px, transparent 1.5px);
            background-size: 22px 22px;
            border: 1.5px solid rgba(11,99,243,0.55);
            border-radius: var(--card-radius);
            overflow: hidden;
            cursor: pointer;
            transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            min-height: 280px;
            animation: fadeUp 0.35s ease both;
        }
        @keyframes glowOrbit {
            0%   { transform: translate(0px,   0px); }
            12%  { transform: translate(30px,  20px); }
            25%  { transform: translate(70px,  50px); }
            37%  { transform: translate(80px,  100px); }
            50%  { transform: translate(40px,  140px); }
            62%  { transform: translate(-20px, 120px); }
            75%  { transform: translate(-60px, 60px); }
            87%  { transform: translate(-40px, 15px); }
            100% { transform: translate(0px,   0px); }
        }
        /* Single large orbiting glow */
        .phone-banner-card::before {
            content: '';
            position: absolute;
            width: 300px; height: 300px;
            background: radial-gradient(circle, rgba(77,138,255,0.22) 0%, rgba(11,99,243,0.08) 50%, transparent 70%);
            top: -110px; left: -80px;
            pointer-events: none;
            border-radius: 50%;
            will-change: transform;
            animation: glowOrbit 10s linear infinite;
        }
        .phone-banner-card::after { display: none; }
        .phone-banner-card:hover {
            border-color: rgba(77,138,255,0.9);
            box-shadow: 0 0 0 3px rgba(11,99,243,0.1), 0 16px 40px rgba(11,99,243,0.22);
            transform: translateY(-3px);
        }
        .phone-banner-bg { display: none; }
        .phone-banner-icon { display: none; }
        .phone-banner-icon-inline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, #0B63F3 0%, #4D8AFF 100%);
            border-radius: 14px;
            font-size: 20px;
            color: #fff;
            margin-bottom: 14px;
            flex-shrink: 0;
            box-shadow: 0 6px 18px rgba(11,99,243,0.5);
        }
        .phone-banner-body {
            position: relative;
            z-index: 2;
            padding: 22px 20px 20px;
        }
        .phone-banner-title {
            font-family: 'Inter', sans-serif;
            font-size: clamp(22px, 4vw, 30px);
            font-weight: 900;
            color: #fff;
            letter-spacing: -0.03em;
            line-height: 1.1;
            margin-bottom: 6px;
        }
        .phone-banner-title .phone-word {
            display: block;
            color: #5E9AFF;
        }
        .phone-banner-sub {
            font-size: 12px;
            color: rgba(255,255,255,0.38);
            font-weight: 500;
            margin-bottom: 16px;
            line-height: 1.5;
        }
        .phone-banner-btn {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: transparent;
            color: #7EB3FF;
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-weight: 700;
            padding: 8px 16px;
            border-radius: 8px;
            border: 1.5px solid rgba(77,138,255,0.45);
            cursor: pointer;
            transition: background 0.18s, border-color 0.18s, color 0.18s;
            white-space: nowrap;
            pointer-events: none;
        }
        .phone-banner-card:hover .phone-banner-btn {
            background: rgba(11,99,243,0.2);
            border-color: rgba(77,138,255,0.8);
            color: #fff;
        }
        .phone-banner-btn i { font-size: 10px; }

        /* ── MOBİL TELEFON BANNER ── */
        @media (max-width: 768px) {
            .phone-banner-card {
                grid-column: auto;
                min-height: 0;
                flex-direction: column;
                justify-content: flex-end;
                border-radius: 14px;
            }
            .phone-banner-icon-inline {
                width: 38px;
                height: 38px;
                font-size: 17px;
                margin-bottom: 11px;
            }
            .phone-banner-body {
                padding: 15px 13px 14px;
            }
            .phone-banner-title {
                font-size: 17px;
                letter-spacing: -0.025em;
                margin-bottom: 3px;
                line-height: 1.15;
            }
            .phone-banner-title .phone-word {
                display: block;
            }
            .phone-banner-sub {
                font-size: 10px;
                margin-bottom: 10px;
                color: rgba(255,255,255,0.35);
                line-height: 1.4;
            }
            .phone-banner-btn {
                font-size: 10.5px;
                padding: 7px 12px;
                border-radius: 7px;
                gap: 5px;
            }
            /* Telefon listesindeki "Tüm ürünler" kartı da tek kart */
            #phoneAllCard,
            #phoneBannerCard {
                grid-column: auto;
            }
            /* Bölüm başlığı mobil padding */
            #phoneSectionHeader {
                padding: 14px 12px 0;
            }
        }

        /* Telefon listesi başlık + geri butonu */
        #phoneSectionHeader {
            display: none;
            max-width: 1400px;
            margin: 0 auto 0;
            padding: 24px 28px 0;
            align-items: center;
            gap: 12px;
        }
        #phoneSectionHeader.visible { display: flex; }
        .phone-back-btn {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-weight: 700;
            padding: 8px 16px;
            border-radius: 8px;
            border: 1.5px solid var(--border);
            background: var(--surface);
            color: var(--ink-muted);
            cursor: pointer;
            transition: all 0.18s;
            white-space: nowrap;
        }
        .phone-back-btn:hover { border-color: var(--ink); color: var(--ink); }
        .phone-section-title {
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            font-weight: 700;
            color: var(--ink);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .phone-section-title i { color: #0B63F3; font-size: 14px; }

        /* ── TÜKENDİ OVERLAY ── */
        /* Tükendi: kart soluklaştır, resim gri yap */
        .product-card.out-of-stock { opacity: 0.78; }
        .product-card.out-of-stock .product-img-wrap img { filter: grayscale(75%); }
        /* Tükendi badge: WCAG AA — #fff on #B91C1C = 5.9:1 contrast ratio */
        .sold-out-badge {
            position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
            background: #B91C1C;
            color: #FFFFFF;
            font-family: 'Inter', sans-serif; font-size: 10.5px; font-weight: 800;
            letter-spacing: 0.1em; text-transform: uppercase;
            padding: 5px 14px; border-radius: 20px;
            white-space: nowrap; z-index: 4;
            border: 1.5px solid rgba(255,255,255,0.25);
            box-shadow: 0 2px 8px rgba(185,28,28,0.45);
            pointer-events: none;
        }
        /* Kart başlığı ve kod rengi tükenince biraz soluklaşır ama okunabilir kalır */
        .product-card.out-of-stock .card-title { color: #555; }
        .product-card.out-of-stock .card-quote-btn { opacity: 0.35; pointer-events: none; }

        /* ── FİLİGRAN & KORUMA ── */
        /* Kart üzerindeki filigran */
        .product-img-wrap::after {
            content: 'SN Global';
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Inter', sans-serif;
            font-size: clamp(13px, 3vw, 18px);
            font-weight: 800;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.22);
            text-shadow:
                0 1px 3px rgba(0,0,0,0.18),
                0 0 20px rgba(255,255,255,0.08);
            pointer-events: none;
            user-select: none;
            z-index: 3;
            transform: rotate(-22deg);
        }
        /* Lightbox'taki filigran — daha büyük */
        #modalWatermark {
            position: absolute;
            inset: 0;
            z-index: 4;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
            user-select: none;
        }
        #modalWatermark span {
            font-family: 'Inter', sans-serif;
            font-size: clamp(18px, 3.5vw, 32px);
            font-weight: 800;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.18);
            text-shadow:
                0 2px 8px rgba(0,0,0,0.22),
                0 0 32px rgba(255,255,255,0.06);
            transform: rotate(-22deg);
            white-space: nowrap;
        }
        /* Resim indirme / sağ tık engelleyici */
        #modalImage,
        .product-img-wrap img {
            pointer-events: none;
            -webkit-user-drag: none;
            user-select: none;
            -webkit-touch-callout: none;
        }
        /* Tüm img etiketleri için genel kural */
        img {
            -webkit-touch-callout: none;
        }

        /* ══════════════════════════════════════════
           KOLAY İNCELE — BUTTON
        ══════════════════════════════════════════ */
        .btn-easy-explore {
            position: relative;
            padding: 2px;
            border-radius: 10px;
            border: none;
            background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            cursor: pointer;
            flex-shrink: 0;
            transition: transform 0.18s, box-shadow 0.18s;
            box-shadow: 0 2px 12px rgba(220,39,67,0.35);
        }
        .btn-easy-explore:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 20px rgba(220,39,67,0.5);
        }
        .btn-easy-explore:active { transform: scale(0.97); }
        .easy-explore-inner {
            display: flex;
            align-items: center;
            gap: 7px;
            background: #fff;
            border-radius: 8px;
            padding: 8px 14px;
            color: #dc2743;
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            font-weight: 700;
            white-space: nowrap;
            transition: background 0.18s, color 0.18s;
        }
        .btn-easy-explore:hover .easy-explore-inner {
            background: transparent;
            color: #fff;
        }
        .easy-explore-inner i { font-size: 12px; }
        @media (max-width: 768px) {
            .easy-explore-inner { padding: 8px 10px; border-radius: 8px; }
            .easy-explore-inner i { font-size: 12px; }
            .easy-explore-text { font-size: 11px; }
        }
        @media (max-width: 360px) {
            .easy-explore-text { display: none; }
            .easy-explore-inner { padding: 8px 10px; }
        }

        /* ══════════════════════════════════════════
           KOLAY İNCELE — FULL SCREEN OVERLAY
        ══════════════════════════════════════════ */
        #exploreOverlay {
            position: fixed;
            inset: 0;
            z-index: 300;
            display: none;
            flex-direction: column;
            background: #0a0a0f;
            overflow: hidden;
            touch-action: none; /* pinch zoom engelle */
        }
        #exploreOverlay.open { display: flex; }

        /* Top bar */
        .explore-topbar {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            z-index: 10;
            padding: 14px 18px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: linear-gradient(to bottom, rgba(10,10,15,0.95) 0%, transparent 100%);
        }
        .explore-topbar-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .explore-brand {
            font-family: 'Syne', sans-serif;
            font-size: 15px;
            font-weight: 700;
            color: #fff;
            letter-spacing: -0.01em;
        }
        .explore-badge {
            font-size: 10px;
            font-weight: 700;
            padding: 3px 8px;
            border-radius: 20px;
            background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
            color: #fff;
            letter-spacing: 0.04em;
        }
        .explore-progress-wrap {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .explore-progress-text {
            font-size: 11px;
            color: rgba(255,255,255,0.45);
            font-weight: 600;
            font-family: 'Inter', sans-serif;
        }
        .explore-close-btn {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.18);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.15s, transform 0.15s;
            font-size: 15px;
            flex-shrink: 0;
        }
        .explore-close-btn:hover { background: rgba(255,255,255,0.22); transform: scale(1.07); }

        /* Card arena */
        .explore-arena {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            perspective: 1000px;
            padding: 72px 16px 0;
            overflow: hidden;
            min-height: 0;
            touch-action: pan-y;
        }

        /* Stack of next cards (behind) */
        .explore-card-stack {
            position: relative;
            width: 100%;
            max-width: 360px;
            /* Mobilde ekranı taşırmasın */
            max-width: min(360px, calc(100vw - 32px));
        }

        /* The swipeable card */
        .explore-card {
            position: absolute;
            inset: 0;
            background: #16161e;
            border-radius: 24px;
            overflow: hidden;
            box-shadow:
                0 30px 80px rgba(0,0,0,0.7),
                0 0 0 1px rgba(255,255,255,0.07);
            cursor: grab;
            touch-action: none;
            user-select: none;
            will-change: transform;
            transition: box-shadow 0.2s;
        }
        .explore-card:active { cursor: grabbing; }
        .explore-card.is-animating {
            transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.4s ease !important;
        }

        /* Ghost cards below */
        .explore-ghost {
            position: absolute;
            inset: 0;
            background: #1a1a24;
            border-radius: 24px;
            pointer-events: none;
        }
        .explore-ghost-1 {
            transform: translateY(12px) scale(0.96);
            opacity: 0.55;
            z-index: -1;
        }
        .explore-ghost-2 {
            transform: translateY(22px) scale(0.92);
            opacity: 0.3;
            z-index: -2;
        }

        /* Card image area */
        .explore-img-area {
            position: relative;
            width: 100%;
            padding-bottom: 88%;
            background: #0d0d14;
            overflow: hidden;
        }
        .explore-img-area img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            pointer-events: none;
            user-select: none;
            -webkit-user-drag: none;
        }
        /* Image transition */
        .explore-img-area img.fade-out {
            animation: imgFadeOut 0.25s ease forwards;
        }
        .explore-img-area img.fade-in {
            animation: imgFadeIn 0.35s ease forwards;
        }
        @keyframes imgFadeOut {
            from { opacity: 1; transform: scale(1); }
            to   { opacity: 0; transform: scale(1.04); }
        }
        @keyframes imgFadeIn {
            from { opacity: 0; transform: scale(1.04); }
            to   { opacity: 1; transform: scale(1); }
        }

        /* Image dots */
        .explore-img-dots {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 5px;
            z-index: 3;
        }
        .explore-img-dot {
            width: 5px; height: 5px;
            border-radius: 50%;
            background: rgba(255,255,255,0.35);
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
        }
        .explore-img-dot.active {
            background: #fff;
            transform: scale(1.3);
        }

        /* Auto image timer bar */
        .explore-img-timer {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, #f09433, #dc2743, #bc1888);
            border-radius: 0;
            animation: imgTimer 3s linear infinite;
            z-index: 3;
        }
        @keyframes imgTimer {
            from { width: 0%; }
            to   { width: 100%; }
        }
        .explore-img-timer.paused { animation-play-state: paused; }

        /* Tag overlay */
        .explore-card-tag {
            position: absolute;
            top: 14px;
            left: 14px;
            font-size: 10px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 20px;
            color: #fff;
            z-index: 4;
            letter-spacing: 0.04em;
        }

        /* Card info area */
        .explore-card-info {
            padding: 16px 18px 20px;
            background: #16161e;
        }
        .explore-card-code-row {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 6px;
        }
        .explore-card-code {
            font-size: 10px;
            font-weight: 700;
            color: rgba(255,255,255,0.4);
            letter-spacing: 0.08em;
            font-family: 'Inter', sans-serif;
            text-transform: uppercase;
        }
        .explore-card-title {
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            line-height: 1.35;
            margin-bottom: 8px;
            font-family: 'Inter', sans-serif;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .explore-card-desc {
            font-size: 12px;
            color: rgba(255,255,255,0.45);
            line-height: 1.6;
            font-family: 'Inter', sans-serif;
            max-height: 80px;
            overflow-y: auto;
            overflow-x: hidden;
            margin-bottom: 12px;
            scrollbar-width: thin;
            scrollbar-color: rgba(255,255,255,0.15) transparent;
            -webkit-overflow-scrolling: touch;
        }
        .explore-card-desc::-webkit-scrollbar { width: 3px; }
        .explore-card-desc::-webkit-scrollbar-track { background: transparent; }
        .explore-card-desc::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 2px; }
        .explore-card-meta {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .explore-card-qty {
            font-size: 11px;
            color: rgba(255,255,255,0.35);
            font-weight: 500;
            font-family: 'Inter', sans-serif;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .explore-card-qty i { font-size: 10px; }
        .explore-card-qty { display: none !important; }

        /* Like / Dislike labels on drag */
        .explore-label {
            position: absolute;
            top: 28px;
            font-size: 22px;
            font-weight: 900;
            font-family: 'Inter', sans-serif;
            letter-spacing: 0.04em;
            padding: 6px 14px;
            border-radius: 12px;
            border: 3px solid;
            opacity: 0;
            transition: opacity 0.1s;
            pointer-events: none;
            z-index: 10;
            transform: rotate(-10deg);
        }
        .explore-label.like {
            left: 20px;
            color: #00e676;
            border-color: #00e676;
            transform: rotate(-12deg);
        }
        .explore-label.nope {
            right: 20px;
            color: #ff1744;
            border-color: #ff1744;
            transform: rotate(12deg);
        }

        /* Swipe feedback overlay */
        .explore-swipe-like-overlay {
            position: absolute;
            inset: 0;
            border-radius: 24px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.1s;
            z-index: 5;
        }
        .explore-swipe-like-overlay.like  { background: linear-gradient(135deg, rgba(0,230,118,0.25), transparent); }
        .explore-swipe-like-overlay.nope  { background: linear-gradient(225deg, rgba(255,23,68,0.25), transparent); }

        /* Bottom actions */
        .explore-actions {
            width: 100%;
            padding: 8px 0 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            background: linear-gradient(to top, rgba(10,10,15,0.98) 60%, transparent 100%);
            z-index: 10;
            flex-shrink: 0;
        }

        .explore-action-btn {
            border: none;
            cursor: pointer;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.18s, box-shadow 0.18s;
            flex-shrink: 0;
        }
        .explore-action-btn:hover { transform: scale(1.1); }
        .explore-action-btn:active { transform: scale(0.95); }

        .explore-btn-nope {
            width: 58px; height: 58px;
            background: rgba(255,23,68,0.15);
            border: 2px solid rgba(255,23,68,0.4);
            color: #ff1744;
            font-size: 22px;
            box-shadow: 0 4px 20px rgba(255,23,68,0.2);
        }
        .explore-btn-nope:hover { background: rgba(255,23,68,0.25); box-shadow: 0 8px 32px rgba(255,23,68,0.35); }

        .explore-btn-quote {
            width: 72px; height: 72px;
            background: linear-gradient(135deg, #0B63F3, #0040d0);
            color: #fff;
            font-size: 20px;
            box-shadow: 0 8px 32px rgba(11,99,243,0.5);
            border-radius: 20px;
        }
        .explore-btn-quote:hover { box-shadow: 0 12px 40px rgba(11,99,243,0.7); transform: scale(1.08) translateY(-2px); }

        .explore-btn-like {
            width: 58px; height: 58px;
            background: rgba(0,230,118,0.15);
            border: 2px solid rgba(0,230,118,0.4);
            color: #00e676;
            font-size: 22px;
            box-shadow: 0 4px 20px rgba(0,230,118,0.2);
        }
        .explore-btn-like:hover { background: rgba(0,230,118,0.25); box-shadow: 0 8px 32px rgba(0,230,118,0.35); }

        .explore-btn-back {
            width: 44px; height: 44px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.12);
            color: rgba(255,255,255,0.6);
            font-size: 15px;
        }

        /* Action labels */
        .explore-action-label {
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 0.06em;
            color: rgba(255,255,255,0.3);
            text-align: center;
            margin-top: 5px;
            font-family: 'Inter', sans-serif;
        }

        .explore-action-group {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Basket tray — kart ile butonlar arasında */
        .explore-basket-tray {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 40px;
            padding: 6px 14px 6px 8px;
            z-index: 10;
            min-width: 140px;
            cursor: pointer;
            transition: background 0.18s, transform 0.18s;
            align-self: center;
            flex-shrink: 0;
        }
        .explore-basket-tray:hover { background: rgba(255,255,255,0.13); transform: translateY(-1px); }
        .explore-basket-icon {
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, #0B63F3, #004dcc);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 12px;
            flex-shrink: 0;
        }
        .explore-basket-count {
            font-size: 12px;
            font-weight: 700;
            color: #fff;
            font-family: 'Inter', sans-serif;
        }
        .explore-basket-label {
            font-size: 10px;
            color: rgba(255,255,255,0.45);
            font-family: 'Inter', sans-serif;
        }

        /* Empty state */
        .explore-done-screen {
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            flex: 1;
            gap: 16px;
            color: #fff;
            text-align: center;
            padding: 32px;
        }
        .explore-done-screen.show { display: flex; }
        .explore-done-emoji { font-size: 56px; line-height: 1; margin-bottom: 4px; }
        .explore-done-title { font-size: 22px; font-weight: 800; font-family: 'Inter', sans-serif; }
        .explore-done-sub { font-size: 14px; color: rgba(255,255,255,0.5); font-family: 'Inter', sans-serif; margin-top: 4px; max-width: 260px; }
        .explore-done-actions { display: flex; flex-direction: column; gap: 10px; width: 100%; max-width: 280px; margin-top: 16px; }
        .explore-done-btn-primary {
            padding: 14px;
            background: linear-gradient(135deg, #0B63F3, #004dcc);
            border: none;
            border-radius: 14px;
            color: #fff;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: transform 0.15s, box-shadow 0.15s;
            box-shadow: 0 6px 24px rgba(11,99,243,0.4);
        }
        .explore-done-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(11,99,243,0.55); }
        .explore-done-btn-secondary {
            padding: 13px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 14px;
            color: rgba(255,255,255,0.7);
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.15s;
        }
        .explore-done-btn-secondary:hover { background: rgba(255,255,255,0.14); }

        /* ── TUTORIAL OVERLAY ── */
        #exploreTutorial {
            position: absolute;
            inset: 0;
            z-index: 50;
            background: rgba(10,10,15,0.88);
            backdrop-filter: blur(6px);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }
        .tutorial-steps {
            width: 100%;
            max-width: 320px;
            padding: 0 24px;
        }
        .tutorial-step {
            display: none;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 12px;
            animation: tutFadeIn 0.4s ease;
        }
        .tutorial-step.active { display: flex; }
        @keyframes tutFadeIn {
            from { opacity: 0; transform: translateY(12px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        .tutorial-icon-wrap {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            margin-bottom: 4px;
        }
        .tutorial-icon-wrap.right { background: rgba(0,230,118,0.15); border: 2px solid rgba(0,230,118,0.3); }
        .tutorial-icon-wrap.left  { background: rgba(255,23,68,0.15); border: 2px solid rgba(255,23,68,0.3); }
        .tutorial-title {
            font-size: 20px;
            font-weight: 800;
            color: #fff;
            font-family: 'Inter', sans-serif;
            line-height: 1.25;
        }
        .tutorial-sub {
            font-size: 13px;
            color: rgba(255,255,255,0.55);
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            max-width: 240px;
        }
        .tutorial-swipe-anim {
            width: 60px;
            height: 60px;
            position: relative;
        }
        .tutorial-hand {
            font-size: 32px;
            animation: swipeRight 1.5s ease-in-out infinite;
        }
        .tutorial-hand.left {
            animation: swipeLeft 1.5s ease-in-out infinite;
        }
        @keyframes swipeRight {
            0%   { transform: translateX(0) rotate(-5deg); opacity: 0.7; }
            50%  { transform: translateX(20px) rotate(5deg); opacity: 1; }
            100% { transform: translateX(0) rotate(-5deg); opacity: 0.7; }
        }
        @keyframes swipeLeft {
            0%   { transform: translateX(0) rotate(5deg); opacity: 0.7; }
            50%  { transform: translateX(-20px) rotate(-5deg); opacity: 1; }
            100% { transform: translateX(0) rotate(5deg); opacity: 0.7; }
        }
        .tutorial-step-dots {
            display: flex;
            gap: 6px;
            margin-top: 8px;
        }
        .tut-dot {
            width: 6px; height: 6px;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
            transition: background 0.2s, transform 0.2s;
        }
        .tut-dot.active { background: #fff; transform: scale(1.3); }
        .tutorial-btn {
            margin-top: 20px;
            padding: 13px 36px;
            border-radius: 14px;
            border: none;
            background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
            color: #fff;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.15s, box-shadow 0.15s;
            box-shadow: 0 4px 20px rgba(220,39,67,0.4);
        }
        .tutorial-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(220,39,67,0.55); }

        /* Card height wrapper */
        .explore-card-stack {
            height: 500px;
            width: 100%;
            max-width: 360px;
            position: relative;
            flex-shrink: 0;
        }
        @media (max-width: 400px) {
            .explore-card-stack { height: 460px; }
        }
        @media (max-height: 700px) {
            .explore-card-stack { height: 400px; }
            .explore-card-info { padding: 10px 14px 12px; }
            .explore-card-title { font-size: 14px; }
            .explore-card-desc { max-height: 50px; }
        }

        /* ── CONFIRM DIALOG ── */
        #exploreConfirmDialog {
            position: absolute;
            inset: 0;
            z-index: 60;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 24px;
            background: rgba(10,10,15,0.85);
            backdrop-filter: blur(8px);
            border-radius: 0;
        }
        #exploreConfirmDialog.show { display: flex; }
        .explore-confirm-box {
            background: #1e1e2a;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 20px;
            padding: 28px 24px;
            max-width: 300px;
            width: 100%;
            text-align: center;
            box-shadow: 0 24px 60px rgba(0,0,0,0.6);
            animation: confirmPop 0.3s cubic-bezier(0.34,1.56,0.64,1);
        }
        @keyframes confirmPop {
            from { opacity:0; transform: scale(0.88); }
            to   { opacity:1; transform: scale(1); }
        }
        .explore-confirm-emoji { font-size: 40px; margin-bottom: 10px; }
        .explore-confirm-title {
            font-size: 16px;
            font-weight: 800;
            color: #fff;
            font-family: 'Inter', sans-serif;
            line-height: 1.3;
            margin-bottom: 8px;
        }
        .explore-confirm-sub {
            font-size: 12px;
            color: rgba(255,255,255,0.45);
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            margin-bottom: 22px;
        }
        .explore-confirm-btns {
            display: flex;
            gap: 10px;
        }
        .explore-confirm-btn {
            flex: 1;
            padding: 13px;
            border: none;
            border-radius: 12px;
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.15s, opacity 0.15s;
        }
        .explore-confirm-btn:hover { opacity: 0.88; transform: translateY(-1px); }
        .explore-confirm-yes {
            background: linear-gradient(135deg, #0B63F3, #004dcc);
            color: #fff;
        }
        .explore-confirm-no {
            background: rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.75);
        }

        /* ── IN-EXPLORE FAVORITES SHEET ── */
        #exploresFavSheet {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 55;
            background: #13131a;
            border-radius: 20px 20px 0 0;
            border-top: 1px solid rgba(255,255,255,0.1);
            transform: translateY(100%);
            transition: transform 0.35s cubic-bezier(0.32,0.72,0,1);
            max-height: 75%;
            display: flex;
            flex-direction: column;
            box-shadow: 0 -20px 60px rgba(0,0,0,0.5);
        }
        #exploresFavSheet.open { transform: translateY(0); }
        .efav-handle {
            width: 36px;
            height: 4px;
            background: rgba(255,255,255,0.18);
            border-radius: 2px;
            margin: 10px auto 0;
            cursor: pointer;
            flex-shrink: 0;
        }
        .efav-header {
            padding: 14px 18px 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid rgba(255,255,255,0.07);
            flex-shrink: 0;
        }
        .efav-title {
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            font-family: 'Inter', sans-serif;
            display: flex;
            align-items: center;
            gap: 7px;
        }
        .efav-title i { color: #FFB800; }
        .efav-close {
            width: 30px; height: 30px;
            border-radius: 50%;
            background: rgba(255,255,255,0.08);
            border: none;
            color: rgba(255,255,255,0.6);
            cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            font-size: 13px;
            transition: background 0.15s;
        }
        .efav-close:hover { background: rgba(255,255,255,0.14); }
        .efav-list {
            flex: 1;
            overflow-y: auto;
            padding: 10px 14px 20px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            -webkit-overflow-scrolling: touch;
        }
        .efav-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 9px 10px;
            background: rgba(255,255,255,0.05);
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.07);
        }
        .efav-item img {
            width: 44px; height: 44px;
            object-fit: cover;
            border-radius: 8px;
            flex-shrink: 0;
            background: #222;
        }
        .efav-item-info { flex: 1; min-width: 0; }
        .efav-item-code {
            font-size: 9px;
            font-weight: 700;
            color: rgba(255,255,255,0.35);
            letter-spacing: 0.06em;
            font-family: 'Inter', sans-serif;
        }
        .efav-item-title {
            font-size: 12px;
            font-weight: 600;
            color: rgba(255,255,255,0.85);
            font-family: 'Inter', sans-serif;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .efav-remove {
            width: 28px; height: 28px;
            border-radius: 8px;
            background: transparent;
            border: none;
            cursor: pointer;
            color: rgba(255,255,255,0.25);
            display: flex; align-items: center; justify-content: center;
            font-size: 13px;
            transition: background 0.15s, color 0.15s;
            flex-shrink: 0;
        }
        .efav-remove:hover { background: rgba(255,23,68,0.2); color: #ff1744; }
        .efav-empty {
            text-align: center;
            padding: 32px 20px;
            color: rgba(255,255,255,0.3);
            font-size: 13px;
            font-family: 'Inter', sans-serif;
        }
        .efav-empty i { font-size: 28px; display: block; margin-bottom: 8px; opacity: 0.3; }
        .efav-footer {
            padding: 12px 14px 16px;
            border-top: 1px solid rgba(255,255,255,0.07);
            flex-shrink: 0;
        }
        .efav-quote-btn {
            width: 100%;
            padding: 13px;
            background: linear-gradient(135deg, #0B63F3, #004dcc);
            border: none;
            border-radius: 12px;
            color: #fff;
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: opacity 0.15s;
        }
        .efav-quote-btn:hover { opacity: 0.88; }
        #exploresFavSheetOverlay {
            position: absolute;
            inset: 0;
            z-index: 54;
            background: transparent;
            display: none;
        }
        #exploresFavSheetOverlay.show { display: block; }

        /* ══════════════════════════════════════════
           PWA INSTALL BANNER
        ══════════════════════════════════════════ */
        #pwaBanner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 190;
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
            pointer-events: none;
        }
        #pwaBanner.show {
            transform: translateY(0);
            pointer-events: auto;
        }
        .pwa-banner-inner {
            margin: 0 12px 12px;
            background: #111;
            border-radius: 20px;
            padding: 16px 18px;
            display: flex;
            align-items: center;
            gap: 14px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.07);
        }
        .pwa-icon {
            width: 48px;
            height: 48px;
            background: #1a1a1a;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border: 1px solid rgba(255,255,255,0.1);
            overflow: hidden;
        }
        .pwa-icon svg { width: 28px; height: 28px; }
        .pwa-text { flex: 1; min-width: 0; }
        .pwa-title {
            font-family: 'Inter', sans-serif;
            font-size: 13.5px;
            font-weight: 700;
            color: #fff;
            line-height: 1.3;
        }
        .pwa-sub {
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            color: rgba(255,255,255,0.45);
            margin-top: 2px;
        }
        .pwa-actions {
            display: flex;
            gap: 8px;
            align-items: center;
            flex-shrink: 0;
        }
        .pwa-btn-install {
            background: linear-gradient(135deg, #0B63F3, #1a7aff);
            color: #fff;
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-weight: 700;
            padding: 9px 16px;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            white-space: nowrap;
            transition: opacity 0.18s;
        }
        .pwa-btn-install:hover { opacity: 0.88; }
        .pwa-btn-dismiss {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.12);
            color: rgba(255,255,255,0.5);
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 10px;
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.18s;
        }
        .pwa-btn-dismiss:hover { color: #fff; border-color: rgba(255,255,255,0.3); }

        /* iOS özel talimat panel */
        #pwaIosSheet {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 195;
            background: #1c1c1e;
            border-radius: 20px 20px 0 0;
            padding: 20px 22px 36px;
            transform: translateY(100%);
            transition: transform 0.38s cubic-bezier(0.32,0.72,0,1);
            box-shadow: 0 -8px 40px rgba(0,0,0,0.5);
        }
        #pwaIosSheet.show { transform: translateY(0); }
        #pwaIosOverlay {
            position: fixed; inset: 0; z-index: 194;
            background: rgba(0,0,0,0.55);
            display: none;
            backdrop-filter: blur(4px);
        }
        #pwaIosOverlay.show { display: block; }
        .ios-sheet-handle {
            width: 36px; height: 4px;
            background: rgba(255,255,255,0.2);
            border-radius: 4px;
            margin: 0 auto 18px;
        }
        .ios-sheet-title {
            font-family: 'Inter', sans-serif;
            font-size: 17px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 4px;
        }
        .ios-sheet-sub {
            font-size: 13px;
            color: rgba(255,255,255,0.45);
            margin-bottom: 20px;
            line-height: 1.5;
        }
        .ios-steps {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .ios-step {
            display: flex;
            align-items: center;
            gap: 14px;
            background: rgba(255,255,255,0.06);
            border-radius: 14px;
            padding: 12px 16px;
        }
        .ios-step-num {
            width: 28px; height: 28px;
            background: #0B63F3;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 13px; font-weight: 700; color: #fff;
            flex-shrink: 0;
        }
        .ios-step-text {
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            color: rgba(255,255,255,0.8);
            line-height: 1.4;
        }
        .ios-step-text strong { color: #fff; }
        .ios-sheet-close {
            width: 100%;
            margin-top: 20px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 14px;
            padding: 13px;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: rgba(255,255,255,0.6);
            cursor: pointer;
        }



        /* ── KART INLINE QTY CONTROL ── */
        .card-qty-inline {
            display: flex;
            align-items: center;
            gap: 0;
            border: 1.5px solid #16a34a;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
        }
        .card-qty-inline-btn {
            width: 28px;
            height: 30px;
            border: none;
            background: #f0fdf4;
            color: #16a34a;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.15s;
            line-height: 1;
            padding: 0;
        }
        .card-qty-inline-btn:hover { background: #dcfce7; }
        .card-qty-inline-num {
            min-width: 26px;
            text-align: center;
            font-size: 13px;
            font-weight: 800;
            color: #16a34a;
            background: #fff;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-left: 1px solid #bbf7d0;
            border-right: 1px solid #bbf7d0;
        }

        /* ── KART FOOTER — fiyat + buton düzeni ── */
        .card-footer {
            flex-wrap: wrap;
            gap: 8px;
        }
        .card-price-wrap {
            min-width: 0;
            flex: 1;
        }
        .cart-add-btn {
            flex-shrink: 0;
        }

        @media (max-width: 768px) {
            .card-footer {
                flex-direction: column;
                gap: 6px;
                align-items: flex-start;
            }
            .cart-add-btn {
                width: 100%;
                justify-content: center;
            }
            .card-qty-inline {
                width: auto;
                align-self: flex-start;
            }
            .cart-add-btn {
                height: 34px;
            }
        }
        /* ── IMAGE LOADING SPINNER ── */
        .img-spinner {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #F4F6F8;
            z-index: 5;
            border-radius: 0;
            transition: opacity 0.3s ease;
        }
        .img-spinner.hidden {
            opacity: 0;
            pointer-events: none;
        }
        .img-spinner-ring {
            position: relative;
            width: 36px;
            height: 36px;
        }
        .img-spinner-ring::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            border: 3.5px solid rgba(15, 15, 15, 0.1);
        }
        .img-spinner-ring::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            border: 3.5px solid transparent;
            border-top-color: #0057FF;
            animation: iphone-spin 0.85s linear infinite;
        }
        @keyframes iphone-spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* ── CART SYSTEM ── */
        .cart-add-btn {
            display: flex;
            align-items: center;
            gap: 6px;
            height: 32px;
            padding: 0 14px;
            border-radius: 8px;
            background: var(--accent);
            border: none;
            cursor: pointer;
            color: #fff;
            font-family: 'Inter', sans-serif;
            font-size: 11.5px;
            font-weight: 700;
            white-space: nowrap;
            transition: all 0.15s;
            flex-shrink: 0;
        }
        .cart-add-btn:hover { background: #0952d4; transform: translateY(-1px); }
        .cart-add-btn i { font-size: 11px; }
        .cart-add-btn.in-cart {
            background: #16a34a;
        }
        .cart-add-btn.in-cart:hover { background: #15803d; }

        /* price display */
        .card-price-wrap {
            display: flex;
            flex-direction: column;
            gap: 1px;
            cursor: pointer;
            user-select: none;
        }
        .card-price-usd {
            font-family: 'Inter', sans-serif;
            font-size: 17px;
            font-weight: 900;
            color: #0B63F3;
            letter-spacing: -0.03em;
            line-height: 1;
        }
        .card-price-unit {
            font-size: 10px;
            font-weight: 600;
            color: var(--ink-muted);
            letter-spacing: 0.02em;
        }
        .card-price-tl {
            font-size: 12px;
            font-weight: 700;
            color: #16a34a;
            display: none;
        }
        .card-preorder-label {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 700;
            color: var(--ink-muted);
            font-style: italic;
        }

        /* ── CART DRAWER ── */
        #cartDrawer {
            position: fixed;
            top: 0;
            right: 0;
            height: 100%;
            width: 100%;
            max-width: 420px;
            background: #FFFFFF;
            border-left: 1px solid var(--border);
            z-index: 60;
            transform: translateX(100%);
            transition: transform 0.3s cubic-bezier(0.32,0.72,0,1);
            display: flex;
            flex-direction: column;
        }
        .cart-header {
            padding: 22px 22px 18px;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .cart-title {
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .cart-title i { color: var(--accent); }
        .cart-body { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
        .cart-footer { padding: 16px; border-top: 1px solid var(--border); }

        .cart-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px;
            background: var(--surface);
            border-radius: 12px;
            border: 1px solid transparent;
            transition: border-color 0.15s;
        }
        .cart-item:hover { border-color: var(--border); }
        .cart-item img { width: 52px; height: 52px; object-fit: cover; border-radius: 8px; background: #eee; flex-shrink: 0; }
        .cart-item-info { flex: 1; min-width: 0; }
        .cart-item-code { font-size: 10px; font-weight: 500; color: var(--ink-muted); border: 1px solid var(--border); border-radius: 4px; padding: 2px 6px; display: inline-block; margin-bottom: 2px; }
        .cart-item-title { font-size: 12px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .cart-item-price { font-size: 12px; font-weight: 700; color: var(--accent); margin-top: 2px; }
        .cart-item-right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; flex-shrink: 0; }
        .cart-qty-ctrl {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .cart-qty-btn {
            width: 26px; height: 26px;
            border-radius: 6px;
            border: 1px solid var(--border);
            background: var(--surface);
            cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            font-size: 12px;
            font-weight: 700;
            color: var(--ink);
            transition: all 0.15s;
        }
        .cart-qty-btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
        .cart-qty-btn:active { background: var(--ink); color: #fff; border-color: var(--ink); transform: scale(0.92); }
        .cart-qty-btn, .cart-remove { -webkit-tap-highlight-color: transparent; }
        @keyframes cart-item-out { to { opacity: 0; transform: translateX(60px) scale(0.92); } }
        .cart-item-removing { animation: cart-item-out 0.28s ease forwards; pointer-events: none; }
        .cart-qty-num {
            font-size: 13px;
            font-weight: 700;
            min-width: 20px;
            text-align: center;
            cursor: pointer;
            padding: 2px 8px;
            border-radius: 6px;
            transition: background 0.12s;
            -webkit-tap-highlight-color: transparent;
            user-select: none;
        }
        .cart-qty-num:hover { background: rgba(0,0,0,0.06); }
        .cart-remove { width: 26px; height: 26px; border-radius: 6px; border: none; background: transparent; cursor: pointer; color: var(--ink-faint); transition: all 0.15s; display: flex; align-items: center; justify-content: center; font-size: 11px; }
        .cart-remove:hover { background: #FFE9E9; color: #FF3B30; }

        /* ── ADET PICKER POPUP ── */
        .qty-picker-backdrop {
            position: fixed; inset: 0; z-index: 9000;
        }
        .qty-picker-popup {
            position: fixed; z-index: 9001;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 16px;
            box-shadow: 0 12px 40px rgba(0,0,0,0.15);
            padding: 8px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 5px;
            min-width: 200px;
            animation: picker-pop 0.15s cubic-bezier(0.34,1.56,0.64,1);
        }
        @keyframes picker-pop { from { opacity:0; transform:scale(0.85); } to { opacity:1; transform:scale(1); } }
        .qty-picker-opt {
            padding: 9px 6px;
            border-radius: 10px;
            border: 1.5px solid var(--border);
            background: var(--bg);
            font-family: 'Syne', sans-serif;
            font-size: 13px;
            font-weight: 700;
            color: var(--ink);
            cursor: pointer;
            text-align: center;
            transition: all 0.12s;
            -webkit-tap-highlight-color: transparent;
        }
        .qty-picker-opt:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
        .qty-picker-opt.active { background: var(--accent); color: #fff; border-color: var(--accent); }
        .qty-picker-custom {
            grid-column: 1 / -1;
            display: flex;
            gap: 6px;
            margin-top: 2px;
        }
        .qty-picker-custom input {
            flex: 1;
            padding: 8px 10px;
            border: 1.5px solid var(--border);
            border-radius: 10px;
            font-family: 'Syne', sans-serif;
            font-size: 13px;
            font-weight: 700;
            text-align: center;
            color: var(--ink);
            background: var(--bg);
            outline: none;
        }
        .qty-picker-custom input:focus { border-color: var(--accent); background: #fff; }
        .qty-picker-custom button {
            padding: 8px 14px;
            border-radius: 10px;
            border: none;
            background: var(--ink);
            color: #fff;
            font-family: 'Syne', sans-serif;
            font-size: 12px;
            font-weight: 700;
            cursor: pointer;
            white-space: nowrap;
        }

        .cart-empty { text-align: center; padding: 40px 20px; color: var(--ink-muted); font-size: 13px; }
        .cart-empty i { font-size: 32px; display: block; margin-bottom: 10px; opacity: 0.2; }

        .cart-total-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
            border-top: 1px solid var(--border);
            margin-bottom: 10px;
        }
        .cart-total-label { font-size: 12px; font-weight: 600; color: var(--ink-muted); }
        .cart-total-usd { font-size: 18px; font-weight: 800; color: var(--ink); }
        .cart-total-tl { font-size: 12px; color: var(--ink-muted); }

        /* Mobile cart button */
        #mobileCartBtn {
            display: none;
            position: fixed;
            bottom: 24px;
            right: 20px;
            z-index: 45;
            width: 54px;
            height: 54px;
            background: #0B63F3;
            color: #fff;
            border-radius: 12px;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            box-shadow: 0 4px 16px rgba(11,99,243,0.35);
            cursor: pointer;
            border: none;
            transition: transform 0.18s, box-shadow 0.18s;
        }
        #mobileCartBtn:hover { transform: scale(1.08); }

        /* ── ORDER SUCCESS SCREEN ── */
        #orderSuccessModal {
            position: fixed;
            inset: 0;
            z-index: 200;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        #orderSuccessModal.open { display: flex; }
        #orderSuccessOverlay {
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(10px);
        }
        .order-success-box {
            position: relative;
            z-index: 2;
            background: #FFFFFF;
            border-radius: 24px;
            width: 100%;
            max-width: 460px;
            overflow: hidden;
            box-shadow: 0 40px 100px rgba(0,0,0,0.3);
            animation: successPop 0.45s cubic-bezier(0.34,1.56,0.64,1);
        }
        @keyframes successPop {
            from { opacity: 0; transform: scale(0.9) translateY(20px); }
            to { opacity: 1; transform: scale(1) translateY(0); }
        }
        .order-success-header {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
            padding: 32px 32px 28px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .order-success-header::before {
            content: '';
            position: absolute;
            width: 300px; height: 300px;
            background: #0B63F3;
            border-radius: 50%;
            top: -120px; right: -80px;
            opacity: 0.08;
        }
        .order-success-emoji {
            font-size: 52px;
            line-height: 1;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }
        .order-success-title {
            font-family: 'Inter', sans-serif;
            font-size: 22px;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.02em;
            position: relative;
            z-index: 1;
        }
        .order-success-title span { color: #4D8AFF; }
        .order-success-body { padding: 24px 28px 28px; }
        .order-code-block {
            background: linear-gradient(135deg, #f8faff, #eef3ff);
            border: 1.5px solid rgba(11,99,243,0.15);
            border-radius: 16px;
            padding: 16px 20px;
            text-align: center;
            margin-bottom: 18px;
        }
        .order-code-label {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--ink-muted);
            margin-bottom: 6px;
        }
        .order-code-value {
            font-family: 'Inter', sans-serif;
            font-size: 26px;
            font-weight: 900;
            color: #0B63F3;
            letter-spacing: 0.06em;
        }
        .order-phone-note {
            background: #fffbf0;
            border: 1px solid #fde68a;
            border-radius: 12px;
            padding: 12px 16px;
            font-size: 12.5px;
            color: #92400e;
            line-height: 1.6;
            margin-bottom: 18px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        .order-phone-note i { color: #f59e0b; font-size: 14px; flex-shrink: 0; margin-top: 1px; }
        .order-items-summary {
            margin-bottom: 16px;
        }
        .order-items-title {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--ink-muted);
            margin-bottom: 8px;
        }
        .order-item-line {
            display: flex;
            justify-content: space-between;
            font-size: 12.5px;
            padding: 4px 0;
            border-bottom: 1px solid var(--border);
        }
        .order-item-line:last-child { border-bottom: none; }
        .order-total-line {
            display: flex;
            justify-content: space-between;
            font-size: 14px;
            font-weight: 800;
            padding: 10px 0 0;
        }
        .order-success-actions {
            display: flex;
            gap: 10px;
        }
        .order-pdf-btn {
            flex: 1;
            padding: 12px;
            background: var(--ink);
            color: #fff;
            border: none;
            border-radius: 12px;
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            display: flex; align-items: center; justify-content: center; gap: 7px;
            transition: all 0.18s;
        }
        .order-pdf-btn:hover { background: #1a1a1a; }
        .order-close-btn {
            padding: 12px 20px;
            background: var(--surface);
            color: var(--ink-muted);
            border: 1px solid var(--border);
            border-radius: 12px;
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.18s;
        }
        .order-close-btn:hover { border-color: var(--ink); color: var(--ink); }
        @media (max-width: 768px) {
            #cartDrawer { max-width: 100%; border-left: none; top: auto; height: 85vh; border-radius: 20px 20px 0 0; bottom: 0; transform: translateY(100%); }
            #mobileCartBtn { display: flex; }
            #desktopCartBtn { display: none; }
            .order-success-box { border-radius: 20px 20px 0 0; position: fixed; bottom: 0; left: 0; right: 0; max-width: 100%; }
            #orderSuccessModal { align-items: flex-end; padding: 0; }
        }


        /* ── Ürün detay modal fiyat ── */
        .pd-price-display {
            display: flex;
            align-items: baseline;
            gap: 5px;
            margin-bottom: 10px;
        }
        .pd-price-val {
            font-size: 24px;
            font-weight: 800;
            color: var(--accent);
            font-family: 'Montserrat', sans-serif;
        }
        .pd-price-unit {
            font-size: 12px;
            color: var(--ink-muted);
            font-weight: 500;
        }

        /* ── Kolay İncele kart fiyat ── */
        .explore-card-price {
            font-size: 18px;
            font-weight: 800;
            color: var(--accent);
            font-family: 'Montserrat', sans-serif;
            margin-bottom: 2px;
        }

        /* ── Form bilgi notu ── */
        .form-note-info {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            background: rgba(11,99,243,0.06);
            border: 1px solid rgba(11,99,243,0.15);
            border-radius: 10px;
            padding: 10px 12px;
            margin-bottom: 12px;
            font-size: 12px;
            color: var(--ink-muted);
            line-height: 1.5;
        }
        .form-note-info i { color: var(--accent); margin-top: 1px; flex-shrink: 0; }

        /* ── Mobil input zoom önleme ── */
        @media (max-width: 768px) {
            input[type="text"], input[type="tel"], input[type="number"],
            input[type="email"], select, textarea {
                font-size: 16px !important;
            }
        }
        .cart-btn-label-mobile { display: none; }
        @media (max-width: 520px) {
            .cart-btn-label-full { display: none; }
            .cart-btn-label-mobile { display: inline; }
        }

        /* Header cart buton sayı rozeti */
        .header-cart-count {
            position: absolute;
            top: -7px;
            right: -7px;
            background: #fff;
            color: var(--accent);
            font-size: 10px;
            font-weight: 800;
            min-width: 18px;
            height: 18px;
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 4px;
            line-height: 1;
            box-shadow: 0 1px 4px rgba(0,0,0,0.18);
            pointer-events: none;
        }
        @media (max-width: 768px) {
            .header-cart-count {
                top: -8px;
                right: 0;
                left: auto;
                transform: none;
                min-width: 18px;
                height: 18px;
                font-size: 10px;
                border-radius: 9px;
                padding: 0 4px;
            }
        }
        /* placeholder — keeps compiler happy */
        ._hcc_end {
            display: none;
        }

        /* ═══════════════════════════════════════════════════════════
           F2 — MODAL SHARE BUTTONS
        ═══════════════════════════════════════════════════════════ */
        .pd-share-row {
            display: flex;
            gap: 8px;
        }
        .pd-share-btn {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-weight: 600;
            padding: 9px 12px;
            border-radius: 10px;
            border: 1.5px solid var(--border);
            background: var(--surface);
            color: var(--ink-muted);
            cursor: pointer;
            transition: all 0.15s;
            white-space: nowrap;
        }
        .pd-share-btn:hover { border-color: var(--ink-muted); color: var(--ink); }
        .pd-share-wa  { color: #128C7E; border-color: rgba(18,140,126,0.25); }
        .pd-share-wa:hover  { background: rgba(18,140,126,0.06); border-color: #128C7E; color: #128C7E; }
        .pd-share-copy:hover { color: var(--accent); border-color: var(--accent); }

        /* ═══════════════════════════════════════════════════════════
           F4 — ORDER WA BUTTON
        ═══════════════════════════════════════════════════════════ */
        .order-wa-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            background: #25D366;
            color: #fff;
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            font-weight: 700;
            padding: 10px 20px;
            border-radius: 10px;
            text-decoration: none;
            transition: background 0.15s, transform 0.15s;
        }
        .order-wa-btn:hover { background: #1aad53; transform: translateY(-1px); }

        /* ═══════════════════════════════════════════════════════════
           F10 — BOX QTY BADGE
        ═══════════════════════════════════════════════════════════ */
        .pd-box-qty {
            display: flex;
            align-items: center;
            gap: 7px;
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-weight: 600;
            color: var(--ink-muted);
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 7px 12px;
            width: fit-content;
        }
        .pd-box-qty i { color: var(--ink-faint); font-size: 11px; }
        .pd-box-qty strong { color: var(--ink); }

        /* ═══════════════════════════════════════════════════════════
           T2 — MODAL CART BUTTON
        ═══════════════════════════════════════════════════════════ */
        .pd-cart-wrap {
            margin-top: auto;
            padding-top: 16px;
            border-top: 1px solid var(--border);
        }
        .pd-cart-btn {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            background: var(--accent);
            color: #fff;
            font-family: 'Inter', sans-serif;
            font-size: 13.5px;
            font-weight: 700;
            padding: 13px 20px;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            transition: background 0.18s, transform 0.15s;
            letter-spacing: 0.01em;
        }
        .pd-cart-btn:hover { background: #0952d4; transform: translateY(-1px); }
        .pd-cart-btn.dark { background: var(--ink); }
        .pd-cart-btn.dark:hover { opacity: 0.85; }
        .pd-cart-btn.green { background: #16a34a; }
        .pd-qty-modal {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: var(--bg);
            border: 1.5px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
        }
        .pd-qty-modal-btn {
            width: 52px;
            height: 48px;
            font-size: 22px;
            font-weight: 300;
            background: transparent;
            border: none;
            cursor: pointer;
            color: var(--ink);
            transition: background 0.12s;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .pd-qty-modal-btn:hover { background: var(--border); }
        .pd-qty-modal-num {
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            font-weight: 700;
            color: var(--ink);
            min-width: 40px;
            text-align: center;
        }

        /* ═══════════════════════════════════════════════════════════
           T3 — SEARCH EMPTY STATE
        ═══════════════════════════════════════════════════════════ */
        .empty-state--search .empty-icon { font-size: 48px; opacity: 0.2; }
        .empty-state--search h3 { font-size: 18px; }
        .empty-state--search p  { max-width: 300px; margin: 0 auto 20px; line-height: 1.65; }

        /* ═══════════════════════════════════════════════════════════
           T4 — SKELETON LOADING
        ═══════════════════════════════════════════════════════════ */
        @keyframes sk-shimmer {
            0%   { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }
        .skeleton-card {
            border-radius: var(--card-radius);
            overflow: hidden;
            height: 290px;
            background: linear-gradient(90deg,
                var(--surface) 25%,
                var(--border)  50%,
                var(--surface) 75%);
            background-size: 300% 100%;
            animation: sk-shimmer 1.6s ease infinite;
        }

        /* ═══════════════════════════════════════════════════════════
           T5 — SCROLL TO TOP
        ═══════════════════════════════════════════════════════════ */
        #scrollTopBtn {
            position: fixed;
            bottom: 84px;
            right: 20px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--ink);
            color: var(--bg);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            opacity: 0;
            transform: translateY(12px);
            transition: opacity 0.25s, transform 0.25s;
            z-index: 50;
            box-shadow: 0 4px 16px rgba(0,0,0,0.2);
            pointer-events: none;
        }
        #scrollTopBtn.visible {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }
        @media (max-width: 768px) {
            #scrollTopBtn { bottom: 120px; right: 14px; width: 40px; height: 40px; font-size: 13px; }
        }

        /* ═══════════════════════════════════════════════════════════
           T6 — SORT DROPDOWN
        ═══════════════════════════════════════════════════════════ */
        .sort-dropdown {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            z-index: 30;
            background: var(--surface);
            border: 1.5px solid var(--border);
            border-radius: 14px;
            box-shadow: 0 16px 48px rgba(0,0,0,0.12);
            min-width: 190px;
            overflow: hidden;
            display: none;
        }
        .sort-dropdown.open { display: block; }
        .sort-option {
            padding: 10px 16px;
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-weight: 600;
            color: var(--ink-muted);
            cursor: pointer;
            transition: background 0.12s, color 0.12s;
            display: flex;
            align-items: center;
            gap: 8px;
            border-bottom: 1px solid var(--border);
        }
        .sort-option:last-child { border-bottom: none; }
        .sort-option:hover { background: var(--bg); color: var(--ink); }
        .sort-option.active {
            color: var(--ink);
            font-weight: 700;
        }
        .sort-option.active::before {
            content: '';
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--accent);
            flex-shrink: 0;
        }
        #sortBtn.has-sort {
            background: var(--ink);
            border-color: var(--ink);
            color: #fff;
        }
        #sortBtn .sort-label {
            max-width: 90px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        /* ═══════════════════════════════════════════════════════════
           T7 — PRICE RANGE FILTER
        ═══════════════════════════════════════════════════════════ */
        .price-range-wrap {
            display: flex;
            align-items: center;
            gap: 8px;
            padding-top: 6px;
        }
        .price-input-group {
            display: flex;
            align-items: center;
            gap: 4px;
            background: var(--bg);
            border: 1.5px solid var(--border);
            border-radius: 8px;
            padding: 6px 10px;
            flex: 1;
            transition: border-color 0.18s;
        }
        .price-input-group:focus-within { border-color: var(--accent); }
        .price-input-group span {
            font-size: 11px;
            font-weight: 700;
            color: var(--ink-muted);
        }
        .price-input-group input {
            background: transparent;
            border: none;
            outline: none;
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-weight: 600;
            color: var(--ink);
            width: 100%;
        }
        .price-input-group input::placeholder { color: var(--ink-faint); }
        .price-range-sep {
            font-size: 14px;
            color: var(--ink-faint);
            flex-shrink: 0;
        }
    