/* ========== 修改导航栏颜色 ========== */
header .main-menu a:hover,
header .main-menu li:hover > a,
header .main-menu li.active > a,
header .main-menu li.is-active > a,
header .main-menu li.open > a,
header .main-menu li.has-submenu:hover > a {
    color: #ffffff !important;
}

/* ========== Hide GetButton WA Icon ========== */
[id^=gb-widget] {
    display: none;
}

/* ========== 隐藏上方路径 ========== */
.product-single .breadcrumbs{display:none}
.product-single .breadcrumbs{
    display:none;
}
.product-single{
    padding-top:20px;
}

body:not(.home) .breadcrumbs{
    display: none !important;
}body:not(.home) .products-index,
body:not(.home) .cat-content{
    padding-top: 20px !important;
}

/* == 全站整体缩放方案（同时作用于 PC 和 手机端）== */
html, body {
    zoom: 0.95 !important;              /* 全设备整体缩小到 88%（可根据需要改为 0.9 或 0.85） */
    -moz-transform: scale(0.95);       /* 兼容火狐浏览器 */
    -moz-transform-origin: top center;  /* 确保缩放以顶部中心为基准，防止页面歪斜 */
}

/* ========== 隐藏产品详情页图片下方徽标========== */
.flex.items-center.gap-4.border.border-gray-200.dark\:border-opacity-20.rounded-md.p-2.mb-4{
    display: none !important;
}

/* ========== 修改产品详情页下方字体========== */
body.product-single .product-entry__sub-title{
    font-weight: 400 !important;
}

/* ========== 个人账户菜单页面遮罩========== */
.s-user-menu-toggler:before{
    content: "";
    position: fixed;

    top: 0;
    bottom: 0;

    left: 0;
    right: 0;

    width: auto !important;
    height: auto !important;

    background: rgba(0,0,0,.45);

    z-index: 1000;
}
.s-user-menu-dropdown{
    z-index: 1001 !important;
}


/* ========== 修改个人账户下拉菜单页面图标颜色========== */
.s-user-menu-toggler.opened .s-user-menu-dropdown-list .s-user-menu-dropdown-item:not(.s-user-menu-dropdown-item-logout) svg path {
  fill: #fff !important;
}