/*
Theme Name: Anker 风格定制主题
Author: 你的名字
Description: 完整版电商主题样式
Version: 1.0
*/

:root {
    --primary-color: #00aae7;
    --text-main: #333333;
    --text-light: #777777;
    --bg-light: #f5f5f7;
    --white: #ffffff;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; color: var(--text-main); background-color: var(--white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =========================================
   大厂级 4层导航栏样式 (Anker Style)
========================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 9000;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* 底部轻微阴影 */
}

/* 公共布局类 */
.header-container {
    max-width: 1440px; /* 大厂喜欢用超宽版心 */
    margin: 0 auto;
    padding: 0 40px;
}
.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- 第 1 层：顶部黑条 (极致窄边版 - 修复垂直排列 Bug) --- */
.brand-bar {
    background-color: #000;
    color: #fff;
    padding: 9px 0; 
    border-bottom: 1px solid #111; 
    line-height: 0; /* 👉 新增：彻底抹杀文字行高带来的底部留白 */
}

/* 强制水平排列，绝不允许换行 */
.brand-matrix { 
    display: flex !important; 
    flex-direction: row !important; 
    flex-wrap: nowrap !important; /* 核心指令：打死不换行 */
    gap: 8px; 
    align-items: center !important; /* 👉 修改：加上 !important 强制垂直居中 */
}

.brand-main { 
    width: 100%;
    display: flex; 
    justify-content: flex-end; 
    align-items: center !important; /* 👉 修改：加上 !important 强制垂直居中 */
}

/* 核心防挤压：让每个包裹 SVG 的盒子保持自己的大小，不准贪婪放大 */
.brand-svg-wrap {
    display: flex;
    align-items: center !important; /* 👉 修改：让 SVG 在自己的小盒子里也必须居中 */
    flex: 0 0 auto; /* 严禁拉伸 */
}

/* 给 SVG 套上紧箍咒，防止宽度暴走撑破屏幕 */
.brand-svg-wrap svg {
    height: 20px !important; /* 稍微调大一丢丢，14px 比较顺眼 */
    max-width: 120px !important; /* 强制最高限制，防止没有比例的 SVG 变成 100% 宽 */
    width: auto !important;
    transform: translateY(6px) !important;
}

.brand-svg-wrap svg path, 
.brand-svg-wrap svg polygon, 
.brand-svg-wrap svg rect {
    fill: #ffffff !important; 
}

.brand-dimmed {
    opacity: 0.5;
    transition: opacity 0.3s;
    cursor: pointer;
}
.brand-dimmed:hover {
    opacity: 1; 
}


/* --- 第 2 层：蓝紫促销横幅 --- */
.promo-bar {
    background-color: #5c627e; 
    color: #fff;
    font-size: 13px;
    padding: 8px 0; /* 👉 缩小上下内边距，变成窄窄的细条 */
}

.promo-bar .header-container {
    position: relative; /* 开启相对定位，为了让右侧按钮能“悬浮” */
    display: flex;
    justify-content: center; /* 强制中间的文字绝对居中！ */
    align-items: center;
}

.promo-bar a { 
    color: #fff; 
    text-decoration: underline; 
    font-weight: 600; 
}

.top-promo-text { 
    text-align: center; 
    white-space: nowrap; /* 强制核心促销语绝不换行 */
} 

/* 右侧按钮：脱离常规排版，绝对定位在最右侧，绝不影响中间文字的居中 */
.promo-link {
    position: absolute;
    right: 40px; /* 紧贴容器右边缘 */
    top: 50%;
    transform: translateY(-50%); /* 完美垂直居中 */
    white-space: nowrap; /* 强制右侧这俩词也不准换行 */
}


/* --- 第 3 层：主头 (Logo 与 搜索购物车) --- */
.main-header {
    padding: 20px 0;
}
.header-left { display: flex; align-items: center; }

.logo svg { height: 22px; width: auto; display: block; transition: fill 0.3s; }
/* 电脑端：强制显示 total，隐藏 phone */
.logo-desktop { display: block; }
.logo-mobile { display: none; }

