/* ============================================
   TAK PLATFORM - ULTRA PREMIUM DESKTOP CSS V3
   MOBİL ASLA ETKİLENMEZ - SADECE DESKTOP 769px+
   ============================================ */

   @media only screen and (min-width: 769px) {
    
    /* === GLOBAL FOUNDATIONS === */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    html {
        overflow-x: hidden;
    }
    
    body {
        background: #f8fafc;
        font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', 'Inter', sans-serif;

        -moz-osx-font-smoothing: grayscale;
        line-height: 1.6;
        overflow-x: hidden;
    }
    
    /* TAK RENK SİSTEMİ */
    :root {
        --tak-cyan: #3df9fb;
        --tak-cyan-dark: #00d4dd;
        --tak-blue: #2a5298;
        --tak-blue-dark: #1e3f70;
        --tak-gray-50: #fafafa;
        --tak-gray-100: #f4f4f5;
        --tak-gray-200: #e4e4e7;
        --tak-gray-300: #d4d4d8;
        --tak-gray-400: #a1a1aa;
        --tak-gray-500: #71717a;
        --tak-gray-600: #52525b;
        --tak-gray-700: #3f3f46;
        --tak-gray-800: #27272a;
        --tak-gray-900: #18181b;
        --tak-success: #10b981;
        --tak-warning: #f59e0b;
        --tak-error: #ef4444;
    }
    
    /* MOBİL ELEMENTLER GİZLE - SADECE DESKTOP */
    .mobile-header,
    .mobile-nav-overlay,
    .mobile-nav-sidebar,
    .mobile-hamburger,
    .mobile-logo,
    .mobile-cta,
    .bottom-nav,
    .nav-close {
        display: none;
        visibility: hidden;
        position: absolute;
        left: -9999px;
    }
    
    /* MOBİL SUPPORT GİZLE - SADECE DESKTOP */
    .mobile-support {
        display: none;
    }
    
    /* DESKTOP SUPPORT GÖSTER - SADECE DESKTOP */
    .desktop-support {
        display: block;
    }
    
    /* === PROFESYONEL HEADER === */
    .header-professional {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 70px;
        background: #ffffff;
        border-bottom: 1px solid #e5e7eb;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        z-index: 10000;
        transition: all 0.3s ease;
    }
    
    .header-container {
        width: 100%;
        max-width: 1144px; /* Sabit container genişliği */
        margin: 0 auto;
        height: 100%;
        padding: 0 20px;
        min-width: 1144px; /* 1144px altında scroll */
    }
    
    .header-content {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    /* === NORMAL HEADER (5 Element) === */
    .desktop-header {
        display: grid;
        grid-template-columns: auto auto 1fr auto auto;
        width: 100%;
        height: 100%;
        align-items: center;
        gap: 15px;
        visibility: visible;
        opacity: 1;
        transition: all 0.3s ease;
    }
    
    /* === SEARCH MODE HEADER === */
    .desktop-header.search-mode {
        grid-template-columns: auto 1fr auto;
        gap: 20px;
    }
    
    /* Logo Container (Normal: center, Search: left) */
    .logo-container {
        display: flex;
        align-items: center;
        justify-content: center;
        grid-column: 3; /* Normal durumda 3. sütun (center) */
        transition: all 0.3s ease;
    }
    
    .desktop-header.search-mode .logo-container {
        grid-column: 1; /* Search modda 1. sütun (left) */
        justify-content: flex-start;
    }
    
    /* === SOL TARAF (Konum) === */
    .header-left {
        display: flex;
        align-items: center;
        gap: 12px;
        grid-column: 1; /* Sadece 1. sütun */
    }
    
    .desktop-header.search-mode .header-left {
        display: none; /* Search modda gizle */
    }
    
    .logo-container .logo-img {
        height: 40px;
        width: auto;
        filter: drop-shadow(0 2px 8px rgba(61, 249, 251, 0.3));
        transition: transform 0.3s ease;
    }
    
    .logo-container:hover .logo-img {
        transform: scale(1.05);
    }
    
    .location-btn {
        display: flex;
        align-items: center;
        gap: 6px;
        height: 34px;
        padding: 0 10px;
        background: linear-gradient(135deg, var(--tak-gray-50), #ffffff);
        border: 1px solid var(--tak-gray-200);
        border-radius: 8px;
        color: var(--tak-gray-700);
        font-size: 12px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        flex-shrink: 0;
    }
    
    .location-btn i {
        font-size: 14px;
        color: var(--tak-cyan);
    }
    
    .location-btn:hover {
        background: linear-gradient(135deg, #ffffff, var(--tak-gray-50));
        border-color: var(--tak-cyan);
        box-shadow: 0 4px 16px rgba(61, 249, 251, 0.2);
        transform: translateY(-1px);
    }
    
    /* === SEARCH ICON (Normal Mode) === */
    .search-icon-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        background: var(--tak-cyan);
        border: none;
        border-radius: 8px;
        color: white;
        cursor: pointer;
        transition: all 0.3s ease;
        grid-column: 2; /* 2. sütun */
    }
    
    .search-icon-btn:hover {
        background: var(--tak-cyan-dark);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(61, 249, 251, 0.3);
    }
    
    .desktop-header.search-mode .search-icon-btn {
        display: none;
    }
    
    /* === ARAMA KUTUSU (Search Mode) === */
    .header-center {
        display: none; /* Normal modda gizli */
        grid-column: 2;
        margin: 0;
    }
    
    .desktop-header.search-mode .header-center {
        display: block; /* Search modda görünür */
    }
    
    .search-container {
        width: 100%;
        height: 40px;
    }
    
    /* Search Mode'da container tam genişlik */
    .desktop-header.search-mode .search-container {
        width: 100%;
        /* min-width kaldırıldı - taşma sorununa neden oluyordu */
        max-width: 100%;
    }
    
    .desktop-header.search-mode .search-input {
        font-size: 16px;
        padding: 0 16px;
    }
    
    .search-box {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        background: linear-gradient(135deg, var(--tak-gray-50), #ffffff);
        border: 1px solid var(--tak-gray-200);
        border-radius: 18px;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    }
    
    .search-box:focus-within {
        background: #ffffff;
        border-color: var(--tak-cyan);
        box-shadow: 0 4px 20px rgba(61, 249, 251, 0.25);
        transform: translateY(-1px);
    }
    
    .search-input {
        flex: 1;
        height: 100%;
        padding: 0 12px;
        border: none;
        background: transparent;
        font-size: 13px;
        color: var(--tak-gray-800);
        outline: none;
        font-weight: 400;
    }
    
    .search-input::placeholder {
        color: var(--tak-gray-400);
        font-weight: 400;
    }
    
    .search-btn {
        height: 100%;
        padding: 0 16px;
        background: linear-gradient(135deg, var(--tak-cyan), var(--tak-blue));
        border: none;
        color: white;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .search-btn:hover {
        background: linear-gradient(135deg, var(--tak-cyan-dark), var(--tak-blue-dark));
        transform: scale(1.02);
    }
    
    .search-btn i {
        font-size: 14px;
    }
    
    /* === SAĞ TARAF (Hesabım + İlan Ver) === */
    .header-right {
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: flex-end;
        grid-column: 4 / 6; /* Normal: 4-5 sütunları (son iki sütun) */
    }
    
    .desktop-header.search-mode .header-right {
        grid-column: 3; /* Search modda 3. sütun */
        justify-content: flex-end;
    }
    
    /* === CLOSE SEARCH BUTTON (Search Mode Only) === */
    .close-search-btn {
        display: none;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: #f3f4f6;
        border: none;
        border-radius: 8px;
        color: #6b7280;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .desktop-header.search-mode .close-search-btn {
        display: flex;
    }
    
    .close-search-btn:hover {
        background: #ef4444;
        color: white;
        transform: translateY(-1px);
    }
    
    /* Normal modda user area'yı göster */
    .desktop-header.search-mode .user-area,
    .desktop-header.search-mode .cta-button-pro {
        display: none;
    }
    
    .user-area {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    /* Giriş/Kayıt Butonları */
    .logged-out {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .auth-btn {
        height: 34px;
        padding: 0 16px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }
    
    .login-btn {
        background: transparent;
        border: 1px solid var(--tak-gray-300);
        color: var(--tak-gray-700);
    }
    
    .login-btn:hover {
        background: var(--tak-gray-50);
        border-color: var(--tak-cyan);
        color: var(--tak-cyan);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(61, 249, 251, 0.2);
    }
    
    .register-btn {
        background: linear-gradient(135deg, var(--tak-success), #059669);
        border: none;
        color: white;
    }
    
    .register-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(16, 185, 129, 0.3);
        background: linear-gradient(135deg, #059669, #047857);
    }
    
    /* İlan Ver Butonu */
    .cta-button-pro {
        height: 34px;
        padding: 0 18px;
        background: linear-gradient(135deg, var(--tak-cyan), var(--tak-blue));
        border: none;
        border-radius: 8px;
        color: white;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: all 0.3s ease;
        cursor: pointer;
        box-shadow: 0 4px 16px rgba(61, 249, 251, 0.3);
    }
    
    .cta-button-pro:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(61, 249, 251, 0.4);
        background: linear-gradient(135deg, var(--tak-cyan-dark), var(--tak-blue-dark));
    }
    
    .cta-button-pro i {
        font-size: 14px;
    }
    
    /* === DESKTOP USER PROFILE === */
    .logged-in {
        position: relative;
    }
    
    .desktop-user-profile {
        display: flex;
        align-items: center;
        gap: 8px;
        height: 34px;
        padding: 4px 4px 4px 12px;
        background: linear-gradient(135deg, rgba(61, 249, 251, 0.08), rgba(42, 82, 152, 0.08));
        border: 1px solid rgba(61, 249, 251, 0.2);
        border-radius: 17px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    }
    
    .desktop-user-profile:hover {
        background: linear-gradient(135deg, rgba(61, 249, 251, 0.12), rgba(42, 82, 152, 0.12));
        border-color: var(--tak-cyan);
        box-shadow: 0 4px 20px rgba(61, 249, 251, 0.25);
        transform: translateY(-2px);
    }
    
    .desktop-user-avatar {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--tak-cyan), var(--tak-blue));
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 700;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .desktop-user-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-right: 6px;
    }
    
    .desktop-user-name {
        font-size: 13px;
        font-weight: 600;
        color: var(--tak-gray-800);
        line-height: 1.2;
    }
    
    .desktop-user-status {
        font-size: 11px;
        color: var(--tak-gray-500);
        line-height: 1.2;
        font-weight: 500;
    }
    
    .desktop-dropdown-arrow {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .desktop-dropdown-arrow i {
        font-size: 10px;
        color: var(--tak-gray-600);
        transition: transform 0.3s ease;
    }
    
    .desktop-user-profile:hover .desktop-dropdown-arrow {
        background: rgba(255, 255, 255, 0.8);
    }
    
    .desktop-user-profile:hover .desktop-dropdown-arrow i {
        transform: rotate(180deg);
    }
    
    /* === TEMIZ USER DROPDOWN === */
    .desktop-user-dropdown {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        width: 200px;
        background: white;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: all 0.2s ease;
        z-index: 1000;
    }
    
    .desktop-user-profile:hover + .desktop-user-dropdown,
    .desktop-user-dropdown:hover {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .dropdown-item {
        display: block;
        padding: 12px 16px;
        color: #374151;
        text-decoration: none;
        font-size: 14px;
        border-bottom: 1px solid #f3f4f6;
        transition: background 0.2s ease;
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .dropdown-item:hover {
        background: #f9fafb;
        color: var(--tak-cyan);
    }
    
    .dropdown-item i {
        width: 16px;
        margin-right: 8px;
        font-size: 14px;
    }
    
    .dropdown-item.logout {
        color: #ef4444;
        border-top: 1px solid #f3f4f6;
    }
    
    .dropdown-item.logout:hover {
        background: #fef2f2;
    }
    
    /* === MAIN CONTENT === */
    .main-content {
        margin-top: 70px;
        padding: 0;
        background: #f5f5f5;
        box-shadow: none;
        min-height: 100vh;
        width: 100%;
        max-width: 1144px; /* Sahibinden.com gibi sabit max-width */
        margin-left: auto;
        margin-right: auto;
        min-width: 1144px; /* 1144px altında scroll */
    }
    
    /* === DESKTOP CONTENT CONTAINER === */
    .main-content,
    .homepage-slider,
    .featured-section,
    .popular-section,
    .recent-section,
    .categories-section,
    .support-section {
        max-width: 1320px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
        padding-right: 0;
        padding-top: 0;
        padding-bottom: 0;
        box-sizing: border-box;
        background: transparent;
        border: none;
        box-shadow: none;
    }
    
    /* === SEAMLESS SECTION BACKGROUNDS === */
    .featured-section,
    .popular-section, 
    .recent-section,
    .categories-section,
    .support-section,
    .desktop-support,
    .mobile-support,
    .payment-section {
        background: transparent;
        border: none;
        box-shadow: none;
    }
    
    /* === GÜVENLI ÖDEME SECTION === */
    .support-section-pro,
    .support-cta-pro {
        background: transparent;
        border: none;
        box-shadow: none;
    }
    
    /* Remove all card/container backgrounds */
    .section-container,
    .content-wrapper,
    .payment-container,
    .container {
        background: transparent;
        background-color: transparent;
        border: none;
        box-shadow: none;
    }
    
    /* Force all divs in main sections to be transparent */
    .main-content div:not(.slide):not(.support-content):not(.slide-indicators):not(.indicator):not(.slider-controls):not(.nav-btn),
    .featured-section div:not(.slide):not(.support-content):not(.slide-indicators):not(.indicator):not(.slider-controls):not(.nav-btn),
    .support-section-pro div:not(.slide):not(.support-content):not(.slide-indicators):not(.indicator):not(.slider-controls):not(.nav-btn) {

        /*background-color: transparent;*/
        border: none;
        box-shadow: none;
    }
    
    /* SLIDER EXCEPTION - Allow image containers to work */
    .homepage-slider div:not(.slide):not(.slide-wrapper):not(.slider-container):not(.slide-indicators):not(.indicator):not(.slider-controls):not(.nav-btn) {
        background: transparent;
        background-color: transparent;
        border: none;
        box-shadow: none;
    }
    
    /* IMPORTANT: .slide class'ına background transparent uygulanmamalı */
    .slide {
        /* JavaScript tarafından background-image set edilecek */
        /* Background properties'i serbest bırak */
        background-color: transparent !important;
    }
    
    /* Support content styles are defined above */
    
    /* Exception: Keep listing cards white */
    .listing-card,
    .featured-card {
        background: #ffffff;
        background-color: #ffffff;
    }
    
    /* === VITRIN & CARDS SEAMLESS === */
    .featured-grid,
    .popular-grid,
    .recent-grid,
    .listings-grid {
        background: transparent;
        border: none;
        box-shadow: none;
    }
    
    /* Keep individual cards with subtle styling */
    .listing-card,
    .featured-card {
        background: #ffffff;
        border: 1px solid rgba(229, 231, 235, 0.3);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        border-radius: 12px;
    }
    
    .listing-card:hover,
    .featured-card:hover {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        transform: translateY(-2px);
    }
    
    /* === DESKTOP SLIDER WITH CATEGORIES === */
    .main-slider {
        width: 100%;
        height: auto;
        background: transparent;
        background-color: transparent;
        position: relative;
        overflow: visible;
        margin: 0 auto;
        border-radius: 0;
        display: block;
        padding: 0;
        border: none;
        box-shadow: none;
    }
    
    /* Desktop'ta flex layout */
    @media (min-width: 768px) {
        .main-slider {
            display: flex;
            align-items: stretch;
            justify-content: center;
            gap: 20px;
        }
    }

    /* === QUICK CATEGORIES GRID (Slider Altı Kare Kare Bölüm) === */
    .quick-categories-section {
        background: transparent;
        padding: 20px 0 0 0;
        margin: 0 auto;
    }

    /* Desktop'ta kategoriler + slider toplam genişliği kadar olsun */
    @media (min-width: 768px) {
        .quick-categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 15px;
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
            padding: 0;
            box-sizing: border-box;
        }
    }
    
    /* Mobile'da farklı */
    @media (max-width: 767px) {
        .quick-categories-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            padding: 0 0px;
        }
    }

    .category-card {
        background: white;
        border-radius: 16px;
        padding: 30px 20px;
        text-align: center;
        text-decoration: none;
        color: #374151;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(229, 231, 235, 0.3);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 160px;
    }

    .category-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        color: #374151;
    }

    .category-card .card-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 15px auto;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        font-size: 24px;
    }

    .category-card.urgent .card-icon {
        background: linear-gradient(135deg, #EF4444, #DC2626);
        color: white;
    }

    .category-card.galeri .card-icon {
        background: linear-gradient(135deg, #3B82F6, #2563EB);
        color: white;
    }

    .category-card.featured .card-icon {
        background: linear-gradient(135deg, #F59E0B, #D97706);
        color: white;
    }

    .category-card.budget .card-icon {
        background: linear-gradient(135deg, #10B981, #059669);
        color: white;
    }

    .category-card.luxury .card-icon {
        background: linear-gradient(135deg, #8B5CF6, #7C3AED);
        color: white;
    }

    .category-card h3 {
        font-size: 14px;
        font-weight: 700;
        margin: 0 0 8px 0;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .category-card p {
        font-size: 12px;
        color: #6B7280;
        margin: 0;
        line-height: 1.4;
    }

    /* Yukarıda yeni mobile CSS var */

/* İkinci görüntüdeki gibi düzenleme için güncellemeler */
@media only screen and (min-width: 769px) {
    
    /* === DESKTOP SLIDER === */
    .main-slider {
        width: 100%;
        height: 320px; /* Daha küçük slider yüksekliği */
        background: transparent;
        position: relative;
        overflow: visible;
        margin: 0;
        border-radius: 0;
        display: block;
        padding: 0;
        border: none;
        box-shadow: none;
    }

    /* === DESKTOP CATEGORIES SIDEBAR === */
    .desktop-categories-sidebar {
        display: flex;
        visibility: visible;
        opacity: 1;
        width: 100%;
        height: 100%; /* Parent'ın yüksekliğini al */
        background: white;
        border-radius: 10px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        padding: 0;
        overflow: hidden;
        flex-direction: column;
        border: 1px solid #e5e7eb;
        position: relative; /* sticky yerine relative */
    }
    
    .categories-header {
        background: linear-gradient(135deg, var(--tak-cyan) 0%, var(--tak-blue) 100%);
        color: white;
        padding: 16px 20px;
        text-align: center;
        border-bottom: none;
    }
    
    .categories-header h3 {
        margin: 0;
        font-size: 16px;
        font-weight: 700;
        color: white;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .categories-list {
        flex: 1;
        overflow-y: auto;
        padding: 12px 8px; /* Daha geniş padding */
        height: 100%;
        box-sizing: border-box;
    }
    
    .category-item {
        display: flex;
        align-items: center;
        padding: 14px 17px 14px 20px;
        text-decoration: none;
        color: #374151;
        border-bottom: 1px solid rgba(229, 231, 235, 0.15);
        border-left: 3px solid transparent;
        transition: all 0.2s ease;
        cursor: pointer;
        font-size: 14px;
    }
    
    .category-item:hover {
        background: rgba(61, 249, 251, 0.06);
        color: var(--tak-cyan);
        border-left: 3px solid var(--tak-cyan);
    }
    
    .category-item .category-icon {
        width: 18px;
        height: 18px;
        margin-right: 16px;
        color: var(--tak-cyan);
        flex-shrink: 0;
        font-size: 18px;
    }
    
    .category-item .category-name {
        flex: 1;
        font-size: 15px;
        font-weight: 600;
        line-height: 1.4;
    }
    
    .category-item .category-count {
        font-size: 13px;
        color: #6B7280;
        background: #F3F4F6;
        padding: 4px 12px;
        border-radius: 16px;
        font-weight: 600;
        min-width: 32px;
        text-align: center;
    }
    
    .category-item:hover .category-count {
        background: var(--tak-cyan);
        color: white;
    }

    /* === SLIDER CONTAINER === */
    .slider-container {
        flex: 1;
        height: 100%;
        position: relative;
        margin: 0;
        padding: 0;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        overflow: hidden;
        background: transparent !important;
        border: 1px solid #e5e7eb;
    }
    
    .slide-wrapper {
        display: flex;
        height: 100%;
        width: auto; /* Flex children toplam genişliğini alsın */
        transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .slide {
        min-width: 100% !important;
        width: 100% !important;
        height: 100% !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        background-color: transparent !important;
        position: relative !important;
        flex-shrink: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
    }

    /* Quick categories section kaldırıldı - artık wrapper içinde */

    .desktop-pro-buttons-area .quick-categories-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        max-width: 100%;
        align-items: center;
    }

    .category-card {
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        border-radius: 10px;
        padding: 9px 7px;
        text-align: center;
        text-decoration: none;
        color: #374151;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        border: 1px solid rgba(229, 231, 235, 0.5);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 85px; /* Perfect buton yüksekliği */
        position: relative;
        overflow: hidden;
    }

    .category-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--tak-cyan), var(--tak-blue));
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .category-card:hover::before {
        opacity: 1;
    }

    .category-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 40px rgba(61, 249, 251, 0.15);
        color: #374151;
        border-color: rgba(61, 249, 251, 0.3);
        background: linear-gradient(135deg, #ffffff 0%, #f0fdff 100%);
    }

    .category-card:hover .card-icon {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(61, 249, 251, 0.4);
    }

    .category-card.galeri:hover .card-icon {
        box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
    }

    .category-card.featured:hover .card-icon {
        box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
    }

    .category-card.budget:hover .card-icon {
        box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
    }

    .category-card.luxury:hover .card-icon {
        box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
    }

    .category-card .card-icon {
        width: 28px;
        height: 28px;
        margin: 0 auto 5px auto;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
        font-size: 15px;
        transition: all 0.3s ease;
    }

    .category-card.urgent .card-icon {
        background: linear-gradient(135deg, var(--tak-cyan), var(--tak-cyan-dark));
        color: white;
        box-shadow: 0 4px 12px rgba(61, 249, 251, 0.3);
    }

    .category-card.galeri .card-icon {
        background: linear-gradient(135deg, #1E40AF, #1D4ED8);
        color: white;
        box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
    }

    .category-card.featured .card-icon {
        background: linear-gradient(135deg, #FBBF24, #F59E0B);
        color: white;
        box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
    }

    .category-card.budget .card-icon {
        background: linear-gradient(135deg, #059669, #047857);
        color: white;
        box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
    }

    .category-card.luxury .card-icon {
        background: linear-gradient(135deg, #7C3AED, #6D28D9);
        color: white;
        box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
    }

    .category-card h3 {
        font-size: 10px;
        font-weight: 700;
        margin: 0 0 3px 0;
        text-transform: uppercase;
        letter-spacing: 0.2px;
        color: #1f2937;
    }

    .category-card p {
        font-size: 8px;
        color: #6B7280;
        margin: 0;
        line-height: 1.2;
        font-weight: 500;
    }

    .category-card:hover h3 {
        color: var(--tak-cyan-dark);
    }

    /* RESPONSIVE KALDIRILDI - SADECE SABİT BOYUTLAR */
}

/* === MOBİL KORUMA - HİÇBİR DEĞİŞİKLİK YOK === */
@media only screen and (max-width: 768px) {
    .desktop-categories-sidebar {
        display: none;
        visibility: hidden;
        opacity: 0;
        width: 0;
        height: 0;
        overflow: hidden;
    }
}

/* === 🔵 ANA DESKTOP PRO CONTAINER === */
/* STYLE.CSS OVERRIDE - MAIN SLIDER */
@media only screen and (min-width: 769px) {
    /* style.css slider override */
    .main-slider {
        position: relative !important;
        width: 880px !important;
        max-width: 880px !important;
        min-width: 0 !important; /* Önemli! style.css'teki min-width:1020px override */
        height: 320px !important;
        min-height: 320px !important;
        max-height: 320px !important;
        margin: 0 auto !important; /* Center alignment */
        border-radius: 12px !important;
        aspect-ratio: unset !important;
        border: none !important;
        background: none !important;
        left: 0 !important; /* Position fix */
        right: 0 !important;
        transform: none !important;
    }
    
    /* style.css slide override */
    .slide,
    .slide.active,
    div.slide,
    div.slide.active {
        position: relative !important;
        min-width: 100% !important;
        width: 100% !important;
        height: 100% !important;
        background-size: cover !important;
        background-position: center !important;
        border: none !important;
        box-shadow: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Fix before/after elements */
    .slide:before,
    .slide:after,
    .slide.active:before,
    .slide.active:after,
    div.slide.active:before,
    div.slide.active:after {
        display: none !important;
    }
    
    /* div.slide.active:before override */
    div.slide.active::before,
    .slide.active::before,
    .slide-active-before {
        display: none !important;
    }
    
    /* slider-container override - COMPLETE FIX */
    .slider-container,
    .main-slider .slider-container {
        position: relative !important;
        width: 100% !important;
        height: 100% !important;
        overflow: hidden !important;
        border: none !important;
        margin: 0 !important;
        padding: 0 !important;
        min-width: 0 !important; /* Kritik override */
        min-height: 0 !important;
        max-width: none !important;
        max-height: none !important;
    }
    
    /* Override wrapper fix */
    .desktop-pro-slider-area,
    .desktop-pro-main-row .desktop-pro-slider-area {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 880px !important;
        max-width: 880px !important;
        height: 320px !important;
        margin: 0 auto !important;
    }
    
    /* Desktop slider nav override - ARROW FIX */
    .slider-controls,
    .main-slider .slider-controls,
    .desktop-pro-slider-area .slider-controls {
        display: flex !important;
        justify-content: space-between !important;
        width: 100% !important;
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 100 !important;
        pointer-events: none !important;
        padding: 0 20px !important;
        left: 0 !important; /* Kesin konum */
        right: 0 !important;
        height: auto !important;
        bottom: auto !important;
    }
    
    .nav-btn,
    .main-slider .nav-btn,
    .slider-controls .nav-btn,
    .main-slider .slider-controls .nav-btn,
    .desktop-pro-slider-area .nav-btn,
    .desktop-pro-slider-area .slider-controls .nav-btn,
    button.nav-btn,
    button.prev,
    button.next {
        pointer-events: all !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 50px !important;
        height: 50px !important;
        background: rgba(255, 255, 255, 0.95) !important;
        border-radius: 50% !important;
        cursor: pointer !important;
        border: none !important;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15) !important;
        z-index: 101 !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: relative !important;
        margin: 0 !important;
        top: auto !important;
        transform: none !important;
    }
    
    /* Arrow SVG fix */
    .nav-btn svg,
    .slider-controls .nav-btn svg {
        width: 12px !important;
        height: 20px !important;
        fill: currentColor !important;
    }
    
    /* slide-wrapper fix */
    .slide-wrapper,
    .main-slider .slide-wrapper {
        display: flex !important;
        width: auto !important; /* Flex children'ın toplam genişliğini alsın */
        height: 100% !important;
        overflow: visible !important; /* Overflow hidden kaldırıldı */
        position: relative !important;
    }
    
    /* Custom slider CSS for exact 880x320 */
    .desktop-pro-right-wrapper .desktop-pro-slider-area {
        width: 880px !important;
        max-width: 880px !important;
        min-width: 0 !important;
        height: 320px !important;
        margin: 0 !important;
        position: relative !important;
        overflow: hidden !important;
        border-radius: 12px !important;
    }

    /* Override container styles from style.css */
    .container {
        max-width: 1144px !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }
    .desktop-pro-main-container {
        width: 100%;
        max-width: 1144px; /* Sabit container genişliği */
        margin: 30px auto 40px auto; /* Yeterli üst ve alt margin */
        padding: 0;
        background: transparent;
        box-sizing: border-box;
        min-width: 1144px; /* 1144px altında scroll */
        display: flex;
        justify-content: center; /* İçeriği ortala */
    }
    
    /* Ana satır: Categories (sol) + Sağ wrapper - MİNİMUM GAP */
    .desktop-pro-main-row {
        display: grid;
        grid-template-columns: 244px 880px; /* Kategori sabit, sağ sabit */
        gap: 16px; /* Daha az gap */
        width: 1140px; /* Kesin 1144px - gap */
        height: 513px; /* 320+85+60+25px gap = 490px */
        box-sizing: border-box;
        position: relative;
        align-items: start;
        margin-top: 15px; /* Üstten boşluk ekle */
        justify-content: flex-start; /* Sol tarafa yasla */
    }
    
    /* 🔘 GRİ - Categories Wrapper (Sol taraf) - 244px PATCH + OVERFLOW FİX */
    .desktop-pro-categories-wrapper {
        width: 244px; /* 1144px fit için optimize */
        height: 100%; /* Parent'ın tam yüksekliği */
        overflow: visible; /* Overflow fix - butonların görünmesi için */
        box-sizing: border-box;
        position: relative;
    }
    
    /* SAĞ TARAF WRAPPER - KESİN 880px GENİŞLİK + SOL YASLI */
    .desktop-pro-right-wrapper {
        width: 880px !important; /* Kesin 880px genişlik */
        max-width: 880px !important; /* Maksimum 880px */
        display: grid;
        grid-template-rows: 320px 85px 85px; /* Slider, Butonlar, Ödeme (ödeme yükseltildi) */
        gap: 12px;
        height: 513px !important; /* Kategori ile aynı yükseklik */
        overflow: visible;
        box-sizing: border-box;
        position: relative;
        padding: 0; /* Padding yok */
        justify-self: start; /* Sol tarafa yasla */
        margin-left: 0 !important; /* Sola tam yasla */
        left: 0 !important; /* Sol konumda */
    }
    
    /* 🔶 TURUNCU - Slider Area - TAM 880x320 BOYUT */
    .desktop-pro-slider-area {
        width: 880px !important; /* Kesin 880px genişlik */
        max-width: 880px !important; /* Maximum 880px */
        height: 320px !important; /* Kesin 320px yükseklik */
        display: block;
        box-sizing: border-box;
        border-radius: 12px;
        background: #f8fafc;
        margin: 0; /* Margin kaldırıldı */
        position: relative;
        border: none !important; /* Kenardaki mavi çizgiler kaldırıldı */
        padding: 0; /* Padding yok */
        overflow: hidden !important; /* Taşan içeriği gizle */
    }
    
    .desktop-pro-slider-area .main-slider {
        margin: 0;
        width: 100%;
        height: 100%; /* Parent'ın tam yüksekliği */
        display: block;
        gap: 0;
        border-radius: 12px;
        overflow: hidden;
        position: relative;
    }

    /* Slider container düzeltmesi - KENARSIZ */
    .desktop-pro-slider-area .slider-container {
        width: 100%;
        height: 100%;
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        border: none !important;
        background-color: transparent !important;
        outline: none !important;
    }

    /* Slide wrapper düzeltmesi */
    .desktop-pro-slider-area .slide-wrapper {
        width: auto; /* Flex children toplam genişliğini alsın */
        height: 100%;
        display: flex;
        transition: transform 0.5s ease;
    }

    /* Slider overlay - BORDER FIX */
    .desktop-pro-slider-area .slider-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        border: none !important;
        background: transparent !important;
        outline: none !important;
        z-index: 5;
        pointer-events: none;
    }
    

    /* Slider controls - 880x320 PERFECT FIX */
    .desktop-pro-slider-area .slider-controls {
        position: absolute !important;
        top: 50% !important;
        left: 0 !important;
        right: 0 !important;
        bottom: auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0 20px !important; /* Daha geniş padding */
        z-index: 10 !important;
        pointer-events: none !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        border: none !important;
        transform: translateY(-50%) !important;
    }

    .desktop-pro-slider-area .nav-btn {
        pointer-events: all !important;
        background: rgba(255, 255, 255, 0.95) !important;
        border: none !important;
        border-radius: 50% !important;
        width: 50px !important; /* Daha büyük button */
        height: 50px !important; /* Daha büyük button */
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15) !important;
        position: relative !important;
        z-index: 11 !important;
        top: auto !important;
        transform: none !important;
        margin: 0 !important;
    }

    .desktop-pro-slider-area .nav-btn:hover {
        background: white;
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }
    
    /* 🌸 PEMBE - Buttons Area - 880px GENİŞLİK */
    .desktop-pro-buttons-area {
        width: 880px !important; /* Kesin 880px genişlik */
        max-width: 880px !important; /* Maksimum 880px */
        height: 85px; /* Grid row yüksekliği */
        overflow: visible;
        background: transparent;
        margin: 0;
        position: relative;
        padding: 0;
    }
    
    /* 🟡 SARI - Payment Area - 880px + YÜKSELTİLMİŞ */
    .desktop-pro-payment-area {
        width: 880px !important; /* Kesin 880px genişlik */
        max-width: 880px !important; /* Maximum 880px */
        height: 85px !important; /* Arttırılmış yükseklik - butonun altı kesilmesin */
        overflow: visible;
        background: transparent;
        margin: 0;
        position: relative;
        align-self: end; /* En alta yerleştir */
        padding: 0;
        display: flex;
        align-items: center;
    }

    /* === DESKTOP-ONLY LAYOUT FIX (1144px sabit) === */
    /* 1144 = 244 (sol) + 16 (gap) + 880 (sağ) = Kesin 1140px */
    .desktop-pro-main-row{
        display: grid;
        grid-template-columns: 244px 880px; /* Her iki taraf da sabit */
        gap: 16px; /* Kesin gap */
        width: 1140px !important; /* Kesin 1140px genişlik */
        align-items: start;
        margin: 15px 0 0 0 !important; /* Sadece üstten boşluk */
        justify-self: center;
    }

    /* Sol kolon grid ile aynı genişliğe çek: taşma bitsin */
    .desktop-categories-sidebar{
        width: 244px !important;
        max-height: 513px !important; /* Height sınırlamasını kaldır */
        flex-shrink: 0 !important;
        overflow: visible !important; /* Taşan butonların görünmesi için */
    }

    /* Sağ kolon kesin 880px */
    .desktop-pro-right-wrapper{
        width: 880px !important;
        max-width: 880px !important;
        display: grid;
        grid-template-rows: 320px 85px 85px; /* mevcut satır kurgun - ödeme yüksekliği arttı */
        height: 513px !important; /* Kategori ile aynı yükseklik */
        gap: 12px;
        padding: 0 !important;
        justify-self: start !important;
    }

    /* Sağ blokların genişliği tek noktadan - 880px */
    .desktop-pro-slider-area,
    .desktop-pro-buttons-area,
    .desktop-pro-payment-area {
        width: 880px !important;
        max-width: 880px !important;
    }

    /* Slider içi flex yarışını kapat: oklar & içerik düzgün merkezlensin */
    .desktop-pro-slider-area .main-slider{
        display: block !important;
        height: 100% !important;
    }

    /* === ÇİFTE TANIM ÇAKIŞMALARINI ÇÖZME === */
    /* Sol kolon tam 244px */
    .desktop-categories-sidebar,
    .desktop-pro-categories-wrapper {
        width: 244px !important;
        max-width: 244px !important;
        flex-shrink: 0 !important;
    }

    /* Sağ wrapper 880px sabit */
    .desktop-pro-right-wrapper {
        width: 880px !important;
        max-width: 880px !important;
        justify-self: start !important;
    }

    /* Slider alanı tam otursun */
    .desktop-pro-slider-area,
    .desktop-pro-buttons-area,
    .desktop-pro-payment-area {
        width: 100% !important;
        margin: 0 !important;
    }
    
    /* Mobile güvenliği - mobil görünüm koruması */
    @media (max-width: 768px) {
        .main-slider {
            /* style.css'teki mobile tanımlarını koruma - desktop override'ları ezme */
            min-width: unset !important;
            min-height: unset !important;
            width: unset !important;
            height: unset !important;
        }
    }

    /* Aspect ratio kaldır ve tam doldur */
    .desktop-pro-slider-area .slider-container {
        aspect-ratio: auto !important;
        width: 100% !important;
        height: 100% !important;
        overflow: visible !important;
    }
    
    /* Görüntü tam doldurma */
    .desktop-pro-slider-area img,
    .desktop-pro-slider-area .slide {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important; /* Tam doldurma */
    }
}

/* === MOBİLDE GIZLE TAMAMIYLA === */
@media only screen and (max-width: 768px) {
    .desktop-pro-main-container,
    .desktop-pro-main-row,
    .desktop-pro-right-wrapper,
    .desktop-pro-slider-area,
    .desktop-pro-buttons-area,
    .desktop-pro-payment-area,
    .desktop-categories-sidebar,
    .ACİL.İLANLAR,
    .GALERİDEN.İLANLAR,
    .YENİ.İLANLAR,
    .DÜŞÜK.FİYATLI,
    .ŞEHİR.İLANLARI,
    .quick-categories-grid,
    .quick-categories-section {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
    }
}
    
    /* === DESKTOP CATEGORIES SIDEBAR - MOBILE'DA TAMAMEN GİZLİ === */
    .desktop-categories-sidebar {
        display: none; /* Mobile'da hiç görünmez */
        visibility: hidden;
        opacity: 0;
        width: 0;
        height: 0;
        overflow: hidden;
    }
    
    @media (min-width: 768px) {
        .desktop-categories-sidebar {
            display: flex; /* Sadece Desktop'ta görünür */
            visibility: visible;
            opacity: 1;
            width: 244px; /* 1144px fit için güncellendi */
            height: auto !important;
            max-height: 513px !important; /* Height sınırlamasını kaldır */
            overflow: visible !important;
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 0;
            overflow: hidden;
            flex-direction: column;
            border: 1px solid rgba(229, 231, 235, 0.3);
            flex-shrink: 0;
        }
        
        .categories-header {
            background: linear-gradient(135deg, var(--tak-primary) 0%, var(--tak-secondary) 100%);
            color: white;
            padding: 20px;
            text-align: center;
            border-bottom: none;
        }
        
        .categories-header h3 {
            margin: 0;
            font-size: 18px;
            font-weight: 600;
            color: white;
        }
        
        .categories-list {
            flex: 1;
            overflow-y: auto;
            padding: 10px 0;
        }
        
        .category-item {
            display: flex;
            align-items: center;
            padding: 12px 17px 12px 20px;
            text-decoration: none;
            color: #374151;
            border-bottom: 1px solid rgba(229, 231, 235, 0.3);
            border-left: 3px solid transparent;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .category-item:hover {
            background: rgba(61, 249, 251, 0.05);
            color: var(--tak-primary);
            border-left: 3px solid var(--tak-primary);
        }
        
        .category-item .category-icon {
            width: 16px;
            height: 16px;
            margin-right: 12px;
            color: var(--tak-primary);
            flex-shrink: 0;
        }
        
        .category-item .category-name {
            flex: 1;
            font-size: 14px;
            font-weight: 500;
        }
        
        .category-item .category-count {
            font-size: 12px;
            color: #6B7280;
            background: #F3F4F6;
            padding: 2px 8px;
            border-radius: 12px;
            font-weight: 500;
        }
        
        .category-item:hover .category-count {
            background: var(--tak-primary);
            color: white;
        }
    }
    
    .slider-container {
        width: 100%;
        height: auto;
        position: relative;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
        box-shadow: none;
        border-radius: 16px;
        overflow: hidden;
        background: transparent;
        background-color: transparent;
        border: none;
        /* aspect-ratio: 1920/600; KALDIRILDI - 880x320 sabit boyut için */
    }
    
    .slide-wrapper {
        display: flex;
        height: 100%;
        width: auto; /* Flex children toplam genişliğini alsın */
        transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .slide {
        min-width: 100% !important;
        width: 100% !important;
        height: 100% !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        background-color: transparent !important;
        position: relative !important;
        flex-shrink: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 16px !important;
        overflow: hidden !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    /* Background image slides - no img tags needed */
    
    /* === SLIDE INDICATORS === */
    .slide-indicators {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 200;
        pointer-events: auto;
        visibility: visible;
        opacity: 1;
        background: transparent;
    }
    
    .indicator {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.7);
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid rgba(255, 255, 255, 0.9);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        display: block;
        visibility: visible;
        opacity: 1;
        position: relative;
    }
    
    .indicator.active {
        background: var(--tak-cyan);
        border-color: white;
        transform: scale(1.3);
        box-shadow: 0 3px 8px rgba(61, 249, 251, 0.4);
    }
    
    .indicator:hover {
        background: rgba(255, 255, 255, 0.9);
        transform: scale(1.1);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    }
    
    /* === NAVIGATION ARROWS === */
    .slider-controls {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        pointer-events: none;
        z-index: 100;
        width: 100%;
        height: 100%;
    }
    
    /* NAVIGATION ARROWS - DESKTOP ONLY - SADE & ŞIK */
    @media (min-width: 768px) {
    .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.95);
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 999;
            visibility: visible;
            opacity: 1;
            pointer-events: auto;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            color: #374151;
            backdrop-filter: blur(10px);
        }

        #prev-slide {
            left: 20px;
        }

        #next-slide {
            right: 20px;
        }
        
        .nav-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.05);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
            color: var(--tak-primary);
    }
    
    .nav-btn svg {
            width: 14px;
            height: 14px;
            transition: all 0.3s ease;
        }
    }
    
    /* Nav btn hover now handled inside media query */
    
    .nav-btn svg,
    .nav-btn i {
        width: 12px;
        height: 16px;
        font-size: 12px;
        color: var(--tak-gray-700);
        transition: color 0.2s ease;
    }
    
    .nav-btn:hover svg,
    .nav-btn:hover i {
        color: var(--tak-gray-800);
    }
    
    /* Slider Overlay - Full Container */
    .slider-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: transparent;
        z-index: 50;
        pointer-events: auto;
        width: 100%;
        height: 100%;
    }
    
    /* OLD CSS CLEANED */
    
    /* Support section kaldırıldı - artık area içinde */
    
    /* Desktop Payment/Support - PREMIUM TASARIM */
    .desktop-pro-payment-area .support-cta-pro {
        background: transparent;
        border-radius: 12px;
        padding: 0;
        position: relative;
        overflow: visible;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        width: 100%;
    }
    
    .desktop-pro-payment-area .support-content {
        background: linear-gradient(135deg, #3df9fb 0%, #2a5298 100%);
        border-radius: 10px;
        padding: 15px 25px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        box-shadow: 
            0 4px 20px rgba(61, 249, 251, 0.4),
            0 8px 32px rgba(42, 82, 152, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
        cursor: pointer;
        max-width: 100%;
        height: 60px;
        margin-top: 5px;
        box-sizing: border-box;
        font-size: 13px;
        font-weight: 600;
        position: relative;
        transition: all 0.3s ease;
    }
    
    /* Parlama efekti */
    .desktop-pro-payment-area .support-content::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 50%;
        height: 100%;
        background: linear-gradient(90deg, 
            transparent, 
            rgba(255, 255, 255, 0.3), 
            transparent);
        animation: payment-shine 4s ease-in-out infinite;
    }
    
    @keyframes payment-shine {
        0%, 100% { left: -100%; }
        50% { left: 150%; }
    }
    
    .desktop-pro-payment-area .support-content:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 
            0 6px 24px rgba(61, 249, 251, 0.5),
            0 12px 40px rgba(42, 82, 152, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
    
    .desktop-support-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.6s ease;
    }
    
    .desktop-support-cta:hover::before {
        left: 100%;
    }
    
    .desktop-support-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(61, 249, 251, 0.35);
    }
    
    .support-left {
        display: flex;
        align-items: center;
        gap: 20px;
        flex: 1;
        position: relative;
        z-index: 2;
    }
    
    .support-icon-wrapper {
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .support-icon-wrapper svg,
    .support-icon {
        width: 22px;
        height: 22px;
        fill: white;
        color: white;
    }
    
    .support-content {
        flex: 1;
    }
    
    .support-title {
        font-size: 16px;
        font-weight: 600;
        color: white;
        margin: 0;
        text-align: center;
    }
    
    .support-subtitle {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.95);
        text-align: center;
        margin: 4px 0 0 0;
    }
    
    .support-right {
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
        z-index: 2;
    }
    
    .support-action {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 20px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border-radius: 10px;
        transition: all 0.2s ease;
    }
    
    .support-action:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateX(2px);
    }
    
    .support-number {
        font-size: 16px;
        font-weight: 700;
        color: white;
    }
    
    .support-action svg {
        width: 16px;
        height: 16px;
        stroke: white;
    }
    
    .support-link-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 3;
    }
    
    /* === AD SECTIONS === */
    .ad-section {
        padding: 20px 0;
        background: transparent;
    }
    
    .ad-section .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .ad-banner {
        height: 90px;
        background: #f9fafb;
        border: 1px dashed #e5e7eb;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .ad-banner:hover {
        background: linear-gradient(135deg, #ffffff, var(--tak-gray-50));
        border-color: var(--tak-cyan);
        border-style: solid;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(61, 249, 251, 0.1);
    }
    
    .ad-placeholder {
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--tak-gray-400);
        font-size: 14px;
        font-weight: 500;
    }
    
    .ad-placeholder i {
        font-size: 18px;
    }
    
    /* === DESKTOP SECTIONS - FIXED SPACING === */
    .featured-section,
    .popular-section,
    .recent-section {
        padding: 30px 0; /* Daha az padding */
        background: transparent;
        margin-top: 0; /* Margin sıfır */
    }
    
    .featured-section {
        padding-top: 25px; /* VİTRİN bölümü için yeterli üst boşluk */
    }
    
    .popular-section {
        /*background: linear-gradient(135deg, var(--tak-gray-50) 0%, #ffffff 100%);*/
    }
    
    .container {
        max-width: 1144px; /* Sabit genişlik */
        margin: 0 auto;
        padding: 0 20px;
        min-width: 1144px; /* 1144px altında scroll */
    }
    
    /* Desktop pro içindeki container'lar padding almaz */
    .desktop-pro-main-container .container {
        padding: 0;
    }
    
    .section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 36px;
        padding-bottom: 16px;
        border-bottom: 2px solid #e5e7eb;
        position: relative;
    }
    
    .section-header::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 80px;
        height: 2px;
        background: linear-gradient(90deg, var(--tak-cyan), var(--tak-blue));
    }
    
    .section-header-left {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .section-title {
        font-size: 28px;
        font-weight: 700;
        color: var(--tak-gray-900);
        margin: 0;
        letter-spacing: -0.5px;
    }
    
    .section-subtitle {
        font-size: 15px;
        color: var(--tak-gray-600);
        margin: 4px 0 0 0;
        font-weight: 400;
    }
    
    .view-all-btn {
        padding: 10px 20px;
        background: white;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        color: #374151;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.3s ease;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
    
    .view-all-btn:hover {
        background: var(--tak-cyan);
        border-color: var(--tak-cyan);
        color: white;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(61, 249, 251, 0.3);
    }
    
    /* === DESKTOP GRID LAYOUTS === */
    .featured-grid,
    .homepage-vitrin-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
        padding: 0;
        margin: 0;
    }
    
    .popular-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 16px;
        padding: 0;
        margin: 0;
    }
    
    .recent-grid,
    .recent-grid-container {
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
        padding: 0;
        margin: 0;
    }
    
    /* === VITRIN CARDS - PROFESYONEL TASARIM === */
    .vitrin-card {
        background: white;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s ease;
        cursor: pointer;
        position: relative;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .vitrin-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-color: #3df9fb;
    }
    
    .vitrin-card-image {
        width: 100%;
        height: 240px;
        position: relative;
        overflow: hidden;
        background: #f9fafb;
    }
    
    .vitrin-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }
    
    .vitrin-card:hover .vitrin-card-image img {
        transform: scale(1.05);
    }
    
    .vitrin-card-content {
        padding: 16px;
        background: white;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .vitrin-card-title {
        font-size: 15px;
        font-weight: 600;
        color: #111827;
        margin-bottom: 8px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 42px;
    }
    
    .vitrin-card-specs {
        font-size: 12px;
        color: #6b7280;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 4px;
        flex-wrap: wrap;
    }
    
    .vitrin-card-specs .separator {
        width: 3px;
        height: 3px;
        background: var(--tak-gray-300);
        border-radius: 50%;
        margin: 0 2px;
    }
    
    .vitrin-card-year-location {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 12px;
        font-size: 12px;
        margin-top: auto;
    }
    
    .vitrin-card-year {
        color: var(--tak-gray-600);
        font-weight: 500;
    }
    
    .vitrin-card-location {
        display: flex;
        align-items: center;
        gap: 4px;
        color: var(--tak-gray-500);
    }
    
    .vitrin-card-location i {
        font-size: 12px;
        color: var(--tak-cyan);
    }
    
    .vitrin-card-price-section {
        padding-top: 12px;
        border-top: 1px solid #f3f4f6;
        margin-top: auto;
    }
    
    .vitrin-card-price {
        font-size: 18px;
        font-weight: 700;
        color: #111827;
        text-align: center;
    }
    
    /* === VITRIN BADGES - YENİ PROFESYONEL TASARIM === */
    .vitrin-card-badges {
        position: absolute;
        top: 10px;
        left: 10px;
        right: 10px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        z-index: 10;
        pointer-events: none;
    }
    
    .vitrin-badge {
        padding: 4px 10px;
        font-size: 10px;
        font-weight: 600;
        border-radius: 6px;
        text-transform: uppercase;
        color: white;
        backdrop-filter: blur(8px);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
        letter-spacing: 0.5px;
        display: inline-block;
        margin: 2px;
    }
    
    .vitrin-badge.featured {
        background: #f97316;
    }
    
    .vitrin-badge.tag[data-tag="YENİ"],
    .vitrin-badge.tag[data-tag="YENI"] {
        background: #06b6d4;
    }
    
    .vitrin-badge.tag[data-tag="ACİL"],
    .vitrin-badge.tag[data-tag="ACIL"] {
        background: #ef4444;
    }
    
    .vitrin-badge.tag[data-tag="FIRSAT"] {
        background: #f59e0b;
    }
    
    /* === POPULAR CARDS - PROFESYONEL TASARIM === */
    .popular-card {
        background: white;
        border: 1px solid #e5e7eb;
        border-radius: 10px;
        overflow: hidden;
        transition: all 0.3s ease;
        cursor: pointer;
        position: relative;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .popular-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
        border-color: #d1d5db;
    }
    
    .popular-card-image {
        width: 100%;
        height: 140px;
        background: #f9fafb;
        overflow: hidden;
        position: relative;
    }
    
    .popular-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .popular-card:hover .popular-card-image img {
        transform: scale(1.05);
    }
    
    .popular-card-content {
        padding: 14px;
        background: white;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 120px;
    }
    
    .popular-card-title {
        font-size: 15px;
        font-weight: 600;
        color: var(--tak-gray-900);
        margin-bottom: 8px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 42px;
    }
    
    .popular-card-specs {
        font-size: 12px;
        color: var(--tak-gray-600);
        margin-bottom: 8px;
        line-height: 1.3;
        font-weight: 500;
    }
    
    .popular-card-location {
        font-size: 11px;
        color: var(--tak-gray-500);
        display: flex;
        align-items: center;
        gap: 4px;
        margin-bottom: 10px;
        font-weight: 500;
    }
    
    .popular-card-location i {
        font-size: 10px;
        color: var(--tak-cyan);
    }
    
    .popular-card-price-section {
        text-align: center;
        padding-top: 10px;
        border-top: 1px solid var(--tak-gray-100);
        margin-top: auto;
    }
    
    .popular-card-price {
        font-size: 15px;
        font-weight: 700;
        color: var(--tak-blue);
        padding: 4px 8px;
        background: rgba(59, 130, 246, 0.05);
        border-radius: 6px;
        display: inline-block;
    }
    
    /* === RECENT CARDS - PROFESYONEL TASARIM === */
    .recent-card {
        background: white;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s ease;
        cursor: pointer;
        position: relative;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .recent-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        border-color: #e5e7eb;
    }
    
    .recent-card-image {
        width: 100%;
        height: 200px;
        background: #f9fafb;
        overflow: hidden;
        position: relative;
    }
    
    .recent-card-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .recent-card:hover .recent-card-image img {
        transform: scale(1.05);
    }
    
    .recent-card-content {
        padding: 16px;
        background: white;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .recent-title {
        font-size: 14px;
        font-weight: 600;
        color: var(--tak-gray-900);
        margin-bottom: 8px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .recent-category {
        display: inline-block;
        font-size: 10px;
        color: var(--tak-gray-500);
        background: var(--tak-gray-100);
        padding: 3px 8px;
        border-radius: 6px;
        margin-bottom: 8px;
    }
    
    .recent-specs {
        font-size: 12px;
        color: var(--tak-gray-500);
        margin-bottom: 8px;
    }
    
    .recent-location-year {
        font-size: 12px;
        color: var(--tak-gray-400);
        margin-bottom: 12px;
    }
    
    .recent-price {
        font-size: 16px;
        font-weight: 700;
        color: #1e40af;
        text-align: center;
        padding-top: 12px;
        border-top: 1px solid #f3f4f6;
        position: relative;
    }
    
    .recent-price::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--tak-cyan), transparent);
    }
    
    /* === LOADING & EMPTY STATES === */
    .loading-spinner,
    .vitrin-loading,
    .popular-loading,
    .recent-loading {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 60px 20px;
        color: var(--tak-gray-500);
        grid-column: 1 / -1;
    }
    
    .spinner-icon,
    .loading-icon {
        width: 40px;
        height: 40px;
        border: 3px solid var(--tak-gray-200);
        border-top-color: var(--tak-cyan);
        border-radius: 50%;
        animation: spin 1s linear infinite;
        margin-bottom: 16px;
    }
    
    @keyframes spin {
        to { transform: rotate(360deg); }
    }
    
    .loading-spinner span,
    .popular-loading span,
    .recent-loading span {
        font-size: 14px;
        color: var(--tak-gray-500);
        font-weight: 500;
    }
    
    /* === FOOTER === */
    #site-footer {
        background: #1f2937;
        color: #9ca3af;
        padding: 50px 0 30px;
        margin-top: 60px;
        border-top: 1px solid #374151;
    }
    
    #site-footer .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 24px;
    }
    
    /* RESPONSIVE BREAKPOINTS KALDIRILDI - SABİT 1144px GENISLIK */
    
    /* === SCROLLBAR STYLING === */
    ::-webkit-scrollbar {
        width: 12px;
        height: 12px;
    }
    
    ::-webkit-scrollbar-track {
        background: var(--tak-gray-100);
        border-radius: 6px;
    }
    
    ::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, var(--tak-gray-400), var(--tak-gray-500));
        border-radius: 6px;
        border: 2px solid var(--tak-gray-100);
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(135deg, var(--tak-cyan), var(--tak-blue));
    }
    
    /* === ANIMATIONS === */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .vitrin-card,
    .popular-card,
    .recent-card {
        animation: fadeInUp 0.6s ease-out;
        animation-fill-mode: both;
    }
    
    .vitrin-card:nth-child(1),
    .popular-card:nth-child(1),
    .recent-card:nth-child(1) { animation-delay: 0.1s; }
    
    .vitrin-card:nth-child(2),
    .popular-card:nth-child(2),
    .recent-card:nth-child(2) { animation-delay: 0.2s; }
    
    .vitrin-card:nth-child(3),
    .popular-card:nth-child(3),
    .recent-card:nth-child(3) { animation-delay: 0.3s; }
    
    .vitrin-card:nth-child(4),
    .popular-card:nth-child(4),
    .recent-card:nth-child(4) { animation-delay: 0.4s; }
    
    .vitrin-card:nth-child(5),
    .popular-card:nth-child(5),
    .recent-card:nth-child(5) { animation-delay: 0.5s; }
    
    .vitrin-card:nth-child(6),
    .popular-card:nth-child(6),
    .recent-card:nth-child(6) { animation-delay: 0.6s; }
}

/* === MOBİL KORUMA - HİÇBİR MÜDAHELE YOK === */
@media only screen and (max-width: 768px) {
    /* MOBİL TASARIM KORUNUYOR! */
    
    /* Desktop elementleri mobilde gizle */
    .desktop-support {
        display: none;
    }
    
    /* Mobil support görünsün */
    .mobile-support {
        display: block;
    }
    
    /* Desktop user profile gizle */
    .desktop-user-profile,
    .desktop-user-dropdown {
        display: none;
    }
}
