.fa-shopping-cart {
            position: relative;
            width: 24px;
            height: 20px;
            display: inline-block;
        }
        
        /* 购物车主体（篮子部分） */
        .fa-shopping-cart::before {
            content: "";
            position: absolute;
            width: 18px;
            height: 12px;
            border: 2px solid #333;
            border-radius: 2px 2px 4px 4px;
            bottom: 0;
            left: 0;
        }
        
        /* 购物车把手 */
        .fa-shopping-cart::after {
            content: "";
            position: absolute;
            width: 8px;
            height: 4px;
            border: 2px solid #333;
            border-bottom: none;
            border-radius: 4px 4px 0 0;
            top: 0;
            right: 0;
        }
        
        .fa-shopping-cart .cart-item {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #333;
            border-radius: 50%;
            top: 6px;
            left: 4px;
        }

        /* 基础图标样式 */
.icon {
    display: inline-block;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 1em;
    height: 1em;
    text-align: center;
}

/* 购物车图标 */
.icon-cart::before {
    content: "\1F6D2"; /* Unicode购物车符号 */
}

/* 退出图标 */
.icon-logout::before {
    content: "\2192"; /* 右箭头符号 */
}

/* 搜索图标 */
.icon-search::before {
    content: "\1F50D"; /* 放大镜符号 */
}

/* 编辑图标 */
.icon-edit::before {
    content: "\270E"; /* 铅笔符号 */
}

/* 删除图标 */
.icon-delete::before {
    content: "\1F5D1"; /* 废纸篓符号 */
}

/* 眼睛图标（可见） */
.icon-eye::before {
    content: "\1F441"; /* 眼睛符号 */
}

/* 眼睛带斜线图标（不可见） */
.icon-eye-slash::before {
    content: "\1F441\0020\0337"; /* 眼睛加斜线 */
}

/* 星形图标（精选） */
.icon-star::before {
    content: "\2605"; /* 实心星 */
}

/* 空星形图标 */
.icon-star-empty::before {
    content: "\2606"; /* 空心星 */
}

/* 关闭图标 */
.icon-close::before {
    content: "\00D7"; /* 乘号 */
}

/* 加号图标 */
.icon-plus::before {
    content: "\002B"; /* 加号 */
}

/* 复选框图标 */
.icon-check::before {
    content: "\2713"; /* 对勾 */
}

/* 响应式调整 */
@media (max-width: 768px) {
    .icon {
        font-size: 1.2em;
    }
}