/*
Theme Name: vapesmall
Theme URI: https://vapesmalltech.com
Author: vapesmall Team
Author URI: https://vapesmalltech.com
Description: A modern WooCommerce theme for vape products based on design specifications
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vapesmall
Tags: e-commerce, woocommerce, modern, clean, vape
*/

/* ========================================
   CSS Reset & Base Styles
======================================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
/* 定义字体 @font-face */
@font-face {
	font-family: 'AvenirLTStd';
	src: url('font/AvenirLTStd-Book.otf') format('opentype');
}

@font-face {
	font-family: 'AvenirLTStd-BookOblique';
	src: url('font/AvenirLTStd-BookOblique.otf') format('opentype');
}

@font-face {
	font-family: 'AvenirLTStd-Light';
	src: url('font/AvenirLTStd-Light.otf') format('opentype');
}

@font-face {
	font-family: 'AvenirLTStd-LightOblique';
	src: url('font/AvenirLTStd-LightOblique.otf') format('opentype');
}

@font-face {
	font-family: 'AvenirLTStd-Medium';
	src: url('font/AvenirLTStd-Medium.otf') format('opentype');
}

@font-face {
	font-family: 'AvenirLTStd-MediumOblique';
	src: url('font/AvenirLTStd-MediumOblique.otf') format('opentype');
}

@font-face {
	font-family: 'AvenirLTStd-Oblique';
	src: url('font/AvenirLTStd-Oblique.otf') format('opentype');
}

@font-face {
	font-family: 'AvenirLTStd-Roman';
	src: url('font/AvenirLTStd-Roman.otf') format('opentype');
}

@font-face {
	font-family: 'AvenirLTStd-Black';
	src: url('font/AvenirLTStd-Black.otf') format('opentype');
}

@font-face {
	font-family: 'AvenirLTStd-Heavy';
	src: url('font/AvenirLTStd-Heavy.otf') format('opentype');
}


:root {
	--primary-color: #FFAA01;
	--secondary-color: #333333;
	--accent-color: #034C8C;
	--bg-color: #F5F5F5;
	--text-dark: #333333;
	--text-light: #999999;
	--border-color: #D2D2D2;
	--white: #FFFFFF;
	--yellow: #FFAA01;
	--footer-bg: #333333;
}

body {
	font-family: 'AvenirLTStd', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-dark);
	background: #fff;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: var(--primary-color);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

button {
	cursor: pointer;
    border: none;
    background: #333;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    font-family: inherit;
}

ul, ol {
	list-style: none;
}

input, textarea, select {
	font-family: inherit;
	font-size: inherit;
}

/* ========================================
   Container & Layout
======================================== */
.container {
	max-width: 1460px;
	margin: 0 auto;
	padding: 0 30px;
}

.site {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.site-content {
	flex: 1;
}

/* ========================================
   Typography
======================================== */
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
	color: var(--text-dark);
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 18px; }

p {
	margin-bottom: 1rem;
}

/* ========================================
   Buttons
======================================== */
.btn {
	display: inline-block;
	padding: 12px 30px;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 4px;
	transition: all 0.3s ease;
	cursor: pointer;
	text-align: center;
	border: none;
}

.btn-primary {
	background: var(--primary-color);
	color: white;
}

.btn-primary:hover {
	background: #ff8533;
	color: white;
}

.btn-secondary {
	background: var(--secondary-color);
	color: white;
}

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

.btn-white {
	background: white;
	color: var(--text-dark);
}

.btn-white:hover {
	background: var(--secondary-color);
	color: white;
}

/* ========================================
   Header Styles
======================================== */
.nav-bar-top {
	border-bottom: 1px solid #D2D2D2;
}
.home .nav-bar-top {
	border-bottom: none;
}

/* Warning Bar */
.warning-bar {
	background: #F5F5F5;
	font-size: 12px;
}

.warning-bar a {
	color: #999;
	text-decoration: none;
	transition: color 0.3s;
}

.warning-bar a:hover {
	color: var(--primary-color);
}

.warning-text{
	color: #999; 
	font-size: 14px;
}

.top-links {
	display: flex;
	gap: 20px;
	align-items: center;
	font-size: 14px;
}
.top-links span{
	color: #ccc;
}

/* Header Main */
.header-main {
	background: white;
	padding: 15px 0;
}

.header-main .container {
	display: flex;
	align-items: center; 
    justify-content: space-between;
	height: 90px;
}

.brand h1 {
	font-size: 36px;
    font-weight: 900;
    margin: 0;
    color: #333;
	font-family: 'AvenirLTStd-Black';
}

