.header-icon-link {
                        position: relative;
                        display: inline-flex;
                        align-items: center;
                        justify-content: center;
                        width: 40px;
                        height: 40px;
                        min-width: 40px;
                        min-height: 40px;
                    }
                    
                    /* 手机版图标触控优化 */
                    @media (max-width: 480px) {
                        .site-header .header-icon-link,
                        .site-header #ts-search-trigger,
                        .site-header #mobile-more-trigger {
                            width: 44px !important;
                            height: 44px !important;
                            min-width: 44px !important;
                            min-height: 44px !important;
                            margin-left: 0 !important;
                            margin-right: 0 !important;
                            padding: 10px !important;
                        }

                        .site-header .d-flex.align-items-center.justify-content-between {
                            min-width: 0 !important;
                        }

                        .site-header .d-flex.align-items-center.justify-content-between > .d-flex:first-child {
                            flex: 1 1 auto !important;
                            min-width: 0 !important;
                            max-width: calc(100% - 148px) !important;
                        }

                        .site-header .d-flex.align-items-center.justify-content-between > .d-flex:last-child {
                            gap: 4px !important;
                            flex: 0 0 auto !important;
                        }

                        .site-header .header-account-link,
                        .site-header .header-wishlist-link,
                        .site-header #theme-toggle-btn {
                            display: none !important;
                            visibility: hidden !important;
                            opacity: 0 !important;
                            pointer-events: none !important;
                            width: 0 !important;
                            height: 0 !important;
                            min-width: 0 !important;
                            min-height: 0 !important;
                            margin: 0 !important;
                            padding: 0 !important;
                            overflow: hidden !important;
                        }

                        #thomassabo_menu_toggle {
                            margin-right: 6px !important;
                        }

                        .logo-link,
                        .logo-link .img-fluid,
                        .logo-link img {
                            max-width: clamp(84px, 28vw, 108px) !important;
                            max-height: 30px !important;
                            width: auto !important;
                        }
                    }
                    
                    .header-tool-icon {
                        /* SVG size fixed controlled by attributes, but ensure constraints */
                        width: 24px;
                        height: 24px;
                        display: block;
                    }
                    .header-count-badge {
                        position: absolute;
                        top: -4px;        /* Slightly above top edge */
                        right: -8px;      /* Slightly outside right edge */
                        min-width: 16px;  /* Allow expansion for double digits */
                        height: 16px;
                        font-size: 0.6rem;
                        padding: 0 4px;   /* Add padding for wide numbers */
                    }
                    .header-kiss {
                        display: inline-flex;
                        align-items: center;
                        justify-content: center;
                        width: 20px;
                        height: 20px;
                        margin-left: 8px;
                        margin-right: 8px;
                        opacity: 0;
                        transform: scale(0.9);
                        transition: opacity 0.15s ease;
                        pointer-events: none;
                    }
                    .header-kiss.kiss-active {
                        opacity: 1;
                        animation: headerKissFlash 0.35s ease;
                    }
                    @keyframes headerKissFlash {
                        0% { opacity: 0; }
                        40% { opacity: 1; }
                        100% { opacity: 0; }
                    }

                    /* 手机版三个点菜单样式 */
                    @media (max-width: 480px) {
                        .mobile-more-menu {
                            display: inline-flex !important;
                            align-items: center;
                            flex: 0 0 auto;
                            position: relative;
                        }

                        .mobile-more-dropdown {
                            position: absolute;
                            top: calc(100% + 10px);
                            right: 0;
                            background: white;
                            border-radius: 8px;
                            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
                            min-width: 150px;
                            opacity: 0;
                            visibility: hidden;
                            transform: translateY(-10px);
                            transition: all 0.3s ease;
                            z-index: 1000;
                        }

                        .mobile-more-dropdown.show {
                            opacity: 1;
                            visibility: visible;
                            transform: translateY(0);
                        }

                        .mobile-more-item {
                            display: flex;
                            align-items: center;
                            gap: 10px;
                            padding: 12px 16px;
                            border: none;
                            background: transparent;
                            width: 100%;
                            text-align: left;
                            color: #333;
                            text-decoration: none;
                            transition: background-color 0.2s;
                            cursor: pointer;
                        }

                        .mobile-more-item:hover {
                            background-color: #f5f5f5;
                        }

                        .mobile-more-item:first-child {
                            border-radius: 8px 8px 0 0;
                        }

                        .mobile-more-item:last-child {
                            border-radius: 0 0 8px 8px;
                        }

                        .mobile-more-item svg {
                            flex-shrink: 0;
                        }

                        .mobile-more-item span {
                            font-size: 14px;
                        }

                        /* 深色模式 */
                        html[data-theme="dark"] .mobile-more-dropdown {
                            background: #2a2a2a;
                            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
                        }

                        html[data-theme="dark"] .mobile-more-item {
                            color: #fff;
                        }

                        html[data-theme="dark"] .mobile-more-item:hover {
                            background-color: #3a3a3a;
                        }
                    }