.logo:hover svg path, .logo:hover svg polygon { fill: #00BEFA !important; }

/* 极其讲究的口号排版 */
.header-slogan {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin-left: 15px;
    display: flex;
    align-items: center;
}
.slogan-divider { color: #ccc; margin-right: 15px; font-weight: 300; }

/* 右侧图标组 */
.header-icons { display: flex; align-items: center; gap: 20px; }
.icon-btn { color: #111; cursor: pointer; transition: color 0.3s; display: flex; }
.icon-btn:hover { color: #00BEFA; }

/* 购物车角标 */
.cart-icon-wrap { position: relative; }
.cart-count {
    position: absolute; top: -6px; right: -8px;
    background: #00BEFA; color: #fff; font-size: 10px; font-weight: 800;
    border-radius: 50%; width: 16px; height: 16px;
    display: flex; align-items: center; justify-content: center;
}

/* --- 第 4 层：电脑端导航栏 --- */
.desktop-nav-bar {
    padding: 0 0 15px 0;
}
.main-menu, .nav-links-right { display: flex; gap: 25px; list-style: none; margin: 0; padding: 0; }
.main-menu a, .nav-links-right a { font-size: 15px; font-weight: 700; color: #111; transition: color 0.3s; }
.main-menu a:hover, .nav-links-right a:hover { color: #00BEFA; }

/* =========================================
   超级沉浸式搜索面板 (Mega Search Modal)
========================================= */
/* 背景：半透明磨砂黑 */
.mega-search-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(5px);
    z-index: 99999; display: flex; align-items: flex-start; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.mega-search-overlay.active { opacity: 1; visibility: visible; }

/* 纯白色的顶部容器 (从上面滑下来) */
.search-modal-box {
    background: #fff; width: 100%; max-height: 85vh; overflow-y: auto;
    padding: 0; transform: translateY(-50px); transition: transform 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.mega-search-overlay.active .search-modal-box { transform: translateY(0); }

/* 1. 表单：极简横线 */
.mega-search-form { display: flex; align-items: center; justify-content: space-between; padding: 25px 40px; border-bottom: 1px solid #eaeaea; max-width: 1440px; margin: 0 auto; width: 100%;}
.mega-search-input { flex: 1; border: none; background: transparent; font-size: 22px; font-weight: 500; color: #111; outline: none; padding-right: 20px; }
.mega-search-input::placeholder { color: #888; }
.search-btn-group { display: flex; align-items: center; }
.mega-search-btn, .mega-close-btn { background: transparent; border: none; cursor: pointer; color: #111; display: flex; align-items: center; justify-content: center; transition: color 0.3s;}
.mega-search-btn:hover, .mega-close-btn:hover { color: #00BEFA; }

/* 内容容器居中限制 */
.mega-search-content { max-width: 1440px; margin: 0 auto; width: 100%; padding: 40px; }
.search-sec-title { font-size: 16px; font-weight: 500; color: #888; margin-bottom: 25px; }

/* 2. 热门词汇排版 */
.search-recommend-keywords { margin-bottom: 50px; }
.keyword-tags { display: flex; flex-wrap: wrap; gap: 40px; }
.keyword-tags a { font-size: 15px; font-weight: 700; color: #111; text-decoration: none; text-transform: lowercase; transition: color 0.3s; }
.keyword-tags a:hover { color: #00BEFA; }

/* 3. 热门商品阵列 */
.popular-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pop-search-card { 
    background: #f5f5f7; /* 高级灰底色 */
    display: flex; align-items: center; padding: 15px; border-radius: 4px;
    text-decoration: none; transition: background 0.3s, transform 0.3s;
}
.pop-search-card:hover { background: #eaeaea; transform: translateY(-2px); }
.pop-img { width: 80px; height: 80px; flex-shrink: 0; margin-right: 15px; display: flex; justify-content: center; align-items: center; background: #fff; border-radius: 4px; padding: 5px; }
.pop-img img { max-width: 100%; max-height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.pop-name { font-size: 14px; font-weight: 600; color: #111; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ================== 手机端搜素狂自适应 ================== */
@media (max-width: 900px) {
    .mega-search-form { padding: 15px 20px; }
    .mega-search-input { font-size: 18px; }
    .mega-search-content { padding: 20px; }
    .keyword-tags { gap: 15px; }
    .keyword-tags a { background: #f5f5f7; padding: 8px 15px; border-radius: 30px; font-size: 13px; font-weight: 600; }
    .popular-grid { grid-template-columns: 1fr; gap: 10px; } /* 手机端变成单列纵向排列 */
    .pop-search-card { padding: 10px; }
    .pop-img { width: 60px; height: 60px; margin-right: 10px; }
    .pop-name { font-size: 13px; -webkit-line-clamp: 2; }
}


/* =========================================
   手机端侧滑抽屉与黑色遮罩 (Drawer & Overlay)
========================================= */
.drawer-overlay-dim {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 9998;
    opacity: 0; visibility: hidden; transition: 0.3s ease;
}
.drawer-overlay-dim.active { opacity: 1; visibility: visible; }

.mobile-drawer-menu {
    position: fixed; top: 0; right: -100%; width: 90%; max-width: 400px; height: 100vh;
    background: #fff; z-index: 9999; box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1); display: flex; flex-direction: column;
}
.mobile-drawer-menu.active { right: 0; }

/* 抽屉顶部的品牌方块区 */
.drawer-header-brands { background: #fdfdfd; border-bottom: 1px solid #eee; padding: 25px 25px 20px; }
.drawer-header-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; color:#555;}
.brand-title-small { font-size: 13px; font-weight: 600; color: #888; }

.drawer-brand-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.brand-box { background: #f4f5f7; padding: 15px 10px; border-radius: 4px; display: flex; justify-content: center; align-items: center; }
.brand-box svg { height: 14px; width: auto; }
.brand-box svg path, .brand-box svg polygon { fill: #000 !important; }

/* 抽屉导航链接 (带原生 WooCommerce 箭头风格) */
.drawer-body { padding: 20px 25px; overflow-y: auto; }
.mobile-main-menu { list-style: none; padding: 0; margin: 0; }
.mobile-main-menu li { border-bottom: 1px solid #f5f5f5; }
.mobile-main-menu a { 
    display: flex; justify-content: space-between; align-items: center; 
    padding: 18px 0; font-size: 16px; font-weight: 700; color: #111; 
    text-decoration: none; transition: 0.3s;
}
.mobile-main-menu a:hover { color: #00BEFA; padding-left: 5px; }

/* 纯 CSS 绘制指向右侧的小箭头 */
.mobile-main-menu a::after {
    content: "〉";
    font-family: monospace;
    font-size: 18px;
    color: #ccc;
    font-weight: 400;
}


/* =========================================
   设备断点显示控制 (PC 与 Mobile 切换逻辑)
========================================= */
.mobile-only { display: none; }
.desktop-only { display: block; }

/* --- 手机端适配 (Max 900px) --- */
@media (max-width: 900px) {
    .brand-matrix { 
    display: none !important; 
    }
    .mobile-only { display: block; }
    .desktop-only { display: none; }
    
    .header-container { padding: 0 15px; }
    
    /* 手机端 Logo 与口号排版 */
    /* 手机端 Logo 切换逻辑 */
    .logo-desktop { display: none !important; }
    .logo-mobile { display: block !important; }
    .logo svg { height: 28px; }
    
    .header-slogan {
        font-size: 12px;
        line-height: 1.2;
        border-left: 1px solid #ccc;
        padding-left: 12px;
        margin-left: 12px;
    }
    /* 手机端 Promo 横幅修复：解除不准换行，允许折行 */
    .promo-bar { font-size: 12px; padding: 8px 15px; }
    .promo-bar .header-container { padding: 0; }
    .top-promo-text { 
        line-height: 1.4; 
        white-space: normal; /* 核心：允许文字在手机上自然换行 */
        padding: 0 10px; 
    }

    
    /* 调整主头间距 */
    .main-header { padding: 15px 0; }
    .header-icons { gap: 15px; }
    
    /* 手机端侧滑菜单样式 */
    .mobile-drawer-menu {
        position: fixed; top: 0; right: -100%; width: 85%; max-width: 350px; height: 100vh;
        background: #fff; z-index: 9999; box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease; display: flex; flex-direction: column;
    }
    .mobile-drawer-menu.active { right: 0; }
    .drawer-header { padding: 20px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #eee; }
    .drawer-body { padding: 20px; overflow-y: auto; display: flex; flex-direction: column; gap: 15px;}
    .drawer-body a { font-size: 16px; font-weight: 600; color: #111; }
    .mobile-main-menu { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 15px; }
}



/* 动态菜单样式 */
.main-menu { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.main-menu li { position: relative; }
.main-menu a { font-weight: 500; font-size: 16px; color: var(--text-main); transition: color 0.3s; text-transform: capitalize; }
.main-menu a:hover { color: var(--primary-color); }

/* =========================================
   全屏视差滚动大图样式 (Parallax Effect)
========================================= */
.parallax-wrapper {
    width: 100%;
    overflow: hidden;
}

/* =========================================
   首页背景视频核心样式 (防抢戏外挂)
========================================= */
.has-video-bg {
    position: relative;
    overflow: hidden; /* 防止视频滚动时溢出画框 */
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    transform: translate(-50%, -50%); /* 确保中心点对齐 */
    
    z-index: 1; /* 层级位于背景图之上，但在文字之下 */
    pointer-events: none; /* 🚫 绝对核心指令：屏蔽视频上的一切鼠标交互，当它是空气！ */
}

/* 保证文字和按钮绝不会被视频盖住 */
.parallax-content {
    position: relative;
    z-index: 5;
}

/* 电脑/手机端视频无缝热切换 */
.desktop-video { display: block; }
.mobile-video { display: none; }

@media (max-width: 900px) {
    .desktop-video { display: none !important; }
    .mobile-video { 
        display: block !important; 
        
        /* 保持 120% 放大的物理空间，给视差留出足够的余地 */
        width: 120vw !important; 
        height: 120% !important; 
        min-width: 120vw !important;
        min-height: 120% !important;
        
        object-fit: cover !important; 
        object-position: center center !important; 
        left: 50% !important;
        
        /* 👉 核心破局：绝对不能加 !important！让权给 JS 去实时改变它的位置！ */
        transform: translate(-50%, -50%); 
    }

}




.parallax-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    
    /* 👇 删掉 fixed，改为默认的 scroll，准备让 JS 接管 */
    background-attachment: scroll; 
    
    background-size: cover;
    /* 👇 初始状态必须设置为完美居中 */
    background-position: center 50%; 
    background-repeat: no-repeat;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 15vh;
    text-align: center;
    overflow: hidden; /* 防止图片移动时溢出 */
}


/* 文字排版优化 */
.parallax-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.pre-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

/* --- 电脑端大标题 (克制高级感) --- */
.hero-title {
    font-size: 42px; /* 👉 从 52px 缩小到 42px，显得极其精致 */
    font-weight: 600; /* 👉 从 700(Bold) 降到 600(Semi-Bold)，减轻笨重感 */
    color: #111; 
    line-height: 1.15; /* 稍微拉开一点行高，增加呼吸感 */
    margin-bottom: 20px;
    letter-spacing: -0.5px; /* 原来是 -1px，现在放宽一点让字母变舒展 */
}


.hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-bottom: 35px;
}

/* 经典的 Anker 橙色数字高亮 */
.highlight-orange {
    color: #ff9900; 
    font-weight: 800;
}

/* 经典的纯黑色直角按钮 */
.btn-black-square {
    display: inline-block;
    background-color: #000;
    color: #fff !important;
    padding: 16px 45px;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    transition: background-color 0.3s;
    border: 1px solid #000;
}

.btn-black-square:hover {
    background-color: #333;
}

/* =========================================
   手机端响应式适配 (压缩容器高度，逼出视差空间)
========================================= */
@media (max-width: 900px) {
        /* --- 手机端大标题 (紧凑精致版) --- */
    /* ================= 手机端视差大图微调 ================= */
    .parallax-section { 
        height: 60vh !important; 
        min-height: 400px !important; 
        
        /* 👉 核心上拉魔法：原本是 15vh (比较靠中间)，现在大幅缩减到 8vh！
           让整个文字方块像挂在相框上方一样，把下方广阔的空间留给产品图展示！ */
        padding-top: 8vh !important; 
        
        background-attachment: scroll; 
        background-size: cover; 
    }

    /* 手机端大标题紧凑版 */
    .hero-title { 
        font-size: 28px; 
        font-weight: 600; 
        line-height: 1.2;
        
        /* 👉 微调间距：让标题和底下字体的间距更紧凑一点，整体重心上移 */
        margin-bottom: 12px !important; 
    }

}




/* =========================================
   WooCommerce 商品卡片 (大厂极窄边框级重构)
========================================= */
.section-title { text-align: center; font-size: 32px; margin: 60px 0 40px; font-weight: 800; letter-spacing: -1px; }

/* 清除恶心的幽灵占位符 */
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none !important; }

/* 强行抹杀 Woo 原生的 Sale 狗皮膏药 */
.woocommerce ul.products li.product .onsale { display: none !important; }

/* --- 主网格容器 (电脑端 4 列) --- */
.woocommerce ul.products { 
    max-width: 1440px !important; 
    margin: 0 auto 80px !important; 
    padding: 0 40px !important; 
    display: grid !important; 
    grid-template-columns: repeat(4, 1fr) !important; 
    gap: 20px !important; /* 缩小列之间的空隙 */
}

/* --- 商品卡片本体 (缩小所有内边距) --- */
.woocommerce ul.products li.product { 
    width: 100% !important; margin: 0 !important; clear: none !important;
    background: #fff; 
    border-radius: 12px; 
    /* 👉 核心：取消全局内边距，让图片顶到最上面，文字区单独留边距 */
    padding: 0 !important; 
    text-align: left; 
    display: flex; 
    flex-direction: column; 
    justify-content: flex-start;
    transition: transform 0.3s, box-shadow 0.3s; 
    border: 1px solid #f0f0f0;
    position: relative; 
    overflow: hidden; /* 防止左上角的标签飞出边界 */
}
.woocommerce ul.products li.product:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 15px 30px rgba(0,0,0,0.06); border-color: transparent;
}

/* --- 图片 (顶到边缘，大幅拔高比例) --- */
.woocommerce ul.products li.product > .woocommerce-loop-product__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-bottom: 20px;
}
.woocommerce ul.products li.product img { 
    width: 100% !important; 
    
    /* 👉 核心魔法 1：从原来的 220px 强行拉高到 260px，图片大幅放大！ */
    height: 260px !important; 
    
    object-fit: contain !important; 
    margin: 0 0 15px 0 !important; 
    mix-blend-mode: multiply; 
    padding: 20px !important;
    background: #fdfdfd; 
}


/* --- 左上角动态减钱蓝色书签 ($XX OFF) --- */
.loop-dynamic-promo-badge {
    position: absolute;
    top: 0; left: 0;
    background: #00BEFA;
    color: #fff;
    padding: 8px 10px 15px; /* 稍微小一点 */
    z-index: 10;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 85%, 0 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.loop-dynamic-promo-badge .badge-price { display: block; font-size: 16px; font-weight: 800; line-height: 1; }
.loop-dynamic-promo-badge .badge-text { font-size: 10px; font-weight: 600; margin-top:2px; }

/* --- 自定义“New”标签 (挪到文字的上方) --- */
.woocommerce ul.products li.product .woocommerce-loop-product__title::before {
    content: 'New'; 
    display: block;
    color: #ff9900;
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 6px;
    text-transform: capitalize;
}

/* --- 标题 (释放行数，稍微缩小字号) --- */
.woocommerce ul.products li.product .woocommerce-loop-product__title { 
    font-size: 14px; /* 👉 字号缩小 1px */
    font-weight: 600; 
    color: #111; 
    line-height: 1.45; /* 稍微增加行高，让字好呼吸 */
    padding: 0 15px !important; 
    margin: 0 0 15px !important; /* 给下方或者购物车留个底边距 */
    display: -webkit-box; 
    -webkit-line-clamp: 3; /* 👉 核心魔法：允许显示 3 行！彻底解决看不全的问题 */
    -webkit-box-orient: vertical; 
    overflow: hidden; 
}


/* --- 底部价格区 (留足空间给购物车按钮) --- */
.woocommerce ul.products li.product .price { 
    color: #111 !important; font-size: 16px; font-weight: 700;
    margin: auto 0 0 0 !important; /* 强制下潜 */
    padding: 15px 15px 20px !important; /* 👉 专门保护底部护城河 */
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap; line-height:1;
}
.woocommerce ul.products li.product .price del { color: #888 !important; font-size: 13px !important; font-weight: normal; }

/* 加入购物车圆形图标 */
.woocommerce ul.products li.product .button { 
    position: absolute !important;
    bottom: 12px; /* 和边距贴得刚刚好 */
    right: 15px;
    display: flex !important; justify-content: center !important; align-items: center !important;
    width: 36px !important; height: 36px !important; padding: 0 !important; 
    background: #00BEFA !important; color: transparent !important; 
    border-radius: 50% !important; cursor: pointer; transition: 0.3s !important; margin: 0 !important; border: none !important; z-index: 10;
}
/* 白底版购物车 SVG */
.woocommerce ul.products li.product .button::before { content: ''; position: absolute; width: 20px; height: 20px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'%3E%3C/circle%3E%3Ccircle cx='20' cy='21' r='1'%3E%3C/circle%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'%3E%3C/path%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.woocommerce ul.products li.product .button:hover { background: #00aae7 !important; transform: scale(1.1); }



/* =========================================
   全黑高级尾部 (Footer)
========================================= */
.site-footer {
    background-color: #000000;
    color: #e0e0e0;
    padding: 60px 0 20px;
    font-size: 14px;
    line-height: 1.6;
}

.site-footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 1. 免责条款 */
.footer-disclaimer {
    color: #666;
    font-size: 11px;
    margin-bottom: 40px;
    line-height: 1.4;
}
.footer-disclaimer p { margin-bottom: 10px; }

/* 2. 灰色邮件与特权框 */
.footer-newsletter-box {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 40px;
    display: grid;
    grid-template-columns: 2fr 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-newsletter-box h4 { color: #fff; font-size: 13px; font-weight: 600; margin-bottom: 10px; }
.newsletter-left h2 { color: #fff; font-size: 24px; font-weight: 700; margin-bottom: 20px; }

.newsletter-form .input-group { display: flex; margin-bottom: 15px; }
.newsletter-form input[type="email"] {
    flex: 1;
    background: transparent;
    border: 1px solid #444;
    padding: 12px 15px;
    color: #fff;
    border-radius: 4px 0 0 4px;
    outline: none;
}
.newsletter-form input[type="email"]:focus { border-color: #fff; }
.newsletter-form button {
    background: #fff;
    color: #000;
    border: none;
    padding: 0 25px;
    font-weight: 700;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background 0.3s;
}
.newsletter-form button:hover { background: #ddd; }

.check-label { display: block; font-size: 11px; color: #aaa; margin-bottom: 8px; cursor: pointer; }
.check-label input { margin-right: 8px; }
.check-label a { color: #fff; text-decoration: underline; }

.newsletter-middle ul, .newsletter-right ul { list-style: none; padding: 0; }
.newsletter-middle li, .newsletter-right li { margin-bottom: 15px; font-size: 13px; color: #ccc; display: flex; align-items: flex-start; gap: 10px; }
.newsletter-right a { color: #ccc; transition: color 0.3s; }
.newsletter-right a:hover { color: #fff; }

/* 3. 横向信任背书条 */
.footer-trust-bar {
    border-bottom: 1px solid #333;
    padding-bottom: 30px;
    margin-bottom: 40px;
}
.footer-trust-bar h4 { color: #fff; font-size: 15px; margin-bottom: 20px; }
.trust-items { display: flex; flex-wrap: wrap; gap: 30px; }
.trust-items span { display: flex; align-items: center; gap: 8px; color: #ccc; font-size: 13px; }

/* 4. 核心四列导航链接 */
.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}
.nav-col h3 { color: #fff; font-size: 15px; font-weight: 600; margin-bottom: 20px; }
.nav-col ul { list-style: none; padding: 0; }
.nav-col li { margin-bottom: 12px; }
.nav-col a { color: #aaa; font-size: 13px; transition: color 0.3s; }
.nav-col a:hover { color: #fff; }

/* 客服与社交媒体 */
.contact-item { display: flex; gap: 10px; margin-bottom: 20px; color: #aaa; font-size: 13px; }
.contact-item svg { color: #fff; margin-top: 3px; }
.contact-item span { display: block; color: #fff; margin-bottom: 3px; }
.contact-item small { color: #888; font-size: 11px; display: block; }

.social-icons { display: flex; gap: 15px; margin: 25px 0; }
.social-icons a { color: #888; transition: color 0.3s; }
.social-icons a:hover { color: #fff; }

/* 纯 CSS 绘制的支付方式图标 */
.payment-icons { display: flex; flex-wrap: wrap; gap: 8px; }
.pay-badge { 
    background: #fff; 
    border-radius: 3px; 
    height: 24px; 
    min-width: 38px;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 10px; 
    font-weight: 900; 
    color: #111; 
    padding: 0 6px;
}
.pay-badge.visa { color: #1a1f71; font-style: italic; }
.pay-badge.amex { color: #fff; background: #002663; }
.pay-badge.paypal { color: #003087; font-style: italic; }
.pay-badge.discover { color: #ff6000; }
/* 纯 CSS 画 Mastercard 圈圈 */
.pay-badge.mc { position: relative; width: 38px; }
.mc-circle { width: 14px; height: 14px; border-radius: 50%; position: absolute; mix-blend-mode: multiply;}
.mc-circle.red { background: #eb001b; left: 8px; z-index: 2; }
.mc-circle.yellow { background: #f79e1b; right: 8px; z-index: 1; }

.copyright-bottom {
    text-align: center;
    color: #666;
    font-size: 12px;
    border-top: 1px solid #222;
    padding-top: 20px;
}

/* =========================================
   手机端适配
========================================= */
@media (max-width: 900px) {
    .footer-newsletter-box { grid-template-columns: 1fr; gap: 30px; padding: 25px; }
    .footer-nav-grid { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
    .nav-col.contact-col { grid-column: 1 / -1; /* 客服信息跨两列占满 */ }
}
@media (max-width: 480px) {
    .footer-nav-grid { grid-template-columns: 1fr; gap: 30px; }
    .trust-items { flex-direction: column; gap: 15px; }
}


/* =========================================
   品牌背书与双大图区域 (仿 Anker)
========================================= */
.brand-showcase {
    background-color: #f8f9fa; /* 极浅的灰白色背景，凸显高级感 */
    padding: 80px 20px 60px;
}

.container-1200 {
    max-width: 1200px;
    margin: 0 auto;
}

/* 顶部文案排版 (左右分栏) */
.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.showcase-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #111;
    margin: 0;
    letter-spacing: -1px; /* 让标题更紧凑现代 */
}

.showcase-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: #333;
    padding-left: 20px;
    border-left: 1px solid #ddd; /* 经典的小竖线分隔符 */
}

/* 底部双大图网格 */
.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 一行两列，平分秋色 */
    gap: 20px;
}

/* 广告卡片核心特效：渐变遮罩 + 悬浮放大 */
.promo-card {
    position: relative;
    height: 500px; /* 强制高度，形成大画幅 */
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* 让文字沉底 */
    text-decoration: none;
    overflow: hidden; /* 防止图片放大时撑破盒子 */
}

/* 神奇的纯黑渐变底：完美复刻原图底部的黑色区域 */
.promo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, #000000 90%);
    z-index: 1;
    transition: opacity 0.3s;
}

.promo-content {
    position: relative;
    z-index: 2; /* 确保文字在渐变遮罩的上面 */
    padding: 40px;
    color: #fff;
}

.promo-content h3 {
    font-size: 28px;
    margin-bottom: 8px;
    font-weight: 700;
}

.promo-content p {
    font-size: 15px;
    margin-bottom: 25px;
    color: #ccc;
}

/* 白色 SHOP NOW 按钮 */
.btn-shop-white {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 12px 30px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.3s;
}

/* 鼠标悬浮动画：图片微放大，按钮变灰 */
.promo-card:hover::before {
    opacity: 0.9;
}
.promo-card:hover .btn-shop-white {
    background: #e0e0e0;
}

/* =========================================
   移动端响应式适配 (手机上自动变成单列排版)
========================================= */
@media (max-width: 900px) {
    .showcase-header { flex-direction: column; align-items: flex-start; gap: 30px; }
    .showcase-title { font-size: 32px; }
    .showcase-stats { flex-wrap: wrap; gap: 20px; }
    .stat-item { padding-left: 0; border-left: none; }
    .promo-grid { grid-template-columns: 1fr; /* 手机上变成上下排列 */ }
    .promo-card { height: 400px; }
}
/* =========================================
   动态分类矩阵样式 (仿 Anker)
========================================= */
.category-explore {
    padding: 60px 20px;
    background-color: #ffffff;
}

.category-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #111;
    letter-spacing: -0.5px;
}

/* 核心网格：无论后台有3个还是8个分类，自动平分空间，超出的自动换行 */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px; /* 卡片之间的间距 */
}

/* 极简灰底卡片 */
.cat-card {
    background-color: #f5f5f7; /* 苹果/Anker 经典高级灰 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 15px 30px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

/* 鼠标悬浮特效 */
.cat-card:hover {
    background-color: #e8e8ea; /* 悬浮时底色稍微加深 */
    transform: translateY(-3px);
}

/* 分类图片自适应：强制图片去白底并融合进灰背景 */
.cat-image-wrap {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.cat-image-wrap img {
    max-height: 100%;
    max-width: 100px;
    object-fit: contain;
    mix-blend-mode: multiply; /* 终极黑科技：把带白底的 JPG 图片自动变成透明底，完美融入灰底卡片！ */
}

.cat-name {
    color: #333;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .category-title { font-size: 28px; }
    .category-grid { grid-template-columns: repeat(2, 1fr); /* 手机上一行显示2个 */ }
    .cat-card { padding: 30px 10px 20px; }
}

/* =========================================
   手风琴悬浮画廊 (Accordion Hover Gallery)
========================================= */
.power-moments-section {
    padding: 80px 20px;
    background-color: #f8f9fa; /* 融入整体的高级灰底色 */
}

.moments-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #111;
    letter-spacing: -1px;
}

/* 电脑端排版容器 */
.moments-accordion {
    display: flex;
    gap: 15px;
    height: 550px; /* 画廊整体高度 */
    width: 100%;
}

/* 核心黑科技：弹性伸缩卡片 */
.moment-card {
    position: relative;
    flex: 1; /* 默认收缩状态占用比例 */
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    text-decoration: none;
    /* 贝塞尔曲线，让展开的动画有“粘滞感”，极度顺滑 */
    transition: flex 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* 底部黑色渐变遮罩，保证白色文字永远清晰 */
.moment-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* --- 悬浮交互逻辑 (纯 CSS 实现) --- */
/* 1. 当鼠标悬浮在整个大框上时，所有卡片准备就绪 */
.moments-accordion:hover .moment-card {
    flex: 1;
}
/* 2. 鼠标悬浮在某一张卡片上时，这张卡片撑开占大头 (比例 5) */
.moments-accordion .moment-card:hover {
    flex: 5;
}
/* 3. 如果鼠标没在这个区域里，默认第一张卡片是展开的！(完美复刻 Anker 细节) */
.moments-accordion:not(:hover) .moment-card:first-child {
    flex: 5;
}

/* 遮罩显示逻辑 */
.moments-accordion .moment-card:hover::before,
.moments-accordion:not(:hover) .moment-card:first-child::before {
    opacity: 1;
}

/* --- 文字内容排版 --- */
.moment-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: #fff;
    width: 400px; /* 固定宽度防止文字在动画中被挤压折行 */
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.moment-content h3 { font-size: 32px; font-weight: 700; margin-bottom: 10px; line-height: 1.1; }
.moment-content p { font-size: 16px; margin-bottom: 25px; color: #eee; }

.btn-learn-more {
    display: inline-block;
    background: #fff;
    color: #111;
    padding: 12px 30px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 4px; /* Anker 这块用的是小圆角按钮 */
    transition: 0.3s;
}

.btn-learn-more:hover { background: #ddd; }

/* 文字显隐动画逻辑 (带 0.2 秒延迟，让背景先展开文字再浮现) */
.moments-accordion .moment-card:hover .moment-content,
.moments-accordion:not(:hover) .moment-card:first-child .moment-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}


/* =========================================
   手机端：彻底锁死尺寸，开启顶级段落吸附滚动
========================================= */
@media (max-width: 900px) {
    .moments-title { font-size: 28px; }
    
    .moments-accordion {
        height: 450px;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none; 
        -ms-overflow-style: none;
        
        /* 核心滚动物理引擎开启 */
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch; /* 让 iOS 拥有丝滑的惯性滚动 */
        
        /* 左右加点内边距，让第一张和最后一张也能完美居中 */
        padding: 0 20px 10px; 
        gap: 15px;
    }
    
    .moments-accordion::-webkit-scrollbar {
        display: none; 
    }

    /* 用 !important 强行物理锁死卡片大小，彻底干掉悬浮变形Bug */
    .moments-accordion .moment-card {
        flex: 0 0 82% !important; /* 每张卡片死死锁在 82% 宽度 */
        height: 100% !important;
        
        /* 强制吸附在屏幕正中央，且每次滑动必须停靠 (不许一次滑过好几张) */
        scroll-snap-align: center; 
        scroll-snap-stop: always; 
        
        border-radius: 12px;
    }

    /* 手机上强制所有遮罩和文字永远保持显示状态 */
    .moments-accordion .moment-card::before { opacity: 0.8 !important; }
    .moments-accordion .moment-card .moment-content {
        opacity: 1 !important;
        transform: translateY(0) !important;
        width: 100%;
        left: 0;
        bottom: 20px;
        padding: 0 20px;
        transition: none !important; 
    }
    
    .moment-content h3 { font-size: 24px; }
    .moment-content p { font-size: 14px; margin-bottom: 15px; }
    .btn-learn-more { padding: 10px 20px; font-size: 13px; }
}
/* =========================================
   右侧悬浮按钮 (Sticky Promo Button)
========================================= */
.sticky-promo-btn {
    position: fixed;
    right: 0;
    top: 50%; /* 垂直居中 */
    transform: translateY(-50%);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* 靠右对齐 */
}

/* 顶部灰色小叉号 */
.close-sticky {
    background: #e0e0e0;
    color: #555;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-bottom: 5px;
    margin-right: 5px;
    transition: background 0.3s;
}
.close-sticky:hover { background: #ccc; }

/* 侧边蓝色文字按钮 */
.promo-text {
    background: #00c3ff; /* Anker 亮蓝色 */
    color: #fff;
    padding: 15px 8px;
    /* 核心黑科技：让英文从下往上竖着排 */
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 4px 0 0 4px; /* 左边圆角，右边贴边 */
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: background 0.3s, padding 0.3s;
}
.promo-text:hover { 
    background: #00aae7; 
    padding: 20px 8px; /* 悬浮时按钮稍微变长一点，增加点击欲 */
}

/* =========================================
   全屏留资弹窗 (Lead Gen Modal)
========================================= */
.promo-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6); /* 黑色半透明遮罩 */
    z-index: 9999; /* 必须是全站最高层级 */
    display: flex;
    align-items: center;
    justify-content: center;
    /* 默认隐藏，带渐隐动画 */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* 激活状态 */
.promo-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* 弹窗白色内容框 */
.promo-modal-content {
    background: #fff;
    width: 90%;
    max-width: 420px; /* 无论电脑还是手机，最大都不超过 420px */
    border-radius: 12px;
    position: relative;
    /* 动画：从下往上轻微滑入 */
    transform: translateY(30px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    overflow: hidden;
}

.promo-modal-overlay.active .promo-modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #333;
    cursor: pointer;
    z-index: 10;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    padding: 5px;
    display: flex;
}

/* 弹窗头部 (带淡蓝色底纹) */
.promo-modal-header {
    background: linear-gradient(to bottom, #e0f7fa 0%, #ffffff 100%);
    padding: 40px 20px 20px;
    text-align: center;
}

.promo-modal-header h2 { font-size: 20px; font-weight: 800; color: #111; margin-bottom: 5px; line-height: 1.2; }
.promo-modal-header p { font-size: 15px; font-weight: 600; color: #333; margin-bottom: 20px; }

/* 纯 CSS 模拟的优惠券图案 (省去你找图的麻烦) */
.coupon-graphic {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}
.coupon-left, .coupon-right {
    background: #00c3ff;
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 12px;
    text-align: left;
    transform: rotate(-5deg); /* Anker 标志性的倾斜感 */
    box-shadow: 0 5px 15px rgba(0, 195, 255, 0.3);
}
.copy-code-btn { color: #00BEFA; font-weight: 700; text-decoration: underline; cursor: pointer; transition: color 0.3s; display: inline-block; margin-top: 3px; }
.copy-code-btn:hover { color: #00aae7; }

.coupon-right {
    background: #e0f7fa;
    color: #00c3ff;
    transform: rotate(5deg);
}
.coupon-left span, .coupon-right span { font-size: 28px; line-height: 1; display: block; margin: 2px 0; }

/* 表单输入区 */
.promo-modal-body {
    padding: 10px 30px 30px;
}

.promo-input {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s;
}
.promo-input:focus { border-color: #00c3ff; }

/* 霸王条款复选框 */
.promo-checkbox {
    display: flex;
    align-items: flex-start;
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    cursor: pointer;
}
.promo-checkbox input { margin-right: 10px; margin-top: 3px; cursor: pointer; }
.promo-checkbox a { color: #111; text-decoration: underline; font-weight: 500;}

/* 黑色圆角注册按钮 */
.btn-signup {
    width: 100%;
    background: #222;
    color: #fff;
    border: none;
    padding: 15px 0;
    border-radius: 50px; /* 胶囊圆角 */
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 15px;
    transition: background 0.3s;
}
.btn-signup:hover { background: #444; }

.login-link { text-align: center; font-size: 13px; color: #555; }
.login-link a { color: #00c3ff; font-weight: 700; text-decoration: underline;}

/* =========================================
   信任背书模块 (Trust Signals)
========================================= */
.trust-signals-section {
    /* Anker 招牌亮蓝渐变色 */
    background: linear-gradient(135deg, #00c3ff 0%, #0088ff 100%);
    padding: 80px 20px;
}

.trust-title {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

/* 电脑端：标准的 3列 × 2行 网格 */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

/* 纯白信息卡片 */
.trust-card {
    background: #ffffff;
    padding: 30px 25px 25px; /* 上边距稍大，让图标和文字有呼吸感 */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
    transition: transform 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-2px);
}

/* 卡片顶部：文字与图标分居两侧 */
.trust-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.trust-subtitle {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    max-width: 80%; /* 保证不与右侧图标重叠 */
    line-height: 1.4;
}

.trust-icon {
    width: 24px;
    height: 24px;
    color: #111;
}

/* 卡片底部描述文字 */
.trust-desc {
    font-size: 18px;
    color: #111;
    font-weight: 500;
    line-height: 1.3;
}

/* =========================================
   手机端：魔法行列转换 (3行2列 横向滑动)
========================================= */
@media (max-width: 900px) {
    .trust-signals-section { padding: 50px 20px; }
    .trust-title { font-size: 32px; line-height: 1.2; margin-bottom: 30px; }

    .trust-grid {
        /* 取消列限制，改为限制为 3 行 */
        grid-template-columns: none;
        grid-template-rows: repeat(3, auto);
        /* 核心魔法：填满 3 行后，自动往右排列成新的列！ */
        grid-auto-flow: column;
        grid-auto-columns: 88%; /* 手机上每列占屏幕宽度的 88%，露出下一列的边缘 */
        
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none; 
        -ms-overflow-style: none;
        
        /* 丝滑的横向吸附滑动 */
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }
    
    .trust-grid::-webkit-scrollbar { display: none; }

    .trust-card {
        scroll-snap-align: center;
        min-height: 160px;
        padding: 25px 20px 20px;
    }

    .trust-desc { font-size: 16px; }
}

/* =========================================
   会员注册横幅 (Membership Banner)
========================================= */
.membership-banner {
    margin-top: 40px; 
    background-color: #050505;
    background-size: cover;
    background-position: right center; 
    background-repeat: no-repeat;
    position: relative;
    
    /* 👇 核心修改：强制撑起高度，比例更接近原版的大画幅 */
    min-height: 480px; 
    
    /* 👇 修改：用 padding-top 把文字往下压一点，形成完美的视觉重心 */
    padding: 140px 60px 80px; 
    
    display: flex;
    /* 删掉之前的 align-items: center; 让内容自然靠上排布 */
    overflow: hidden; 
}

/* 渐变遮罩保持不变 */
.membership-banner::before { 
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,1) 35%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

/* 后面的 .membership-content 等样式完全保持原样，不用动 */


/* 核心黑科技：在背景图上盖一层从左到右的黑色渐变。
   这样即使你的背景图很亮，左侧的白字也能看得清清楚楚！ */
.membership-banner::before { 
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,1) 35%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.membership-content {
    position: relative;
    z-index: 2; /* 确保文字在渐变遮罩上方 */
    max-width: 450px;
}

.membership-content h3 { 
    color: #fff; 
    font-size: 24px; 
    margin-bottom: 15px; 
    text-transform: uppercase;
    font-weight: 700;
}

.membership-content p { 
    color: #ccc; 
    font-size: 15px; 
    margin-bottom: 35px; 
    line-height: 1.6; 
}

/* 两个按钮排版 */
.membership-buttons { 
    display: flex; 
    gap: 15px; 
}

/* 边框按钮 (Learn More) */
.btn-member-outline { 
    border: 1px solid #fff; 
    color: #fff; 
    padding: 12px 25px; 
    font-weight: 600; 
    font-size: 14px; 
    transition: all 0.3s; 
}
.btn-member-outline:hover { 
    background: #fff; 
    color: #000; 
}

/* 实心按钮 (Sign Up) */
.btn-member-solid { 
    background: #fff; 
    border: 1px solid #fff;
    color: #000; 
    padding: 12px 25px; 
    font-weight: 600; 
    font-size: 14px; 
    transition: all 0.3s; 
}
.btn-member-solid:hover { 
    background: #e0e0e0; 
    border-color: #e0e0e0;
}


/* =========================================
   手机端：背景图上移，文字沉底
========================================= */
@media (max-width: 900px) {
    .membership-banner {
        /* 上边距留出 250px 给背景图展示，把文字往下挤 */
        padding: 250px 30px 40px; 
        background-position: center top; /* 手机端：背景图靠上居中 */
    }
    
    .membership-banner::before {
        /* 渐变遮罩改为从下往上变黑，保证底部文字清晰 */
        background: linear-gradient(to top, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%); 
    }
    
    .membership-content { 
        max-width: 100%; 
    }
    
    .membership-content h3 { font-size: 20px; }
    
    .membership-buttons {
        gap: 10px;
    }
    
    /* 手机端按钮稍微调小一点，确保并排不挤 */
    .btn-member-outline, .btn-member-solid {
        padding: 12px 20px;
        font-size: 13px;
    }
}

/* =========================================
   全屏视差视频背景模块 (Video Parallax)
========================================= */
.video-parallax-section {
    position: relative;
    width: 100%;
    height: 100vh; /* 撑满整个屏幕高度 */
    min-height: 600px;
    
    /* 核心视差黑科技：将 fixed 的视频限制在这个容器内部 */
    clip-path: inset(0); 
    background-color: #000; /* 视频加载前的兜底黑底 */
}

/* 底层视频永远固定在浏览器窗口 */
.parallax-video {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover; /* 保证视频不变形，填满屏幕 */
    z-index: -1;
}

/* 黑色半透明遮罩与内容布局 */
.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4); /* 给视频盖一层黑纱，保证白字清晰 */
    z-index: 1;
}

/* 顶部按钮 */
.btn-watch-full {
    position: absolute;
    top: 40px;
    background: transparent;
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}
.btn-watch-full:hover {
    color: #00c3ff;
}

/* 居中大字 */
.video-text-content {
    text-align: center;
    color: #fff;
}
.video-text-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 5px;
    letter-spacing: -1px;
}
.video-text-content p {
    font-size: 42px;
    font-weight: 700;
}

/* =========================================
   分类页面究极排版 (Category Page)
========================================= */
.container-1440 { max-width: 1440px; margin: 0 auto; padding: 0 40px; }

/* 1. 分类大头图 */
.cat-hero {
    height: 400px;
    background-size: cover;
    background-position: right center; /* 手机端会自动切到右侧的图 */
    display: flex;
    align-items: center;
    background-color: #f4f6f8;
}
.cat-hero-content { width: 100%; }
.cat-hero-content h1 { font-size: 48px; font-weight: 800; color: #111; margin-bottom: 15px; }
.cat-hero-content p { font-size: 16px; color: #333; max-width: 450px; line-height: 1.6; }

/* 2. 无缝滚动走马灯 */
.cat-marquee {
    background: #fdfdfd;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}
.marquee-track { display: flex; animation: scrollMarquee 20s linear infinite; }
.marquee-content { display: flex; gap: 60px; padding-right: 60px; }
.marquee-content span { font-size: 13px; font-weight: 600; color: #555; }

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* 3. 破框而出的 Best Sellers */
.cat-bestsellers { padding: 40px 0 80px; }
.breadcrumbs { font-size: 12px; color: #888; margin-bottom: 30px; }
.cat-bestsellers h2 { font-size: 32px; font-weight: 800; margin-bottom: 20px; }

/* 👉 核心魔法：给整个网格顶部硬生生加出 80px 的隐形空间，这是图片用来破框的“领空”！否则会被切掉 */
.pop-cards-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px; 
    padding-top: 80px !important; 
}

.pop-card {
    position: relative !important;
    border-radius: 8px;
    padding: 130px 25px 25px; /* 把卡片内部的文字统统往下压 130px，给上面的悬浮大图留位置 */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 380px;
    margin-top: 0 !important;
}

/* 后台生成的 4 种大牌磨砂渐变色底 */
.pop-card:nth-child(1) { background: linear-gradient(to bottom, #d5d9df, #5a646e); }
.pop-card:nth-child(2) { background: linear-gradient(to bottom, #dbe6f0, #6992ba); }
.pop-card:nth-child(3) { background: linear-gradient(to bottom, #e9dfd5, #a88d75); }
.pop-card:nth-child(4) { background: linear-gradient(to bottom, #e2e2e2, #8b8e90); }

/* 破框悬浮核心 */
.pop-image-wrap {
    position: absolute !important;
    top: -65px !important; /* 👉 强行向上突破卡片天花板 65px！ */
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 80% !important;
    height: 200px !important;
    display: flex;
    justify-content: center;
    align-items: flex-end; /* 让图片底部贴实，顶部悬浮 */
    z-index: 10;
}
/* 图片加上 3D 浮雕阴影 */
.pop-image-wrap img { 
    max-height: 100% !important; 
    width: auto !important; 
    object-fit: contain !important; 
    mix-blend-mode: multiply; /* 这行能强制吃掉白底，但吃不掉灰底，最好传透明PNG */
    filter: drop-shadow(0 15px 20px rgba(0,0,0,0.25)); 
    transition: transform 0.3s; 
}
.pop-card:hover .pop-image-wrap img { transform: scale(1.05) translateY(-8px); }

/* 卡片信息区排版 */
.pop-info { position: relative; z-index: 2; color: #fff; }
.pop-badge { color: #00BEFA; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
/* 👉 核心魔法：让包裹卡片的标题链接扩展成铺满整个框的“隐形披风”！ */
.pop-info h3 a { font-size: 16px; font-weight: 600; margin: 15px 0 25px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; color:#fff !important; }


/* 确保 Shop Now 按钮不被隐形布盖住，依然可以独立产生 hover 颜色变化 */
.btn-shop-now-cyan { position: relative; z-index: 101; }

.pop-price-row { display: flex; justify-content: space-between; align-items: center; }
.pop-price { font-size: 18px; font-weight: 700; color: #fff; }
.btn-shop-now-cyan { background: #00BEFA; color: #fff; padding: 10px 20px; font-size: 13px; font-weight: 700; border-radius: 4px; text-decoration: none; transition: background 0.3s; }
.btn-shop-now-cyan:hover { background: #00aae7; }


/* 卡片信息区 */
.pop-info { position: relative; z-index: 2; color: #fff; }
.pop-badge { color: #00BEFA; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.pop-info h3 { font-size: 15px; font-weight: 600; margin: 10px 0 20px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pop-price-row { display: flex; justify-content: space-between; align-items: center; }
.pop-price { font-size: 16px; font-weight: 700; }
.btn-shop-now-cyan { background: #00BEFA; color: #fff; padding: 8px 15px; font-size: 13px; font-weight: 700; border-radius: 2px; text-decoration: none; transition: background 0.3s; }
.btn-shop-now-cyan:hover { background: #00aae7; }

/* 4. 主网格布局 (侧边栏 + 商品列) */
.shop-grid-layout { display: grid; grid-template-columns: 240px 1fr; gap: 50px; margin-bottom: 80px;}
.filter-header { display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 14px; border-bottom: 1px solid #eee; padding-bottom: 15px; margin-bottom: 20px; }
.clear-btn { color: #00BEFA; font-size: 12px; }
.filter-title { font-size: 13px; font-weight: 700; margin: 20px 0 10px; }
.filter-widget ul { list-style: none; padding: 0; font-size: 13px; color: #555; }
.filter-widget li { margin-bottom: 8px; }

/* 强行接管 WooCommerce 的排序下拉框，使其靠右 */
.woocommerce-ordering { float: right; margin-bottom: 20px; }
.woocommerce-ordering select { padding: 8px; border: none; font-weight: 600; outline: none; cursor: pointer; }

/* 5. SEO 文案区 */
.cat-seo-section { border-top: 1px solid #eee; padding: 60px 0; }
.seo-icons { display: flex; gap: 40px; margin-bottom: 40px; font-size: 14px; font-weight: 600; color: #555; }
.seo-text h2 { font-size: 32px; font-weight: 800; margin-bottom: 20px; }
.seo-text p { font-size: 14px; color: #555; line-height: 1.8; }

/* 6. HTML5 原生 FAQ 手风琴 */
.cat-faq { padding: 0 0 80px; }
.cat-faq h2 { font-size: 28px; font-weight: 800; text-align: center; margin-bottom: 40px; }
.faq-list details { border-bottom: 1px solid #eee; padding: 20px 0; cursor: pointer; }
.faq-list summary { font-size: 15px; font-weight: 600; outline: none; list-style: none; position: relative; }
/* 隐藏默认箭头，用伪元素画自定义箭头 */
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; position: absolute; right: 0; font-weight: 300; font-size: 20px; color: #888; }
.faq-list details[open] summary::after { content: '-'; }
.faq-list p { margin-top: 15px; font-size: 14px; color: #555; line-height: 1.6; padding-right: 40px; }

/* =========================================
   类目页：手机端响应式适配 (防横向滚动版)
========================================= */
@media (max-width: 900px) {
    
    /* 1. 核心锁死指令：强制全页不准出现横向滚动条 */
    body, html {
        overflow-x: hidden !important; 
        width: 100vw !important;
    }

    /* 2. 修复内边距撑破屏幕 */
    .container-1440 { padding: 0 20px !important; width: 100% !important; box-sizing: border-box !important;}
    
    /* 3. 修复大头图 */
    .cat-hero { height: 250px; background-position: center top; }
    .cat-hero-content h1 { font-size: 28px; line-height: 1.2; word-wrap: break-word;}
    .cat-hero-content p { font-size: 14px; }
    
    /* 4. 修复标题间距 */
    .cat-bestsellers h2 { font-size: 24px; margin-bottom: 40px; }
    .breadcrumbs { margin-bottom: 20px; white-space: normal; line-height: 1.4;}
    
    /* 手机端：破框卡片转横向滚动 */
    .cat-bestsellers h2 { font-size: 26px; margin-bottom: 20px; }
    
    .pop-cards-grid {
        display: flex !important; 
        overflow-x: auto !important; 
        scroll-snap-type: x mandatory !important;
        /* 👉 为手机滑动框的顶部留出巨大空间，供图片向上冒出头！ */
        padding-top: 70px !important; 
        padding-bottom: 20px !important; 
        gap: 15px !important; 
        margin: 0 -20px !important; 
        padding-left: 20px !important; /* 维持两边内距 */
        padding-right: 20px !important;
        scrollbar-width: none; 
        -webkit-overflow-scrolling: touch;
    }
    .pop-cards-grid::-webkit-scrollbar { display: none !important; }
    
    .pop-card { 
        flex: 0 0 85% !important; /* 手机上占据 85% 的身位 */
        scroll-snap-align: center !important; 
        min-height: 300px;
        padding: 100px 20px 20px !important; /* 手机端不需要压那么低 */
    }
    
    /* 手机端突破更高！ */
    .pop-image-wrap { 
        width: 80% !important; 
        height: 170px !important; 
        top: -55px !important; 
    }

    
    /* 调整商品图片的尺寸防止撑破卡片 */
    .pop-image-wrap { width: 80%; height: 180px; top: -30px; }
    .pop-info h3 { font-size: 14px; margin-bottom: 15px; }

    /* 6. 手机端隐藏左侧筛选，商品占满全宽 */
    .shop-grid-layout { grid-template-columns: 1fr !important; gap: 30px !important; }
    .shop-sidebar { display: none !important; }
    
    /* 7. 修复底部 SEO 文本的宽度 */
    .seo-icons { flex-wrap: wrap; gap: 15px; }
    .seo-icons span { width: calc(50% - 10px); font-size: 12px;}
    .seo-text h2 { font-size: 24px; line-height: 1.3;}
    .seo-text p { font-size: 13px; }
    
    /* 8. 修复 FAQ 手风琴宽度 */
    .cat-faq h2 { font-size: 24px; }
    .faq-list p { font-size: 13px; padding-right: 15px;}
}


/* =========================================
   单个商品详情页 (支持手机撑破屏幕与滑动)
========================================= */
.anker-single-product-layout {
    display: grid !important;
    grid-template-columns: 1.5fr 1fr !important;
    gap: 60px !important;
    position: relative !important;
    align-items: start;
}

.product-info-section .woocommerce-product-gallery { display: none !important; }

/* ================= 左侧多媒体区 ================= */
.product-gallery-section { position: sticky; top: 100px; height: fit-content; width: 100%; overflow: hidden; }

/* 电脑端大图框 */
.main-display-area {
    background: #f5f5f7; 
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3; 
    position: relative;
    margin-bottom: 15px; 
}

/* 动态促销标签 */
.dynamic-promo-badge {
    position: absolute; top: 0; left: 0; background: #00BEFA; color: #fff; padding: 15px 15px 25px; z-index: 10; text-align: center; clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 85%, 0 100%);
}
.dynamic-promo-badge .badge-price { display: block; font-size: 20px; font-weight: 800; line-height: 1; }
.dynamic-promo-badge .badge-text { font-size: 12px; font-weight: 600; }

/* Swiper 核心样式 */
.main-gallery-swiper { width: 100%; height: 100%; }
.main-gallery-swiper .swiper-slide { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    cursor: zoom-in; 
    background: #f5f5f7; 
    
    /* 👉 必须加这句！让里面的绝对定位标签以这张幻灯片为基准 */
    position: relative !important; 
}

.main-gallery-swiper img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; padding: 40px; }

.custom-swiper-btn { color: #888 !important; background: rgba(255,255,255,0.7); width: 40px !important; height: 40px !important; border-radius: 50%; backdrop-filter: blur(5px); }
.custom-swiper-btn::after { font-size: 16px !important; font-weight: bold; }
.custom-swiper-btn:hover { background: #fff; color: #111 !important; }

.display-item { display: none; width: 100%; height: 100%; }
.display-item.active { display: block; }

/* 独立分离的缩略图 */
.thumb-gallery-swiper { width: 100%; box-sizing: border-box; padding: 5px 0; }
.thumb-slide { height: 70px; border-radius: 6px; border: 2px solid transparent; background: #f5f5f7; cursor: pointer; overflow: hidden; opacity: 0.5; transition: 0.3s; }
.thumb-slide.swiper-slide-thumb-active, .thumb-slide:hover { opacity: 1; border-color: #111; }
.thumb-slide img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }

/* 底部切换按钮 (纯黑白硬核风格 - 紧凑版) */
.media-controls { 
    display: flex; 
    gap: 10px; /* 👉 缩小按钮之间的间距 (原15px) */
    justify-content: flex-start; /* 电脑端强制居左 */
    margin-top: 15px; 
}

.media-tab {
    padding: 8px 16px; /* 👉 缩小上下左右的内边距，让按钮变小 (原10px 20px) */
    background: transparent;
    border: none; 
    cursor: pointer; 
    font-weight: 600; 
    font-size: 13px; /* 字体大小不变，因为13px已经很小了 */
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px; /* 👉 缩小图标和文字之间的距离 */
    transition: all 0.3s;
}

.media-tab svg { width: 14px; height: 14px; } /* 图标大小保持14px精致感 */
.media-tab:hover { color: #111; }
.media-tab.active { background: #111 !important; color: #fff !important; border-radius: 3px; /* 稍微加一点圆角，比如3px，不那么扎人 */ }


/* ================= 全屏弹窗 Lightbox ================= */
.lightbox-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 99999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: 0.3s ease; }
.lightbox-overlay.active { opacity: 1; visibility: visible; }
.close-lightbox { position: absolute; top: 30px; right: 40px; color: #fff; font-size: 30px; cursor: pointer; z-index: 10; transition: 0.3s; }
.close-lightbox:hover { color: #00BEFA; transform: scale(1.1); }
.lightbox-swiper { width: 100%; height: 85vh; }
.lightbox-slide { display: flex; justify-content: center; align-items: center; }
.lightbox-slide img { max-width: 90%; max-height: 100%; object-fit: contain; }
.lightbox-pagination .swiper-pagination-bullet { background: #fff; opacity: 0.5; }
.lightbox-pagination .swiper-pagination-bullet-active { opacity: 1; }

/* =========================================
   🔵 右侧：商品信息区 (1:1 Anker 复刻版)
========================================= */

/* 彻底隐藏 WooCommerce 原生生成的恶心废话标题和评分（只留我们手写的） */
.product-info-section .product_title,
.product-info-section .woocommerce-product-rating {
    display: none !important;
}

/* 但我们自己写的定制版必须显示出来！ */
.product-info-section .ak-product-title,
.product-info-section .ak-rating-row .woocommerce-product-rating {
    display: flex !important;
}
.product-info-section .ak-product-title {
    display: block !important;
}


.product-info-section { width: 100%; overflow: hidden; padding-top: 5px; }

/* 1. 新品标与标题 */
.ak-badge-new { color: #ff9900; font-weight: 800; font-size: 13px; text-transform: capitalize; margin-bottom: 8px;}
.ak-product-title { font-size: 34px; font-weight: 800; margin: 0 0 15px; line-height: 1.25; letter-spacing: -0.5px; color: #111;}

/* 2. 评级星星与文字 */
.ak-rating-row { margin-bottom: 25px; }
.woocommerce-product-rating { display: flex; align-items: center; gap: 10px; }
.woocommerce-product-rating .star-rating { color: #ffad00; font-size: 14px; width: 5.4em; } /* Woo 原生星星变橙色 */
.woocommerce-product-rating .star-rating::before { color: #eaeaea; } /* 未点亮的星星变灰 */
.woocommerce-review-link { color: #00BEFA; font-size: 14px; font-weight: 500; text-decoration: none; }
.woocommerce-review-link:hover { text-decoration: underline; }

/* 3. 价格与省钱标签 */
.ak-price-row { display: flex; align-items: center; gap: 15px; margin-bottom: 10px; }
.ak-real-price .price { font-size: 34px; font-weight: 800; color: #111; margin: 0; display: flex; align-items: center; gap: 12px; }
.ak-real-price .price del { font-size: 18px; color: #888; font-weight: normal; } /* 折扣前的原价变小变灰 */
.ak-real-price .price ins { text-decoration: none; }
.ak-save-badge { background: #ff9900; color: #fff; font-size: 13px; font-weight: 800; padding: 3px 8px; border-radius: 3px; display: flex; align-items: center; }

/* 4. 会员提示 */
.ak-member-promo { font-size: 14px; color: #ff9900; margin-bottom: 25px; font-weight: 500; }
.ak-member-promo a { color: #00BEFA; text-decoration: underline; }

/* 5. PayPal 分期狂 */
.ak-paypal-box { display: flex; justify-content: space-between; align-items: center; background: #fafafa; padding: 12px 15px; border-radius: 4px; font-size: 13px; color: #333; margin-bottom: 25px; cursor: pointer; }
.ak-paypal-box strong { color: #003087; font-style: italic; font-size: 15px; font-weight: 800; }
.ak-paypal-box a { color: #0070ba; text-decoration: underline; }
.ak-paypal-box .chevron { color: #888; }

/* 6. 终极蓝白优惠券 (带半圆切角和虚线) */
.ak-coupon-box { display: flex; margin-bottom: 35px; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.03)); border-radius: 6px; overflow: hidden; align-items: stretch; background: #ebf6ff; }
.ak-coupon-left { background: #00BEFA; color: #fff; width: 100px; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; }
/* 模拟假撕边虚线 */
.ak-coupon-left::after { content: ''; position: absolute; right: -2px; top: 0; bottom: 0; border-right: 3px dashed #ebf6ff; z-index: 2; }
.ak-coupon-left .sm { font-size: 14px; font-weight: 600; line-height: 1; }
.ak-coupon-left .lg { font-size: 32px; font-weight: 800; line-height: 1.1; letter-spacing: -1px; }
.ak-coupon-right { flex: 1; padding: 15px 20px; display: flex; justify-content: space-between; align-items: flex-end; }
.ak-coupon-texts .black-txt { color: #111; font-weight: 800; font-size: 14px; }
.ak-coupon-texts { font-size: 14px; color: #111; line-height: 1.5; }
.ak-copy-btn { color: #00BEFA; font-weight: 700; text-decoration: underline; margin-top: 5px; display: inline-block;}
.ak-copy-btn:hover { color: #00aae7; }
.ak-coupon-right .info-icon { color: #aaa; margin-bottom: 5px; cursor: pointer; }

/* 7. Key Features 卖点手风琴 */
/* 8. Key Features 外侧短列表 */
.ak-key-features { border-top: 1px solid #eee; border-bottom: 1px solid #eee; margin-bottom: 30px; }
.feature-title { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 18px; font-weight: 600; color: #111; cursor: pointer; transition: color 0.3s; }
.feature-title:hover { color: #00BEFA; }
.feature-short-list { padding-left: 20px; margin: 0 0 20px 0; font-size: 14px; color: #111; line-height: 1.6; font-weight: 500;}
.feature-short-list li { margin-bottom: 8px; }

/* --- 右侧侧滑抽屉 (Features Drawer 类似 Anker 风格) --- */
.drawer-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6);
    z-index: 99998; opacity: 0; visibility: hidden; transition: 0.3s;
}
.drawer-overlay.active { opacity: 1; visibility: visible; }

.ak-side-drawer {
    position: fixed; top: 0; right: -500px; /* 默认躲在屏幕右边 */
    width: 100%; max-width: 480px; height: 100vh;
    background: #fff; z-index: 99999;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1); /* 极其丝滑的滑出动画 */
    display: flex; flex-direction: column;
}
.ak-side-drawer.active { right: 0; } /* 激活时滑入 */

.drawer-header {
    padding: 25px 30px; display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid #eee;
}
.drawer-header h2 { font-size: 20px; font-weight: 700; color: #111; margin: 0; }
.close-drawer { color: #0066cc; cursor: pointer; display: flex; transition: 0.3s; }
.close-drawer:hover { transform: scale(1.1); } /* 修复为带方形框的退出按钮特效 */

.drawer-body {
    padding: 30px; overflow-y: auto; flex: 1;
}
.drawer-feature-item { margin-bottom: 30px; }
.drawer-feature-item h4 { font-size: 16px; font-weight: 600; color: #111; margin: 0 0 10px 0; line-height: 1.3;}
.drawer-feature-item p { font-size: 14px; color: #666; line-height: 1.6; margin: 0; }


/* 8. 数量标题与 WooCommerce 购物车表单 */
.ak-section-title { font-size: 20px; font-weight: 600; color: #111; margin-bottom: 15px; }
.ak-cart-form-wrap form.cart { display: flex; gap: 20px; align-items: stretch; margin-bottom: 25px; }
/* 优化数量加减框 */
.ak-cart-form-wrap .quantity { border: 1px solid #ddd; display: flex; border-radius: 4px; overflow: hidden; height: 50px; width: 120px; }
.ak-cart-form-wrap .quantity input[type="number"] { width: 100%; border: none; text-align: center; font-size: 16px; font-weight: 600; outline: none; appearance: textfield; -moz-appearance: textfield; }
/* 隐藏网页原生的上下黑色箭头 */
.ak-cart-form-wrap .quantity input[type=number]::-webkit-inner-spin-button, 
.ak-cart-form-wrap .quantity input[type=number]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
/* 真正的加入购物车按钮样式 */
.ak-cart-form-wrap .single_add_to_cart_button { background: #00BEFA !important; color: #fff !important; flex: 1; border: none; border-radius: 4px; font-size: 16px; font-weight: 700; cursor: pointer; transition: 0.3s; }
.ak-cart-form-wrap .single_add_to_cart_button:hover { background: #00aae7 !important; }

/* 9. 批发折扣 */
.ak-bulk-discount { display: flex; gap: 15px; background: #f2f9ff; padding: 15px 20px; border-radius: 4px; font-size: 13px; color: #333; line-height: 1.6; margin-bottom: 20px; }
.ak-bulk-discount .tag-icon { flex: 0 0 16px; margin-top: 3px; color: #333; }
.ak-bulk-discount .orange { color: #ff9900; }
.ak-bulk-discount a { color: #666; font-size: 12px; margin-top: 5px; display: inline-block; }
.ak-bulk-discount a:hover { color: #111; }

/* 10. 免费赠品 */
.ak-free-gift { display: flex; gap: 15px; align-items: center; border: 1px solid #ddd; padding: 15px 20px; border-radius: 4px; margin-bottom: 40px; }
.gift-img { width: 45px; height: 45px; flex-shrink: 0; }
.gift-img img { width: 100%; height: 100%; object-fit: contain; }
.gift-text h4 { font-size: 13px; font-weight: 600; color: #111; margin: 0 0 5px 0; line-height: 1.4; }
.gift-price { font-size: 13px; }
.gift-price strong { font-weight: 800; color: #111; margin-right: 5px; }
.gift-price del { color: #888; }

/* 12. 终极信任背书区 (Services and Benefits) */
.ak-trust-services { margin-top: 40px; }
.ak-trust-services h3 { font-size: 18px; font-weight: 700; color: #111; margin-bottom: 20px; }

/* 顶部的浅灰色长条 VIP 按钮 */
.services-vip-banner { background: #f5f5f7; border-radius: 4px; padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: background 0.3s; margin-bottom: 20px; }
.services-vip-banner:hover { background: #eaeaea; }
.vip-left { display: flex; align-items: center; gap: 15px; font-size: 15px; font-weight: 600; color: #111; }
.coin-icon { width: 30px; height: 30px; object-fit: contain; } /* 自行准备的金币小图片 */

/* 细线分割的四大保证清单 */
.services-guarantee-list { list-style: none; padding: 0; margin: 0 0 30px 0; border-top: 1px solid #eee; }
.services-guarantee-list li { border-bottom: 1px solid #eee; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; }
.sg-left { display: flex; align-items: center; gap: 15px; font-size: 15px; font-weight: 600; color: #111; }
.info-circle { color: #ccc; cursor: pointer; transition: color 0.3s; }
.info-circle:hover { color: #888; }

/* 支付与物流矩阵区块 */
.sm-section { margin-bottom: 25px; padding-bottom: 25px; border-bottom: 1px solid #eee; }
.sm-title { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: #111; margin-bottom: 15px; }
.sm-icons { display: flex; flex-wrap: wrap; gap: 8px; }

/* 纯 CSS 绘制的支付徽标 (无死角超清) */
.sm-badge { 
    background: #fff; 
    border: 1px solid #eaeaea;
    border-radius: 4px; 
    height: 26px; 
    min-width: 42px;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 10px; 
    font-weight: 900; 
    padding: 0 8px;
}
/* 给世界级支付品牌上色 */
.sm-badge.visa { color: #1a1f71; font-style: italic; font-size: 12px; }
.sm-badge.amex { color: #fff; background: #002663; border: none; }
.sm-badge.paypal { color: #003087; font-style: italic; font-size: 11px;}
.sm-badge.applepay { color: #111; font-size: 12px;}
.sm-badge.discover { color: #ff6000; letter-spacing: -0.5px; }
/* 纯 CSS 画 Mastercard 交叠圆圈 */
.sm-badge.mc { position: relative; width: 42px; border: 1px solid #eaeaea;}
.mc-circle { width: 14px; height: 14px; border-radius: 50%; position: absolute; mix-blend-mode: multiply;}
.mc-circle.red { background: #eb001b; left: 8px; z-index: 2; }
.mc-circle.yellow { background: #f79e1b; right: 8px; z-index: 1; }

/* 纯 CSS 国际物流承运商徽标 */
.sm-badge.express { font-weight: 800; font-size: 11px; padding: 0 10px; }
.sm-badge.dhl { background: #ffcc00; color: #d40511; border: none; font-style: italic; letter-spacing: -0.5px;}
.sm-badge.ups { color: #351c15; }
.sm-badge.fedex { letter-spacing: -0.5px; font-size: 12px; }


/* ================= 底部常驻结算栏 ================= */
.sticky-cart-bar { position: fixed; bottom: 0; left: 0; width: 100%; background: #fff; box-shadow: 0 -5px 20px rgba(0,0,0,0.08); z-index: 9990; padding: 15px 0; border-top: 1px solid #eee; }
.sticky-cart-container { max-width: 1440px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; }
.sticky-left { font-size: 14px; font-weight: 600; color: #555; }
.sticky-right { display: flex; align-items: center; gap: 20px; }
.sticky-price { font-size: 24px; font-weight: 800; }
.btn-buy-now { background: #00BEFA; color: #fff; border: none; padding: 12px 40px; font-weight: 800; border-radius: 4px; cursor: pointer; transition: 0.3s;}
.btn-buy-now:hover { background: #00aae7; }

/* =========================================
   全屏无缝详情长图区 (Full-width Overview)
========================================= */
.ak-overview-fullwidth {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 60px; 
    background-color: #000; 
}

.overview-desktop, .overview-mobile {
    flex-direction: column; 
    line-height: 0; 
    font-size: 0;
}

/* 👉 核心修复：电脑端默认显示 desktop，死死隐藏 mobile */
.overview-desktop { display: flex !important; }
.overview-mobile  { display: none !important; }

.ak-overview-fullwidth img {
    width: 100%;
    height: auto; 
    display: block;
    margin: 0;
    padding: 0;
    border: none;
}


/* =========================================
   1. 顶部星星点击区
========================================= */
.ak-top-rating { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 15px; cursor: pointer; }
.ak-top-rating .stars { color: #00BEFA; font-size: 16px; letter-spacing: 2px;}
.ak-top-rating .review-link { color: #00BEFA; font-size: 13px; font-weight: 500; }
.ak-top-rating:hover .review-link { text-decoration: underline; }

/* =========================================
   1. 顶部星星点击区 (平滑跳转至评论)
========================================= */
.ak-top-rating { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 15px; cursor: pointer; }
.ak-top-rating .stars { color: #00BEFA; font-size: 16px; letter-spacing: 2px;}
.ak-top-rating .review-link { color: #00BEFA; font-size: 13px; font-weight: 500; }
.ak-top-rating:hover .review-link { text-decoration: underline; }

/* =========================================
   2. 巨无霸评论引擎架构
========================================= */
.ak-reviews-container { max-width: 1440px; margin: 60px auto 100px; padding: 0 40px; }

/* 头部汇总 */
.reviews-header { display: flex; justify-content: space-between; align-items: center; padding-bottom: 30px; border-bottom: 1px solid #eaeaea; }
.rh-left { text-align: center; }
.rh-score-box { display: flex; flex-direction: column; align-items: center; }
.rh-score-box .stars { color: #ff9900; font-size: 22px; letter-spacing: 2px; }
.rh-score-box a { color: #00BEFA; font-size: 14px; text-decoration: underline; font-weight: 600; margin-top: 5px; }
.rh-based-on { font-size: 13px; color: #555; margin-top: 10px; }

/* 进度条 */
.progress-row { display: flex; align-items: center; gap: 10px; font-size: 12px; margin-bottom: 5px; }
.progress-row .stars { color: #ff9900; letter-spacing: 1px; width: 65px;}
.bar-bg { width: 150px; height: 10px; background: #eee; border-radius: 5px; overflow: hidden; }
.bar-fill { height: 100%; background: #00BEFA; }
.progress-row .num { width: 30px; color: #555; text-align: right; }

.btn-write-review { background: #00BEFA; color: #fff; border: none; padding: 12px 30px; font-weight: 700; font-size: 15px; border-radius: 2px; cursor: pointer; transition: 0.3s; }
.btn-write-review:hover { background: #00aae7; }

/* 照片墙 */
.reviews-media-wall { padding: 30px 0; border-bottom: 1px solid #eaeaea; }
.reviews-media-wall h4 { font-size: 16px; font-weight: 600; margin-bottom: 15px; color: #333;}
.media-thumb-list { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 10px; scrollbar-width: none;}
.media-thumb-list::-webkit-scrollbar { display: none; }
.rt-thumb { width: 80px; height: 80px; border-radius: 4px; overflow: hidden; cursor: pointer; flex-shrink: 0; }
.rt-thumb img { width: 100%; height: 100%; object-fit: cover; transition: 0.3s; }
.rt-thumb:hover img { transform: scale(1.1); }

/* 工具栏 */
.reviews-toolbar { display: flex; justify-content: space-between; align-items: center; margin: 30px 0; flex-wrap: wrap; gap: 20px;}
.search-box { position: relative; width: 300px; }
.search-box input { width: 100%; padding: 10px 15px 10px 35px; border: 1px solid #ddd; border-radius: 4px; outline: none; font-size: 14px;}
.search-box svg { position: absolute; left: 10px; top: 11px; }

.tag-filters { display: flex; gap: 10px; flex-wrap: wrap; flex: 1; margin: 0; padding: 0; }
.tag-filters span { border: 1px solid #00BEFA; color: #00BEFA; padding: 5px 12px; border-radius: 4px; font-size: 13px; cursor: pointer; transition: 0.3s; }
.tag-filters span:hover { background: #00BEFA; color: #fff; }

.sort-box { font-size: 13px; color: #555; }
.sort-box select { border: none; font-weight: 600; color: #111; outline: none; cursor: pointer; }

/* 单个评论卡片 */
.rev-card { border-bottom: 1px solid #eee; padding: 30px 0; }
.rev-header { display: flex; justify-content: space-between; margin-bottom: 15px; }
.rating-stars { color: #ff9900; font-size: 16px; letter-spacing: 2px;}
.rev-date { font-size: 12px; color: #999; }

/* 复杂的头像与国旗区 */
.rev-user { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; position: relative; }
.verified-check { position: absolute; left: 24px; bottom: -2px; background: #fff; color: #555; font-size: 10px; width: 14px; height: 14px; border-radius: 50%; text-align: center; line-height: 14px; padding-left: 1px; border: 1px solid #eee;}
.user-details strong { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #111;}
.verified-badge { background: #666; color: #fff; font-size: 10px; padding: 1px 5px; border-radius: 2px; }
.user-details small { color: #888; font-size: 11px; }

.rev-title { font-size: 15px; font-weight: 700; margin-bottom: 10px; color: #111;}
.rev-text { font-size: 14px; color: #444; line-height: 1.6; margin-bottom: 15px;}
.rev-attached-img { width: 100px; height: 100px; border-radius: 4px; overflow: hidden; cursor: pointer; margin-bottom: 15px; }
.rev-attached-img img { width: 100%; height: 100%; object-fit: cover; }

.rev-actions { display: flex; gap: 15px; justify-content: flex-end; }
.rev-actions span { color: #00BEFA; font-size: 12px; display: flex; align-items: center; gap: 5px; cursor: pointer; }

/* 假表单弹窗 */
.fake-form-box { background: #fff; width: 90%; max-width: 450px; padding: 30px; border-radius: 8px; position: relative;}
#fake-form-body .promo-input { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; margin-bottom: 15px; font-size: 14px; font-family: inherit; outline: none; }
#fake-form-body .promo-input:focus { border-color: #00BEFA; }
.star-rating-select { font-size: 24px; color: #ff9900; margin-bottom: 15px; cursor: pointer; user-select: none; }
.star-rating-select span { transition: color 0.2s; }
.upload-trigger { border: 1px dashed #aaa; padding: 15px; text-align: center; color: #555; font-size: 13px; font-weight: 600; border-radius: 4px; cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 5px; transition: background 0.3s; }
.upload-trigger:hover { background: #f9f9f9; border-color: #00BEFA; color: #00BEFA; }

/* 展开更多按钮 */
.btn-load-more { background: #fff; color: #111; border: 1px solid #111; padding: 12px 40px; font-weight: 700; font-size: 14px; border-radius: 4px; cursor: pointer; transition: all 0.3s; }
.btn-load-more:hover { background: #111; color: #fff; }

/* 双列媒体查看器 (Lightbox) */
.review-lightbox-grid { background: #fff; width: 90%; max-width: 900px; height: 75vh; border-radius: 8px; overflow: hidden; display: grid; grid-template-columns: 1.5fr 1fr; }
.rl-image-part { background: #000; display: flex; justify-content: center; align-items: center; }
.rl-image-part img { max-width: 100%; max-height: 100%; object-fit: contain; }
.rl-info-part { padding: 40px; overflow-y: auto; background: #fff; }
.rl-stars { color: #ff9900; font-size: 20px; letter-spacing: 2px;}
.rl-date { font-size: 12px; color: #999; margin-top: 10px; }

/* =========================================
   【重要修复】镇压原生 WooCommerce 的幽灵元素
========================================= */

/* 1. 彻底隐藏原生 WooCommerce 自己吐出来的一堆废话（双重标题、评分、价格等），只留加入购物车表单 */
.product-info-section .product_title,
.product-info-section .woocommerce-product-rating,
.product-info-section .price,
.product-info-section .product_meta {
    display: none !important;
}

/* 但我们自己手写的定制版必须显示出来！ */
.product-info-section .ak-product-title,
.product-info-section .ak-rating-row .woocommerce-product-rating,
.product-info-section .ak-real-price .price {
    display: flex !important;
}
.product-info-section .ak-product-title {
    display: block !important;
}

/* 2. 强行接管原生 加入购物车表单 (Quantity + Add to Cart) 的排版 */
.ak-cart-form-wrap form.cart {
    display: flex !important;
    gap: 15px !important;
    align-items: stretch !important; /* 让前后的高度自动对齐 */
    margin-bottom: 30px !important;
    width: 100% !important;
}

/* 强行接管数量选择器 */
.ak-cart-form-wrap form.cart .quantity {
    margin: 0 !important; /* 清除原生自带的底边距 */
    width: 110px !important; /* 给数量框固定宽度 */
    flex: 0 0 110px !important; /* 严禁拉伸 */
    border: 1px solid #d0d0d0 !important;
    border-radius: 4px !important;
    display: flex !important;
    overflow: hidden;
}

.ak-cart-form-wrap form.cart .quantity input.qty {
    width: 100% !important;
    height: 50px !important;
    border: none !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-align: center !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
}

/* 强行接管加入购物车按钮 */
.ak-cart-form-wrap form.cart button.single_add_to_cart_button {
    flex: 1 !important; /* 剩下的空间全给蓝色的加入购物车按钮 */
    height: 52px !important; /* 强制高度匹配 */
    margin: 0 !important;
    padding: 0 !important;
    background: #00BEFA !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    border-radius: 4px !important;
    border: none !important;
    transition: background 0.3s !important;
    text-transform: capitalize !important; /* 修复有的主题默认全大写的问题 */
}
.ak-cart-form-wrap form.cart button.single_add_to_cart_button:hover {
    background: #00aae7 !important;
}


/* =========================================
   全站手机端终极适配中枢 (Max-width 900px)
========================================= */
@media (max-width: 900px) {
    
    /* 1. 元素显隐控制 */
    .overview-desktop, .custom-swiper-btn, .desktop-only, .thumb-gallery-swiper, .sticky-left { 
        display: none !important; 
    }
    .overview-mobile  { display: flex !important; }
    
    /* 2. 剥离最外层保护壳 (让图片可以直接顶到物理屏幕边缘) */
    /* 我们找到了包含 1440px 限制的父亲，把它所有内边距扒光 */
    div[style*="max-width: 1440px"] { 
        padding: 0 !important; 
        width: 100% !important;
        margin-top: 10px !important;
    }

    /* 3. 重新为“文字和信息区”穿上保护衣，防止贴着屏幕看着难受 */
    .breadcrumbs, .product-info-section, .ak-reviews-container, .sticky-cart-container { 
        padding-left: 20px !important; 
        padding-right: 20px !important; 
        box-sizing: border-box !important;
    }

    /* 4. 左侧大图：因为外层没阻碍了，这里乖乖 100% 就能霸满全屏！ */
    .anker-single-product-layout { 
        grid-template-columns: 1fr !important; 
        gap: 20px !important; 
    }

    .product-gallery-section { 
        position: relative; 
        top: 0; 
        width: 100vw !important; /* 绝对屏幕物理宽度 */
        margin: 0 !important; 
        overflow: hidden;
    } 

    .main-display-area { 
        border-radius: 0 !important; 
        margin: 0 !important; 
        width: 100% !important;
        aspect-ratio: 4 / 5 !important; 
        background: #ffffff !important; 
    }
    
    /* 图片直接采取 cover 的霸道模式，无缝切入 */
    .main-gallery-swiper img { 
        padding: 0 !important; 
        background: #ffffff !important; 
        width: 100% !important; 
        height: 100% !important; 
        object-fit: cover !important; 
    } 

    /* 5. 修复右上角悬浮小方块 */
    .mobile-counter-pagination { 
        position: absolute !important; 
        top: 20px !important;   
        right: 20px !important;  
        bottom: auto !important; 
        left: auto !important;   
        background: rgba(0, 0, 0, 0.4) !important; /* 调深一点，看得更清 */
        color: #fff !important; 
        padding: 6px 12px !important; 
        border-radius: 4px !important; 
        font-size: 13px !important; 
        font-weight: 700 !important; 
        letter-spacing: 1px !important;
        width: auto !important; 
        z-index: 20 !important; 
    }

    /* 6. 其它零散适配 */
    .media-controls { justify-content: center !important; margin-top: 15px; margin-bottom: 25px; }
    .media-tab { padding: 8px 16px !important; font-size: 13px !important; }
    .product-title { font-size: 26px; line-height: 1.2; margin-top: 0;}
    .btn-buy-now { padding: 12px 20px; }

    /* 评论部分移动适配 */
    .reviews-header { flex-direction: column; gap: 20px; }
    .rh-middle { display: none; } 
    .btn-write-review { width: 100%; }
    .reviews-toolbar { flex-direction: column; align-items: stretch; gap: 15px; }
    .search-box { width: 100%; }
    .review-lightbox-grid { grid-template-columns: 1fr; grid-template-rows: 45vh auto; height: 85vh; overflow: hidden; }
    .rl-info-part { padding: 20px; overflow-y: auto; }

        /* ================= 类目页商品列表：手机端超级两列瀑布流 ================= */
    
    /* 1. 暴力干掉类目页外层所有限制，让它能顶死左右屏幕边缘！*/
    .shop-main-content, .shop-grid-layout { width: 100vw !important; padding: 0 !important; margin: 0 !important; }
    
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important; 
        gap: 8px !important; /* 👉 缩小卡片中间的缝隙，原先12px */
        padding: 0 8px !important; /* 👉 缩小最外层的左右留白，原先15px。这样显得屏幕更大！ */
        width: 100% !important;
        box-sizing: border-box;
    }
    
    .woocommerce ul.products li.product { 
        padding: 0 !important; /* 手机端完全扒光内边距 */
        min-height: auto; 
    }

    /* 👉 核心魔法 2：手机端从可怜的 120px 暴增到 180px！瞬间霸满上半屏 */
    .woocommerce ul.products li.product img { 
        height: 180px !important; 
        padding: 10px !important; 
        margin-bottom: 5px !important; 
        width: 100% !important;
    }

    
    .loop-dynamic-promo-badge { padding: 4px 6px 12px; }
    .loop-dynamic-promo-badge .badge-price { font-size: 13px; }
    .loop-dynamic-promo-badge .badge-text { font-size: 9px; }

    /* 手机端的新品和标题排版 */
    .woocommerce ul.products li.product .woocommerce-loop-product__title::before { 
        font-size: 11px; 
        margin: 5px 0 3px; 
    }
    .woocommerce ul.products li.product .woocommerce-loop-product__title { 
        font-size: 12px; /* 👉 手机端字号调小，但因为放宽了3行，容墨量翻倍！ */
        padding: 0 10px !important; 
        -webkit-line-clamp: 3; /* 万无一失，手机也走3行制 */
    }
    
    .woocommerce ul.products li.product .price { 
        font-size: 14px; 
        padding: 10px 10px 15px !important; 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 0;
    }

    .woocommerce ul.products li.product .button { width: 28px !important; height: 28px !important; bottom: 10px; right: 10px; }
    .woocommerce ul.products li.product .button::before { width: 14px; height: 14px; }
    
    /* 强行靠右顶部的排序下拉框 */
    .shop-sorting-bar { padding: 0 15px 15px; display: flex; justify-content: space-between; align-items: center; }
}