/* Search Form */
.header-search {
	flex: 1;
	max-width: 780px;
	display: flex;
	align-items: center;
	border: 1px solid #D2D2D2;
	border-radius: 24px;
	overflow: hidden;
	height: 48px;
	background: white;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.header-search:hover {
	border-color: #B8B8B8;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.header-search:focus-within {
	border-color: var(--primary-color);
	box-shadow: 0 4px 16px rgba(255, 106, 0, 0.15);
}

.header-search select {
	padding: 0 15px 0 20px;
	border: none;
	background: white;
	color: #181818;
	font-size: 16px;
	font-weight: 500;
	border-right: 1px solid #D2D2D2;
	cursor: pointer;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	min-width: 180px;
	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");
	background-repeat: no-repeat;
	background-position: right 18px center;
	background-size: 12px;
	padding-right: 32px;
	transition: all 0.3s ease;
}

.header-search select:hover,li.menu-item-has-children a:hover::after {
	color: var(--primary-color);
	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='%23FF6A00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.header-search select:focus {
	color: var(--primary-color);
	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='%23FF6A00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.header-search select option {
	padding: 20px 20px;
	font-size: 16px;
	color: #181818;
	background: white;
}

.header-search select option:hover {
	background: #ececec;
	color: var(--primary-color);
}

.header-search input[type="search"] {
	flex: 1;
	padding: 12px 20px;
	border: none;
	font-size: 16px;
	outline: none;
	background: transparent;
	color: #181818;
	font-weight: 400;
}

.header-search input[type="search"]::placeholder {
	color: #999;
	font-weight: 400;
}

.header-search input[type="search"]:focus::placeholder {
	color: #CCC;
}

.header-search .btn-search {
	padding: 0 20px;
	background: transparent;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	height: 100%;
}

.header-search .btn-search:hover {
	transform: scale(1.15);
}

.header-search .btn-search:active {
	transform: scale(0.95);
}

.header-search .btn-search svg path {
	transition: fill 0.3s ease;
}

.header-search .btn-search:hover svg path {
	fill: var(--primary-color);
}

/* Header Icons */
.header-controls {
	display: flex;
	align-items: center;
	gap: 15px;
	flex-shrink: 0;
}

.header-icon {
	color: #1A1A1A;
	text-decoration: none;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.3s;
}

.header-icon:hover {
	color: var(--primary-color);
}

.header-cart .cart-count {
	position: absolute;
    top: -8px;
    right: -8px;
    background: #ff7272;
    color: white;
    border-radius: 50%;
    min-width: 18px;
    min-height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    width: max-content;
    padding: 3px;
}

/* Navigation Bar */
.nav-bar {
	background: white;
}

/* Sticky Navigation */
.nav-bar-top {
	position: sticky;
	top: 0;
	z-index: 999;
	transition: box-shadow 0.3s ease;
}
.admin-bar .nav-bar-top{
	top: 32px;
}
.nav-bar-top.scrolled {
	/* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.nav-bar .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0px 10px;
}

.main-navigation ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: flex;
    align-items: center;
    gap: 4px;
    padding: 18px 20px;
    color: #333;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    font-family: 'AvenirLTStd-Black';
    font-size: 16px;
}

.main-navigation a:hover {
	color: var(--primary-color);
	background: #ececec;
}

/* Badge Styles */
.main-navigation a span {
	padding: 3px 8px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 3px;
    color: white;
}
.sale-badge{
	background: #199588;
}
.hot-badge{
	background: #FFAA01;
}

/* Promo Banner */
.promo-banner {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 10px 20px;
	border-radius: 4px;
}
.promo-banner img{
	width: 28px;
}

.promo-banner span {
	color: #333;
	color: #FFAA01;
	font-weight: 800;
	font-size: 16px;
	white-space: nowrap;
	font-family: 'AvenirLTStd-Heavy';
}

/* Mobile Menu */
.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 10px;
	background: none;
	border: none;
	cursor: pointer;
}

.mobile-menu-toggle span {
	width: 25px;
	height: 3px;
	background: var(--text-dark);
	transition: all 0.3s;
}

.mobile-menu-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 998;
}

.mobile-menu-overlay.active {
	display: block;
}

.mobile-menu-panel {
	position: fixed;
	top: 0;
	left: -300px;
	width: 300px;
	height: 100vh;
	background: white;
	z-index: 999;
	transition: left 0.3s;
	overflow-y: auto;
}

.mobile-menu-panel.active {
	left: 0;
}

.mobile-menu-close {
	background: none;
	border: none;
	cursor: pointer;
	padding: 5px;
	color: #1A1A1A;
}

.mobile-nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mobile-nav-list li {
	border-bottom: 1px solid #F0F0F0;
}

.mobile-nav-list a {
	display: block;
	padding: 15px 20px;
	color: #1A1A1A;
	text-decoration: none;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 14px;
	transition: background 0.3s;
}

.mobile-nav-list a:hover {
	background: #ececec;
	color: var(--primary-color);
}

