     :root {
            --primary-color: #0d9488;
            --secondary-color: #0d9488;
            --accent-color: #2dd4bf;
            --dark-bg: #ffffff;
            --dark-card: #ffffff;
            --text-primary: #1e293b;
            --text-secondary: #64748b;
            --gradient-1: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
            --gradient-2: linear-gradient(135deg, #2dd4bf 0%, #5eead4 100%);
            --shadow: 0 10px 40px rgba(13, 148, 136, 0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Top Banner */
        .top-banner {
            display: none;
        }

        /*.top-banner.hidden {
            transform: translateY(-100%);
        }*/

        .banner-container {
            max-width: 1400px;
            width: 100%;
            padding: 0 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .banner-content {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            flex: 1;
            justify-content: center;
        }

        .banner-text {
            color: white;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .banner-btn {
            background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
            color: #ffffff;
            padding: 0.4rem 1rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            transition: all 0.3s;
        }

        .banner-btn:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: scale(1.05);
        }

        .banner-close {
            background: transparent;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            transition: all 0.3s;
        }

        .banner-close:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        /* Navbar — sky blue with warm orange glow & cloud */
        .navbar {
            position: fixed;
            top: 50px;
            width: 100%;

            background: linear-gradient(135deg, #0066EE 0%, #0088FF 30%, #33AAFF 55%, #f5c87a 92%, #f0b960 100%);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.35);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        /* White cloud decoration on the navbar */
        .navbar::before {
            content: '';
            position: absolute;
            top: -18px;
            right: 12%;
            width: 120px;
            height: 50px;
            background: radial-gradient(ellipse at 50% 70%, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.6) 40%, rgba(255,255,255,0.15) 70%, transparent 100%);
            border-radius: 60% 60% 40% 40% / 70% 70% 30% 30%;
            filter: blur(1.5px);
            pointer-events: none;
            z-index: 1;
            animation: navCloudDrift 16s ease-in-out infinite;
        }

        /* Subtle warm glow spot */
        .navbar::after {
            content: '';
            position: absolute;
            top: -10px;
            right: 25%;
            width: 180px;
            height: 60px;
            background: radial-gradient(ellipse at 50% 80%, rgba(252, 196, 100, 0.35) 0%, rgba(252, 176, 69, 0.12) 50%, transparent 80%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
            filter: blur(6px);
        }

        @keyframes navCloudDrift {
            0%, 100% { transform: translateX(0) scale(1); opacity: 0.85; }
            50% { transform: translateX(30px) scale(1.08); opacity: 1; }
        }

        /*.navbar.banner-hidden {
            top: 0;
        }*/

        .navbar.scrolled {
            background: linear-gradient(135deg, #0055CC 0%, #0077EE 30%, #2299EE 55%, #e8b563 92%, #dba64e 100%);
            backdrop-filter: blur(12px);
            box-shadow: 0 4px 24px rgba(100, 180, 220, 0.25), 0 2px 12px rgba(240, 180, 80, 0.12);
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        }
        .navbar.scrolled .nav-menu > li > a {
            color: #ffffff;
            text-shadow: 0 1px 3px rgba(0, 60, 120, 0.15);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.6rem;
            font-weight: 800;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
        }

        .logo img {
            vertical-align: middle;
        }

        .nav-menu {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
        }

        .nav-menu a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
            text-shadow: 0 1px 3px rgba(0, 60, 120, 0.18);
            white-space: nowrap;
        }

        .nav-menu > li > a:hover {
            color: #fff8e1;
            text-shadow: 0 0 8px rgba(252, 196, 100, 0.5);
        }

        .nav-menu > li > a.active {
            color: #fff8e1;
            text-shadow: 0 0 10px rgba(252, 196, 100, 0.55);
        }

        .nav-menu > li > a.active::before {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: -0.22rem;
            height: 2px;
            border-radius: 2px;
            background: linear-gradient(90deg, #fde68a, #f59e0b);
            box-shadow: 0 0 10px rgba(245, 158, 11, 0.55);
        }

        /* Dropdown Menu - Modern Style */
        .nav-menu li {
            position: relative;
        }

        /* 添加悬停区域，防止菜单消失 */
        .nav-menu > li::before {
            content: '';
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            height: 50px;
            background: transparent;
            z-index: 998;
        }

        .nav-menu .dropdown {
            visibility: hidden;
            opacity: 0;
            position: fixed;
            top: 55px;
            left: 0;
            right: 0;
            transform: translateY(0);
            background: white;
            width: 100vw;
            border-radius: 0;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            z-index: 999;
            transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
            pointer-events: none;
            padding: 2rem 0;
            margin-top: 0;
        }

        .nav-menu li:hover > .dropdown,
        .nav-menu li:focus-within > .dropdown,
        .nav-menu .dropdown:hover {
            visibility: visible;
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
            transition-delay: 0s;
        }

        /* Dropdown inner container */
        .dropdown-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Dropdown grid layout */
        .dropdown-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1rem;
        }

        .dropdown-grid-inner {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            padding: 1rem 0;
        }



        .dropdown-grid-inner a {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem;
            border-radius: 12px;
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
        }

        .dropdown-grid-inner a:hover {
            background: #f8f9fa;
            transform: translateY(-2px);
        }

        /* Category header styling */
        .dropdown-category-header {
            grid-column: 1 / -1;
            color: #6c757d;
            font-size: 0.875rem;
            font-weight: 600;
            padding: 12px 0 8px;
            margin-top: 8px;
            border-bottom: 2px solid #e9ecef;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .dropdown-category-header:first-child {
            margin-top: 0;
        }

        /* Special styling for productCategoriesDropdown */
        #productCategoriesDropdown {
            display: flex;
            flex-direction: row;
            gap: 2rem;
            width: 100%;
        }

        /* Each category column */
        #productCategoriesDropdown .dropdown-category-column {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        /* Category headers - displayed at top of each column */
        #productCategoriesDropdown .dropdown-category-header {
            color: #6c757d;
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 0 0 12px 0;
            margin: 0;
            border-bottom: 2px solid #dee2e6;
        }

        /* Container for items within each column */
        #productCategoriesDropdown .dropdown-category-items {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        /* Items within the category */
        #productCategoriesDropdown .dropdown-category-items a {
            display: flex;
            align-items: center;
            gap: 0.875rem;
            padding: 0.875rem 1rem;
            width: 100%;
            box-sizing: border-box;
            cursor: pointer;
            color: #1a1a1a;
            text-decoration: none;
            transition: all 0.25s ease;
            position: relative;
            border-radius: 8px;
            background: transparent;
            font-size: 0.95rem;
        }

        #productCategoriesDropdown .dropdown-category-items a:hover {
            background: #f8f9fa;
            transform: translateX(0);
        }

        /* Product dropdown - same column layout as pricing dropdown */
        #productListDropdown {
            display: flex;
            flex-direction: row;
            gap: 2rem;
            width: 100%;
        }

        #productListDropdown .dropdown-category-column {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        #productListDropdown .dropdown-category-header {
            color: #6c757d;
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 0 0 12px 0;
            margin: 0;
            border-bottom: 2px solid #dee2e6;
        }

        #productListDropdown .dropdown-category-items {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        #productListDropdown .dropdown-category-items a {
            display: flex;
            align-items: center;
            gap: 0.875rem;
            padding: 0.875rem 1rem;
            width: 100%;
            box-sizing: border-box;
            cursor: pointer;
            color: #1a1a1a;
            text-decoration: none;
            transition: all 0.25s ease;
            position: relative;
            border-radius: 8px;
            background: transparent;
            font-size: 0.95rem;
        }

        #productListDropdown .dropdown-category-items a:hover {
            background: #f8f9fa;
            transform: translateX(0);
        }

        .nav-menu .dropdown a {
            display: flex;
            align-items: center;
            gap: 0.875rem;
            padding: 0.875rem 1rem;
            width: 100%;
            box-sizing: border-box;
            cursor: pointer;
            color: #1a1a1a;
            text-decoration: none;
            transition: all 0.25s ease;
            position: relative;
            border-radius: 8px;
            background: transparent;
            font-size: 0.95rem;
        }

        .nav-menu .dropdown a:hover {
            background: #f8f9fa;
            transform: translateX(0);
        }

        /* 菜单项图标 */
        .dropdown-item-icon {
            width: 52px;
            height: 52px;
            min-width: 52px;
            background: #f0f4f8;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: all 0.25s ease;
        }

        .nav-menu .dropdown a:hover .dropdown-item-icon {
            background: #e8f5f3;
            transform: scale(1.05);
        }

        /* 菜单项内容 */
        .dropdown-item-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 0.375rem;
        }

        .dropdown-item-title {
            font-size: 1rem;
            font-weight: 600;
            color: #1a1a1a;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            line-height: 1.3;
        }

        .dropdown-item-desc {
            font-size: 0.875rem;
            color: #6c757d;
            line-height: 1.4;
        }

        #productListDropdown .dropdown-item-desc {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .dropdown-item-price {
            font-size: 0.875rem;
            color: #2dd4bf;
            font-weight: 600;
            margin-top: 0.125rem;
        }

        /* 标签徽章 */
        .dropdown-badge {
            display: inline-block;
            padding: 0.25rem 0.625rem;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: none;
            letter-spacing: 0;
            line-height: 1;
        }

        .badge-hot {
            background: #FFF4ED;
            color: #0d9488;
            border: 1px solid #FED7AA;
        }

        .badge-new {
            background: #DBEAFE;
            color: #0d9488;
            border: 1px solid #BFDBFE;
        }

        .badge-popular {
            background: #FEF3C7;
            color: #D97706;
            border: 1px solid #FDE68A;
        }

        /* Dropdown item text without content wrapper */
        .dropdown-item-text {
            font-size: 1rem;
            font-weight: 500;
            color: #1a1a1a;
        }

        /* Chevron Icon for Dropdown */
        .nav-menu .dropdown-toggle {
            display: inline-flex !important;
            align-items: center !important;
            justify-content: flex-start;
            flex-direction: row !important;
            flex-wrap: nowrap !important;
            gap: 6px;
            width: auto;
            min-width: max-content;
            line-height: 1.2;
        }

        .nav-menu .dropdown-toggle::after {
            content: '';
            position: static;
            width: 0;
            height: 0;
            border-left: 4px solid transparent;
            border-right: 4px solid transparent;
            border-top: 5px solid currentColor;
            transition: all 0.25s ease;
            opacity: 0.7;
            flex: 0 0 auto;
        }

        .nav-menu li:hover .dropdown-toggle::after,
        .nav-menu li:focus-within .dropdown-toggle::after {
            transform: rotate(180deg);
            opacity: 1;
        }

        /* Fix: when dropdown-toggle is also .active, prevent active::after from repositioning the triangle */
        .nav-menu > li > a.dropdown-toggle.active::after {
            position: static !important;
            left: auto !important;
            right: auto !important;
            bottom: auto !important;
            width: 0 !important;
            height: 0 !important;
            background: none !important;
            border-radius: 0 !important;
            box-shadow: none !important;
            border-left: 4px solid transparent !important;
            border-right: 4px solid transparent !important;
            border-top: 5px solid currentColor !important;
            opacity: 0.7;
            flex: 0 0 auto !important;
        }

        .nav-buttons {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        /* 语言切换下拉样式 */
        .lang-switcher {
            position: relative;
            margin-right: 1rem;
        }

        /* 添加悬停区域，防止语言菜单消失 */
        .lang-switcher::before {
            content: '';
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            height: 15px;
            background: transparent;
            z-index: 998;
        }

        .lang-dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.6rem 0.8rem;
            background: rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(0, 0, 0, 0.08);
            color: #1e293b;
            text-decoration: none;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
            min-width: 70px;
            justify-content: center;
        }

        .lang-flag {
            font-size: 1.2rem;
            display: inline-block;
            line-height: 1;
        }

        .navbar.scrolled .lang-dropdown-toggle {
            color: var(--text-primary);
            background: rgba(0, 0, 0, 0.02);
            border-color: rgba(0, 0, 0, 0.1);
        }

        .lang-dropdown-toggle:hover {
            background: var(--gradient-1);
            color: white;
            border-color: transparent;
        }

        .lang-dropdown-toggle::after {
            content: '▼';
            font-size: 0.6rem;
            opacity: 0.7;
            transition: transform 0.25s ease;
            margin-left: 4px;
        }

        .lang-switcher:hover .lang-dropdown-toggle::after {
            transform: rotate(180deg);
            opacity: 1;
        }

        .lang-dropdown {
            visibility: hidden;
            opacity: 0;
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            background: white;
            min-width: 160px;
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            z-index: 999;
            transform: translateY(10px);
            transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
            pointer-events: none;
            overflow: hidden;
        }

        .lang-switcher:hover .lang-dropdown,
        .lang-dropdown:hover {
            visibility: visible;
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
            transition-delay: 0s;
        }

        .lang-dropdown a {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
            color: #1a1a1a;
            text-decoration: none;
            transition: all 0.2s ease;
            font-size: 0.9rem;
            font-weight: 500;
            border-bottom: 1px solid #f0f0f0;
        }

        .lang-dropdown a:last-child {
            border-bottom: none;
        }

        .lang-dropdown a:hover {
            background: #f8f9fa;
            color: #2dd4bf;
            padding-left: 1.25rem;
        }

        .lang-dropdown a.active {
            background: linear-gradient(90deg, rgba(0, 184, 148, 0.1), transparent);
            color: #2dd4bf;
            position: relative;
        }

        .lang-dropdown a.active::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 3px;
            background: linear-gradient(135deg, #2dd4bf, #5eead4);
        }

        .lang-dropdown a:first-child {
            border-radius: 8px 8px 0 0;
        }

        .lang-dropdown a:last-child {
            border-radius: 0 0 8px 8px;
        }

        .btn {
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            display: inline-block;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: #cb8989;
        }

        .btn-outline:hover {
            border-color: var(--primary-color);
            background: rgba(13, 148, 136, 0.1);
        }

        .btn-primary {
            background: var(--gradient-1);
            color: white;
            box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
        }

        /* Main Content */
        .main-content {
            margin-top: 120px;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Footer - Sunset Sky */
        .footer {
            background: 
                /* Sun rays */
                conic-gradient(from 250deg at 50% 105%,
                    transparent 0deg,
                    rgba(255, 220, 140, 0.06) 2deg,
                    rgba(255, 200, 100, 0.12) 5deg,
                    transparent 9deg,
                    transparent 15deg,
                    rgba(255, 210, 120, 0.08) 17deg,
                    rgba(255, 195, 90, 0.14) 20deg,
                    transparent 24deg,
                    transparent 32deg,
                    rgba(255, 225, 150, 0.06) 34deg,
                    rgba(255, 200, 100, 0.10) 37deg,
                    transparent 41deg,
                    transparent 48deg,
                    rgba(255, 215, 130, 0.07) 50deg,
                    rgba(255, 200, 100, 0.11) 53deg,
                    transparent 57deg,
                    transparent 360deg),
                /* Sun glow */
                radial-gradient(ellipse 60% 45% at 50% 100%,
                    rgba(255, 230, 160, 0.95) 0%,
                    rgba(248, 190, 80, 0.85) 10%,
                    rgba(235, 150, 55, 0.6) 22%,
                    rgba(210, 130, 70, 0.3) 40%,
                    transparent 60%),
                /* Sky gradient */
                linear-gradient(to top,
                    #D08028 0%,
                    #E09838 6%,
                    #E8A848 12%,
                    #E8B060 20%,
                    #D8A87A 28%,
                    #C8A090 35%,
                    #A898A8 42%,
                    #8090B0 50%,
                    #5878B8 60%,
                    #3E6AB8 70%,
                    #2C5EAE 80%,
                    #1E4D8C 100%);
            color: #ffffff;
            position: relative;
            overflow: hidden;
        }

        /* Cloud layers */
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            background:
                radial-gradient(ellipse 200px 45px at 18% 18%,
                    rgba(255, 255, 255, 0.3) 0%,
                    rgba(255, 255, 255, 0.12) 45%,
                    transparent 75%),
                radial-gradient(ellipse 180px 40px at 72% 22%,
                    rgba(255, 245, 230, 0.28) 0%,
                    rgba(255, 235, 210, 0.1) 50%,
                    transparent 78%);
        }

        .footer::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            background:
                radial-gradient(ellipse 350px 180px at 50% 88%,
                    rgba(255, 230, 170, 0.12) 0%,
                    rgba(255, 210, 140, 0.04) 50%,
                    transparent 75%);
        }

        .footer-main {
            position: relative;
            z-index: 1;
            padding: 4rem 0 3rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 2rem;
        }

        .footer-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: #FFF5E0;
            margin-bottom: 1.5rem;
            text-transform: none;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-links a:hover {
            color: #FFF5E0;
        }

        .badge-hot {
            background: rgba(255, 107, 107, 0.2);
            color: #ff6b6b;
            padding: 0.15rem 0.5rem;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 600;
        }

        .badge-available {
            color: #2dd4bf;
            font-size: 0.9rem;
        }

        /* Footer Brand Section */
        .footer-brand-section {
            /*padding: 3rem 0;*/
            /*border-bottom: 1px solid rgba(255, 255, 255, 0.1);*/
        }

        .footer-brand-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 1rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .footer-logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
        }

        .footer-language {
            position: relative;
        }

        /* Footer语言切换器样式 - 与导航栏保持一致 */
        .footer-language .lang-dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.6rem 0.8rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #ffffff;
            text-decoration: none;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
            min-width: 70px;
            justify-content: center;
        }

        .footer-language .lang-flag {
            font-size: 1.2rem;
            display: inline-block;
            line-height: 1;
        }

        .footer-language .lang-dropdown-toggle::after {
            content: '▼';
            font-size: 0.6rem;
            opacity: 0.7;
            transition: transform 0.25s ease;
            margin-left: 4px;
        }

        .footer-language:hover .lang-dropdown-toggle::after {
            transform: rotate(180deg);
            opacity: 1;
        }

        .footer-language .lang-dropdown {
            visibility: hidden;
            opacity: 0;
            position: absolute;
            bottom: calc(100% + 10px);
            right: 0;
            background: white;
            min-width: 160px;
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            z-index: 999;
            transform: translateY(-20px);
            transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
            pointer-events: none;
            overflow: hidden;
        }

        .footer-language:hover .lang-dropdown,
        .footer-language .lang-dropdown:hover {
            visibility: visible;
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
            transition-delay: 0s;
        }

        .footer-language .lang-dropdown a {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
            color: #1a1a1a;
            text-decoration: none;
            transition: all 0.2s ease;
            font-size: 0.9rem;
            font-weight: 500;
            border-bottom: 1px solid #f0f0f0;
        }

        .footer-language .lang-dropdown a:last-child {
            border-bottom: none;
        }

        .footer-language .lang-dropdown a:hover {
            background: #f8f9fa;
            color: #2dd4bf;
            padding-left: 1.25rem;
        }

        .footer-language .lang-dropdown a.active {
            background: linear-gradient(90deg, rgba(0, 184, 148, 0.1), transparent);
            color: #2dd4bf;
            position: relative;
        }

        .footer-language .lang-dropdown a.active::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 3px;
            background: linear-gradient(135deg, #2dd4bf, #5eead4);
        }

        /* Footer Integrations */
        .footer-integrations {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
            justify-content: center;
            padding: 1rem 0;
            margin-bottom: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .integration-item {
            display: inline-block;
            opacity: 0.6;
            transition: all 0.3s ease;
            text-decoration: none;
            padding:0.5rem;
            color: #ffffff;
        }

        .integration-item:hover {
            opacity: 1;
            transform: translateY(-2px);
        }

        .integration-logo {
            height: 32px;
            width: auto;
            display: block;
            filter: brightness(0) invert(1);
        }

        /* Footer Contact */
        .footer-contact {
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
        }

        .footer-contact-row {
            display: flex;
            align-items: center;
           /* gap: 3rem;*/
            flex-wrap: wrap;
        }

        .contact-links {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .contact-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            /*background: rgba(255, 255, 255, 0.05);*/
            border-radius: 8px;
            color: rgba(255, 255, 255, 0.7);
            transition: all 0.3s;
            text-decoration: none;
        }

        .contact-icon:hover {
            background: #5eead4;
            color: #ffffff;
            transform: translateY(-2px);
        }

        .contact-emails {
            display: flex;
            gap: 2rem;
            align-items: center;
            padding-right: 5rem;
        }

        .contact-email {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .contact-email:hover {
            color: #5eead4;
        }

        .payment-methods {
            display: flex;
            gap: 1.5rem;
            align-items: center;
            margin-left: auto;
            padding: 0.5rem 2.5rem 0.5rem 0.5rem;
            transition: all 0.3s;
        }

        .payment-icon {
            /*height: 28px;
            width: auto;*/
            opacity: 0.6;
            transition: opacity 0.3s;
            filter: brightness(0) invert(1);
        }

        .payment-methods-link {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding: 0.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            text-decoration: none;
            border: 1px solid transparent;
            outline: none;
        }

        .payment-methods-link:focus {
            outline: none;
            box-shadow: none;
        }

        .payment-methods-link:hover {
            border-color: #4d6e6e;
        }

        .payment-methods-link::after {
            content: '→';
            position: absolute;
            right: 1rem;
            color: transparent;
            transition: color 0.3s ease;
        }

        .payment-methods-link:hover::after {
            color: #7a9493;
        }

        /* Footer Bottom */
        .footer-bottom {
            padding: 2rem 0;
            /*background: rgba(0, 0, 0, 0.2);*/
        }

        .footer-bottom-content {
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);;
        }

        .footer-legal p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.75rem;
            line-height: 1.6;
            margin-bottom: 0.5rem;
        }

        /* Footer Bottom Content - Three Column Layout */
        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            /*align-items: center;*/
            flex-wrap: wrap;
            gap: 2rem;
            padding-top: 2rem;
        }

        .footer-legal {
            display: flex;
            gap: 4rem;
            flex: 1;
            text-align: left;
        }

        .footer-legal p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
            margin: 0;
            flex: 1;
        }

        .footer-copyright p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
            margin: 0;
            text-align: right;
        }

        .footer-bottom-links a:hover {
            color: var(--text-primary);
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .mobile-menu-btn span {
            width: 25px;
            height: 2px;
            background: var(--text-primary);
            transition: all 0.3s;
        }

        @media (max-width: 968px) {
            .top-banner {
                height: auto;
                min-height: 40px;
                padding: 0.5rem 0;
            }

            .banner-text {
                font-size: 0.8rem;
            }

            .banner-btn {
                padding: 0.3rem 0.8rem;
                font-size: 0.8rem;
            }

            .nav-menu {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 2rem;
            }

            .footer-brand-content {
                flex-direction: column;
                gap: 1.5rem;
            }

            .footer-integrations {
                gap: 1.5rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .integration-logo {
                height: 28px;
            }

            .footer-contact-row {
                gap: 2rem;
            }

            .contact-emails {
                gap: 1.5rem;
            }

            .payment-methods {
                gap: 1rem;
                flex-wrap: wrap;
            }
        }

        @media (max-width: 576px) {
            .banner-content {
                flex-direction: column;
                gap: 0.5rem;
                text-align: center;
            }

            .banner-text {
                font-size: 0.75rem;
            }

            .nav-container {
                padding: 1rem;
            }

            .container {
                padding: 0 1rem;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .footer-main {
                padding: 2rem 0 1.5rem;
            }

            .footer-brand-section {
                padding: 2rem 0;
            }

            .footer-integrations {
                gap: 1rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .integration-logo {
                height: 24px;
            }

            .footer-contact-row {
                flex-direction: column;
                gap: 1.5rem;
            }

            .contact-links {
                gap: 0.5rem;
            }

            .contact-icon {
                width: 36px;
                height: 36px;
            }

            .contact-emails {
                flex-direction: column;
                gap: 1rem;
            }

            .payment-methods {
                justify-content: center;
                flex-wrap: wrap;
            }

            .payment-icon {
                height: 24px;
            }

            .footer-legal p {
                font-size: 0.7rem;
            }
        }
        .user-profile {
    position: relative;
}

.user-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem;
    background-color: transparent;
    border-radius: 50px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.user-dropdown-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* User Avatar Circle (Collapsed State) */
.user-avatar-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.user-initial {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.dropdown-arrow-icon {
    font-size: 0.7rem;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.user-profile:hover .dropdown-arrow-icon {
    transform: rotate(180deg);
    opacity: 1;
}

.user-dropdown {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
    pointer-events: none;
    min-width: 280px;
    transform: translateY(-10px);
}

.user-profile:hover .user-dropdown,
.user-dropdown:hover,
.user-dropdown.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0s;
}

.dropdown.show,
.lang-dropdown.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0s;
}

/* User Dropdown Header */
.user-dropdown-header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1.25rem 1rem;
    background: #E8EAF6;
    border-radius: 12px 12px 0 0;
}

.user-avatar-large {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5E6AD2 0%, #7C83DB 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(94, 106, 210, 0.25);
    flex-shrink: 0;
}

.user-initial-large {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    flex: 1;
    min-width: 0;
}

.user-email-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

/* Dropdown Divider */
.dropdown-divider {
    height: 1px;
    background: #E8EAF6;
    margin: 0.5rem 0;
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1rem;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    color: #2d3748;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.user-dropdown-item:hover {
    background-color: #F5F7FA;
}

.user-dropdown-item .dropdown-item-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: #F5F7FA;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5E6AD2;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.user-dropdown-item .dropdown-item-icon i {
    color: #5E6AD2;
    font-size: 1rem;
}

.user-dropdown-item:hover .dropdown-item-icon {
    background: #E8EAF6;
    transform: scale(1.05);
}

.user-dropdown-item:hover .dropdown-item-icon i {
    color: #5E6AD2;
}

.user-dropdown-item .dropdown-item-text {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a1a1a;
}

/* Logout Item */
.logout-item {
    color: #e53e3e;
}

.logout-item .dropdown-item-icon {
    background: #FFF5F5;
    color: #e53e3e;
}

.logout-item .dropdown-item-icon i {
    color: #e53e3e;
}

.logout-item:hover {
    background-color: #FFF5F5;
}

.logout-item:hover .dropdown-item-icon {
    background: #FED7D7;
}

.logout-item:hover .dropdown-item-icon i {
    color: #c53030;
}
.integration-more{
    color: #5eead4;
}

        /* Activity Banner Carousel — sky-sunset theme */
        .activity-carousel {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 50px;
            background: linear-gradient(135deg, #4a9ed6 0%, #5bb8e8 25%, #f7b955 65%, #f09837 100%);
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            transform: translateY(0);
            transition: transform 0.2s ease;
            box-shadow: 0 2px 12px rgba(80, 160, 220, 0.25), 0 1px 6px rgba(240, 152, 55, 0.15);
        }

        .activity-carousel.hidden {
            transform: translateY(-50px);
        }

        /* Navbar will follow activity carousel */
        .navbar {
            transition: top 0.2s ease;
        }

        .navbar.navbar-up {
            top: 0 !important;
        }

        .activity-carousel-content {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            max-width: 1400px;
            width: 100%;
            padding: 0 2rem;
            animation: slideIn 0.5s ease-out;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .activity-icon {
            font-size: 1.5rem;
            min-width: 30px;
            text-align: center;
        }

        .activity-text {
            color: white;
            font-size: 0.95rem;
            font-weight: 500;
            flex: 1;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .activity-button {
            background: rgba(255, 255, 255, 0.28);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.4);
            white-space: nowrap;
            text-shadow: 0 1px 2px rgba(0, 80, 160, 0.2);
        }

        .activity-button:hover {
            background: rgba(255, 255, 255, 0.45);
            border-color: rgba(255, 255, 255, 0.6);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(240, 152, 55, 0.25);
        }

        .activity-nav {
            display: flex;
            gap: 0.5rem;
            align-items: center;
        }

        .activity-nav-btn {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            font-size: 0.8rem;
        }

        .activity-nav-btn:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .activity-dots {
            display: flex;
            gap: 0.3rem;
            align-items: center;
        }

        .activity-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.45);
            cursor: pointer;
            transition: all 0.3s;
        }

        .activity-dot.active {
            background: #fffde7;
            width: 12px;
            border-radius: 3px;
            box-shadow: 0 0 6px rgba(252, 196, 100, 0.5);
        }

        .main-content {
            margin-top: 120px;
        }

        @media (max-width: 768px) {
            .activity-carousel {
                height: 60px;
            }

            .activity-carousel-content {
                gap: 1rem;
                padding: 0 1rem;
            }

            .activity-text {
                font-size: 0.85rem;
            }

            .activity-button {
                padding: 0.3rem 0.8rem;
                font-size: 0.75rem;
            }

            .navbar {
                top: 60px;
            }

            .main-content {
                margin-top: 130px;
            }
        }

        @media (max-width: 480px) {
            .activity-carousel {
                height: 50px;
            }

            .activity-carousel-content {
                gap: 0.5rem;
                padding: 0 0.5rem;
            }

            .activity-icon {
                font-size: 1.2rem;
                min-width: 24px;
            }

            .activity-text {
                font-size: 0.75rem;
            }

            .activity-button {
                padding: 0.25rem 0.6rem;
                font-size: 0.7rem;
            }

            .activity-nav {
                display: none;
            }

            .navbar {
                top: 50px;
            }

            .main-content {
                margin-top: 120px;
            }
        }
