        /* Bu sayfada mobilde haber akışını gizle */
        @media (max-width: 991.98px) {
            .header-notification {
                display: none !important;
            }
        }

            /* Mobil Filtreleme Stilleri */
            .mobile-filter-section {
                padding: 12px 0;
                background: #f8f9fa;
                margin-bottom: 10px;
            }

            .mobile-search-wrapper {
                position: relative;
                margin-bottom: 12px;
            }

            .mobile-search-form {
                display: flex;
                gap: 0;
                background: #fff;
                border-radius: 12px;
                overflow: hidden;
                box-shadow: 0 2px 8px rgba(0,0,0,0.08);
                border: 1px solid #e5e7eb;
            }

            .mobile-search-input-wrapper {
                flex: 1;
                display: flex;
                align-items: center;
                padding: 0 12px;
            }

            .mobile-search-icon {
                color: #9ca3af;
                font-size: 16px;
                margin-right: 10px;
            }

            .mobile-search-input {
                flex: 1;
                border: none;
                outline: none;
                font-size: 15px;
                padding: 14px 0;
                background: transparent;
                color: #374151;
            }

            .mobile-search-input::placeholder {
                color: #9ca3af;
            }

            .mobile-search-btn {
                background: #326c3a;
                color: #fff;
                border: none;
                padding: 14px 24px;
                font-size: 15px;
                font-weight: 600;
                cursor: pointer;
                transition: background 0.2s;
            }

            .mobile-search-btn:hover {
                background: #245524; color: #fff;
            }

            /* Kategori Chip'leri */
            .mobile-category-chips {
                display: flex;
                gap: 4px;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }

            .mobile-category-chips::-webkit-scrollbar {
                display: none;
            }

            .mobile-category-chip {
                display: inline-flex;
                align-items: center;
                gap: 6px;
                padding: 10px 16px;
                background: #fff;
                border: 1px solid #e5e7eb;
                border-radius: 24px;
                font-size: 14px;
                font-weight: 500;
                color: #374151;
                white-space: nowrap;
                text-decoration: none;
                transition: all 0.2s;
                flex-shrink: 0;
            }

            .mobile-category-chip:hover {
                border-color: #326c3a;
                color: #326c3a;
            }

            .mobile-category-chip.active {
                background: #326c3a;
                border-color: #326c3a;
                color: #fff;
            }

            .mobile-category-chip i {
                font-size: 14px;
            }

            /* Alt Filtre Chip'leri */
            .mobile-filter-chips {
                display: flex;
                gap: 4px;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }

            /* Tip chips - dropdown için overflow visible */
            .mobile-tip-chips {
                overflow: visible;
                flex-wrap: wrap;
            }

            .mobile-filter-chips::-webkit-scrollbar {
                display: none;
            }

            .mobile-filter-chip {
                display: inline-flex;
                align-items: center;
                gap: 5px;
                padding: 8px 14px;
                background: #fff;
                border: 1px solid #e5e7eb;
                border-radius: 20px;
                font-size: 13px;
                font-weight: 500;
                color: #4b5563;
                white-space: nowrap;
                cursor: pointer;
                transition: all 0.2s;
                flex-shrink: 0;
            }

            .mobile-filter-chip:hover {
                border-color: #9ca3af;
            }

            .mobile-filter-chip.active {
                background: #326c3a;
                border-color: #326c3a;
                color: #fff;
            }

            /* Tum mobil chiplere harman yesili cerceve (pasif durum) */
            .mobile-category-chip:not(.active),
            .mobile-filter-chip:not(.active) {
                border-color: #326c3a;
                color: #326c3a;
            }

            .mobile-filter-chip i {
                font-size: 12px;
            }

            .mobile-filter-chip.loading {
                background: #f3f4f6;
                color: #9ca3af;
                cursor: wait;
            }

            .mobile-filter-chip.disabled {
                background: #f9fafb;
                color: #d1d5db;
                cursor: not-allowed;
                border-color: #f3f4f6;
            }

            /* Haber akışı stili: en son açık olan chip satırı otomatik kayar */
            .mobile-filter-chips.is-marquee {
                overflow: hidden !important;
                position: relative;
                -webkit-mask-image: linear-gradient(to right, transparent, #000 18px, #000 calc(100% - 18px), transparent);
                mask-image: linear-gradient(to right, transparent, #000 18px, #000 calc(100% - 18px), transparent);
            }
            .mobile-filter-chips.is-marquee .chip-marquee-track {
                display: flex;
                gap: 4px;
                width: max-content;
                animation: harman-chip-marquee var(--marquee-duration, 28s) linear infinite;
            }
            .mobile-filter-chips.is-marquee:hover .chip-marquee-track,
            .mobile-filter-chips.is-marquee.paused .chip-marquee-track {
                animation-play-state: paused;
            }
            .mobile-filter-chips.is-marquee .chip-marquee-row {
                display: flex;
                gap: 4px;
                flex-shrink: 0;
                padding-right: 4px;
            }
            .mobile-filter-chips.is-marquee .chip-marquee-row[aria-hidden="true"] {
                pointer-events: none;
            }
            @keyframes harman-chip-marquee {
                from { transform: translateX(0); }
                to { transform: translateX(-50%); }
            }
            @media (prefers-reduced-motion: reduce) {
                .mobile-filter-chips.is-marquee .chip-marquee-track { animation: none; }
            }

            /* Mobil Sırala Dropdown */
            .mobile-sort-dropdown {
                position: relative;
                flex-shrink: 0;
                z-index: 1;
            }

            .mobile-sort-dropdown .dropdown-menu {
                min-width: 180px;
                border-radius: 10px;
                box-shadow: 0 4px 12px rgba(0,0,0,0.15);
                border: none;
                padding: 8px 0;
                z-index: 1000;
            }

            .mobile-sort-dropdown .dropdown-item {
                padding: 10px 16px;
                font-size: 14px;
            }

            .mobile-sort-dropdown .dropdown-item:active,
            .mobile-sort-dropdown .dropdown-item:hover {
                background: #f3f4f6;
                color: #374151;
            }

            /* Chip Satırları Arasında Boşluk */
            .mobile-altkategori-chips,
            .mobile-tur-chips,
            .mobile-tip-chips {
                margin-top:8px;
            }

            /* Genişletilmiş Filtreler */
            .mobile-extra-filters {
                background: #fff;
                border-radius: 12px;
                padding: 16px;
                margin-top: 12px;
                box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            }

            .mobile-extra-filters .filter-group {
                margin-bottom: 14px;
            }

            .mobile-extra-filters .filter-group:last-of-type {
                margin-bottom: 16px;
            }

            .mobile-extra-filters .filter-group label {
                display: block;
                font-size: 13px;
                font-weight: 600;
                color: #374151;
                margin-bottom: 6px;
            }

            .mobile-filter-select {
                width: 100%;
                padding: 10px 12px;
                border: 1px solid #e5e7eb;
                border-radius: 8px;
                font-size: 14px;
                color: #374151;
                background: #fff;
                cursor: pointer;
            }

            .mobile-extra-filters .price-inputs {
                display: flex;
                align-items: center;
                gap: 5px;
            }

            .mobile-extra-filters .price-inputs input {
                flex: 1;
                padding: 10px 6px;
                border: 1px solid #e5e7eb;
                border-radius: 8px;
                font-size: 14px;
            }

            .mobile-extra-filters .price-inputs span {
                color: #9ca3af;
            }

            .mobile-apply-filter-btn {
                width: 100%;
                padding: 12px;
                background: #326c3a;
                color: #fff;
                border: none;
                border-radius: 10px;
                font-size: 15px;
                font-weight: 600;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
                transition: background 0.2s;
            }

            .mobile-apply-filter-btn:hover {
                background: #2a5c32; color: #fff;
            }

            /* Pazarlık Ribbon */
            .teklif-ribbon {
                position: absolute;
                top: 12px;
                right: -5px;
                background: linear-gradient(135deg, #f5a623 0%, #e8930c 100%);
                color: #fff;
                padding: 6px 14px 6px 12px;
                font-size: 11px;
                font-weight: 700;
                z-index: 1001;
                display: flex;
                align-items: center;
                gap: 5px;
                box-shadow: 0 2px 8px rgba(245, 166, 35, 0.4);
                border-radius: 4px 0 0 4px;
            }
            .teklif-ribbon::after {
                content: '';
                position: absolute;
                right: 0;
                top: 100%;
                border-left: 5px solid #c77a08;
                border-top: 0 solid transparent;
                border-bottom: 5px solid transparent;
            }
            .teklif-ribbon svg {
                width: 14px;
                height: 14px;
                fill: #fff;
            }

            @media (max-width: 768px) {
                .product-box-3 .add-to-cart-box {
                    display: none !important;
                }
                .teklif-ribbon {
                    font-size: 10px;
                    padding: 5px 10px 5px 8px;
                }
            }

            /* İlan Kart Butonları */
            .ilan-card-buttons {
                margin-top: auto;
                padding-top: 10px;
            }
            .btn-teklif-ver {
                display: block;
                width: 100%;
                text-align: center;
                padding: 10px 12px;
                background: #326c3a;
                color: #fff !important;
                border-radius: 8px;
                font-size: 13px;
                font-weight: 600;
                text-decoration: none;
                transition: background 0.2s;
            }
            .btn-teklif-ver:hover {
                background: #2a5c32;
                color: #fff !important;
            }
            .btn-ilanima-git {
                background: #f59e0b !important;
                border-color: #f59e0b !important;
                color: #fff !important;
            }
            .btn-ilanima-git:hover {
                background: #d97706 !important;
                border-color: #d97706 !important;
            }
                        .btn-teklif-ver-disabled {
                display: block;
                width: 100%;
                text-align: center;
                padding: 10px 12px;
                background: #9ca3af !important;
                color: #fff !important;
                border-radius: 8px;
                font-size: 13px;
                font-weight: 600;
                text-decoration: none;
                cursor: not-allowed;
                pointer-events: none;
            }

            /* ========================================
               İLAN KARTI STİLLERİ
               ======================================== */

            /* Kart Temel Yapısı */
            .product-list-section .product-box-3 {
                display: flex;
                flex-direction: column;
                height: 100%;
                background: #fff;
                border-radius: 12px;
                overflow: hidden;
                box-shadow: 0 2px 8px rgba(0,0,0,0.08);
                transition: all 0.2s ease;
                position: relative;
            }

            .product-list-section .product-box-3:hover {
                box-shadow: 0 4px 16px rgba(0,0,0,0.12);
            }

            /* Resim Alanı */
            .product-list-section .product-box-3 .product-header {
                position: relative;
                width: 100%;
                height: 160px;
                padding: 0;
                margin: 0;
                background: #f5f5f5;
                overflow: hidden;
            }

            .product-list-section .product-box-3 .product-image {
                width: 100%;
                height: 100%;
                position: relative;
            }

            /* Splide Slider */
            .product-list-section .product-box-3 .splide {
                height: 100%;
                position: relative;
                width: 100%;
            }

            .product-list-section .product-box-3 .splide__track {
                height: 100%;
                overflow: hidden;
            }

            .product-list-section .product-box-3 .splide__list {
                height: 100%;
                display: flex !important;
                flex-wrap: nowrap !important;
                margin: 0 !important;
                padding: 0 !important;
            }

            .product-list-section .product-box-3 .splide__slide {
                height: 100%;
                flex-shrink: 0 !important;
                width: 100% !important;
            }

            .product-list-section .product-box-3 .splide__slide a {
                display: block;
                width: 100%;
                height: 100%;
            }

            .product-list-section .product-box-3 .splide__slide img {
                width: 100%;
                height: 160px;
                object-fit: cover;
                display: block;
            }

            /* Slider Pagination (Noktalar) */
            .product-list-section .product-box-3 .splide__pagination {
                position: absolute !important;
                bottom: 8px !important;
                left: 50% !important;
                right: auto !important;
                transform: translateX(-50%) !important;
                width: auto !important;
                display: flex !important;
                justify-content: center !important;
                align-items: center !important;
                gap: 4px !important;
                padding: 4px 8px !important;
                margin: 0 !important;
                z-index: 10 !important;
                background: rgba(0, 0, 0, 0.3) !important;
                border-radius: 12px !important;
            }

            .product-list-section .product-box-3 .splide__pagination li {
                line-height: 0 !important;
                margin: 0 !important;
                padding: 0 !important;
                display: inline-flex !important;
            }

            .product-list-section .product-box-3 .splide__pagination__page {
                width: 6px !important;
                height: 6px !important;
                min-width: 6px !important;
                min-height: 6px !important;
                background: rgba(255,255,255,0.5) !important;
                border: none !important;
                border-radius: 50% !important;
                padding: 0 !important;
                margin: 0 2px !important;
                cursor: pointer;
                transition: all 0.2s ease;
                opacity: 1 !important;
                display: block !important;
            }

            .product-list-section .product-box-3 .splide__pagination__page.is-active {
                background: #fff !important;
                width: 16px !important;
                min-width: 16px !important;
                border-radius: 3px !important;
            }

            /* Resim yoksa varsayılan */
            .product-list-section .product-box-3 .product-image > a > img {
                width: 100%;
                height: 160px;
                object-fit: cover;
                display: block;
            }

            /* Etiket (Alıcı/Satıcı) */
            .product-list-section .product-box-3 .etiket {
                position: absolute;
                top: 10px;
                left: 10px;
                z-index: 5;
                padding: 4px 10px;
                border-radius: 16px;
                font-size: 11px;
                font-weight: 600;
                color: #fff;
            }
            .product-list-section .product-box-3 .etiket.etiket-alici { background: #0a58ca !important; }
            .product-list-section .product-box-3 .etiket.etiket-satici { background: #326c3a !important; }
            .product-list-section .product-box-3 .etiket.etiket-isveren { background: #fd7e14 !important; }
            .product-list-section .product-box-3 .etiket.etiket-isci { background: #6f42c1 !important; }

            /* Favori (kalp) butonu — ilan kartinin sag ust kosesi */
            .product-list-section .product-box-3 .favori-toggle-btn {
                position: absolute !important;
                top: 8px !important;
                right: 8px !important;
                left: auto !important;
                bottom: auto !important;
                z-index: 10 !important;
                width: 34px;
                height: 34px;
                padding: 0;
                border: none;
                border-radius: 50%;
                background: rgba(255,255,255,0.92);
                box-shadow: 0 2px 6px rgba(0,0,0,0.15);
                color: #9ca3af;
                font-size: 16px;
                cursor: pointer;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                transition: transform 0.15s ease, color 0.15s ease, background 0.15s ease;
                margin: 0;
            }
            .product-list-section .product-box-3 .favori-toggle-btn:hover {
                transform: scale(1.08);
                background: #fff;
                color: #ef4444;
            }
            .product-list-section .product-box-3 .favori-toggle-btn.is-active {
                color: #ef4444;
                background: #fff;
            }
            .product-list-section .product-box-3 .favori-toggle-btn.is-loading {
                opacity: 0.6;
                pointer-events: none;
            }
            .product-list-section .product-box-3 .favori-toggle-btn.pop {
                animation: favoriPop 0.32s ease-out;
            }
            @keyframes favoriPop {
                0% { transform: scale(1); }
                40% { transform: scale(1.25); }
                100% { transform: scale(1); }
            }

            /* İçerik Alanı */
            .product-list-section .product-box-3 .product-footer {
                flex: 1;
                display: flex;
                flex-direction: column;
                padding: 10px;
                position: relative;
            }

            .product-list-section .product-box-3 .product-detail {
                flex: 1;
                display: flex;
                flex-direction: column;
                height: 100%;
            }

            /* Başlık */
            .product-list-section .product-box-3 .product-detail .name {
                font-size: calc(17px + 1 * (100vw - 320px) / 1600) !important;
                font-weight: 600;
                color: #374151;
                margin: 0 0 2px 0;
                line-height: 1.35;
                word-wrap: break-word;
                overflow-wrap: break-word;
                overflow: hidden;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                min-height: calc(1.35em * 2);
            }

            /* Fiyat */
            .product-list-section .product-box-3 .price {
                margin: 0 0 4px 0;
            }
            .product-list-section .product-box-3 .price .theme-color {
                font-size: 16px;
                font-weight: 700;
                color: #326c3a;
            }

            /* Mobil Responsive */
            @media (max-width: 575.98px) {
                .product-list-section .product-box-3 .product-header {
                    height: 130px;
                }

                .product-list-section .product-box-3 .splide__slide img,
                .product-list-section .product-box-3 .product-image > a > img {
                    height: 130px;
                }

                .product-list-section .product-box-3 .product-footer {
                    padding: 8px;
                }

                .product-list-section .product-box-3 .price .theme-color {
                    font-size: 14px;
                }

                /* Mobil Pagination */
                .product-list-section .product-box-3 .splide__pagination {
                    bottom: 6px !important;
                    padding: 3px 6px !important;
                }

                .product-list-section .product-box-3 .splide__pagination__page {
                    width: 5px !important;
                    height: 5px !important;
                    min-width: 5px !important;
                    min-height: 5px !important;
                    margin: 0 1px !important;
                }

                .product-list-section .product-box-3 .splide__pagination__page.is-active {
                    width: 12px !important;
                    min-width: 12px !important;
                }
                .product-list-section .ilan-meta-row { font-size: 10px !important; gap: 3px !important; }
                .product-list-section .ilan-meta-row span { word-break: keep-all; overflow-wrap: anywhere; }
            }

            /* Mobil autocomplete dropdown - body'de olacak */
            #mobile-autocomplete {
                position: fixed !important;
                background: white;
                border-radius: 8px;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
                max-height: 400px;
                overflow-y: auto;
                z-index: 999999 !important;
                display: none;
            }

            #searchResults {
                position: fixed !important;
                background: white;
                border-radius: 8px;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
                max-height: 400px;
                overflow-y: auto;
                z-index: 999999 !important;
                display: none;
            }

            #searchResults.active {
                display: block;
            }

            #searchResults .list-group-item {
                border: none;
                border-bottom: 1px solid #f0f0f0;
                padding: 12px 15px;
                transition: background-color 0.2s;
            }

            #searchResults .list-group-item:hover {
                background-color: #f8f9fa;
            }

            #searchResults .list-group-item:last-child {
                border-bottom: none;
            }

            .search-category-header {
                background-color: #f8f9fa;
                padding: 8px 15px;
                font-weight: 600;
            font-size: 12px;
            color: #666;
            text-transform: uppercase;
            border-bottom: 1px solid #e0e0e0;
        }
