
        /* ===== DROPDOWN KESİN ÇÖZÜM ===== */
        .dropdown-content {
            display: none !important;
            position: absolute;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            z-index: 1000;
        }
        
        .dropdown:hover .mega-menu {
            display: flex !important;
            gap: 15px;
        }
        
        .dropdown:hover .standard-menu {
            display: block !important;
        }

        .dropdown-column h4 { margin-bottom: 8px; font-size: 14px; }
        .dropdown-column a { font-size: 13px; padding: 4px 0; display: block; }
        .dropdown-column h4 a { transition: color 0.3s; }
        .dropdown-column h4 a:hover, .dropdown-column a:hover { color: var(--accent-red) !important; }

        .slider-wrapper {
            position: relative;
            overflow: hidden;
            width: 100%;
        }
        
        .product-track {
            display: flex !important;
            flex-wrap: nowrap !important;
            gap: 20px;
            transition: transform 0.4s ease-out;
        }

        .product-card {
            flex: 0 0 auto !important;
            box-sizing: border-box;
            position: relative;
        }

        @media (max-width: 480px) {
            .product-card {
                width: calc(100% - 20px) !important;
            }
        }
        
        @media (min-width: 481px) and (max-width: 768px) {
            .product-card {
                width: calc(50% - 20px) !important;
            }
        }

        .slider-btn {
            position: absolute !important;
            top: 50% !important;
            transform: translateY(-50%) !important;
            z-index: 10;
        }
        .prev-btn { left: 5px !important; }
        .next-btn { right: 5px !important; }

        /* ===== YENİ ÜRÜNLER ORTALAMA ===== */
        #newProductTrack {
            justify-content: center;
            flex-wrap: nowrap !important;
        }

        /* ===== DİL DEĞİŞTİRME BUTONU ===== */
        .lang-switcher {
            display: flex;
            align-items: center;
            gap: 0;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.18);
            border-radius: 20px;
            overflow: hidden;
            backdrop-filter: blur(8px);
            margin-left: 12px;
            flex-shrink: 0;
        }

        .lang-btn {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 5px 13px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
            cursor: pointer;
            border: none;
            background: transparent;
            color: rgba(255,255,255,0.55);
            transition: all 0.25s ease;
            font-family: 'Poppins', sans-serif;
            text-transform: uppercase;
        }

        .lang-btn .flag {
            font-size: 14px;
            line-height: 1;
        }

        .lang-btn.active {
            background: #e53935;
            color: #fff;
            border-radius: 18px;
        }

        .lang-btn:hover:not(.active) {
            color: rgba(255,255,255,0.9);
            background: rgba(255,255,255,0.08);
        }

        .glass-nav .lang-switcher {
            border-color: rgba(255,255,255,0.15);
        }

        @media (max-width: 768px) {
            .lang-switcher {
                margin-left: 0;
                margin-right: 8px;
            }
            .lang-btn {
                padding: 4px 10px;
                font-size: 11px;
            }
        }

        [data-tr], [data-en] {
            transition: opacity 0.2s ease;
        }

        /* ===== YENİ ÜRÜN DUYURU BANNERI ===== */
        .announcement-banner {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(90deg, #b71c1c 0%, #e53935 100%);
            color: white;
            z-index: 2000;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 10px 20px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            font-family: 'Poppins', sans-serif;
            box-sizing: border-box;
        }

        .announcement-banner.hidden {
            transform: translateY(-100%);
        }

        .banner-content {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 14px;
            font-weight: 500;
        }

        .pulse-dot {
            width: 10px;
            height: 10px;
            background-color: #fff;
            border-radius: 50%;
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
        }

        .banner-btn {
            background: #fff;
            color: #e53935;
            padding: 5px 15px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .banner-btn:hover {
            background: #ffebee;
            transform: scale(1.05);
        }

        .banner-close {
            position: absolute;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 16px;
            cursor: pointer;
            opacity: 0.7;
            transition: opacity 0.3s;
        }

        .banner-close:hover {
            opacity: 1;
        }

        body.banner-active .glass-nav {
            top: 45px; 
            transition: top 0.4s ease;
        }
        
        @media (max-width: 768px) {
            .banner-content { font-size: 12px; flex-wrap: wrap; justify-content: center; text-align: center; gap: 10px; }
            .banner-btn { padding: 4px 12px; font-size: 11px; }
            body.banner-active .glass-nav { top: 75px; }
        }

        .partner-brands-carousel {
            padding: 100px 20px;
            background-color: transparent;
            text-align: center;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
            overflow: hidden; 
        }
        .partner-brands-carousel .section-title {
            font-size: 38px;
            font-weight: 800; 
            color: #e74c3c; 
            margin-bottom: 70px; 
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }
        .logo-slider {
            width: 100%;
            margin: 0 auto;
            overflow: hidden;
            position: relative;
            max-width: 1800px;
        }
        .logo-slide-track {
            display: flex;
            width: calc(380px * 16); 
            animation: scroll 40s linear infinite; 
        }
        .brand-logo {
            width: 380px; 
            height: 140px; 
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 5px; 
            background: transparent;
        }
        .brand-logo img {
            max-width: 280px; 
            max-height: 120px; 
            height: auto;
            width: auto;
            display: block;
            filter: brightness(110%) contrast(105%); 
            object-fit: contain; 
        }
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-380px * 8)); }
        }
        @media (max-width: 768px) {
            .partner-brands-carousel { padding: 70px 10px; }
            .partner-brands-carousel .section-title { font-size: 30px; margin-bottom: 50px; }
            .brand-logo { width: 280px; height: 100px; }
            .brand-logo img { max-width: 180px; max-height: 80px; }
            .logo-slide-track { width: calc(280px * 16); animation: scroll 30s linear infinite; }
        }
    