
    html, body {
        background-color: #151a26;
        -webkit-font-smoothing: antialiased;
        max-width: 100%;
        overflow-x: clip;
    }

    /* Scrollbar Özelleştirmesi */
    ::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }

    ::-webkit-scrollbar-track {
        background: #151a26;
    }

    ::-webkit-scrollbar-thumb {
        background: #242c3d;
        border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #374151;
    }

    #listings-filter-bar {
        top: var(--plv2-sticky-offset, 60px);
        transition: top 0.25s ease;
    }

    #filter-sidebar {
        top: var(--plv2-sticky-offset, 60px) !important;
        transition: top 0.25s ease;
    }

    @media (max-width: 1023px) {
        #listings-filter-bar {
            top: 0.5rem;
        }
    }

    #listings-filter-bar .postlist-v2-sort-wrap {
        flex-shrink: 0;
        max-width: min(100%, 17rem);
    }

    #sort-dropdown-btn {
        display: inline-flex;
        align-items: center;
        flex-wrap: nowrap;
        gap: 0.5rem;
        width: 100%;
        max-width: 17rem;
        min-height: 2.5rem;
        white-space: nowrap;
    }

    #sort-dropdown-label {
        flex: 1 1 auto;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    #sort-dropdown-menu {
        min-width: 100%;
        width: max-content;
        max-width: min(20rem, calc(100vw - 2rem));
    }

    #sort-dropdown-menu .sort-option {
        line-height: 1.35;
        white-space: nowrap;
    }

    /* Filtre select — referans tasarım (dropdown görünümü) */
    #filter-form-desktop .postlist-v2-filter-select,
    #filter-form-mobile .postlist-v2-filter-select {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        cursor: pointer;
        background-color: #0e1219;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239ca3af'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 0.65rem center;
        background-size: 1rem 1rem;
        padding-right: 2.25rem;
        min-height: 2.5rem;
    }

    #filter-form-desktop .postlist-v2-filter-select:focus,
    #filter-form-mobile .postlist-v2-filter-select:focus {
        border-color: rgba(255, 122, 26, 0.5) !important;
        box-shadow: none !important;
    }

    #filter-form-desktop .postlist-v2-filter-select option,
    #filter-form-mobile .postlist-v2-filter-select option {
        background-color: #1e2330;
        color: #e5e7eb;
    }

    /* Filtre Sidebar Kaydırma Çubuğu */
    .filter-sidebar-scroll {
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 122, 26, 0.2) transparent;
    }

    .filter-sidebar-scroll::-webkit-scrollbar {
        width: 4px;
    }

    .filter-sidebar-scroll::-webkit-scrollbar-track {
        background: transparent;
    }

    .filter-sidebar-scroll::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.08);
        border-radius: 99px;
    }

    .filter-sidebar-scroll::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 122, 26, 0.3);
    }

    /* Kategori listesi gibi özel alanların iç scrollbarı */
    .custom-scrollbar {
        scrollbar-width: thin;
        scrollbar-color: rgba(255,255,255,0.08) transparent;
    }
    .custom-scrollbar::-webkit-scrollbar {
        width: 5px;
    }

    .custom-scrollbar::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.01);
    }

    .custom-scrollbar::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 3px;
    }

    .custom-scrollbar::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    /* Scrollbar Gizleme */
    .no-scrollbar::-webkit-scrollbar {
        display: none;
    }
    .no-scrollbar {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    /* Mobil Bottom Sheet Açılış Efekti */
    .bottom-sheet-active {
        transform: translateY(0);
    }

    /* Premium Custom Checkbox */
    .custom-checkbox {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
        user-select: none;
        position: relative;
    }

    .custom-checkbox input[type="checkbox"] {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
        pointer-events: none;
    }

    .custom-checkbox .checkmark-box {
        width: 18px;
        height: 18px;
        border-radius: 5px;
        border: 1.5px solid rgba(255, 255, 255, 0.2);
        background-color: rgba(255, 255, 255, 0.03);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        flex-shrink: 0;
    }

    .custom-checkbox:hover .checkmark-box {
        border-color: rgba(255, 122, 26, 0.5);
        background-color: rgba(255, 255, 255, 0.07);
    }

    .custom-checkbox input[type="checkbox"]:checked + .checkmark-box {
        background-color: #FF7A1A;
        border-color: #FF7A1A;
    }

    .custom-checkbox .checkmark-icon {
        width: 10px;
        height: 10px;
        color: #fff;
        fill: none;
        stroke: currentColor;
        stroke-width: 3.5px;
        stroke-linecap: round;
        stroke-linejoin: round;
        opacity: 0;
        transform: scale(0.6);
        transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .custom-checkbox input[type="checkbox"]:checked + .checkmark-box .checkmark-icon {
        opacity: 1;
        transform: scale(1);
    }

    .custom-checkbox .checkbox-label {
        font-size: 14px;
        color: #9ca3af; /* text-gray-400 */
        font-weight: 500;
        transition: color 0.2s ease;
    }

    .custom-checkbox:hover .checkbox-label {
        color: #fff;
    }

    .custom-checkbox input[type="checkbox"]:checked ~ .checkbox-label {
        color: #f3f4f6; /* text-gray-100 */
    }

    /* Premium Filter Chip (Sticky Top Bar) */
    .filter-chip-input {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
        pointer-events: none;
    }

    .filter-chip-label {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 12px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.06);
        background-color: rgba(255, 255, 255, 0.03);
        color: #d1d5db; /* text-gray-300 */
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        user-select: none;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        white-space: nowrap;
        flex-shrink: 0;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    }

    .filter-chip-label:hover {
        background-color: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 122, 26, 0.35);
        color: #fff;
        transform: translateY(-1px);
    }

    .filter-chip-label:active {
        transform: translateY(0) scale(0.96);
    }

    /* Check Indicator Inside Chip */
    .filter-chip-label .chip-indicator {
        width: 14px;
        height: 14px;
        border-radius: 4px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background-color: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
        flex-shrink: 0;
    }

    .filter-chip-label:hover .chip-indicator {
        border-color: rgba(255, 122, 26, 0.6);
    }

    .filter-chip-input:checked + .filter-chip-label {
        background-color: rgba(255, 122, 26, 0.12);
        border-color: rgba(255, 122, 26, 0.4);
        color: #FF7A1A;
    }

    .filter-chip-input:checked + .filter-chip-label .chip-indicator {
        background-color: #FF7A1A;
        border-color: #FF7A1A;
    }

    .filter-chip-label .chip-indicator-icon {
        width: 8px;
        height: 8px;
        color: #fff;
        fill: none;
        stroke: currentColor;
        stroke-width: 4px;
        stroke-linecap: round;
        stroke-linejoin: round;
        opacity: 0;
        transform: scale(0.5);
        transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .filter-chip-input:checked + .filter-chip-label .chip-indicator-icon {
        opacity: 1;
        transform: scale(1);
    }


    @media (max-width: 767.98px) {
        .postlist-v2-main {
            padding-left: 1rem !important;
            padding-right: 1rem !important;
        }

        .postlist-v2-main #listings-grid.row {
            margin-left: 0;
            margin-right: 0;
        }
    }

    @media (min-width: 1440px) {
        .max-w-site {
            max-width: 1440px !important;
            padding-left: 0px !important;
            padding-right: 0px !important;
        }
    }

    /* Infinite Scroll: Skeleton Shimmer Animasyonu */
    @keyframes shimmer {
        0%   { background-position: -600px 0; }
        100% { background-position:  600px 0; }
    }
    .skeleton-box {
        background: linear-gradient(
            90deg,
            rgba(255,255,255,0.04) 0%,
            rgba(255,255,255,0.10) 50%,
            rgba(255,255,255,0.04) 100%
        );
        background-size: 600px 100%;
        animation: shimmer 1.4s ease-in-out infinite;
        border-radius: 6px;
    }
    .skeleton-img {
        width: 100%;
        height: 140px;
        border-radius: 5px 5px 0 0;
    }

    /* Infinite Scroll: Sentinel */
    #infinite-scroll-sentinel {
        height: 4px;
        width: 100%;
        pointer-events: none;
    }

    /* Infinite Scroll: Son mesaj */
    #scroll-end {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 32px 0 20px;
        width: 100%;
    }
    #scroll-end.visible {
        display: flex;
    }

    /* FAQ Custom Accordion */
    details summary::-webkit-details-marker {
        display: none;
    }
    details[open] summary svg {
        transform: rotate(180deg);
        color: #FF7A1A;
    }
    details[open] {
        border-color: rgba(255, 122, 26, 0.25);
    }

    /* Mobile Floating Filter Button Stabilites */
    #mobile-filter-wrapper {
        position: fixed !important;
        top: auto !important;
        bottom: calc(24px + env(safe-area-inset-bottom, 0px)) !important;
        left: 0 !important;
        right: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: max-content !important;
        z-index: 40 !important;
    }

    /* İlan Ekle Butonu Boyut ve Uyum Düzenlemesi */
    .btn-category-advert-create {
        width: calc(100% - 8px) !important;
        height: 50px !important;
    }

    nav ul.nav-menu-list li:hover, nav ul.nav-menu-list li.active {
        background: rgb(255 255 255 / 8%);
    }


    .slider-background {
        position: absolute;
        z-index: 0;
        width: 100%;
        height: 600px;
        top: 0px;
        overflow: hidden;
    }
    
    .slider-background img {
        width: 110%;
        filter: grayscale(0.5) blur(25px) brightness(0.5);
        left: -5%;
        position: relative;
        top: -20px;
        max-width: unset;
    }

    header {
        position: relative;
     
    }
    
    .slider-background:after {
        content: " ";
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 600px;
        background: linear-gradient(to top, #151a26, transparent);
    }
    
    .header-main {
        background: #0000008a !important;
        backdrop-filter: blur(100px) !important;
        border-bottom: 1px solid #ffffff14 !important;
        z-index: 6;
    }
    
    nav.menubar {
        background: #0000003b;
        backdrop-filter: blur(100px);
        border-bottom: 1px solid #ffffff14;
    }
    
    .header-top {
        background: #000000b8;
        backdrop-filter: blur(100px);
    }
    
    nav ul.nav-menu-list li:hover, nav ul.nav-menu-list li.active {
        background: rgb(255 255 255 / 8%);
    }
    
    section.navigationBar {
        background: #0000003b;
        backdrop-filter: blur(100px);
        border-bottom: 1px solid #ffffff14;
    }