/* Dil değiştirici bileşeni */
/* Language Dropdown Styles */
        .y360-lang-dropdown {
            position: relative;
        }

        .y360-lang-trigger {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 7px 14px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.06);
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.05em;
            cursor: pointer;
            transition: all 0.2s ease;
            outline: none;
            overflow: visible;
            line-height: 1;
        }

        .y360-lang-trigger:hover {
            border-color: rgba(255, 255, 255, 0.25);
            background: rgba(255, 255, 255, 0.1);
        }

        /* Dark header variant */
        .y360-lang-trigger-dark {
            border-color: rgba(15, 23, 42, 0.12) !important;
            background: rgba(15, 23, 42, 0.04) !important;
            color: #0f172a !important;
        }

        .y360-lang-trigger-dark:hover {
            border-color: rgba(15, 23, 42, 0.25) !important;
            background: rgba(15, 23, 42, 0.08) !important;
        }

        /* Dropdown menu */
        .y360-lang-menu {
            position: absolute;
            top: calc(100% + 6px);
            left: 50%;
            transform: translateX(-50%);
            min-width: 120px;
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
            padding: 4px;
            z-index: 100;
            overflow: hidden;
        }

        .y360-lang-option {
            display: flex;
            align-items: center;
            gap: 6px;
            width: 100%;
            padding: 6px 10px;
            border: none;
            border-radius: 7px;
            background: transparent;
            color: #334155;
            font-size: 11px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.15s ease;
            outline: none;
            text-align: left;
        }

        .y360-lang-option:hover {
            background: #f1f5f9;
        }

        .y360-lang-option-active {
            background: #f0fdf4 !important;
            color: #15803d !important;
            font-weight: 600;
        }

        .y360-lang-check {
            width: 12px;
            height: 12px;
            margin-left: auto;
            color: #22c55e;
            display: none;
        }

        /* Mobile variant */
        .y360-lang-trigger-mobile {
            border-color: rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
            padding: 10px 18px;
            font-size: 14px;
            border-radius: 12px;
        }

        .y360-lang-menu-mobile {
            bottom: calc(100% + 8px);
            top: auto;
            left: 50%;
            right: auto;
            transform: translateX(-50%);
        }
