/* Additional Header Styles */

.site-header {
	transition: all 0.3s ease;
}

/* .site-header.scrolled {
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
} */

/* Cart Count Badge */
.header-cart {
	position: relative;
}


/* Header Icons */
.header-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	color: #1A1A1A;
	transition: color 0.3s;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}

.header-icon:hover {
	color: #FF6A00;
}

.header-icon svg {
	stroke: currentColor;
}

/* Search Form Enhancement */
.header-search.focused {
	position: relative;
}

.header-search.focused input {
	border-color: #FF6A00;
	box-shadow: 0 0 0 2px rgba(255, 106, 0, 0.1);
}

/* Custom Category Select Styles */
.category-select {
	/* 移除默认样式 */
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	
	/* 基础样式 */
	min-width: 140px;
	height: 44px;
	padding: 0 35px 0 15px;
	background-color: #FFFFFF;
	border: 1px solid #E0E0E0;
	border-radius: 8px;
	font-family: 'AvenirLTStd-Medium', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #333333;
	cursor: pointer;
	transition: all 0.3s ease;
	
	/* 自定义下拉箭头 */
	background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 14px;
}

/* Hover 效果 */
.category-select:hover {
	border-color: #FFAA01;
	background-color: #fff;
	/* box-shadow: 0 2px 8px rgba(255, 170, 1, 0.15); */
}

/* Focus 效果 */
.category-select:focus {
	outline: none;
	border-color: #FFAA01;
	background-color: #FFFFFF;
	/* box-shadow: 0 0 0 3px rgba(255, 170, 1, 0.1); */
	background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23FFAA01' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Active/展开状态 */
.category-select:active {
	transform: translateY(1px);
}

/* 选项样式 (部分浏览器支持) */
.category-select option {
	padding: 10px 15px;
	background-color: #FFFFFF;
	color: #333333;
	font-size: 14px;
}

.category-select option:hover {
	background-color: #FFF9F0;
	color: #FFAA01;
}

/* 选中的选项 */
.category-select option:checked {
	background-color: #FFAA01;
	color: #FFFFFF;
	font-weight: 600;
}

/* Language Selector */
.language-selector {
	display: flex;
	align-items: center;
	gap: 5px;
}

.language-cj {
	position: absolute;
	right: 0;
	top: 100%;
	margin-top: 10px;
	background: white;
	border: 1px solid #eee;
	border-radius: 4px;
	padding: 10px;
	min-width: 150px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s;
	z-index: 1000;
}

.language-selector:hover .language-cj {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* Menu Hover Effect */
.main-navigation ul li {
	position: relative;
}

.main-navigation .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	min-width: 200px;
	padding: 8px 0;    
	border-radius: 0 0 4px 4px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s;
	z-index: 999;
	flex-direction: column;
	/* border-top: 1px solid #ddd; */
}
.nav-bar .container{
	position: relative;
}

.menu-item-has-children.menu-item-level0::after,.menu-item-has-children.menu-item-level0::after{
	content: '';
    display: inline-block;
    width: 12px;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23181818' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
}
.menu-item-has-children.menu-item-level0:hover::after{
	display: none;
}

/* 向上的对话框箭头 */
.main-navigation li.menu-item-has-children > a{
	position: relative;
}

/* 向上的对话框箭头 - 白色三角形 */
.main-navigation li.menu-item-has-children > a::after {
	transform:  translateX(-50%) translateY(-10px);
	transition: transform 0.8s ease;
}
.main-navigation li.menu-item-has-children:hover > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
    z-index: 1001;
}

/* 向上的对话框箭头 - 外层边框（可选，如果需要边框效果） */
.main-navigation li.menu-item-has-children > a::before {
	/* background: transparent; */
	transform:  translateX(-50%) translateY(-10px);
	transition: transform 0.8s ease;
}
.main-navigation li.menu-item-has-children:hover > a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 9px solid #ccc;
    z-index: 1000;
	/* background: #ececec; */
}
.main-navigation .sub-menu li.menu-item-has-children > a::after,.main-navigation .sub-menu li.menu-item-has-children > a::before{
	display: none;
}


.main-navigation li:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	display: flex;
}

.main-navigation .sub-menu li {
	display: block;
}

.main-navigation .sub-menu a {
	padding: 6px 20px;
    display: block;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    font-family: 'AvenirLTStd-Medium';
	text-transform: capitalize;
}
.main-navigation li.special-menu-item:hover{
	position: unset;
}