/* ========================================
   Footer Styles
======================================== */
.site-footer {
	background: var(--secondary-color);
	color: var(--white);
	padding: 60px 0 0;
}

.footer-container {
	max-width: 1460px;
	margin: 0 auto;
	padding: 0 30px;
}

.footer-main {
	display: grid;
    grid-template-columns: 2.4fr 0.6fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
}

/* Footer Brand Column */
.footer-brand .footer-logo {
	color: #FFFFFF;
	margin-bottom: 22px;
    letter-spacing: 0;
    line-height: 0.8;
	font-size: 36px;
	font-weight: 900;
	font-family: 'AvenirLTStd-Black';
}

.footer-contact-info {
	margin-bottom: 25px;
}

.footer-contact-item {
	color: #fff;
    line-height: 2;
    margin-bottom: 8px;
    display: flex;
    flex-direction: row;
    align-items: anchor-center;
}

.footer-contact-item-address {
	align-items: self-start;
}
.footer-contact-item-address svg {
	margin-top: 6px;
	margin-right: 8px;
	vertical-align: middle;
}
.footer-contact-item-content {
	width: 430px;
}
.footer-contact-item strong {
	color: #FFFFFF;
	margin-right: 5px;
}

.footer-contact-item a {
	transition: color 0.3s;
}

.footer-contact-item a:hover {
	color: #B8B8B8;
}

/* Footer Social Icons */
.footer-social {
	display: flex;
	gap: 12px;
	margin-top: 20px;
}

.social-icon {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #333;
	transition: all 0.3s;
}

.social-icon:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}

/* Footer Menu Columns */
.footer-col .footer-title {
	font-size: 16px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: 0;
    text-transform: uppercase;
    font-family: 'AvenirLTStd-Heavy';
}

.footer-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-menu li {
	margin-bottom: 12px;
}

.footer-menu li a {
	color: #CCCCCC;
	transition: all 0.3s;
	display: inline-block;
}

.footer-menu li a:hover {
	color: #FFFFFF;
	padding-left: 4px;
}

/* Footer Bottom */
.footer-bottom{
	border-top: 1px solid #535353;
	padding: 50px 0;
}
.footer-bottom .container{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.footer-bottom-left p,
.footer-bottom-center p {
	margin: 0;
	color: #fff;
}

.footer-bottom-center {
	text-align: center;
}

.footer-bottom-right {
	display: flex;
	align-items: center;
}

.payment-methods {
	display: flex;
	gap: 8px;
	align-items: center;
}

.payment-methods img {
	height: 28px;
	width: auto;
	opacity: 0.8;
	transition: opacity 0.3s;
}

.payment-methods img:hover {
	opacity: 1;
}

/* ========================================
   Back to Top Button
======================================== */
.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: var(--secondary-color);
	color: white;
	border-radius: 50%;
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	cursor: pointer;
	z-index: 998;
	transition: all 0.3s;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.back-to-top:hover {
	background: var(--primary-color);
	transform: translateY(-5px);
}

.back-to-top.show {
	display: flex;
}

.back-to-top img {
	width: 20px;
	height: 20px;
}

.back-to-top span {
	font-size: 10px;
	font-weight: 700;
}
/* ========================================
   Utility Classes
======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 60px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 60px; }

.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 10px; }
.pt-2 { padding-top: 20px; }
.pt-3 { padding-top: 30px; }
.pt-4 { padding-top: 40px; }
.pt-5 { padding-top: 60px; }

.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 10px; }
.pb-2 { padding-bottom: 20px; }
.pb-3 { padding-bottom: 30px; }
.pb-4 { padding-bottom: 40px; }
.pb-5 { padding-bottom: 60px; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.overflow-hidden { overflow: hidden; }



/* Breadcrumb - 统一面包屑样式 */
.vapesmall-breadcrumb {
	font-size: 14px;
    color: #333333;
    height: 56px;
    line-height: 1;
    display: flex;
    align-items: center;
}

.vapesmall-breadcrumb a {
	text-decoration: none;
    font-family: 'AvenirLTStd-Heavy';
    display: flex;
    align-items: center;
    color: #333333;
    transition: color 0.2s ease;
}

.vapesmall-breadcrumb a .home-icon {
	width: 16px;
	height: 16px;
	margin-right: 6px;
	margin-bottom: 4px;
}

.vapesmall-breadcrumb a:hover {
	color: var(--primary-orange);
}

.breadcrumb-separator {
	margin: 0 10px;
	color: #333;
	font-weight: 400;
}

.read-more-link {
	display: inline-block;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    font-family: 'AvenirLTStd-Heavy';
    font-weight: 800;
    font-size: 16px;
    color: #333333;
    line-height: 1;
    text-decoration-line: underline;
}

.read-more-link:hover {
	color: var(--primary-orange);
}


/* Rating */
.vs-product-rating {
	display: flex;
	align-items: center;
	/* gap: 8px;
	margin-bottom: 16px; */

	justify-content: left;
	gap: 2px;
	margin-bottom: 8px;
	font-size: 14px;
	color: #FFB800;
	line-height: 1;
}

.vs-stars {
	display: flex;
	gap: 2px;
}

.vs-star-wrapper {
	position: relative;
	width: 16px;
	height: 16px;
	display: inline-block;
}

.vs-star-wrapper svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 16px;
	height: 16px;
}

