        /* ============================================================
           ZAFİR NATURAL v3.0 — DESIGN TOKENS
           Tasarım sistemine TAM UYUMLU
           ============================================================ */
        .zf-shop-wrapper {
            /* === RENK PALETİ === */
            /* Derin Orman Yeşili */
            --zafir-yesil-950: #070D09;
            --zafir-yesil-900: #0F1A14;
            --zafir-yesil-800: #1A2B20;
            --zafir-yesil-700: #243D2C;
            --zafir-yesil-600: #2E5038;
            --zafir-yesil-500: #1A2B20;
            --zafir-yesil-400: #4E7A5A;
            --zafir-yesil-300: #6A9676;
            --zafir-yesil-200: #8EB89A;
            --zafir-yesil-100: #BDD9C5;
            --zafir-yesil-50:  #E8F3EB;

            /* Mat Altın */
            --zafir-altin-900: #32260D;
            --zafir-altin-800: #503F19;
            --zafir-altin-700: #78612C;  /* ★ KREM ZEMİNDE altın metin (WCAG AA) */
            --zafir-altin-600: #A08444;
            --zafir-altin-500: #C9A962;  /* ★ YEŞİL ZEMİNDE altın metin (WCAG AA) */
            --zafir-altin-400: #D4B878;
            --zafir-altin-300: #DEC998;
            --zafir-altin-200: #E8D9B8;
            --zafir-altin-100: #F0E8D0;
            --zafir-altin-50:  #F7F2E6;

            /* Fildişi / Krem */
            --zafir-krem-base: #FFFEF9;
            --zafir-krem-100:  #FAF6F0;
            --zafir-krem-200:  #F5F0E8;
            --zafir-krem-300:  #EDE8E0;
            --zafir-krem-400:  #E0DBD3;

            /* Semantik */
            --zafir-bg:         var(--zafir-krem-100);
            --zafir-bg-card:    var(--zafir-krem-200);
            --zafir-bg-dark:    var(--zafir-yesil-900);
            --zafir-text:       var(--zafir-yesil-800);
            --zafir-text-muted: #5C6E62;
            --zafir-text-light: var(--zafir-krem-base);
            --zafir-accent:     var(--zafir-altin-500);
            --zafir-accent-dark:var(--zafir-altin-700);
            --zafir-border:     var(--zafir-krem-400);
            --zafir-border-gold:var(--zafir-altin-300);

            /* === TİPOGRAFİ === */
            --font-display: 'Playfair Display', Georgia, serif;
            --font-heading: 'Cormorant Garamond', Georgia, serif;
            --font-ui:      'Cinzel', Georgia, serif;
            --font-body:    'Cormorant Garamond', Georgia, serif;
            --font-price:   -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

            /* Tip Skalası */
            --text-xs:   0.75rem;   /* 12px */
            --text-sm:   0.875rem;  /* 14px */
            --text-base: 1.125rem;  /* 18px */
            --text-lg:   1.375rem;  /* 22px */
            --text-xl:   1.75rem;   /* 28px */
            --text-2xl:  2.25rem;   /* 36px */
            --text-3xl:  3rem;      /* 48px */
            --text-4xl:  4rem;      /* 64px */
            --text-hero: clamp(2.5rem, 7vw + 1.5rem, 7.5rem);

            /* === BOŞLUK (8pt grid) === */
            --space-1: 0.5rem;
            --space-2: 1rem;
            --space-3: 1.5rem;
            --space-4: 2rem;
            --space-5: 3rem;
            --space-6: 4rem;
            --space-7: 6rem;
            --space-8: 8rem;
            --space-section: clamp(4rem, 8vw, 8rem);

            /* === KÖŞE === */
            --radius-sm:  2px;
            --radius-md:  4px;
            --radius-lg:  4px;
            --radius-pill: 4px;

            /* === GÖLGELER === */
            --shadow-sm:  0 1px 3px rgba(15,26,20,0.06), 0 1px 2px rgba(15,26,20,0.04);
            --shadow-md:  0 4px 16px rgba(15,26,20,0.08), 0 2px 6px rgba(15,26,20,0.04);
            --shadow-lg:  0 8px 32px rgba(15,26,20,0.12), 0 4px 12px rgba(15,26,20,0.06);
            --shadow-gold:0 0 0 1px var(--zafir-altin-300);

            /* === ANİMASYON === */
            --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
            --ease-in:       cubic-bezier(0.4, 0, 1, 1);
            --duration-fast: 180ms;
            --duration-med:  320ms;
            --duration-slow: 600ms;
        }

        /* ============================================================
           RESET & BASE
           ============================================================ */
        .zf-shop-wrapper,
        .zf-shop-wrapper *,
        .zf-shop-wrapper *::before,
        .zf-shop-wrapper *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        .zf-shop-wrapper {
            background: var(--zafir-bg);
            color: var(--zafir-text);
            font-family: var(--font-body);
            font-size: var(--text-base);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        /* ============================================================
           ANİMASYONLAR
           ============================================================ */
        @keyframes zfFadeInUp {
            from { opacity: 0; transform: translateY(24px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        @keyframes zfShimmer {
            0%   { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }
        @keyframes zfSpin { to { transform: rotate(360deg); } }
        @keyframes zfCheckBounce {
            0% { transform: scale(0); }
            50% { transform: scale(1.3); }
            100% { transform: scale(1); }
        }
        @keyframes zfSuccessGlow {
            0%   { box-shadow: 0 0 0 0 rgba(58, 95, 69, 0.4); }
            50%  { box-shadow: 0 0 0 12px rgba(26, 43, 32, 0); }
            100% { box-shadow: 0 0 0 0 rgba(58, 95, 69, 0); }
        }

        .zf-reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity var(--duration-slow) var(--ease-out),
                        transform var(--duration-slow) var(--ease-out);
        }
        .zf-reveal.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ============================================================
           HERO BÖLÜMÜ — tasarım sistemindeki .hero-example birebir
           ============================================================ */
        .zf-hero-wrapper {
            background: var(--zafir-yesil-900);
            padding: var(--space-section) var(--space-3);
            position: relative;
            overflow: hidden;
        }

        .zf-hero-wrapper::before {
            content: '';
            position: absolute;
            top: -30%;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(ellipse, rgba(201,169,98,0.10) 0%, transparent 65%);
            pointer-events: none;
            z-index: 0;
        }

        .zf-hero {
            position: relative;
            z-index: 1;
            max-width: 1100px;
            margin: 0 auto;
            text-align: center;
        }

        .zf-eyebrow {
            font-family: var(--font-ui);
            font-size: var(--text-xs);
            font-weight: 500;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--zafir-altin-400);
            margin-bottom: var(--space-3);
            opacity: 0;
            animation: zfFadeInUp 0.8s var(--ease-out) 0.1s forwards;
        }

        .zf-hero-title {
            font-family: var(--font-heading);
            font-style: normal;
            font-weight: 600;
            font-size: clamp(2.4rem, 5vw + 1rem, 5.8rem);
            color: var(--zafir-krem-base);
            line-height: 1.1;
            letter-spacing: 0;
            margin-bottom: var(--space-1);
            text-wrap: balance;
            opacity: 0;
            animation: zfFadeInUp 0.8s var(--ease-out) 0.2s forwards;
        }

        .zf-hero-signature {
            font-family: var(--font-display);
            font-style: italic;
            font-size: clamp(1.4rem, 1.6vw + 1rem, 2.4rem);
            font-weight: 400;
            color: var(--zafir-altin-300);
            line-height: 1.25;
            margin-bottom: var(--space-2);
            opacity: 0;
            animation: zfFadeInUp 0.8s var(--ease-out) 0.25s forwards;
        }

        .zf-hero-subtitle {
            font-family: var(--font-heading);
            font-size: var(--text-lg);
            font-weight: 400;
            color: var(--zafir-altin-300);
            letter-spacing: 0.05em;
            margin-bottom: var(--space-5);
            opacity: 0;
            animation: zfFadeInUp 0.8s var(--ease-out) 0.3s forwards;
        }

        .zf-hero-divider {
            width: 48px;
            height: 1px;
            background: var(--zafir-altin-500);
            margin: 0 auto var(--space-5);
            opacity: 0;
            animation: zfFadeInUp 0.8s var(--ease-out) 0.4s forwards;
        }

        .zf-hero-meta {
            display: flex;
            gap: var(--space-4);
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: var(--space-5);
            opacity: 0;
            animation: zfFadeInUp 0.8s var(--ease-out) 0.5s forwards;
        }

        .zf-hero-meta-item {
            font-family: var(--font-ui);
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--zafir-krem-300);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .zf-hero-meta-dot {
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: var(--zafir-altin-500);
            display: inline-block;
        }

        /* Marketplace badges (hero altı) */
        .zf-hero-mp {
            display: flex;
            justify-content: center;
            gap: var(--space-3);
            flex-wrap: wrap;
            opacity: 0;
            animation: zfFadeInUp 0.8s var(--ease-out) 0.6s forwards;
        }

        .zf-hero-mp-badge {
            display: inline-flex;
            align-items: center;
            gap: var(--space-1);
            padding: var(--space-1) var(--space-2);
            border: 1px solid rgba(201, 169, 98, 0.25);
            border-radius: var(--radius-md);
            background: rgba(0, 0, 0, 0.15);
            text-decoration: none;
            transition: all var(--duration-fast) var(--ease-out);
        }

        .zf-hero-mp-badge:hover {
            border-color: var(--zafir-altin-500);
            transform: translateY(-1px);
        }

        .zf-hero-mp-score {
            font-family: var(--font-price);
            font-size: 16px;
            font-weight: 700;
            color: var(--zafir-altin-500);
            font-variant-numeric: tabular-nums;
            letter-spacing: 0;
        }

        .zf-hero-mp-score small {
            font-size: 11px;
            font-weight: 500;
            opacity: 0.7;
        }

        .zf-hero-mp-label {
            font-family: var(--font-ui);
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.18em;
            color: var(--zafir-krem-300);
            text-transform: uppercase;
        }

        /* ============================================================
           MAĞAZA ANA BÖLÜMÜ
           ============================================================ */
        .zf-shop-main {
            background: var(--zafir-bg);
            padding: var(--space-section) var(--space-3);
        }

        .zf-container {
            max-width: 1300px;
            margin: 0 auto;
        }

        /* ============================================================
           FİLTRE BÖLÜMÜ — Sekmeler & Sıralama
           ============================================================ */
        .zf-filter-section {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: var(--space-3);
            flex-wrap: wrap;
            margin-bottom: var(--space-5);
            padding-bottom: var(--space-3);
            border-bottom: 1px solid var(--zafir-border);
        }

        .zf-filter-left { flex: 1; min-width: 280px; }

        .zf-filter-title {
            font-family: var(--font-ui);
            font-size: var(--text-m);
            font-weight: 500;
            color: var(--zafir-text-muted);
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: var(--space-2);
        }

        .zf-tabs {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }

        .zf-tab {
            font-family: var(--font-ui);
            font-size: 12px; /* Daha da büyütüldü */
            font-weight: 500;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            padding: 10px 20px; /* Kutular büyütüldü */
            border: 1px solid var(--zafir-border);
            background: transparent;
            color: var(--zafir-text);
            border-radius: var(--radius-md);
            cursor: pointer;
            transition: all var(--duration-fast) var(--ease-out);
            position: relative;
        }

        .zf-tab:hover {
            border-color: var(--zafir-altin-500);
            color: var(--zafir-altin-700);
        }

        .zf-tab.active {
            background: var(--zafir-yesil-800);
            border-color: var(--zafir-yesil-800);
            color: var(--zafir-altin-400);
        }

        /* Sıralama */
        .zf-sort-wrapper {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: var(--space-1);
        }

        .zf-sort-label {
            font-family: var(--font-ui);
            font-size: 12px; /* Büyütüldü */
            font-weight: 500;
            color: var(--zafir-text-muted);
            letter-spacing: 0.2em;
            text-transform: uppercase;
        }

        .zf-sort-select {
            font-family: var(--font-ui);
            font-size: 12px; /* Daha da büyütüldü */
            font-weight: 500;
            letter-spacing: 0.05em;
            color: var(--zafir-text);
            padding: 14px 44px 14px 22px; /* Katman büyütüldü */
            border: 1px solid var(--zafir-border);
            border-radius: var(--radius-md);
            background-color: var(--zafir-krem-base);
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231A2B20' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            min-width: 200px;
            transition: border-color var(--duration-fast);
        }

        .zf-sort-select:hover,
        .zf-sort-select:focus {
            border-color: var(--zafir-altin-500);
            outline: none;
        }

        /* ============================================================
           ÜRÜN GRID
           ============================================================ */
        .zf-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: var(--space-3);
        }

        .zf-grid:not(.active) { display: none !important; }

        .zf-empty {
            grid-column: 1 / -1;
            text-align: center;
            padding: var(--space-6);
            font-family: var(--font-body);
            font-style: italic;
            color: var(--zafir-text-muted);
            font-size: var(--text-base);
        }

        /* ============================================================
           ÜRÜN KARTI — tasarım sistemindeki .product-card birebir
           ============================================================ */
        .zf-card {
            position: relative;
            background: var(--zafir-bg-card);
            border: 1px solid var(--zafir-border);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: box-shadow var(--duration-med) var(--ease-out),
                        transform var(--duration-med) var(--ease-out);
        }

        .zf-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
        }

        .zf-card.sold-out {
            opacity: 0.85;
        }

        .zf-card-link {
            position: absolute;
            inset: 0;
            z-index: 1;
        }

        /* Ürün görsel kutusu — KOYU YEŞİL zemin (tasarım sistemi) */
        .zf-card-image {
            position: relative;
            background: var(--zafir-yesil-900);
            height: 240px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .zf-card-image::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, rgba(201,169,98,0.10) 0%, transparent 60%);
            pointer-events: none;
            transition: opacity var(--duration-med) var(--ease-out);
        }

        .zf-card-image img {
            position: relative;
            z-index: 2;
            max-width: 70%;
            max-height: 80%;
            object-fit: contain;
            transition: transform var(--duration-slow) var(--ease-out);
            filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
        }

        .zf-card:hover .zf-card-image img {
            transform: scale(1.04);
        }

        /* Hızlı bak — koyu zeminde altın outlined (SADECE masaüstü hover'ında görünür) */
        .zf-quick-view {
            position: absolute;
            bottom: var(--space-2);
            left: 50%;
            transform: translateX(-50%) translateY(8px);
            z-index: 10;
            opacity: 0;
            font-family: var(--font-ui);
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--zafir-altin-500);
            background: transparent;
            border: 1px solid var(--zafir-altin-500);
            padding: 8px 16px;
            border-radius: var(--radius-md);
            text-decoration: none;
            transition: all var(--duration-fast) var(--ease-out);
            white-space: nowrap;
        }

        .zf-card:hover .zf-quick-view {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        .zf-quick-view:hover {
            background: var(--zafir-altin-500) !important;
            color: var(--zafir-yesil-900) !important;
        }

        /* Badge (İndirim / Tükendi) */
        .zf-card-badge {
            position: absolute;
            top: var(--space-2);
            left: var(--space-2);
            z-index: 5;
            font-family: var(--font-ui);
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            padding: 4px 10px;
            border-radius: var(--radius-sm);
        }

        .zf-card-badge.sale {
            color: var(--zafir-altin-500);
            border: 1px solid var(--zafir-altin-500);
            background: transparent;
        }

        .zf-card-badge.sold-out {
            color: var(--zafir-krem-300);
            border: 1px solid var(--zafir-krem-300);
            background: transparent;
        }

        /* === KART GÖVDE === */
        .zf-card-info {
            padding: var(--space-3);
        }

        /* Kategori etiketi — Cinzel, krem zeminde altın-700 (WCAG AA)
           DÜZELTME: 9px kalmıştı (önceki okunabilirlik turunda gözden kaçmış) → 11px */
        .zf-shop-wrapper .zf-card-cat,
        .zf-shop-wrapper .zf-card-cat *,
        .zf-shop-wrapper .zf-card-cat a {
            font-family: var(--font-ui) !important;
            font-size: 11px !important;
            font-weight: 500 !important;
            letter-spacing: 0.2em !important;
            text-transform: uppercase !important;
            color: var(--zafir-text-muted) !important;
            text-decoration: none !important;
            margin-bottom: var(--space-1) !important;
            display: inline-block !important;
        }

        /* Ürün adı — Cormorant 28px (tasarım sistemi --text-xl) */
        .zf-shop-wrapper .zf-card-title {
            font-family: var(--font-heading) !important;
            font-size: var(--text-xl) !important;
            font-weight: 600 !important;
            color: var(--zafir-yesil-800) !important;
            line-height: 1.2 !important;
            letter-spacing: 0 !important;
            margin-bottom: var(--space-1) !important;
            display: block !important;
            -webkit-line-clamp: unset !important;
            -webkit-box-orient: unset !important;
            overflow: visible !important;
            white-space: normal !important;
            word-wrap: break-word !important;
            min-height: unset !important;
        }

        .zf-card-title a {
            color: inherit !important;
            text-decoration: none !important;
        }

        /* ★ YENİ: Doğrulanmış pazaryeri puanı (sadece gerçek veri olan ürünlerde) */
        .zf-card-rating {
            font-family: var(--font-ui);
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--zafir-altin-700);
            margin-top: 6px;
            margin-bottom: 2px;
        }

        /* ★ YENİ: Lab açıklama satırı */
        .zf-card-lab,
        .product-card-lab {
            font-family: var(--font-body);
            font-size: 12px;
            color: var(--zafir-altin-700);
            font-style: italic;
            line-height: 1.5;
            letter-spacing: 0.12em;
            margin-top: 8px;
            margin-bottom: 4px;
            padding-bottom: var(--space-2);
            border-bottom: 1px solid var(--zafir-border);
        }

        /* ★ YENİ: Stat pill sırası */
        .zf-card-stat {
            display: flex;
            gap: var(--space-1);
            flex-wrap: wrap;
            margin-bottom: var(--space-2);
        }

        .zf-stat-pill {
            font-family: var(--font-ui);
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            background: var(--zafir-yesil-900);
            color: var(--zafir-altin-400);
            padding: 4px 10px;
            border-radius: var(--radius-pill);
            line-height: 1.4;
        }

        /* === FİYAT VE CTA === */
        .zf-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: var(--space-2);
            margin-top: var(--space-2);
        }

        .zf-card-footer-left {
            display: flex;
            flex-direction: column;
            gap: 2px;
            min-width: 0;
            flex: 1;
        }

        .zf-card-price {
            display: inline-flex;
            align-items: baseline;
            gap: 8px;
            flex-wrap: wrap;
        }

        /* Fiyat — system font (tasarım sistemi --font-price) */
        .zf-price-current {
            font-family: var(--font-price);
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--zafir-yesil-800);
            font-variant-numeric: tabular-nums;
            letter-spacing: -0.01em;
            line-height: 1;
        }

        .zf-price-old {
            font-family: var(--font-price);
            font-size: var(--text-sm);
            color: var(--zafir-text-muted);
            text-decoration: line-through;
            font-weight: 400;
            font-variant-numeric: tabular-nums;
        }

        .zf-price-currency {
            font-family: var(--font-price);
            font-size: 1rem;
            font-weight: 500;
            color: var(--zafir-text-muted);
            margin-left: 1px;
        }

        /* ★ YENİ: Birim fiyat */
        .zf-card-price-unit {
            font-family: var(--font-body);
            font-size: var(--text-xs);
            color: var(--zafir-text-muted);
            font-style: italic;
            display: block;
            line-height: 1.4;
        }

        /* CTA — outlined Cinzel buton */
        .zf-btn-cart {
            position: relative;
            display: inline-flex !important;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-family: var(--font-ui) !important;
            font-size: 10px !important;
            font-weight: 500 !important;
            letter-spacing: 0.12em !important;
            text-transform: uppercase !important;
            color: var(--zafir-yesil-800) !important;
            background: transparent !important;
            border: 1px solid var(--zafir-yesil-800) !important;
            padding: 10px 18px !important;
            border-radius: var(--radius-md) !important;
            text-decoration: none !important;
            cursor: pointer;
            transition: all var(--duration-fast) var(--ease-out);
            z-index: 3;
            white-space: nowrap;
            flex-shrink: 0;
            box-shadow: none;
        }

        .zf-btn-cart:hover {
            background: var(--zafir-yesil-800) !important;
            color: var(--zafir-krem-base) !important;
            transform: translateY(-1px);
        }

        .zf-btn-cart-icon { display: none; }
        .zf-btn-glow { display: none; }
        .zf-btn-arrow { display: none; }
        .zf-btn-check {
            display: none;
            font-size: 12px;
            color: var(--zafir-altin-400);
        }

        /* CTA durumları */
        .zf-btn-cart.is-loading {
            color: var(--zafir-text-muted) !important;
            border-color: var(--zafir-border) !important;
            cursor: wait;
            pointer-events: none;
        }

        .zf-btn-cart.is-loading::after {
            content: "";
            display: inline-block;
            width: 10px;
            height: 10px;
            border: 1.5px solid var(--zafir-text-muted);
            border-top-color: transparent;
            border-radius: 50%;
            animation: zfSpin 0.6s linear infinite;
            margin-left: 6px;
        }

        .zf-btn-cart.is-added {
            background: var(--zafir-yesil-500) !important;
            border-color: var(--zafir-yesil-500) !important;
            color: var(--zafir-krem-base) !important;
            animation: zfSuccessGlow 1.2s var(--ease-out);
        }

        .zf-btn-cart.is-added .zf-btn-check {
            display: inline-block;
            color: var(--zafir-krem-base);
            animation: zfCheckBounce 0.4s var(--ease-out);
        }

        /* Stokta yok metin */
        .zf-btn-sold {
            font-family: var(--font-ui);
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--zafir-text-muted);
            padding: 10px 18px;
            border: 1px solid var(--zafir-border);
            border-radius: var(--radius-md);
            background: transparent;
            text-decoration: line-through;
        }

        /* === PROMO ETİKETİ === */
        .zf-promo {
            margin-top: var(--space-2);
            padding-top: var(--space-2);
            border-top: 1px solid var(--zafir-border);
        }

        .zf-promo-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-family: var(--font-ui);
            font-size: 11px; /* 9px'ten büyütüldü */
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--zafir-altin-700);
            border: 1px solid var(--zafir-altin-500);
            background: rgba(201, 169, 98, 0.08); /* Hafif krem-altın zemin eklendi */
            padding: 6px 14px; /* Büyütüldü */
            border-radius: var(--radius-pill);
            margin-bottom: var(--space-1);
        }

        .zf-promo-note {
            display: block;
            font-family: var(--font-body);
            font-size: 15px; /* Daha da büyütüldü */
            font-style: italic;
            color: var(--zafir-text-muted);
            line-height: 1.5;
            margin-top: 4px;
        }

        /* === SPECIAL OFFER === */
        .zf-special {
            margin-top: var(--space-1);
        }

        .zf-special-tag {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-family: var(--font-ui);
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--zafir-altin-400);
            background: var(--zafir-yesil-800);
            padding: 4px 10px;
            border-radius: var(--radius-pill);
        }

        /* === SEPETE EKLE ANİMASYON GHOST === */
        .zf-product-ghost {
            position: fixed;
            width: 60px;
            height: 60px;
            object-fit: contain;
            pointer-events: none;
            z-index: 999999;
            transition: all 0.7s cubic-bezier(0.5, -0.5, 0.7, 1.5);
            border-radius: var(--radius-sm);
            opacity: 0;
        }

        .zf-product-ghost.phase-start { opacity: 1; transform: scale(1); }
        .zf-product-ghost.phase-fly   { opacity: 0.7; transform: scale(0.4); }
        .zf-product-ghost.phase-end   { opacity: 0; transform: scale(0.1); }

        .zf-card-image.pulse img {
            animation: zfCheckBounce 0.5s var(--ease-out);
        }

        /* ============================================================
           RESPONSIVE
           ============================================================ */
        .zf-shop-wrapper, .zf-shop-wrapper *, .zf-shop-wrapper *::before, .zf-shop-wrapper *::after {
            box-sizing: border-box;
        }

        @media (max-width: 900px) {
            .zf-hero-wrapper { padding: var(--space-6) var(--space-3); }
            .zf-hero-meta { gap: var(--space-3); }
        }

        @media (max-width: 768px) {
            .zf-shop-wrapper { font-size: 1rem; }

            .zf-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--space-2);
            }

            .zf-card-image { height: 180px; }
            .zf-card-image img { max-width: 75%; }

            /* DÜZELTME: "Hızlı Bak" sadece :hover ile tetikleniyor — dokunmatik
               cihazlarda hover diye bir şey olmadığı için bu buton hiçbir zaman
               görünmüyordu (ölü/erişilemez UI). Kart zaten tamamen tıklanabilir
               ve altında "Sepete Ekle" var; mobilde tamamen gizleniyor. */
            .zf-quick-view { display: none !important; }

            .zf-card-info { padding: var(--space-2); }

            .zf-shop-wrapper .zf-card-title {
                font-size: 1.25rem !important; /* 20px */
                line-height: 1.25 !important;
            }

            .zf-card-lab,
            .product-card-lab {
                font-size: 12px;
                padding-bottom: var(--space-1);
                margin-top: 8px;
                margin-bottom: 4px;
            }

            /* DÜZELTME: masaüstünde 11px'e çıkarılmıştı, mobil burada 10px'e
               geri düşürüyordu — tutarlılık için 11px'e sabitlendi. */
            .zf-stat-pill {
                font-size: 11px;
                padding: 4px 9px;
            }

            .zf-price-current { font-size: 1.25rem; }
            .zf-price-currency { font-size: 0.875rem; }
            .zf-price-old { font-size: 0.75rem; }
            .zf-card-price-unit { font-size: 0.7rem; }

            /* DÜZELTME: dolgu 8px 12px + yazı 9px ile toplam yükseklik ~28px'e
               düşüyordu (önerilen 44px dokunma hedefinin çok altında) — hem
               ince görünüyordu hem parmakla basmak zordu. Çerçeve/renk/font
               stili (ince altın/yeşil outline, Cinzel, büyük harf) AYNI kaldı,
               sadece boyut büyüdü. */
            .zf-btn-cart {
                padding: 14px 16px !important;
                font-size: 10px !important;
                min-height: 46px !important;
            }

            .zf-card-footer {
                flex-direction: column;
                align-items: stretch;
                gap: var(--space-1);
            }

            .zf-btn-cart {
                width: 100% !important;
            }

            .zf-filter-section {
                flex-direction: column;
                align-items: stretch;
                width: 100%;
                overflow: hidden;
            }

            .zf-filter-left {
                width: 100%;
                min-width: 0;
            }

            .zf-sort-wrapper {
                align-items: stretch;
                width: 100%;
            }

            .zf-sort-select {
                width: 100%;
                max-width: 100%;
            }

            /* DÜZELTME: dokunma alanı ~31px'ten biraz büyütüldü */
            .zf-tab {
                font-size: 11px;
                padding: 10px 16px;
                letter-spacing: 0.08em;
                flex-shrink: 0;
            }

            .zf-tabs {
                overflow-x: auto;
                flex-wrap: nowrap;
                padding-top: 10px;
                padding-right: 30px;
                padding-bottom: 15px;
                margin-left: -5px;
                padding-left: 5px;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }

            .zf-tabs::-webkit-scrollbar {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .zf-grid {
                grid-template-columns: 1fr;
            }
        }