.main-navigation .sub-menu a:after {
	display: none;
}

/* jeck */
.warning-bar {
	height: 43px;
	transition: all 0.3s eas;
}
.warning-bar .container{
	height: 100%;
	display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-navigation .special-menu-item .sub-menu{
	flex-direction: row;
    border-radius: 0 0 4px 4px;
    padding: 8px 28px;
    position: absolute;
    min-width: 100%;
	display: none;
}
.main-navigation .special-menu-item .sub-menu .sub-menu{
	opacity: 1;
    visibility: visible;
    transform: translateY(0);
	flex-direction: column;
	box-shadow: none;
	position: unset;
	border: none;
	padding: 8px 0;
	display: flex;
}
.main-navigation .special-menu-item .sub-menu >li>span{
	display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 20px;
    padding-bottom: 0;
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    font-family: 'AvenirLTStd-Black';
    font-size: 18px;
    white-space: nowrap;
    min-width: 200px;
}

/* .scrolled .warning-bar {
	display: none;
}

.archive .scrolled {
	display: none;
} */

/* .archive .site-header{
	position: relative;
} */

.header-icon.scrolled {
	position: fixed;
    top: 8vw;
    z-index: 9999;
    right: 3vw;
	background: #fff;
}
/* ========================================
   Shopping Cart Sidebar
======================================== */

/* Cart Overlay */
.cart-sidebar-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 9998;
}

.cart-sidebar-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* Cart Sidebar */
.cart-sidebar {
	position: fixed;
	top: 0;
	right: 0;
	width: 430px;
	max-width: 90%;
	height: 100vh;
	background: #F5F5F5;
	box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
	transform: translateX(100%);
	transition: transform 0.3s ease;
	z-index: 9999;
	display: flex;
	flex-direction: column;
}

.cart-sidebar.active {
	transform: translateX(0);
}

/* Cart Header */
.cart-sidebar-header {
	background: #E8E8E8;
	padding: 20px 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #D0D0D0;
}

.cart-sidebar-header h3 {
	font-size: 20px;
	font-weight: 800;
	color: #1A1A1A;
	margin: 0;
	letter-spacing: 0.5px;
	font-family: 'AvenirLTStd-Black';
}

.cart-sidebar-close {
	background: none;
	border: none;
	cursor: pointer;
	padding: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #666;
	transition: color 0.3s;
}

.cart-sidebar-close:hover {
	color: #1A1A1A;
}

/* Free Shipping Notice */
.cart-free-shipping-notice {
	background: white;
	padding: 15px 25px;
	border-bottom: 1px solid #E0E0E0;
}

.cart-free-shipping-notice .shipping-notice {
	color: #ff4444;
    font-weight: 900;
    font-size: 16px;
    margin: 0 0 10px 0;
    text-align: center;
}

.cart-free-shipping-notice .shipping-progress {
	color: #5B9BD5;
	font-size: 13px;
	margin: 0 0 10px 0;
	text-align: center;
}

.cart-free-shipping-notice .shipping-progress strong {
	font-weight: 700;
}

.cart-free-shipping-notice .shipping-unlocked {
	color: #28A745;
	font-weight: 700;
	font-size: 14px;
	margin: 0;
	text-align: center;
}

.shipping-progress-bar {
	width: 100%;
	height: 6px;
	background: #E0E0E0;
	border-radius: 3px;
	overflow: hidden;
}

.shipping-progress-fill {
	height: 100%;
	background: linear-gradient(90deg, #5B9BD5 0%, #28A745 100%);
	border-radius: 3px;
	transition: width 0.3s ease;
}

/* Cart Items Container */
.cart-sidebar-content {
	flex: 1;
	overflow-y: auto;
	background: #F5F5F5;
}

.cart-items-count {
	padding: 15px 25px 10px;
	font-size: 14px;
	font-weight: 600;
	color: #666;
}

.cart-sidebar-items {
	padding: 0 0 20px;
}

/* Empty Cart */
.cart-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 60px 25px;
	text-align: center;
}

.cart-empty svg {
	margin-bottom: 20px;
}

.cart-empty p {
	font-size: 16px;
	color: #999;
	margin-bottom: 25px;
}

.btn-continue-shopping {
	display: inline-block;
	background: #1A1A1A;
	color: white;
	padding: 12px 30px;
	border-radius: 4px;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	transition: background 0.3s;
}