.vs-star-empty {
	fill: #ddd;
}

.vs-star-filled {
	fill: var(--primary-color);
}

.vs-rating-count {
	font-size: 14px;
	color: var(--text-light);
}

/* Products Grid */
.products-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.products-grid .product-item {
	background: white;
	border-radius: 0;
	transition: transform 0.3s, box-shadow 0.3s;
}

.products-grid .product-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.products-row {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 10px;
}

.product-item {
	background: white;
	padding: 16px;
	transition: transform 0.3s, box-shadow 0.3s;
	position: relative;
	text-align: center;
	border-radius: 4px;
}

.product-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-badge {
	position: absolute;
	top: 0;
	left: 0;
	background: var(--primary-color);
	color: white;
	padding: 4px 12px;
	font-size: 12px;
	font-weight: 700;
	border-radius: 3px;
	z-index: 2;
}

/* 产品图片包装器 - 用于居中 */
.product-image-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 200px;
	margin-bottom: 12px;
	overflow: hidden;
}

.product-image-wrapper img {
	max-width: 100%;
	max-height: 200px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.product-item img {
	max-width: 100%;
	max-height: 200px;
	width: auto;
	height: auto;
	object-fit: contain;
	transition: all 0.3s;
}

.product-item:hover img{
	transform: scale(1.1);
}

.product-content-container{
	text-align: left;
    max-width: 226px;
    margin: 0 auto;
}

.product-brand {
	font-size: 12px;
	color: #003399;
	text-transform: uppercase;
	margin-bottom: 6px;
	letter-spacing: 0;
	font-weight: 800;
	font-family: 'AvenirLTStd-Heavy';
}
.product-brand .product-brand-text{
	color: #666;
	text-transform: capitalize;
}

.product-name {
	margin-bottom: 8px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	line-height: 1.4;
	color: var(--secondary-color);
	font-weight: normal;
}

.product-name .product-flavor {
	font-weight: 400;
	color: #666;
}

/* 产品标签 */
.product-tags {
	display: flex;
	justify-content: left;
	gap: 8px;
	margin-bottom: 8px;
	flex-wrap: wrap;
}

.product-tags span {
	font-size: 14px;
    color: #999;
	background: #f5f5f5;
	padding: 3px 8px;
	border-radius: 2px;
}
.product-pricing {
	font-size: 18px;
    font-weight: 800;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 8px;
    line-height: 1;
    font-family: 'AvenirLTStd-Heavy';
}

.price-old {
	text-decoration: line-through;
	color: #999;
	font-size: 14px;
	font-weight: 500;
}

.price-current {
	color: #034C8C;
}

.vapes-title {
	text-align: center;
	font-weight: 800;
	margin-bottom: 46px;
	color: #000000;
	text-transform: capitalize;
	letter-spacing: 0;
	font-size: 30px;
    line-height: 1;
    font-family: 'AvenirLTStd-Heavy';
}
.added_to_cart{
	display: none;
}

/* ========================================
   通知提示样式
======================================== */

.vs-notification {
	position: fixed;
	top: 20px;
	right: 20px;
	min-width: 300px;
	max-width: 500px;
	padding: 16px 20px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	z-index: 999999;
	opacity: 0;
	transform: translateX(400px);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	font-size: 14px;
	line-height: 1.5;
	pointer-events: none;
}

.vs-notification.show {
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
}

/* 成功通知 */
.vs-notification-success {
	background: linear-gradient(135deg, #D4EDDA 0%, #C3E6CB 100%);
	border-left: 4px solid #28A745;
	color: #155724;
}

.vs-notification-success::before {
	content: '✓';
	display: inline-block;
	width: 24px;
	height: 24px;
	margin-right: 12px;
	background: #28A745;
	color: white;
	border-radius: 50%;
	text-align: center;
	line-height: 24px;
	font-weight: bold;
	font-size: 16px;
	vertical-align: middle;
}

/* 错误通知 */
.vs-notification-error {
	background: linear-gradient(135deg, #F8D7DA 0%, #F5C6CB 100%);
	border-left: 4px solid #DC3545;
	color: #721C24;
}

.vs-notification-error::before {
	content: '✕';
	display: inline-block;
	width: 24px;
	height: 24px;
	margin-right: 12px;
	background: #DC3545;
	color: white;
	border-radius: 50%;
	text-align: center;
	line-height: 24px;
	font-weight: bold;
	font-size: 16px;
	vertical-align: middle;
}

/* 信息通知 */
.vs-notification-info {
	background: linear-gradient(135deg, #D1ECF1 0%, #BEE5EB 100%);
	border-left: 4px solid #17A2B8;
	color: #0C5460;
}

.vs-notification-info::before {
	content: 'ℹ';
	display: inline-block;
	width: 24px;
	height: 24px;
	margin-right: 12px;
	background: #17A2B8;
	color: white;
	border-radius: 50%;
	text-align: center;
	line-height: 24px;
	font-weight: bold;
	font-size: 16px;
	vertical-align: middle;
}

/* 警告通知 */
.vs-notification-warning {
	background: linear-gradient(135deg, #FFF3CD 0%, #FFEAA7 100%);
	border-left: 4px solid #FFC107;
	color: #856404;
}

.vs-notification-warning::before {
	content: '⚠';
	display: inline-block;
	width: 24px;
	height: 24px;
	margin-right: 12px;
	background: #FFC107;
	color: white;
	border-radius: 50%;
	text-align: center;
	line-height: 24px;
	font-weight: bold;
	font-size: 16px;
	vertical-align: middle;
}
.search-input{
	height: 36px;
    padding-left: 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
	min-width: 68%;
}
.addresses.woocommerce-columns{
	flex-direction: row;
    display: flex;
    gap: 60px;
}
.page-container{
	padding-top: 20px;
}
mark{
	border-radius: 6px;
    padding: 2px 6px;
    color: #fff;
    background: var(--vs-primary);
}
/* 移动端适配 */
@media (max-width: 768px) {
	.vs-notification {
		top: 10px;
		right: 10px;
		left: 10px;
		min-width: auto;
		max-width: none;
		transform: translateY(-100px);
	}
	
	.vs-notification.show {
		transform: translateY(0);
	}
}


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

/* 大屏优化 - Large Desktop */
@media (max-width: 1400px) {
	.container {
		max-width: 1200px;
	}
	body{
		font-size: 14px;
	}
	
	.nav-bar .main-navigation a {
		padding: 0.6rem 0.8rem;
        font-size: 14px;
        gap: 0.1rem;
	}
	.main-navigation a span{
		padding: 1px 4px;
	}
	.promo-banner span{
		font-size: 14px;
	}
	
	/* Header 头部 */
	.header-main .container {
		height: 80px;
	}
	
	.brand h1 {
		font-size: 32px;
	}
	
	.header-search {
		max-width: 650px;
		height: 46px;
	}
	
	.header-search select {
		min-width: 160px;
		font-size: 14px;
	}
	
	.header-search input[type="search"] {
		font-size: 14px;
	}
	
	/* Footer 底部 */
	.footer-contact-item-content {
		width: 380px;
	}
	
	.footer-main {
		gap: 50px;
	}
}

/* 笔记本 - Laptop */
@media (max-width: 1200px) {
	.container {
		max-width: 960px;
		padding: 0 20px;
	}
	
	/* Header 头部 */
	.header-main .container {
		height: 75px;
	}
	
	.brand h1 {
		font-size: 30px;
	}
	
	.header-search {
		max-width: 550px;
		height: 44px;
	}
	
	.header-search select {
		min-width: 150px;
		font-size: 13px;
		padding: 0 12px 0 16px;
		padding-right: 28px;
	}
	
	.header-search input[type="search"] {
		font-size: 13px;
		padding: 10px 16px;
	}
	
	.header-controls {
		gap: 12px;
	}
	
	/* Footer 底部 */
	.footer-main {
		grid-template-columns: 1.5fr 1fr 1fr;
		gap: 30px;
	}
	
	.footer-col:last-child {
		grid-column: 2;
	}
	
	.footer-contact-item-content {
		width: 350px;
	}
	
	.footer-brand .footer-logo {
		font-size: 32px;
		margin-bottom: 20px;
	}
	
	.social-icon {
		width: 36px;
		height: 36px;
	}
	
	.promo-banner {
		display: none;
	}
}

/* 平板横屏 - Tablet Landscape */
@media (max-width: 1024px) {
	body{
		font-size: 12px;
	}
	.container {
		max-width: 800px;
		padding: 0 20px;
	}
	
	/* Header 头部 */
	.warning-bar {
		height: 38px;
	}
	
	.warning-text {
		font-size: 12px;
	}
	
	.top-links {
		font-size: 12px;
		gap: 15px;
	}
	
	.header-main .container {
		height: 70px;
	}
	
	.brand h1 {
		font-size: 28px;
	}
	
	.header-search {
		max-width: 500px;
		height: 42px;
	}
	
	.header-search select {
		min-width: 140px;
		font-size: 12px;
		padding: 0 10px 0 14px;
		padding-right: 26px;
	}
	
	.header-search input[type="search"] {
		font-size: 12px;
		padding: 8px 14px;
	}
	
	.header-controls {
		gap: 10px;
	}
	
	.header-icon {
		width: 34px;
		height: 34px;
	}
	
	.header-cart .cart-count {
		top: -6px;
		right: -6px;
		min-width: 16px;
		min-height: 16px;
		font-size: 10px;
	}
	
	/* Navigation adjustments */
	.nav-bar .main-navigation ul {
		gap: 0;
	}
	
	.nav-bar .main-navigation a {
		padding: 15px 12px;
		font-size: 12px;
	}
	
	/* Footer 底部 */
	.footer-contact-item-content {
		width: 100%;
		max-width: 300px;
	}
	
	.footer-brand .footer-logo {
		font-size: 30px;
		margin-bottom: 18px;
	}
	
	.footer-col .footer-title {
		font-size: 15px;
		margin-bottom: 18px;
	}
	
	.footer-menu li {
		margin-bottom: 10px;
	}
	
	.footer-menu li a {
		font-size: 13px;
	}
	
	.social-icon {
		width: 34px;
		height: 34px;
	}
	
	/* Typography adjustments */
	h1 { font-size: 36px; }
	h2 { font-size: 30px; }
	h3 { font-size: 26px; }
	h4 { font-size: 22px; }
}

/* 平板竖屏 - Tablet Portrait */
@media (max-width: 992px) {
	/* Header 头部 */
	.header-main .container {
		height: 65px;
	}
	
	
	.brand h1 {
		font-size: 26px;
	}
	
	.header-search {
		max-width: 450px;
	}
	
	.header-controls {
		gap: 8px;
	}
	
	/* Footer 底部 */
	.footer-main {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
		padding-bottom: 40px;
	}
	
	.footer-brand {
		grid-column: 1 / -1;
	}
	
	.footer-col:last-child {
		grid-column: auto;
	}
	
	.footer-contact-item-content {
		width: 100%;
		max-width: 100%;
	}
	
	.footer-brand .footer-logo {
		font-size: 28px;
	}
	
	.footer-contact-item {
		font-size: 14px;
	}
	
	.footer-social {
		gap: 10px;
		margin-top: 18px;
	}
	
	.social-icon {
		width: 32px;
		height: 32px;
	}
	
	.footer-bottom {
		padding: 40px 0;
	}
	
	
	/* Typography adjustments */
	h1 { font-size: 34px; }
	h2 { font-size: 28px; }
	h3 { font-size: 24px; }
	h4 { font-size: 20px; }
}

/* 手机横屏 & 大屏手机 - Mobile Landscape & Large Phone */
@media (max-width: 768px) {
	.container {
		max-width: 100%;
		padding: 0 30px;
	}
	
	/* Header 头部 */
	/* Hide top links on mobile */
	.top-links {
		display: none;
	}
	
	.warning-bar .container {
		justify-content: center;
	}
	
	.warning-bar {
		padding: 10px 0;
		height: auto;
	}
	
	.warning-text {
		font-size: 12px;
	}
	
	/* Show mobile menu toggle */
	.mobile-menu-toggle {
		display: flex !important;
	}
	
	/* Hide desktop navigation */
	.nav-bar {
		display: none;
	}
	
	/* Header main adjustments */
	.header-main .container {
		flex-wrap: wrap;
		gap: 12px;
		padding: 12px 15px;
		height: auto;
		padding-bottom: 0 !important;
	}
	
	.brand {
		order: 2;
		flex: 1;
		text-align: center;
	}
	
	.brand h1 {
		font-size: 24px;
	}
	
	.brand .custom-logo {
		max-height: 35px;
	}
	
	.mobile-menu-toggle {
		order: 1;
	}
	
	.header-search {
		order: 4;
		flex: 1 1 100%;
		max-width: 100%;
		height: 42px;
	}
	
	.header-search input {
		font-size: 14px;
		height: 42px;
	}
	
	.header-search select {
		font-size: 13px;
		min-width: 140px;
		padding: 0 8px 0 12px;
		padding-right: 24px;
	}
	
	.header-search input[type="search"] {
		padding: 10px 12px;
	}
	
	.header-search .btn-search {
		padding: 0 15px;
	}
	
	.header-controls {
		order: 3;
		gap: 12px;
	}
	
	.header-icon {
		width: 36px;
		height: 36px;
	}
	
	/* Footer 底部 */
	.footer-container {
		padding: 0 15px;
	}
	
	.site-footer {
		padding: 40px 0 0;
	}
	
	.footer-main {
		gap: 30px;
		padding-bottom: 30px;
	}
	
	.footer-brand .footer-logo {
		font-size: 24px;
		margin-bottom: 15px;
	}
	
	.footer-contact-info {
		margin-bottom: 20px;
	}
	
	.footer-contact-item {
		font-size: 13px;
		margin-bottom: 6px;
	}
	
	.footer-col .footer-title {
		font-size: 14px;
		margin-bottom: 15px;
	}
	
	.footer-menu li {
		margin-bottom: 8px;
	}
	
	.footer-menu li a {
		font-size: 13px;
	}
	
	.footer-social {
		gap: 8px;
		margin-top: 15px;
	}
	
	.social-icon {
		width: 30px;
		height: 30px;
	}
	
	.footer-bottom {
		flex-direction: column;
		text-align: center;
		padding: 20px 0;
		gap: 15px;
	}
	
	.footer-bottom .container {
		flex-direction: column;
	}
	
	.footer-bottom-left,
	.footer-bottom-center,
	.footer-bottom-right {
		width: 100%;
		justify-content: center;
	}
	
	.footer-bottom-left p,
	.footer-bottom-center p {
		font-size: 13px;
	}
	
	.payment-methods {
		justify-content: center;
		flex-wrap: wrap;
		gap: 10px;
	}
	
	.payment-methods img {
		height: 24px;
	}
	
	/* Content spacing */
	
	/* Typography adjustments */
	h1 { font-size: 32px; }
	h2 { font-size: 26px; }
	h3 { font-size: 22px; }
	h4 { font-size: 18px; }
	h5 { font-size: 16px; }
	h6 { font-size: 14px; }
	
	p, li {
		font-size: 15px;
		line-height: 1.6;
	}
}

/* 手机竖屏 - Mobile Portrait */
@media (max-width: 576px) {
	.container {
		padding: 0 12px;
	}
	
	/* Header 头部 */
	.warning-bar {
		padding: 8px 0;
	}
	
	.warning-text {
		font-size: 11px;
	}
	
	.header-main .container {
		padding: 10px 12px;
		gap: 10px;
	}
	
	.brand h1 {
		font-size: 22px;
	}
	
	.brand .custom-logo {
		max-height: 32px;
	}
	
	.header-search {
		margin: 0;
		height: 40px;
	}
	
	.header-search input {
		font-size: 13px;
		height: 40px;
	}
	
	.header-search select {
		min-width: 130px;
		font-size: 12px;
		padding: 0 6px 0 10px;
		padding-right: 22px;
	}
	
	.header-search input[type="search"] {
		padding: 8px 10px;
	}
	
	.header-search .btn-search {
		padding: 0 12px;
	}
	
	.header-controls {
		gap: 10px;
	}
	
	.header-icon {
		width: 34px;
		height: 34px;
	}
	
	.header-cart .cart-count {
		min-width: 15px;
		min-height: 15px;
		font-size: 9px;
	}
	
	/* Footer 底部 */
	.site-footer {
		padding: 30px 0 0;
	}
	
	.footer-main {
		gap: 25px;
		padding-bottom: 25px;
	}
	
	.footer-brand .footer-logo {
		font-size: 22px;
		margin-bottom: 12px;
	}
	
	.footer-contact-info {
		margin-bottom: 15px;
	}
	
	.footer-contact-item {
		font-size: 12px;
		margin-bottom: 5px;
	}
	
	.footer-col .footer-title {
		font-size: 13px;
		margin-bottom: 12px;
	}
	
	.footer-menu li {
		margin-bottom: 6px;
	}
	
	.footer-menu li a {
		font-size: 12px;
	}
	
	.footer-social {
		gap: 6px;
		margin-top: 12px;
	}
	
	.social-icon {
		width: 28px;
		height: 28px;
	}
	
	.footer-bottom {
		padding: 15px 0;
		gap: 12px;
	}
	
	.footer-bottom p {
		font-size: 12px;
	}
	
	.footer-bottom-left p,
	.footer-bottom-center p {
		font-size: 12px;
	}
	
	.footer-links a {
		font-size: 12px;
	}
	
	.payment-methods {
		gap: 8px;
	}
	
	.payment-methods img {
		height: 22px;
	}
	
	/* Typography adjustments */
	h1 { font-size: 28px; }
	h2 { font-size: 24px; }
	h3 { font-size: 20px; }
	h4 { font-size: 18px; }
	
	p, li {
		font-size: 14px;
	}
}

/* 小屏手机 - Small Mobile */
@media (max-width: 480px) {
	.container {
		padding: 0 10px;
	}
	
	/* Header 头部 */
	.warning-bar {
		padding: 6px 0;
	}
	
	.warning-text {
		font-size: 10px;
	}
	
	.header-main .container {
		padding: 8px 10px;
		gap: 8px;
	}
	
	.brand h1 {
		font-size: 20px;
	}
	
	.brand .custom-logo {
		max-height: 28px;
	}
	
	.header-search {
		height: 38px;
	}
	
	.header-search select {
		padding: 0 5px 0 8px;
		padding-right: 20px;
	}
	
	.header-search input[type="search"] {
		font-size: 12px;
		padding: 6px 8px;
	}
	
	.header-search .btn-search {
		padding: 0 10px;
	}
	
	.header-controls {
		gap: 8px;
	}
	
	.header-icon {
		width: 32px;
		height: 32px;
	}
	
	.header-cart .cart-count {
		top: -5px;
		right: -5px;
		min-width: 14px;
		min-height: 14px;
		font-size: 9px;
		padding: 2px;
	}
	
	/* Footer 底部 */
	.site-footer {
		padding: 25px 0 0;
	}
	
	.footer-main {
		gap: 20px;
		padding-bottom: 20px;
	}
	
	.footer-brand .footer-logo {
		font-size: 20px;
		margin-bottom: 10px;
	}
	
	.footer-contact-info {
		margin-bottom: 12px;
	}
	
	.footer-contact-item {
		font-size: 11px;
		margin-bottom: 4px;
	}
	
	.footer-col .footer-title {
		font-size: 12px;
		margin-bottom: 10px;
	}
	
	.footer-menu li {
		margin-bottom: 5px;
	}
	
	.footer-menu li a {
		font-size: 11px;
	}
	
	.footer-social {
		gap: 5px;
		margin-top: 10px;
	}
	
	.social-icon {
		width: 26px;
		height: 26px;
	}
	
	.footer-bottom {
		padding: 12px 0;
		gap: 10px;
	}
	
	.footer-bottom-left p,
	.footer-bottom-center p {
		font-size: 11px;
	}
	
	.payment-methods {
		gap: 6px;
	}
	
	.payment-methods img {
		height: 20px;
	}
	
	/* Typography adjustments */
	h1 { font-size: 26px; }
	h2 { font-size: 22px; }
	h3 { font-size: 19px; }
	h4 { font-size: 17px; }
	
	p, li {
		font-size: 13px;
	}
}

/* 超小屏手机 - Extra Small Mobile */
@media (max-width: 375px) {
	.container {
		padding: 0 8px;
	}
	
	/* Header 头部 */
	.warning-bar {
		padding: 5px 0;
	}
	
	.warning-text {
		font-size: 10px;
	}
	
	.header-main .container {
		padding: 6px 8px;
		gap: 6px;
	}
	
	.brand h1 {
		font-size: 18px;
	}
	
	.brand .custom-logo {
		max-height: 26px;
	}
	
	.header-search {
		height: 36px;
	}
	
	.header-search select {
		padding: 0 4px 0 6px;
		padding-right: 18px;
		background-size: 10px;
		background-position: right 6px center;
	}
	
	.header-search input[type="search"] {
		font-size: 11px;
		padding: 5px 6px;
	}
	
	.header-search .btn-search {
		padding: 0 8px;
	}
	
	.header-controls {
		gap: 6px;
	}
	
	.header-icon {
		width: 28px;
		height: 28px;
	}
	
	.header-cart .cart-count {
		top: -4px;
		right: -4px;
		min-width: 13px;
		min-height: 13px;
		font-size: 8px;
		padding: 2px;
	}
	
	/* Footer 底部 */
	.site-footer {
		padding: 20px 0 0;
	}
	
	.footer-main {
		gap: 18px;
		padding-bottom: 18px;
	}
	
	.footer-brand .footer-logo {
		font-size: 18px;
		margin-bottom: 8px;
	}
	
	.footer-contact-info {
		margin-bottom: 10px;
	}
	
	.footer-contact-item {
		font-size: 10px;
		margin-bottom: 3px;
		line-height: 1.8;
	}
	
	.footer-col .footer-title {
		font-size: 11px;
		margin-bottom: 8px;
	}
	
	.footer-menu li {
		margin-bottom: 4px;
	}
	
	.footer-menu li a {
		font-size: 10px;
	}
	
	.footer-social {
		gap: 4px;
		margin-top: 8px;
	}
	
	.social-icon {
		width: 24px;
		height: 24px;
	}
	
	.footer-bottom {
		padding: 10px 0;
		gap: 8px;
	}
	
	.footer-bottom-left p,
	.footer-bottom-center p {
		font-size: 10px;
	}
	
	.payment-methods {
		gap: 5px;
	}
	
	.payment-methods img {
		height: 18px;
	}
	
	/* Typography adjustments */
	h1 { font-size: 24px; }
	h2 { font-size: 20px; }
	h3 { font-size: 18px; }
	h4 { font-size: 16px; }
	
	p, li {
		font-size: 12px;
	}
}
