        .custom-user-account {
            position: relative;
            display: flex;
            align-items: center;
            gap: 8px;
            color: white;
            text-decoration: none;
            cursor: pointer;
        }
        
        .custom-user-account .user-icon {
            width: 26.67px;
            height: 26.67px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .custom-user-account .user-icon .ct-icon {
            width: 100%;
            height: 100%;
            fill: white;
        }
        
        .custom-user-account .user-name {
            font-size: 14px !important;
            color: white !important;
            font-weight: 400 !important;
            font-family: "Arial" !important;
			text-transform: lowercase;
        }
        
        .user-dropdown-menu {
            position: absolute;
            width: 167px;
            margin-top: 12px;
            background: #FFFFFF;
            box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
            border-radius: 5px 0px 5px 5px;
            top: 100%;
            right: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        
        .custom-user-account:hover .user-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .user-dropdown-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 10px;
            text-decoration: none;
            transition: background-color 0.2s ease;
        }
        
        .user-dropdown-item:first-child {
            border-radius: 8px 8px 0 0;
        }
        
        .user-dropdown-item:last-child {
            border-bottom: none;
            border-radius: 0 0 8px 8px;
        }
        
        .user-dropdown-item img {
            width: 24px;
            height: 24px;
            object-fit: contain;
        }
        
        .user-dropdown-item span {
            font-family: 'Plus Jakarta Sans';
            font-style: normal;
            font-weight: 600;
            font-size: 15px;
            line-height: 150%;
            color: #003F74;
        }
        
        .custom-header-bar {
            font-size: 14px;
            color: #fff;
            position: relative;
            z-index: 1000;
        }
        
        .custom-header-container {
            max-width: 100%;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-right: 40px;
            padding-left: 12px;
        }
        
        .custom-header-left {
            flex: 1;
            display: flex;
            justify-content: var(--cnr-header-alignment, center);
            align-items: center;
            gap: 10px;
        }
        
        .custom-header-left p, 
        .custom-header-left div {
            margin: 0;
            color: var(--cnr-header-text-color, #ffffff);
            font-weight: bold;
        }
        
        .custom-header-icon {
            width: 20px;
            height: 20px;
            object-fit: contain;
            cursor: pointer;
            transition: transform 0.2s ease;
        }
        
        .custom-header-icon:hover {
            transform: scale(1.1);
        }
        
        .custom-header-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .custom-header-links {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .custom-header-link {
            color: white;
            text-decoration: underline;
            font-size: 13px;
        }
        
        .custom-newsletter-btn {
            color: white;
            padding: 0 50px;
            text-decoration: none;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .custom-newsletter-icon {
            width: 24px;
            height: 16.62px;
            object-fit: contain;
        }
        
        .custom-language-switcher {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .custom-language-switcher img {
            width: 23px;
            height: 16.61px;
            object-fit: cover;
        }
        
        .custom-language-switcher a {
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        
        .custom-header-popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 99999;
            justify-content: center;
            align-items: center;
        }
        
        .custom-header-popup-content {
            background: white;
            border-radius: 6px;
            width: 900px;
            max-width: 90vw;
            max-height: 90vh;
            position: relative;
            padding: 20px;
            border: 1px solid rgba(0, 0, 0, .2);
        }
        
        .custom-header-popup-close {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 28px;
            background: none;
            border: none;
            cursor: pointer;
            color: #333;
            font-weight: bold;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
            z-index: 10;
        }
        
        .custom-header-popup-close:hover {
            background-color: #f0f0f0;
            color: #000;
        }
        
        .popup-inner-content {
            width: 100%;
        }
        
        .video-container {
            width: 100%;
        }
        
        .video-container video {
            width: 100%;
            height: auto;
            display: block;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .custom-header-popup-overlay {
            animation: fadeIn 0.3s ease;
        }
        
        .custom-header-text {
            cursor: pointer;
            transition: opacity 0.2s ease;
            text-transform: math-auto;
        }
        
        .custom-header-text:hover {
            opacity: 0.8;
        }
        
        @keyframes slideIn {
            from { 
                opacity: 0;
                transform: translateY(-50px) scale(0.9);
            }
            to { 
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        .custom-header-bar .ct-header-account {
            width: 26.67px;
            height: 26.67px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .custom-header-bar .ct-header-account .ct-account-item {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            text-decoration: none;
        }
        
        .custom-header-bar .ct-header-account .ct-icon {
            width: 100%;
            height: 100%;
            fill: white;
        }
        
        .custom-header-bar .ct-header-account .ct-label {
            display: none;
        }
        
        .ct-header-account-dropdown .menu-item {
            color: #000;
        }
            
        .ct-header-account-dropdown .menu-item a {
            color: #000;
        }
            
        .ct-header-account-dropdown .menu-item a:hover {
            color: #000;
        }
        
        .trp_language_switcher_shortcode {
            display: none !important;
        }
        
        @media (max-width: 999px) {
            .custom-user-account .user-name {
                display: none;
            }
            
            .user-dropdown-menu {
                right: -10px;
            }
            
            .custom-header-container {
                padding-right: 50px;
            }
            
            .custom-header-right {
                gap: 10px;
            }
            
            .custom-newsletter-btn {
                padding: 0 20px;
            }
            
            .ct-header-account[data-id="account"][data-state="out"] .ct-account-item {
                background-color: rgba(255,255,255,0.2) !important;
                padding: 8px 20px !important;
                border-radius: 5px !important;
                border: none !important;
                cursor: pointer !important;
            }

            .ct-header-account[data-id="account"][data-state="out"] .ct-account-item:hover {
                background-color: rgba(255,255,255,0.3) !important;
            }

            .ct-header-account[data-id="account"][data-state="out"] .ct-account-item .ct-label {
                display: inline;
                color: inherit;
            }
            
            .custom-header-popup-content {
                width: 95%;
                padding: 15px;
                margin: 20px;
            }
            
            .custom-header-popup-close {
                top: 5px;
                right: 10px;
                font-size: 24px;
                width: 35px;
                height: 35px;
            }
        }