.btn-continue-shopping:hover {
	background: #FF6A00;
	color: white;
}

/* Cart Item */
.cart-sidebar-item {
	background: white;
	padding: 15px 25px;
	margin: 0 15px 10px;
	border-radius: 6px;
	display: flex;
	gap: 15px;
	position: relative;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.cart-item-image {
	width: 70px;
	height: 70px;
	flex-shrink: 0;
	border-radius: 4px;
	overflow: hidden;
	background: #F9F9F9;
}

.cart-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cart-item-details {
	flex: 1;
	min-width: 0;
}

.cart-item-name {
	font-size: 14px;
	font-weight: 600;
	color: #1A1A1A;
	margin: 0 0 10px 0;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.cart-item-name a {
	color: #1A1A1A;
	transition: color 0.3s;
}

.cart-item-name a:hover {
	color: #FF6A00;
}

.cart-item-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}

/* Quantity Controls */
.cart-item-quantity {
	display: flex;
	align-items: center;
	border: 1px solid #E0E0E0;
	border-radius: 4px;
	overflow: hidden;
	background: white;
}

.qty-btn {
	width: 28px;
	height: 28px;
	border: none;
	background: #F5F5F5;
	color: #333;
	cursor: pointer;
	font-size: 16px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
}

.qty-btn:hover {
	background: #FF6A00;
	color: white;
}

.qty-input {
	width: 40px;
	height: 28px;
	border: none;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	color: #1A1A1A;
	background: white;
	-moz-appearance: textfield;
}
.cart-sidebar .qty-input{
	cursor: auto;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Cart Item Price */
.cart-item-price {
	font-size: 16px;
	font-weight: 700;
	color: #1A1A1A;
	white-space: nowrap;
}

/* Remove Button */
.cart-item-remove {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 24px;
	height: 24px;
	border: none;
	background: #F5F5F5;
	color: #999;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
	padding: 0;
}

.cart-item-remove:hover {
	background: #FF6A00;
	color: white;
}

/* Cart Footer */
.cart-sidebar-footer {
	background: white;
	padding: 20px 25px;
	border-top: 1px solid #E0E0E0;
	box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
}

.cart-subtotal {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #E0E0E0;
}

.cart-subtotal span:first-child {
	font-size: 18px;
	font-weight: 700;
	color: #1A1A1A;
}

.subtotal-amount {
	font-size: 20px;
	font-weight: 800;
	color: #1A1A1A;
	font-family: 'AvenirLTStd-Black';
}

.btn-view-cart,
.btn-checkout {
	display: block;
	width: 100%;
	padding: 14px 20px;
	border-radius: 4px;
	font-weight: 700;
	font-size: 14px;
	text-align: center;
	text-transform: uppercase;
	transition: all 0.3s;
	border: none;
	cursor: pointer;
	letter-spacing: 0.5px;
}

.btn-view-cart {
	background: #1A1A1A;
	color: white;
	margin-bottom: 10px;
}

.btn-view-cart:hover {
	background: #333;
	color: white;
}

.btn-checkout {
	background: #ff7272;
	color: white;
}

.btn-checkout:hover {
	background: #f15e5e;
	color: white;
}

/* Loading State */
.cart-sidebar-item.loading {
	opacity: 0.6;
	pointer-events: none;
}

.mobile-menu-content .sale-badge,.mobile-menu-content .hot-badge{
	padding: 3px 8px;
	color: #fff;
    border-radius: 3px;
}

.admin-bar .cart-sidebar{
	top: 32px;
	height: calc(100vh - 32px);
}

/* ========================================
   Responsive Styles - 响应式样式
======================================== */

/* 大屏优化 - Large Desktop */
@media (max-width: 1400px) {
	.menu-item-has-children.menu-item-level0::after, .menu-item-has-children.menu-item-level0::after{
		right: -2px;
	}
	
	/* Warning Bar */
	.warning-bar {
		height: 40px;
	}
	
	/* Cart Sidebar */
	.cart-sidebar {
		width: 410px;
	}
	
	.cart-sidebar-header h3 {
		font-size: 18px;
	}
	
	.cart-item-image {
		width: 68px;
		height: 68px;
	}
}

/* 笔记本 - Laptop */
@media (max-width: 1200px) {
	/* Warning Bar */
	.warning-bar {
		height: 38px;
	}
	
	/* Cart Sidebar */
	.cart-sidebar {
		width: 400px;
	}
	
	.cart-sidebar-header {
		padding: 18px 22px;
	}
	
	.cart-sidebar-header h3 {
		font-size: 18px;
	}
	
	.cart-free-shipping-notice {
		padding: 14px 22px;
	}
	
	.cart-sidebar-item {
		padding: 14px 22px;
		margin: 0 12px 10px;
	}
	
	.cart-item-image {
		width: 68px;
		height: 68px;
	}
	
	.cart-sidebar-footer {
		padding: 18px 22px;
	}
}

/* 平板横屏 - Tablet Landscape */
@media (max-width: 1024px) {
	/* Warning Bar */
	.warning-bar {
		height: 36px;
	}
	
	/* Header Search */
	.header-search {
		max-width: 450px;
	}
	
	.category-select {
		min-width: 120px;
		height: 40px;
		font-size: 13px;
		padding: 0 32px 0 12px;
		background-size: 12px;
	}
	
	/* Cart Sidebar */
	.cart-sidebar {
		width: 390px;
	}
	
	.cart-sidebar-header {
		padding: 16px 20px;
	}
	
	.cart-sidebar-header h3 {
		font-size: 17px;
	}
	
	.cart-free-shipping-notice {
		padding: 13px 20px;
	}
	
	.cart-free-shipping-notice .shipping-notice {
		font-size: 15px;
	}
	
	.cart-free-shipping-notice .shipping-progress {
		font-size: 12px;
	}
	
	.cart-sidebar-item {
		padding: 13px 20px;
		margin: 0 12px 8px;
	}
	
	.cart-item-image {
		width: 66px;
		height: 66px;
	}
	
	.cart-item-price {
		font-size: 15px;
	}
	
	.qty-btn {
		width: 26px;
		height: 26px;
	}
	
	.qty-input {
		width: 38px;
		height: 26px;
		font-size: 13px;
	}
	
	.cart-sidebar-footer {
		padding: 16px 20px;
	}
	
	.cart-subtotal span:first-child {
		font-size: 17px;
	}
	
	.subtotal-amount {
		font-size: 19px;
	}
	
	.btn-view-cart,
	.btn-checkout {
		padding: 13px 18px;
		font-size: 13px;
	}
	.main-navigation .special-menu-item .sub-menu {
        display: grid;
        grid-template-columns: 1fr 1fr;
	}
}

/* 平板竖屏 - Tablet Portrait */
@media (max-width: 992px) {
	/* Warning Bar */
	.warning-bar {
		height: 35px;
	}
	
	.header-search {
		max-width: 400px;
		padding-left: 8px;
	}
	
	/* Navigation */
	.main-navigation .special-menu-item .sub-menu {
		padding: 6px 24px;
	}
	
	.main-navigation .special-menu-item .sub-menu >li>span {
		font-size: 16px;
		padding: 6px 18px;
		min-width: 180px;
	}
	
	/* Cart Sidebar */
	.cart-sidebar {
		width: 380px;
	}
	
	.cart-sidebar-header {
		padding: 15px 18px;
	}
	
	.cart-sidebar-header h3 {
		font-size: 16px;
	}
	
	.cart-free-shipping-notice {
		padding: 12px 18px;
	}
	
	.cart-free-shipping-notice .shipping-notice {
		font-size: 14px;
	}
	
	.cart-sidebar-item {
		padding: 12px 18px;
		margin: 0 10px 8px;
	}
	
	.cart-item-image {
		width: 64px;
		height: 64px;
	}
	
	.cart-item-details h4 {
		font-size: 14px;
	}
	
	.cart-item-price {
		font-size: 15px;
	}
	
	.cart-sidebar-footer {
		padding: 15px 18px;
	}
	
	.cart-subtotal span:first-child {
		font-size: 16px;
	}
	
	.subtotal-amount {
		font-size: 18px;
	}
}

/* 手机横屏 & 大屏手机 - Mobile Landscape & Large Phone */
@media (max-width: 768px) {
	/* Warning Bar */
	.warning-bar {
		height: auto;
	}
	
	/* Header Main */
	.header-main {
		padding: 0;
	}

	.header-main.scrolled{
		position: fixed;
		top: 0;
		left: 0;
		z-index: 9999;
		width: 100%;    
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	}

	
	.header-main.scrolled .header-search{
		display: none;
	}
	
	.admin-bar .header-main.scrolled{
		top: 46px;
	}
	
	.header-search {
		max-width: 100%;
		padding: 0 8px;
	}
	
	.header-search input {
		font-size: 13px;
		padding: 6px 35px 6px 12px;
		height: 42px;
	}
	
	.category-select {
		min-width: 100px;
		height: 38px;
		font-size: 12px;
		padding: 0 30px 0 10px;
		background-size: 11px;
	}
	
	.header-icon {
		width: 36px;
		height: 36px;
	}
	
	.header-icon svg {
		width: 20px;
		height: 20px;
	}
	
	.cart-count {
		font-size: 11px;
		min-width: 18px;
		height: 18px;
		top: -6px;
		right: -6px;
	}
	
	/* Navigation */
	.main-navigation .special-menu-item .sub-menu {
		padding: 5px 20px;
	}
	
	.main-navigation .special-menu-item .sub-menu >li>span {
		font-size: 15px;
		padding: 5px 15px;
		min-width: 160px;
	}
	
	.main-navigation .sub-menu a {
		font-size: 13px;
		padding: 5px 15px;
	}
	
	/* Cart Sidebar Mobile */
	.cart-sidebar {
		width: 100%;
		max-width: 100%;
	}
	
	.cart-sidebar-header {
		padding: 18px 20px;
	}
	
	.cart-sidebar-header h3 {
		font-size: 16px;
	}
	
	.cart-free-shipping-notice {
		padding: 12px 20px;
	}
	
	.cart-free-shipping-notice .shipping-notice {
		font-size: 14px;
	}
	
	.cart-free-shipping-notice .shipping-progress {
		font-size: 12px;
	}
	
	.cart-sidebar-content {
		padding: 15px 10px;
	}
	
	.cart-items-count {
		padding: 12px 20px 8px;
		font-size: 13px;
	}
	
	.cart-sidebar-item {
		margin: 0 10px 10px;
		padding: 12px 15px;
		gap: 12px;
	}
	
	.cart-item-image {
		width: 65px;
		height: 65px;
	}
	
	.cart-item-name {
		font-size: 13px;
	}
	
	.cart-item-price {
		font-size: 14px;
	}
	
	.qty-btn {
		width: 26px;
		height: 26px;
		font-size: 15px;
	}
	
	.qty-input {
		width: 36px;
		height: 26px;
		font-size: 13px;
	}
	
	.cart-item-remove {
		width: 22px;
		height: 22px;
		top: 8px;
		right: 8px;
	}
	
	.cart-sidebar-footer {
		padding: 15px 20px;
	}
	
	.cart-subtotal {
		margin-bottom: 12px;
		padding-bottom: 12px;
	}
	
	.cart-subtotal span:first-child {
		font-size: 16px;
	}
	
	.subtotal-amount {
		font-size: 18px;
	}
	
	.btn-view-cart,
	.btn-checkout {
		padding: 13px 18px;
		font-size: 13px;
	}
	
	.btn-view-cart {
		margin-bottom: 8px;
	}
	
	.cart-total-row {
		font-size: 15px;
	}
	
	.cart-sidebar-actions .btn-checkout {
		font-size: 14px;
		padding: 14px 24px;
	}
	
	.menu-item-has-children.menu-item-level0::after, .menu-item-has-children.menu-item-level0::after{
		display: none;
	}
}

/* 手机竖屏 - Mobile Portrait */
@media (max-width: 576px) {
	.header-search input {
		font-size: 12px;
		height: 40px;
	}
	
	.category-select {
		min-width: 90px;
		height: 36px;
		font-size: 11px;
		padding: 0 28px 0 8px;
		background-size: 10px;
		border-radius: 6px;
	}
	
	.header-icon {
		width: 34px;
		height: 34px;
	}
	
	.header-icon svg {
		width: 19px;
		height: 19px;
	}
	
	.cart-count {
		font-size: 10px;
		min-width: 16px;
		height: 16px;
		top: -5px;
		right: -5px;
	}
	
	/* Navigation */
	.main-navigation .special-menu-item .sub-menu {
		padding: 4px 18px;
	}
	
	.main-navigation .special-menu-item .sub-menu >li>span {
		font-size: 14px;
		padding: 4px 12px;
		min-width: 150px;
	}
	
	.main-navigation .sub-menu a {
		font-size: 12px;
		padding: 4px 12px;
	}
	
	/* Cart Sidebar */
	.cart-sidebar-header {
		padding: 15px 18px;
	}
	
	.cart-sidebar-header h3 {
		font-size: 15px;
	}
	
	.cart-free-shipping-notice {
		padding: 10px 18px;
	}
	
	.cart-free-shipping-notice .shipping-notice {
		font-size: 13px;
	}
	
	.cart-free-shipping-notice .shipping-progress {
		font-size: 11px;
	}
	
	.cart-items-count {
		padding: 10px 18px 6px;
		font-size: 12px;
	}
	
	.cart-sidebar-item {
		margin: 0 8px 8px;
		padding: 10px 12px;
		gap: 10px;
	}
	
	.cart-item-image {
		width: 60px;
		height: 60px;
	}
	
	.cart-item-name {
		font-size: 12px;
	}
	
	.cart-item-price {
		font-size: 13px;
	}
	
	.qty-btn {
		width: 24px;
		height: 24px;
		font-size: 14px;
	}
	
	.qty-input {
		width: 34px;
		height: 24px;
		font-size: 12px;
	}
	
	.cart-item-remove {
		width: 20px;
		height: 20px;
		top: 6px;
		right: 6px;
		font-size: 16px;
	}
	
	.cart-sidebar-footer {
		padding: 12px 18px;
	}
	
	.cart-subtotal {
		margin-bottom: 10px;
		padding-bottom: 10px;
	}
	
	.cart-subtotal span:first-child {
		font-size: 15px;
	}
	
	.subtotal-amount {
		font-size: 17px;
	}
	
	.btn-view-cart,
	.btn-checkout {
		padding: 12px 16px;
		font-size: 12px;
	}
	
	.btn-view-cart {
		margin-bottom: 8px;
	}
}

/* 小屏手机 - Small Mobile */
@media (max-width: 480px) {
	.header-search input {
		font-size: 12px;
		height: 38px;
		padding: 6px 32px 6px 10px;
	}
	
	.category-select {
		min-width: 85px;
		height: 34px;
		font-size: 11px;
		padding: 0 26px 0 8px;
		background-size: 10px;
		background-position: right 8px center;
		border-radius: 5px;
	}
	
	.header-search .btn-search {
		width: 32px;
		padding: 0 8px;
	}
	
	.header-icon {
		width: 32px;
		height: 32px;
	}
	
	.header-icon svg {
		width: 18px;
		height: 18px;
	}
	
	.cart-count {
		font-size: 9px;
		min-width: 14px;
		height: 14px;
		top: -4px;
		right: -4px;
		padding: 2px;
	}
	
	/* Navigation */
	.main-navigation .special-menu-item .sub-menu {
		padding: 3px 15px;
	}
	
	.main-navigation .special-menu-item .sub-menu >li>span {
		font-size: 13px;
		padding: 3px 10px;
		min-width: 140px;
	}
	
	.main-navigation .sub-menu a {
		font-size: 11px;
		padding: 3px 10px;
	}
	
	/* Cart Sidebar */
	.cart-sidebar-header {
		padding: 12px 15px;
	}
	
	.cart-sidebar-header h3 {
		font-size: 14px;
	}
	
	.cart-sidebar-close {
		padding: 3px;
	}
	
	.cart-free-shipping-notice {
		padding: 8px 15px;
	}
	
	.cart-free-shipping-notice .shipping-notice {
		font-size: 12px;
		margin: 0 0 8px 0;
	}
	
	.cart-free-shipping-notice .shipping-progress {
		font-size: 11px;
		margin: 0 0 8px 0;
	}
	
	.shipping-progress-bar {
		height: 5px;
	}
	
	.cart-items-count {
		padding: 8px 15px 5px;
		font-size: 11px;
	}
	
	.cart-sidebar-item {
		margin: 0 6px 6px;
		padding: 8px 10px;
		gap: 8px;
	}
	
	.cart-item-image {
		width: 55px;
		height: 55px;
	}
	
	.cart-item-name {
		margin: 0 0 8px 0;
	}
	
	.cart-item-price {
		font-size: 12px;
	}
	
	.qty-btn {
		width: 22px;
		height: 22px;
		font-size: 13px;
	}
	
	.qty-input {
		width: 32px;
		height: 22px;
		font-size: 11px;
	}
	
	.cart-item-remove {
		width: 18px;
		height: 18px;
		font-size: 16px;
		top: 5px;
		right: 5px;
	}
	
	.cart-sidebar-footer {
		padding: 10px 15px;
	}
	
	.cart-subtotal {
		margin-bottom: 8px;
		padding-bottom: 8px;
	}
	
	.cart-subtotal span:first-child {
		font-size: 14px;
	}
	
	.subtotal-amount {
		font-size: 16px;
	}
	
	.btn-view-cart,
	.btn-checkout {
		padding: 11px 14px;
		font-size: 11px;
	}
	
	.btn-view-cart {
		margin-bottom: 6px;
	}
}

/* 超小屏手机 - Extra Small Mobile */
@media (max-width: 375px) {
	.header-search {
		height: 36px;
	}
	
	.header-search input {
		font-size: 11px;
		height: 36px;
		padding: 5px 28px 5px 8px;
	}
	
	.category-select {
		min-width: 80px;
		height: 32px;
		font-size: 10px;
		padding: 0 24px 0 6px;
		background-size: 9px;
		background-position: right 6px center;
		border-radius: 4px;
	}
	
	.header-search .btn-search {
		width: 28px;
		padding: 0 6px;
	}
	
	.header-icon {
		width: 28px;
		height: 28px;
	}
	
	.header-icon svg {
		width: 16px;
		height: 16px;
	}
	
	.cart-count {
		font-size: 8px;
		min-width: 12px;
		height: 12px;
		top: -3px;
		right: -3px;
		padding: 1px;
	}
	
	/* Navigation */
	.main-navigation .special-menu-item .sub-menu {
		padding: 2px 12px;
	}
	
	.main-navigation .special-menu-item .sub-menu >li>span {
		font-size: 12px;
		padding: 2px 8px;
		min-width: 130px;
	}
	
	.main-navigation .sub-menu a {
		font-size: 10px;
		padding: 2px 8px;
	}
	
	/* Cart Sidebar */
	.cart-sidebar-header {
		padding: 10px 12px;
	}
	
	.cart-sidebar-header h3 {
		font-size: 13px;
		letter-spacing: 0.3px;
	}
	
	.cart-sidebar-close {
		padding: 2px;
	}
	
	.cart-free-shipping-notice {
		padding: 6px 12px;
	}
	
	.cart-free-shipping-notice .shipping-notice {
		font-size: 11px;
		margin: 0 0 6px 0;
	}
	
	.cart-free-shipping-notice .shipping-progress {
		font-size: 10px;
		margin: 0 0 6px 0;
	}
	
	.cart-free-shipping-notice .shipping-unlocked {
		font-size: 12px;
	}
	
	.shipping-progress-bar {
		height: 4px;
	}
	
	.cart-items-count {
		padding: 6px 12px 4px;
		font-size: 10px;
	}
	
	.cart-sidebar-item {
		margin: 0 5px 5px;
		padding: 6px 8px;
		gap: 6px;
	}
	
	.cart-item-image {
		width: 50px;
		height: 50px;
	}
	
	.cart-item-name {
		margin: 0 0 6px 0;
		line-height: 1.3;
	}
	
	.cart-item-price {
		font-size: 11px;
	}
	
	.qty-btn {
		width: 20px;
		height: 20px;
		font-size: 12px;
	}
	
	.qty-input {
		width: 28px;
		height: 20px;
		font-size: 10px;
	}
	
	.cart-item-remove {
		width: 16px;
		height: 16px;
		font-size: 14px;
		top: 4px;
		right: 4px;
	}
	
	.cart-sidebar-footer {
		padding: 8px 12px;
	}
	
	.cart-subtotal {
		margin-bottom: 6px;
		padding-bottom: 6px;
	}
	
	.cart-subtotal span:first-child {
		font-size: 13px;
	}
	
	.subtotal-amount {
		font-size: 15px;
	}
	
	.btn-view-cart,
	.btn-checkout {
		padding: 10px 12px;
		font-size: 10px;
		letter-spacing: 0.3px;
	}
	
	.btn-view-cart {
		margin-bottom: 5px;
	}
	
	.btn-continue-shopping {
		padding: 10px 24px;
		font-size: 11px;
	}
	
	.cart-empty p {
		font-size: 14px;
		margin-bottom: 20px;
	}
}

