/**
 * Homepage Styles
 * 
 * @package vapesmalluk
 * @since 1.0
 */

 :root {
	--primary-orange: #FFAA01;
	--secondary-black: #333333;
	--yellow-banner: #f4bc2f;
	--light-bg: #F5F5F5;
}

/* Banner Swiper Styles */
.primary-banner {
	position: relative;
	overflow: hidden;
}

.banner-swiper {
	width: 100%;
	height: auto;
}

.banner-swiper .swiper-slide {
	background: linear-gradient(90deg, #2AB5B3 0%, #E8E66B 50%, #FF9A9E 100%);
	overflow: hidden;
}


.homepage-new {
	width: 100%;
	overflow-x: hidden;
	background: #fff;
}

.section-spacing {
	margin-bottom: 60px;
}

.section-title,.brands-title {
	text-align: center;
	font-weight: 800;
	margin-bottom: 32px;
	color: var(--secondary-black);
	text-transform: uppercase;
	letter-spacing: 0;
	font-size: 30px;
    line-height: 1;
    font-family: 'AvenirLTStd-Heavy';
}
.popular-categories .section-title{
	margin-bottom: 16px;
}

.section-subtitle {
	text-align: center;
    margin-bottom: 40px;
    font-weight: normal;
    font-size: 16px;
    color: #666666;
    line-height: 1;
}

/* Primary Banner Content */
.primary-banner-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px;
	padding: 80px 30px;
	min-height: 500px;
    max-width: 1460px;
    margin: 0 auto;
}

.primary-banner-left {
	flex: 1;
	color: white;
	z-index: 2;
}

.primary-banner-tag {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
	display: block;
	text-transform: uppercase;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.swiper-slide-active .primary-banner-tag {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.2s;
}

.primary-banner-left h1 {
	font-size: 52px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
	color: white;
    font-family: 'AvenirLTStd-Black';
	transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.swiper-slide-active .primary-banner-left h1 {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.4s;
}

.primary-banner-price {
	font-size: 20px;
	margin-bottom: 5px;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.swiper-slide-active .primary-banner-price {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.6s;
}

.primary-banner-bigprice {
	font-size: 48px;
	font-weight: 900;
	margin-bottom: 25px;
	color: #FFEB3B;
	opacity: 0;
	transform: translateY(30px) scale(0.9);
	transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.swiper-slide-active .primary-banner-bigprice {
	opacity: 1;
	transform: translateY(0) scale(1);
	transition-delay: 0.8s;
}

.primary-banner-btn {
	background: white;
	color: var(--secondary-black);
	padding: 12px 35px;
	border-radius: 4px;
	font-weight: 700;
	text-transform: uppercase;
	display: inline-block;
	transition: all 0.3s;
	opacity: 0;
	transform: translateY(30px);
}

.swiper-slide-active .primary-banner-btn {
	opacity: 1;
	transform: translateY(0);
	transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
	/* transition-delay: 1s; */
}

.primary-banner-btn:hover {
	background: var(--secondary-black);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.primary-banner-right {
	z-index: 1;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
}

.primary-banner-right img {
	max-height: 100%;
	width: auto;
	opacity: 0;
	transform: translateX(50px) scale(0.95) rotate(2deg);
	transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
	filter: brightness(0.95);
}

.swiper-slide-active .primary-banner-right img {
	opacity: 1;
	transform: translateX(0) scale(1) rotate(0deg);
	transition-delay: 0.3s;
	filter: brightness(1);
}

/* Swiper Custom Navigation */
.banner-swiper .swiper-button-prev,
.banner-swiper .swiper-button-next {
	color: white;
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	backdrop-filter: blur(10px);
	transition: opacity 0.3s;
	opacity: 0;
}

.banner-swiper:hover .swiper-button-prev,
.banner-swiper:hover .swiper-button-next {
	opacity: 1;
}

.banner-swiper .swiper-button-prev:hover,
.banner-swiper .swiper-button-next:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: scale(1.1);
}

.banner-swiper .swiper-button-prev::after,
.banner-swiper .swiper-button-next::after {
	font-size: 20px;
	font-weight: bold;
}

/* Swiper Custom Pagination */
.banner-swiper .swiper-pagination {
	bottom: 30px;
    text-align: right;
    padding-right: 6.8vw;
}

.banner-swiper .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: rgba(255, 255, 255, 0.5);
	opacity: 1;
	transition: all 0.3s;
}

.banner-swiper .swiper-pagination-bullet-active {
	width: 30px;
	border-radius: 6px;
	background: white;
}

/* Performance optimizations */
.primary-banner-left > *,
.primary-banner-right img {
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	perspective: 1000px;
	-webkit-perspective: 1000px;
}

/* Smooth rendering */
.banner-swiper {
	transform: translateZ(0);
	-webkit-transform: translateZ(0);
}

/* primary-banner */
.primary-banner {
	padding: 0;
    max-width: 1680px;
    margin: 0 auto;
    height: 490px;
    border-radius: 20px;
	margin-bottom: 40px;
}

.primary-banner-left {
	flex: 1;
	color: white;
}

.primary-banner-tag {
	font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    display: block;
    text-transform: capitalize;
	font-family: 'AvenirLTStd-Heavy';
}

.primary-banner-left h1 {
	font-size: 52px;
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.primary-banner-price {
	font-size: 20px;
	margin-bottom: 5px;
}

.primary-banner-bigprice {
	font-size: 60px;
    font-weight: 900;
    margin-bottom: 10px;
    color: #FFCE00;
    font-family: 'AvenirLTStd-Black';
	line-height: 1;
}



/* Product Tabs */
.tabs-nav {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-bottom: 35px;
}

.tab-button {
	background: white;
	font-weight: 900;
    font-size: 16px;
    line-height: 1;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s;
	color: #666666;
	width: 180px;
    height: 46px;
    border-radius: 5px;
    border: 1px solid #313131;
	font-family: 'AvenirLTStd-Black';
}

.tab-button.active {
	background: var(--secondary-black);
	color: white;
	border-color: var(--secondary-black);
}

.tab-button:hover {
	border-color: var(--secondary-black);
}

.tab-pane {
	display: none;
}

.tab-pane.active {
	display: block;
}

/* Popular Categories (Circles) */
.categories-circles {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
	text-align: center;
}

.category-circle {
	text-decoration: none;
	color: var(--secondary-black);
}

.circle-img {
	width: 180px;
    height: 180px;
	margin: 0 auto 16px;
	border-radius: 50%;
	background: #F5F5F5;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s;
	overflow: hidden;
}

.category-circle:hover .circle-img {
	transform: scale(1.05);
}

.circle-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.circle-name {
	text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--secondary-black);
    font-family: 'AvenirLTStd-Heavy';
    font-weight: 800;
    font-size: 16px;
    line-height: 1;
}

.circle-count {
	font-weight: 400;
    font-size: 14px;
    color: #666666;
    line-height: 1;
}

/* Nicotine Banner */
.nicotine-section {
	background: var(--yellow-banner);
    margin-bottom: 60px;
    position: relative;
}

.nicotine-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
}

.nicotine-img {
	flex-shrink: 0;
}

.nicotine-img img {
	height: 100%;
	object-fit: contain;
}

.nicotine-text {
	flex: 1;
    position: absolute;
    top: 36px;
    left: 64px;
}

.nicotine-text h2 {
	color: white;
    text-transform: uppercase;
    margin-bottom: 6px;
    font-weight: 900;
    font-size: 36px;
    line-height: 1;
    font-family: 'AvenirLTStd-Heavy';
}

.nicotine-text h3 {
	margin-bottom: 10px;
    color: white;
    text-transform: capitalize;
    font-weight: 800;
    font-size: 36px;
    line-height: 1;
}

.nicotine-price {
	background: var(--secondary-black);
	color: var(--yellow-banner);
	padding: 5px 20px;
	font-weight: 800;
	font-size: 20px;
	display: inline-block;
	margin-bottom: 10px;
	transform: skew(-5deg);
}

.nicotine-btn {
	background: var(--secondary-black);
    color: white;
    padding: 10px 24px;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 5px;
    font-family: AvenirLTStd-Heavy;
}

/* Brands Section */
.brands-bar {
	background: white;
	padding: 50px 0;
	margin-bottom: 60px;
	position: relative;
}

.brands-swiper {
	position: relative;    
	padding: 18px 0;
}

.brands-swiper .swiper-wrapper {
	align-items: center;
}

.brands-swiper .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	height: auto;
	/* max-width: 190px; */
	/* max-width: 14.2857%; */
}

.brand-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-height: 96px;
	padding: 0;
	text-decoration: none;
	transition: all 0.3s;
}

.brand-logo img {
	max-height: 100%;
	max-width: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	/* filter: grayscale(100%);
	opacity: 0.5; */
	transition: all 0.3s;
}

.brand-logo:hover img {
	/* filter: grayscale(0); */
	opacity: 1;
	transform: scale(1.1);
}

.brand-text {
	font-size: 18px;
	font-weight: 700;
	color: #999;
	text-transform: uppercase;
}

.brand-text:hover {
	color: var(--secondary-black);
}

.brands-swiper-wrapper{
	position: relative;
}

.swiper-button-prev,
.swiper-button-next {
	color: #999;
	position: absolute;
}
.swiper-button-prev{
	left: -10px;
}
.swiper-button-next{
	right: -10px;
}

/* Why Choose Us Section */
.why-choose-us-section{
	margin-top: 48px;
}
.why-choose-features {
	list-style: none;
	margin: 0 0 36px 0;
	padding: 0;
}

.why-choose-features li {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
}

.why-choose-features li:last-child {
	margin-bottom: 0;
}
.feature-icon-wrapper{
	width: 36px;
    height: 36px;
    border-radius: 36px;
    background: white;
	display: flex;
	align-items: center;
	justify-content: center;
}

.feature-icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.why-choose-features span {
	font-size: 18px;
	font-weight: 800;
	color: #000;
	line-height: 2.667;
	font-family: 'AvenirLTStd-Black';
}

.why-choose-right {
	position: relative;
}

.why-choose-image,.hover-to-big {
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 4px;
}

.why-choose-image img,.hover-to-big img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.why-choose-image:hover img,.hover-to-big:hover img {
	transform: scale(1.05);
}


/* Text + Image Section */
.textimg-section,.why-choose-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 90px;
	align-items: center;
	background: #E7EEF6;
	padding: 60px;
	border-radius: 8px;
	margin-bottom: 60px;
}

.textimg-left h2 , .why-choose-title{
	font-size: 36px;
	font-weight: 900;
	margin-bottom: 16px;
	text-transform: uppercase;
	line-height: 1;
	font-family: 'AvenirLTStd-Black';
}
.textimg-left h3 , .why-choose-subtitle{
	font-size: 30px;
	font-weight: 800;
	margin-bottom: 18px;
	text-transform: capitalize;
	line-height: 1;
	font-family: 'AvenirLTStd-Heavy';
}

.textimg-left p ,.why-choose-description {
	color: #666;
	margin-bottom: 25px;
	font-size: 18px;
	line-height: 24px;
}

.textimg-btn,.why-choose-btn {
	background: var(--secondary-black);
	color: white;
	padding: 12px 35px;
	font-weight: 700;
	text-transform: uppercase;
	display: inline-block;
	border-radius: 5px;
	margin-top: 10px;
}

.textimg-right img {
	width: 100%;
	border-radius: 4px;
}

/* Vape Shops Near Me */
.vape-shops-section,.guide-advice-section {
	background: white;
	margin: 0 -10px;
}

/* Search Box */
.shops-search-box {
	max-width: 1020px;
	margin: 0 auto 40px;
	display: flex;
	gap: 16px;
	align-items: center;
}

.search-input-wrapper {
	flex: 1;
	position: relative;
	display: flex;
	align-items: center;
	background: white;
	border: 1px solid #E0E0E0;
	border-radius: 40px;
	padding: 0 24px;
	height: 56px;
}

.search-location-icon {
	width: 24px;
	height: 24px;
	margin-right: 12px;
	flex-shrink: 0;
}

.shops-search-input {
	flex: 1;
	border: none;
	outline: none;
	font-size: 16px;
	color: #333;
	background: transparent;
}

.shops-search-input::placeholder {
	color: #999;
}

.shops-search-btn {
	background: #333333;
	color: white;
	border: none;
	border-radius: 40px;
	padding: 0 48px;
	height: 56px;
	font-weight: 800;
	font-size: 16px;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s;
	white-space: nowrap;
	font-family: 'AvenirLTStd-Heavy';
}

.shops-search-btn:hover {
	background: var(--primary-orange);
}

/* Shops Grid */
.shops-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0px;
}

.shop-item {
	background: white;
	overflow: hidden;
	transition: transform 0.3s, box-shadow 0.3s;
	cursor: pointer;
	padding: 0 10px;
}

.shop-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.shop-image {
	width: 100%;
	height: 240px;
	overflow: hidden;
}

.shop-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.shop-item:hover .shop-image img {
	transform: scale(1.05);
}

.shop-details {
	padding-top: 20px;
}

.shop-title {
	font-weight: 800;
	font-size: 16px;
	margin-bottom: 8px;
	color: var(--secondary-black);
	text-transform: uppercase;
	font-family: 'AvenirLTStd-Heavy';
	line-height: 1.2;
}

.shop-type {
	font-size: 14px;
	color: #666;
	margin-bottom: 8px;
	line-height: 1.4;
}

.shop-address {
	font-size: 14px;
	color: #999;
	line-height: 1.4;
}

/* Guide & Advice Section */
.guide-advice-section {
	background: white;
	margin-top: 32px;
}

/* Guide Grid */
.guide-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	transition: all 0.3s ease;
}

/* 收起状态：只显示第一排 */
.guide-row-collapsed {
	max-height: 380px;
	overflow: hidden;
}

.guide-row-collapsed .guide-card:nth-child(n+5) {
	display: none;
}

/* 展开状态 */
.guide-row-expanded {
	max-height: none;
}

.guide-card {
	text-decoration: none;
	color: inherit;
	transition: transform 0.3s, box-shadow 0.3s;
	background: white;
	display: flex;
	flex-direction: column;
	padding: 0 10px;
}

.guide-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.guide-image {
	width: 100%;
	height: 240px;
	overflow: hidden;
	margin-bottom: 16px;
}

.guide-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.guide-card:hover .guide-image img {
	transform: scale(1.05);
}

.guide-card h3 {
	font-size: 16px;
	font-weight: 800;
	margin-bottom: 12px;
	line-height: 1.25;
	color: var(--secondary-black);
	font-family: 'AvenirLTStd-Heavy';
	min-height: 44px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.guide-card p {
	font-size: 16px;
	color: #666;
	margin-bottom: 12px;
	line-height: 1.375;
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.guide-link {
	color: var(--primary-orange);
	font-weight: 800;
	font-size: 16px;
	text-decoration: underline;
	padding-bottom: 10px;
	font-family: 'AvenirLTStd-Heavy';
}

/* .guide-card:hover h3,
.guide-card:hover p,
.guide-card:hover .guide-link {
	padding-left: 10px;
	padding-right: 10px;
} */

/* Guide Actions */
.guide-actions {
	margin-top: 40px;
	text-align: center;
}

.guide-load-more {
	background: #333333;
	color: white;
	border: none;
	padding: 16px 60px;
	font-weight: 800;
	font-size: 16px;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s;
	border-radius: 4px;
	font-family: 'AvenirLTStd-Heavy';
	letter-spacing: 1px;
}

.guide-load-more:hover {
	background: var(--primary-orange);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.guide-load-more:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

/* 加载的卡片淡入效果 */
.guide-card-loaded {
	animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Why Choose Features */
.features-list {
	list-style: none;
	margin: 20px 0 30px;
}

.features-list li {
	padding: 12px 0;
	border-bottom: 1px solid #eee;
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 500;
}

.features-list li:before {
	content: '✓';
	color: var(--primary-orange);
	font-weight: bold;
	font-size: 18px;
}

/* FAQ Section */
.faq-list {
	margin: 0 auto;
}
/* 
.faq-block {
	border-bottom: 1px solid #eee;
} */

.faq-q {
	padding: 20px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
    font-family: 'AvenirLTStd-Heavy';
    line-height: 0.5;
    border-bottom: 1px solid #eee;
}

.faq-q:hover {
	color: var(--primary-orange);
}

.faq-q:after {
	content: '+';
    font-size: 20px;
    font-weight: 900;
    font-family: 'AvenirLTStd-Black';
    color: #666;
}

.faq-q:hover:after {
	color: var(--primary-orange);
}


.faq-block.open .faq-q:after {
	content: '-';
	font-size: 44px;
    font-weight: 500;
    font-family: 'AvenirLTStd';
	color: var(--primary-orange);
}

.faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	color: #666;
	line-height: 1.7;
}

.faq-block.open .faq-a {
	max-height: max-content;
    padding: 20px;
    font-weight: normal;
    line-height: 24px;
}

/* Subscribe Bar */
.subscribe-section {
	background: #f3f6fa;
	padding: 32px 0;
	margin-top: 60px;
}

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

.subscribe-left {
	flex-shrink: 0;
}

.subscribe-left h3 {
    letter-spacing: 0;
    font-weight: 800;
    font-size: 24px;
    color: #333333;
    line-height: 1;
    font-family: 'AvenirLTStd-Heavy';
}

.subscribe-left p {
    margin: 0;
    font-size: 16px;
    color: #666666;
    line-height: 1;
}

.subscribe-form {
	flex: 1;
	max-width: 500px;
	display: flex;
	gap: 0;
}

.subscribe-input {
	flex: 1;
	padding: 14px 20px;
	border: 1px solid #ddd;
	border-radius: 0;
	font-size: 14px;
}

.subscribe-btn {
	background: var(--secondary-black);
	color: white;
	padding: 0 35px;
	font-weight: 600;
	text-transform: uppercase;
	border: none;
	border-radius: 0;
	cursor: pointer;
	transition: background 0.3s;
	font-size: 13px;
	letter-spacing: 0.5px;
}

.subscribe-btn:hover {
	background: #333;
}

/* Mailpoet Form Styles */
.subscribe-section .mailpoet_form {
	flex: 1;
}

.subscribe-section .mailpoet_form form {
	display: flex;
    align-items: center;    
	justify-content: right;
	gap: 10px;
	padding: 20px 0 !important;
	position: relative;
}

.subscribe-section .mailpoet_form .mailpoet_paragraph {
	margin: 0 !important;
	padding: 0 !important;
	position: relative;
}

.subscribe-section .mailpoet_form .mailpoet_paragraph .parsley-errors-list{
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(200%);
}


.subscribe-section .mailpoet_form .mailpoet_paragraph:first-child {
	flex: 1;
}

.subscribe-section .mailpoet_form input[type="email"],
.subscribe-section .mailpoet_form .mailpoet_text {
	width: 552px !important;
	height: 50px !important;
	padding: 0 20px !important;
	border: 1px solid #D2D2D2 !important;
	border-radius: 5px !important;
	font-size: 16px !important;
	background: #fff !important;
	box-sizing: border-box !important;
	outline: none !important;
}

.subscribe-section .mailpoet_form input[type="email"]::placeholder {
	color: #999 !important;
}

.subscribe-section .mailpoet_form input[type="email"]:focus {
	border-color: #999 !important;
}

.subscribe-section .mailpoet_form .mailpoet_submit {
	height: 50px !important;
	padding: 0 36px !important;
	background: #333 !important;
	color: #fff !important;
	border: none !important;
	border-radius: 5px !important;
	font-size: 16px !important;
	font-weight: 800 !important;
	text-transform: uppercase !important;
	letter-spacing: 0px !important;
	cursor: pointer !important;
	transition: background 0.3s !important;
	white-space: nowrap !important;
    font-family: 'AvenirLTStd-Heavy';
}

.subscribe-section .mailpoet_form .mailpoet_submit:hover {
	background: #1a1a1a !important;
}

.subscribe-section #mailpoet_form_1 .mailpoet_message{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    font-size: 18px;
    padding: 0;
}

.mailpoet_form.mailpoet_form_successfully_send .mailpoet_validate_success{
	width: 500px;
}

/* ========================================
   Responsive Styles - 响应式样式
======================================== */
@media (max-width: 1919px) {
	.primary-banner {
		max-width: 87.5vw;
	}
}


@media (max-width: 1680px) {
	.primary-banner {
		max-width: 1400px;
		height: 25.52vw;
	}
	.primary-banner-content{
		min-height: 25.52vw;
	}
}

/* 大屏优化 - Large Desktop */
@media (max-width: 1400px) {
	/* Banner 横幅 */
	.primary-banner {
		max-width: 1200px;
		height: 420px;
	}
	
	.primary-banner-content {
		padding: 60px 30px;
		min-height: 420px;
		gap: 50px;
	}
	
	.primary-banner-left h1 {
		font-size: 46px;
	}
	
	.primary-banner-tag {
		font-size: 18px;
	}
	
	.primary-banner-price {
		font-size: 18px;
	}
	
	.primary-banner-bigprice {
		font-size: 54px;
		margin-bottom: 20px;
	}
	
	.primary-banner-btn {
		padding: 10px 30px;
	}
	
	/* Sections 区块间距 */
	.section-spacing {
		margin-bottom: 50px;
	}
	
	.section-title {
		font-size: 28px;
		margin-bottom: 30px;
	}
	
	/* Products 产品 */
	.products-row {
		gap: 18px;
	}
	
	.tab-button {
		width: 160px;
		height: 44px;
		font-size: 15px;
	}
	
	.tabs-nav {
		gap: 12px;
		margin-bottom: 32px;
	}
	
	/* Categories 分类 */
	.circle-img {
		width: 160px;
		height: 160px;
	}
	
	.circle-name {
		font-size: 15px;
		margin-bottom: 6px;
	}
	
	.circle-count {
		font-size: 13px;
	}
	
	/* Nicotine Banner */
	.nicotine-text {
		top: 32px;
		left: 56px;
	}
	
	.nicotine-text h2 {
		font-size: 32px;
	}
	
	.nicotine-text h3 {
		font-size: 32px;
	}
	
	.nicotine-price {
		font-size: 18px;
	}
	
	/* Brands 品牌 */
	.brands-bar {
		padding: 45px 0;
	}
	
	.brand-logo {
		max-height: 88px;
	}
	
	/* Text + Image Section */
	.textimg-section,
	.why-choose-content {
		gap: 80px;
		padding: 55px;
	}
	
	.textimg-left h2,
	.why-choose-title {
		font-size: 34px;
	}
	
	.textimg-left h3,
	.why-choose-subtitle {
		font-size: 28px;
	}
	
	.textimg-left p,
	.why-choose-description {
		font-size: 17px;
		line-height: 23px;
	}
	
	/* Shops & Guides */
	.shop-image,
	.guide-image {
		height: 220px;
	}
	
	.shop-title,
	.guide-card h3 {
		font-size: 15px;
	}
	
	/* Subscribe */
	.subscribe-section {
		padding: 28px 0;
	}
	
	.subscribe-left h3 {
		font-size: 22px;
	}
	
	.subscribe-left p {
		font-size: 15px;
	}
	.subscribe-content{
		flex-direction: column;        
		align-items: normal;
        padding-top: 16px;
	}

}

/* 笔记本 - Laptop */
@media (max-width: 1200px) {
	/* Banner 横幅 */
	.primary-banner {
		max-width: 1000px;
		height: 380px;
	}
	
	.primary-banner-content {
		padding: 50px 25px;
		min-height: 380px;
		gap: 40px;
	}
	
	.primary-banner-left h1 {
		font-size: 42px;
	}
	
	.primary-banner-tag {
		font-size: 17px;
	}
	
	.primary-banner-price {
		font-size: 17px;
	}
	
	.primary-banner-bigprice {
		font-size: 50px;
	}
	
	.primary-banner-btn {
		padding: 10px 28px;
		font-size: 14px;
	}
	
	/* Sections */
	.section-spacing {
		margin-bottom: 45px;
	}
	
	.section-title {
		font-size: 26px;
		margin-bottom: 28px;
	}
	
	.section-subtitle {
		font-size: 15px;
		margin-bottom: 35px;
	}
	
	/* Products 产品 */
	.products-row {
		grid-template-columns: repeat(4, 1fr);
		gap: 16px;
	}
	
	.tab-button {
		width: 150px;
		height: 42px;
		font-size: 14px;
	}
	
	.tabs-nav {
		gap: 10px;
		margin-bottom: 30px;
	}
	
	/* Categories 分类 */
	.categories-circles {
		grid-template-columns: repeat(4, 1fr);
		gap: 22px;
	}
	
	.circle-img {
		width: 150px;
		height: 150px;
	}
	
	.circle-name {
		font-size: 14px;
	}
	
	.circle-count {
		font-size: 13px;
	}
	
	/* Nicotine Banner */
	.nicotine-section {
		margin-bottom: 50px;
	}
	
	.nicotine-text {
		top: 28px;
		left: 48px;
	}
	
	.nicotine-text h2 {
		font-size: 30px;
	}
	
	.nicotine-text h3 {
		font-size: 30px;
	}
	
	.nicotine-price {
		font-size: 17px;
		padding: 4px 18px;
	}
	
	.nicotine-btn {
		padding: 9px 22px;
		font-size: 14px;
	}
	
	/* Brands 品牌 */
	.brands-bar {
		padding: 40px 0;
		margin-bottom: 50px;
	}
	
	.brands-title {
		font-size: 26px;
		margin-bottom: 28px;
	}
	
	.brand-logo {
		max-height: 82px;
	}
	
	/* Text + Image Section */
	.textimg-section,
	.why-choose-content {
		gap: 70px;
		padding: 50px;
		margin-bottom: 50px;
	}
	
	.textimg-left h2,
	.why-choose-title {
		font-size: 32px;
		margin-bottom: 14px;
	}
	
	.textimg-left h3,
	.why-choose-subtitle {
		font-size: 26px;
		margin-bottom: 16px;
	}
	
	.textimg-left p,
	.why-choose-description {
		font-size: 16px;
		line-height: 22px;
		margin-bottom: 22px;
	}
	
	.textimg-btn,
	.why-choose-btn {
		padding: 11px 32px;
		font-size: 14px;
	}
	
	.why-choose-features li {
		margin-bottom: 18px;
	}
	
	.why-choose-features span {
		font-size: 17px;
	}
	
	/* Shops & Guides */
	.shops-search-box {
		margin-bottom: 35px;
	}
	
	.search-input-wrapper {
		height: 52px;
	}

	.shops-search-btn {
		height: 52px;
		padding: 0 44px;
		font-size: 15px;
	}
	
	.shop-image,
	.guide-image {
		height: 210px;
		margin-bottom: 14px;
	}
	
	.shop-title {
		font-size: 15px;
		margin-bottom: 7px;
	}
	
	.shop-type,
	.shop-address {
		font-size: 13px;
	}
	
	.guide-row {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.guide-card h3 {
		font-size: 15px;
		margin-bottom: 10px;
		min-height: 40px;
	}
	
	.guide-card p {
		font-size: 15px;
		margin-bottom: 10px;
	}
	
	.guide-link {
		font-size: 15px;
	}
	
	.guide-actions {
		margin-top: 35px;
	}
	
	.guide-load-more {
		padding: 15px 56px;
		font-size: 15px;
	}
	
	/* FAQ */
	.faq-q {
		padding: 18px;
		font-size: 15px;
	}
	
	.faq-block.open .faq-a {
		padding: 18px;
		font-size: 15px;
	}
	
	/* Subscribe */
	.subscribe-section {
		padding: 26px 0;
		margin-top: 50px;
	}
	
	.subscribe-left h3 {
		font-size: 21px;
	}
	
	.subscribe-left p {
		font-size: 14px;
	}
	
	.subscribe-section .mailpoet_form input[type="email"] {
		width: 480px !important;
		height: 48px !important;
		font-size: 15px !important;
	}
	
	.subscribe-section .mailpoet_form .mailpoet_submit {
		height: 48px !important;
		padding: 0 32px !important;
		font-size: 15px !important;
	}
}

/* 平板横屏 - Tablet Landscape */
@media (max-width: 1024px) {
	/* Banner 横幅 */
	.primary-banner {
		max-width: 900px;
		height: 360px;
		margin: 0 30px 35px 30px;
	}
	
	.primary-banner-content {
		padding: 45px 20px;
		min-height: 360px;
		gap: 35px;
	}
	
	.primary-banner-left h1 {
		font-size: 38px;
		margin-bottom: 18px;
	}
	
	.primary-banner-tag {
		font-size: 16px;
		margin-bottom: 8px;
	}
	
	.primary-banner-price {
		font-size: 16px;
	}
	
	.primary-banner-bigprice {
		font-size: 46px;
		margin-bottom: 18px;
	}
	
	.primary-banner-btn {
		padding: 9px 26px;
		font-size: 13px;
	}
	
	.banner-swiper .swiper-button-prev,
	.banner-swiper .swiper-button-next {
		width: 44px;
		height: 44px;
	}
	
	.banner-swiper .swiper-button-prev::after,
	.banner-swiper .swiper-button-next::after {
		font-size: 18px;
	}
	
	.banner-swiper .swiper-pagination {
		bottom: 25px;
		padding-right: 5vw;
	}
	
	/* Sections */
	.section-spacing {
		margin-bottom: 40px;
	}
	
	.section-title {
		font-size: 24px;
		margin-bottom: 24px;
	}
	
	.section-subtitle {
		font-size: 14px;
		margin-bottom: 30px;
	}
	
	/* Products 产品 */
	.products-row {
		grid-template-columns: repeat(4, 1fr);
		gap: 14px;
	}
	
	.tab-button {
		width: 140px;
		height: 40px;
		font-size: 13px;
	}
	
	.tabs-nav {
		gap: 8px;
		margin-bottom: 28px;
	}
	
	/* Categories 分类 */
	.categories-circles {
		grid-template-columns: repeat(4, 1fr);
		gap: 18px;
	}
	
	.circle-img {
		width: 130px;
		height: 130px;
		margin-bottom: 14px;
	}
	
	.circle-name {
		font-size: 14px;
		margin-bottom: 6px;
	}
	
	.circle-count {
		font-size: 12px;
	}
	
	/* Nicotine Banner */
	.nicotine-section {
		margin-bottom: 40px;
	}
	
	.nicotine-text {
		top: 24px;
		left: 40px;
	}
	
	.nicotine-text h2 {
		font-size: 28px;
		margin-bottom: 5px;
	}
	
	.nicotine-text h3 {
		font-size: 28px;
		margin-bottom: 8px;
	}
	
	.nicotine-price {
		font-size: 16px;
		padding: 4px 16px;
		margin-bottom: 8px;
	}
	
	.nicotine-btn {
		padding: 8px 20px;
		font-size: 13px;
	}
	
	/* Brands 品牌 */
	.brands-bar {
		padding: 35px 0;
		margin-bottom: 40px;
	}
	
	.brands-title {
		font-size: 24px;
		margin-bottom: 24px;
	}
	
	.brands-swiper {
		padding: 16px 0;
	}
	
	.brand-logo {
		max-height: 76px;
	}
	
	/* Text + Image Section */
	.textimg-section,
	.why-choose-content {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 45px;
		margin-bottom: 40px;
	}
	
	.textimg-left h2,
	.why-choose-title {
		font-size: 30px;
		margin-bottom: 12px;
	}
	
	.textimg-left h3,
	.why-choose-subtitle {
		font-size: 24px;
		margin-bottom: 14px;
	}
	
	.textimg-left p,
	.why-choose-description {
		font-size: 15px;
		line-height: 21px;
		margin-bottom: 20px;
	}
	
	.textimg-btn,
	.why-choose-btn {
		padding: 10px 30px;
		font-size: 13px;
		margin-top: 8px;
	}
	
	.why-choose-features {
		margin: 0 0 32px 0;
	}
	
	.why-choose-features li {
		gap: 14px;
		margin-bottom: 16px;
	}
	
	.feature-icon-wrapper {
		width: 32px;
		height: 32px;
	}
	
	.feature-icon {
		width: 14px;
		height: 14px;
	}
	
	.why-choose-features span {
		font-size: 16px;
	}
	
	/* Shops & Guides */
	.shops-search-box {
		margin-bottom: 30px;
	}
	
	.search-input-wrapper {
		height: 48px;
		padding: 0 20px;
	}
	
	.search-location-icon {
		width: 22px;
		height: 22px;
		margin-right: 10px;
	}
	
	.shops-search-btn {
		height: 48px;
		padding: 0 40px;
		font-size: 14px;
	}
	
	.shops-row {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.shop-item {
		padding: 0 8px;
	}
	
	.shop-image {
		height: 200px;
	}
	
	.shop-details {
		padding-top: 18px;
	}
	
	.shop-title {
		font-size: 14px;
		margin-bottom: 6px;
	}
	
	.shop-type {
		font-size: 13px;
		margin-bottom: 6px;
	}
	
	.shop-address {
		font-size: 13px;
	}
	
	.guide-row {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.guide-row-collapsed {
		max-height: 760px;
	}
	
	.guide-row-collapsed .guide-card:nth-child(n+3) {
		display: none;
	}
	
	.guide-card {
		padding: 0 8px;
	}
	
	.guide-image {
		height: 200px;
		margin-bottom: 14px;
	}
	
	.guide-card h3 {
		font-size: 14px;
		margin-bottom: 10px;
		min-height: 38px;
	}
	
	.guide-card p {
		font-size: 14px;
		margin-bottom: 10px;
	}
	
	.guide-link {
		font-size: 14px;
		padding-bottom: 8px;
	}
	
	.guide-actions {
		margin-top: 32px;
	}
	
	.guide-load-more {
		padding: 14px 52px;
		font-size: 14px;
	}
	
	/* FAQ */
	.faq-q {
		padding: 16px;
		font-size: 15px;
	}
	
	.faq-q:after {
		font-size: 18px;
	}
	
	.faq-block.open .faq-q:after {
		font-size: 40px;
	}
	
	.faq-block.open .faq-a {
		padding: 16px;
		font-size: 14px;
		line-height: 22px;
	}
	
	/* Subscribe */
	.subscribe-section {
		padding: 24px 0;
		margin-top: 40px;
	}
	
	.subscribe-left h3 {
		font-size: 20px;
	}
	
	.subscribe-left p {
		font-size: 14px;
	}
	
	.subscribe-section .mailpoet_form input[type="email"] {
		width: 440px !important;
		height: 46px !important;
		font-size: 14px !important;
		padding: 0 18px !important;
	}
	
	.subscribe-section .mailpoet_form .mailpoet_submit {
		height: 46px !important;
		padding: 0 30px !important;
		font-size: 14px !important;
	}
}

/* 平板竖屏 - Tablet Portrait */
@media (max-width: 992px) {
	/* Banner 横幅 */
	.primary-banner {
		max-width: 100%;
		height: 340px;
		border-radius: 15px;
	}
	
	.primary-banner-content {
		padding: 40px 20px;
		min-height: 340px;
		gap: 30px;
	}
	
	.primary-banner-left h1 {
		font-size: 34px;
		margin-bottom: 16px;
	}
	
	.primary-banner-tag {
		font-size: 15px;
	}
	
	.primary-banner-price {
		font-size: 15px;
	}
	
	.primary-banner-bigprice {
		font-size: 42px;
		margin-bottom: 16px;
	}
	
	.primary-banner-btn {
		padding: 8px 24px;
	}
	
	.banner-swiper .swiper-button-prev,
	.banner-swiper .swiper-button-next {
		width: 42px;
		height: 42px;
	}
	
	/* Sections */
	.section-spacing {
		margin-bottom: 35px;
	}
	
	.section-title {
		font-size: 22px;
		margin-bottom: 22px;
	}
	
	.section-subtitle {
		font-size: 14px;
		margin-bottom: 28px;
	}
	
	/* Products 产品 */
	.products-row {
		grid-template-columns: repeat(3, 1fr);
		gap: 12px;
	}
	
	.tab-button {
		width: 130px;
		height: 38px;
		font-size: 12px;
	}
	
	.tabs-nav {
		gap: 8px;
		margin-bottom: 26px;
	}
	
	/* Categories 分类 */
	.categories-circles {
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
	}
	
	.circle-img {
		width: 120px;
		height: 120px;
		margin-bottom: 12px;
	}
	
	.circle-name {
		font-size: 13px;
	}
	
	.circle-count {
		font-size: 12px;
	}
	
	/* Nicotine Banner */
	.nicotine-section {
		margin-bottom: 35px;
	}
	
	.nicotine-inner {
		gap: 40px;
	}
	
	.nicotine-text {
		top: 20px;
		left: 35px;
	}
	
	.nicotine-text h2 {
		font-size: 26px;
	}
	
	.nicotine-text h3 {
		font-size: 26px;
	}
	
	.nicotine-price {
		font-size: 15px;
		padding: 3px 14px;
	}
	
	.nicotine-btn {
		padding: 8px 18px;
	}
	
	/* Brands 品牌 */
	.brands-bar {
		padding: 30px 0;
		margin-bottom: 35px;
	}
	
	.brands-title {
		font-size: 22px;
		margin-bottom: 22px;
	}
	
	.brand-logo {
		max-height: 70px;
	}
	
	/* Text + Image Section */
	.textimg-section,
	.why-choose-content {
		gap: 35px;
		padding: 40px;
		margin-bottom: 35px;
		border-radius: 6px;
	}
	
	.textimg-left h2,
	.why-choose-title {
		font-size: 28px;
		margin-bottom: 10px;
	}
	
	.textimg-left h3,
	.why-choose-subtitle {
		font-size: 22px;
		margin-bottom: 12px;
	}
	
	.textimg-left p,
	.why-choose-description {
		font-size: 14px;
		line-height: 20px;
		margin-bottom: 18px;
	}
	
	.textimg-btn,
	.why-choose-btn {
		padding: 10px 28px;
		font-size: 13px;
	}
	
	.why-choose-features {
		margin: 0 0 28px 0;
	}
	
	.why-choose-features li {
		gap: 12px;
		margin-bottom: 14px;
	}
	
	.feature-icon-wrapper {
		width: 30px;
		height: 30px;
	}
	
	.feature-icon {
		width: 13px;
		height: 13px;
	}
	
	.why-choose-features span {
		font-size: 15px;
	}
	
	/* Shops & Guides */
	.shops-search-box {
		max-width: 900px;
		margin-bottom: 28px;
		gap: 14px;
	}
	
	.search-input-wrapper {
		height: 46px;
		padding: 0 18px;
	}
	
	.search-location-icon {
		width: 20px;
		height: 20px;
	}
	
	.shops-search-btn {
		height: 46px;
		padding: 0 38px;
		font-size: 14px;
	}
	
	.shop-item {
		padding: 0 6px;
	}
	
	.shop-image {
		height: 190px;
	}
	
	.shop-details {
		padding-top: 16px;
	}
	
	.shop-title {
		font-size: 14px;
	}
	
	.shop-type,
	.shop-address {
		font-size: 12px;
		line-height: 1.3;
	}
	
	.guide-card {
		padding: 0 6px;
	}
	
	.guide-image {
		height: 190px;
		margin-bottom: 12px;
	}
	
	.guide-card h3 {
		font-size: 14px;
		min-height: 36px;
	}
	
	.guide-card p {
		font-size: 14px;
	}
	
	.guide-link {
		font-size: 14px;
	}
	
	.guide-actions {
		margin-top: 30px;
	}
	
	.guide-load-more {
		padding: 13px 48px;
	}
	
	/* FAQ */
	.faq-q {
		padding: 15px 18px;
		font-size: 14px;
	}
	
	.faq-block.open .faq-a {
		padding: 15px 18px;
		font-size: 14px;
		line-height: 21px;
	}
	
	/* Subscribe */
	.subscribe-section {
		padding: 22px 0;
		margin-top: 35px;
	}
	
	.subscribe-left h3 {
		font-size: 19px;
	}
	
	.subscribe-left p {
		font-size: 13px;
	}
	
	.subscribe-section .mailpoet_form input[type="email"] {
		width: 400px !important;
		height: 44px !important;
		font-size: 14px !important;
	}
	
	.subscribe-section .mailpoet_form .mailpoet_submit {
		height: 44px !important;
		padding: 0 28px !important;
		font-size: 14px !important;
	}
}

/* 手机横屏 & 大屏手机 - Mobile Landscape & Large Phone */
@media (max-width: 768px) {
	/* Banner 横幅 - 移动端垂直布局 */
	.primary-banner {
		height: auto;
		border-radius: 12px;
		margin: 0 30px 30px 30px;
	}
	
	.primary-banner-content {
		flex-direction: column;
		text-align: center;
		padding: 35px 20px;
		min-height: auto;
		gap: 25px;
	}
	
	.primary-banner-left h1 {
		font-size: 30px;
		margin-bottom: 14px;
	}
	
	.primary-banner-tag {
		font-size: 14px;
		margin-bottom: 8px;
	}
	
	.primary-banner-price {
		font-size: 14px;
		margin-bottom: 4px;
	}
	
	.primary-banner-bigprice {
		font-size: 36px;
		margin-bottom: 14px;
	}
	
	.primary-banner-btn {
		padding: 8px 22px;
		font-size: 12px;
	}
	
	.primary-banner-right {
		position: relative;
		justify-content: center;
	}
	
	.primary-banner-right img {
		max-height: 260px;
	}
	
	.banner-swiper .swiper-button-prev,
	.banner-swiper .swiper-button-next {
		width: 38px;
		height: 38px;
	}
	
	.banner-swiper .swiper-button-prev::after,
	.banner-swiper .swiper-button-next::after {
		font-size: 15px;
	}
	
	.banner-swiper .swiper-pagination {
		bottom: 12px;
		text-align: center;
		padding-right: 0;
	}
	
	.banner-swiper .swiper-pagination-bullet {
		width: 10px;
		height: 10px;
	}
	
	.banner-swiper .swiper-pagination-bullet-active {
		width: 26px;
	}
	
	/* Sections */
	.section-spacing {
		margin-bottom: 30px;
	}
	
	.section-title {
		font-size: 20px;
		margin-bottom: 18px;
	}
	
	.section-subtitle {
		font-size: 13px;
		margin-bottom: 24px;
	}
	
	/* Products 产品 */
	.products-row {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
	
	.tab-button {
		width: 110px;
		height: 36px;
		font-size: 11px;
		border-radius: 4px;
	}
	
	.tabs-nav {
		gap: 6px;
		margin-bottom: 22px;
	}
	
	/* Categories 分类 */
	.categories-circles {
		grid-template-columns: repeat(3, 1fr);
		gap: 14px;
	}
	
	.circle-img {
		width: 100px;
		height: 100px;
		margin-bottom: 10px;
	}
	
	.circle-name {
		font-size: 12px;
		margin-bottom: 5px;
	}
	
	.circle-count {
		font-size: 11px;
	}
	
	/* Nicotine Banner - 移动端垂直布局 */
	.nicotine-section {
		margin-bottom: 30px;
	}
	
	.nicotine-inner {
		flex-direction: column;
		text-align: center;
		gap: 0;
	}
	
	.nicotine-img {
		order: -1;
		width: 100%;
	}
	
	.nicotine-text {
		position: static;
		padding: 20px;
	}
	
	.nicotine-text h2 {
		font-size: 24px;
		margin-bottom: 4px;
	}
	
	.nicotine-text h3 {
		font-size: 24px;
		margin-bottom: 8px;
	}
	
	.nicotine-price {
		font-size: 14px;
		padding: 3px 12px;
		margin-bottom: 8px;
	}
	
	.nicotine-btn {
		padding: 7px 16px;
		font-size: 12px;
	}
	
	/* Brands 品牌 */
	.brands-bar {
		padding: 28px 0;
		margin-bottom: 30px;
	}
	
	.brands-title {
		font-size: 20px;
		margin-bottom: 18px;
	}
	
	.brands-swiper {
		padding: 14px 0;
	}
	
	.brand-logo {
		max-height: 62px;
	}
	
	.swiper-button-prev,
	.swiper-button-next {
		width: 20px;
	}
	
	/* Text + Image Section - 移动端垂直布局 */
	.textimg-section,
	.why-choose-content {
		grid-template-columns: 1fr;
		gap: 28px;
		padding: 32px 20px;
		margin-bottom: 30px;
	}
	
	.textimg-left h2,
	.why-choose-title {
		font-size: 24px;
		margin-bottom: 8px;
	}
	
	.textimg-left h3,
	.why-choose-subtitle {
		font-size: 18px;
		margin-bottom: 10px;
	}
	
	.textimg-left p,
	.why-choose-description {
		font-size: 13px;
		line-height: 19px;
		margin-bottom: 14px;
	}
	
	.textimg-btn,
	.why-choose-btn {
		padding: 9px 24px;
		font-size: 12px;
		width: 100%;
		text-align: center;
		margin-top: 6px;
	}
	
	.why-choose-features {
		margin: 0 0 24px 0;
	}
	
	.why-choose-features li {
		gap: 10px;
		margin-bottom: 12px;
	}
	
	.feature-icon-wrapper {
		width: 28px;
		height: 28px;
	}
	
	.feature-icon {
		width: 12px;
		height: 12px;
	}
	
	.why-choose-features span {
		font-size: 14px;
	}
	
	/* Shops & Guides - 移动端单列 */
	.shops-search-box {
		flex-direction: column;
		margin-bottom: 24px;
		gap: 10px;
	}
	
	.search-input-wrapper {
		height: 42px;
		padding: 0 16px;
		width: 100%;
	}
	
	.search-location-icon {
		width: 18px;
		height: 18px;
		margin-right: 8px;
	}
	
	.shops-search-input {
		height: 42px;
        width: 100%;
	}
	
	.shops-search-btn {
		width: 100%;
		height: 42px;
		padding: 0 32px;
		font-size: 13px;
	}
	
	.shops-row,
	.guide-row {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	
	.guide-row-collapsed {
		max-height: 400px;
	}
	
	.guide-row-collapsed .guide-card:nth-child(n+2) {
		display: none;
	}
	
	.shop-item,
	.guide-card {
		padding: 0 5px;
	}
	
	.shop-image,
	.guide-image {
		height: 220px;
		margin-bottom: 12px;
	}
	
	.shop-details {
		padding-top: 14px;
	}
	
	.shop-title {
		font-size: 13px;
		margin-bottom: 6px;
	}
	
	.shop-type,
	.shop-address {
		font-size: 12px;
	}
	
	.guide-card h3 {
		font-size: 13px;
		margin-bottom: 8px;
		min-height: 34px;
	}
	
	.guide-card p {
		font-size: 13px;
		margin-bottom: 8px;
	}
	
	.guide-link {
		font-size: 13px;
		padding-bottom: 6px;
	}
	
	.guide-actions {
		margin-top: 26px;
	}
	
	.guide-load-more {
		width: 100%;
		padding: 12px 36px;
		font-size: 13px;
	}
	
	/* FAQ */
	.faq-q {
		padding: 14px 16px;
		font-size: 13px;
	}
	
	.faq-q:after {
		font-size: 16px;
	}
	
	.faq-block.open .faq-q:after {
		font-size: 36px;
	}
	
	.faq-block.open .faq-a {
		padding: 14px 16px;
		font-size: 13px;
		line-height: 20px;
	}
	
	/* Subscribe - 移动端垂直布局 */
	.subscribe-section {
		padding: 20px 0;
		margin-top: 30px;
	}
	
	.subscribe-content {
		flex-direction: column;
		text-align: center;
		gap: 20px;
	}
	
	.subscribe-left h3 {
		font-size: 18px;
	}
	
	.subscribe-left p {
		font-size: 13px;
		margin-top: 6px;
	}
	
	.subscribe-form {
		width: 100%;
		max-width: 100%;
	}
	
	.subscribe-section .mailpoet_form {
		width: 100%;
		max-width: 100%;
	}
	
	.subscribe-section .mailpoet_form form {
		flex-direction: column;
		gap: 10px;
		padding: 16px 0 !important;
	}
	
	.subscribe-section .mailpoet_form .mailpoet_paragraph {
		flex: none;
	}
	
	.subscribe-section .mailpoet_form input[type="email"] {
		width: 100% !important;
		height: 42px !important;
		font-size: 13px !important;
		border-radius: 4px !important;
	}
	
	.subscribe-section .mailpoet_form .mailpoet_submit {
		width: 100% !important;
		height: 42px !important;
		padding: 0 24px !important;
		font-size: 13px !important;
		border-radius: 4px !important;
	}
	
	.subscribe-section #mailpoet_form_1 .mailpoet_message {
		font-size: 16px;
	}
}

/* 手机竖屏 - Mobile Portrait */
@media (max-width: 576px) {
	/* Banner 横幅 */
	.primary-banner {
		border-radius: 10px;
		margin-bottom: 25px;
	}
	
	.primary-banner-content {
		padding: 28px 15px;
		gap: 20px;
	}
	
	.primary-banner-left h1 {
		font-size: 26px;
		line-height: 1.2;
		margin-bottom: 12px;
	}
	
	.primary-banner-tag {
		font-size: 13px;
		margin-bottom: 6px;
	}
	
	.primary-banner-price {
		font-size: 13px;
	}
	
	.primary-banner-bigprice {
		font-size: 32px;
		margin-bottom: 12px;
	}
	
	.primary-banner-btn {
		padding: 7px 20px;
		font-size: 11px;
	}
	
	.primary-banner-right img {
		max-height: 220px;
	}
	
	.banner-swiper .swiper-button-prev,
	.banner-swiper .swiper-button-next {
		width: 34px;
		height: 34px;
	}
	
	.banner-swiper .swiper-button-prev::after,
	.banner-swiper .swiper-button-next::after {
		font-size: 14px;
	}
	
	.banner-swiper .swiper-pagination {
		bottom: 10px;
	}
	
	.banner-swiper .swiper-pagination-bullet {
		width: 8px;
		height: 8px;
	}
	
	.banner-swiper .swiper-pagination-bullet-active {
		width: 22px;
	}
	
	/* Sections */
	.vape-shops-section, .guide-advice-section{
		margin-left: 0;
		margin-right: 0;
	}
	.section-spacing {
		margin-bottom: 26px;
	}
	
	.section-title {
		font-size: 18px;
		margin-bottom: 16px;
	}
	
	.section-subtitle {
		font-size: 12px;
		margin-bottom: 20px;
	}
	
	/* Products 产品 */
	.products-row {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}
	
	.tab-button {
		width: 100px;
		height: 34px;
		font-size: 10px;
	}
	
	.tabs-nav {
		gap: 5px;
		margin-bottom: 20px;
	}
	
	/* Categories 分类 */
	.categories-circles {
		grid-template-columns: repeat(3, 1fr);
		gap: 12px;
	}
	
	.circle-img {
		width: 85px;
		height: 85px;
		margin-bottom: 8px;
	}
	
	.circle-name {
		font-size: 11px;
		margin-bottom: 4px;
	}
	
	.circle-count {
		font-size: 10px;
	}
	
	/* Nicotine Banner */
	.nicotine-section {
		margin-bottom: 26px;
	}
	
	.nicotine-text {
		padding: 16px;
	}
	
	.nicotine-text h2 {
		font-size: 20px;
	}
	
	.nicotine-text h3 {
		font-size: 20px;
		margin-bottom: 6px;
	}
	
	.nicotine-price {
		font-size: 13px;
		padding: 2px 10px;
		margin-bottom: 6px;
	}
	
	.nicotine-btn {
		padding: 6px 14px;
		font-size: 11px;
	}
	
	/* Brands 品牌 */
	.brands-bar {
		padding: 24px 0;
		margin-bottom: 26px;
	}
	
	.brands-title {
		font-size: 18px;
		margin-bottom: 16px;
	}
	
	.brands-swiper {
		padding: 12px 0;
	}
	
	.brand-logo {
		max-height: 56px;
	}
	
	/* Text + Image Section */
	.textimg-section,
	.why-choose-content {
		gap: 24px;
		padding: 28px 16px;
		margin-bottom: 26px;
	}
	
	.textimg-left h2,
	.why-choose-title {
		font-size: 20px;
		margin-bottom: 6px;
	}
	
	.textimg-left h3,
	.why-choose-subtitle {
		font-size: 16px;
		margin-bottom: 8px;
	}
	
	.textimg-left p,
	.why-choose-description {
		font-size: 12px;
		line-height: 18px;
		margin-bottom: 12px;
	}
	
	.textimg-btn,
	.why-choose-btn {
		padding: 8px 20px;
		font-size: 11px;
	}
	
	.why-choose-features {
		margin: 0 0 20px 0;
	}
	
	.why-choose-features li {
		gap: 8px;
		margin-bottom: 10px;
	}
	
	.feature-icon-wrapper {
		width: 24px;
		height: 24px;
	}
	
	.feature-icon {
		width: 10px;
		height: 10px;
	}
	
	.why-choose-features span {
		font-size: 12px;
	}
	
	/* Shops & Guides */
	.shops-search-box {
		margin-bottom: 20px;
		gap: 8px;
	}
	
	.search-input-wrapper {
		height: 38px;
		padding: 0 14px;
	}
	
	.search-location-icon {
		width: 16px;
		height: 16px;
		margin-right: 6px;
	}
	
	.shops-search-btn {
		height: 38px;
		padding: 0 28px;
		font-size: 12px;
		border-radius: 34px;
	}
	
	.shops-row,
	.guide-row {
		gap: 10px;
	}
	
	.shop-image,
	.guide-image {
		height: 200px;
		margin-bottom: 10px;
	}
	
	.shop-details {
		padding-top: 12px;
	}
	
	.shop-title {
		font-size: 12px;
		margin-bottom: 5px;
	}
	
	.shop-type,
	.shop-address {
		font-size: 11px;
	}
	
	.guide-card h3 {
		font-size: 12px;
		margin-bottom: 6px;
		min-height: 30px;
	}
	
	.guide-card p {
		font-size: 12px;
		margin-bottom: 6px;
	}
	
	.guide-link {
		font-size: 12px;
	}
	
	.guide-actions {
		margin-top: 22px;
	}
	
	.guide-load-more {
		padding: 11px 32px;
		font-size: 12px;
	}
	
	/* FAQ */
	.faq-q {
		padding: 12px 14px;
		font-size: 12px;
	}
	
	.faq-q:after {
		font-size: 15px;
	}
	
	.faq-block.open .faq-q:after {
		font-size: 32px;
	}
	
	.faq-block.open .faq-a {
		padding: 12px 14px;
		font-size: 12px;
		line-height: 19px;
	}
	
	/* Subscribe */
	.subscribe-section {
		padding: 18px 0;
	}
	
	.subscribe-content {
		gap: 16px;
	}
	
	.subscribe-left h3 {
		font-size: 16px;
	}
	
	.subscribe-left p {
		font-size: 12px;
	}
	
	.subscribe-section .mailpoet_form input[type="email"] {
		height: 38px !important;
		font-size: 12px !important;
		padding: 0 14px !important;
	}
	
	.subscribe-section .mailpoet_form .mailpoet_submit {
		height: 38px !important;
		padding: 0 20px !important;
		font-size: 12px !important;
	}
	
	.subscribe-section #mailpoet_form_1 .mailpoet_message {
		font-size: 14px;
	}
}

/* 小屏手机 - Small Mobile */
@media (max-width: 480px) {
	/* Banner 横幅 */
	.primary-banner {
		border-radius: 8px;
		margin-bottom: 22px;
	}
	
	.primary-banner-content {
		padding: 24px 12px;
		gap: 18px;
	}
	
	.primary-banner-left h1 {
		font-size: 24px;
		margin-bottom: 10px;
	}
	
	.primary-banner-tag {
		font-size: 12px;
		margin-bottom: 5px;
	}
	
	.primary-banner-price {
		font-size: 12px;
		margin-bottom: 3px;
	}
	
	.primary-banner-bigprice {
		font-size: 28px;
		margin-bottom: 10px;
	}
	
	.primary-banner-btn {
		padding: 6px 18px;
		font-size: 10px;
	}
	
	.primary-banner-right img {
		max-height: 200px;
	}
	
	.banner-swiper .swiper-button-prev,
	.banner-swiper .swiper-button-next {
		width: 30px;
		height: 30px;
	}
	
	.banner-swiper .swiper-button-prev::after,
	.banner-swiper .swiper-button-next::after {
		font-size: 12px;
	}
	
	.banner-swiper .swiper-pagination {
		bottom: 8px;
	}
	
	.banner-swiper .swiper-pagination-bullet {
		width: 7px;
		height: 7px;
	}
	
	.banner-swiper .swiper-pagination-bullet-active {
		width: 20px;
	}
	
	/* Sections */
	.section-spacing {
		margin-bottom: 22px;
	}
	
	.section-title {
		font-size: 17px;
		margin-bottom: 14px;
	}
	
	.section-subtitle {
		font-size: 11px;
		margin-bottom: 18px;
	}
	
	/* Products 产品 */
	.products-row {
		gap: 6px;
	}
	
	.tab-button {
		width: 92px;
		height: 32px;
		font-size: 10px;
	}
	
	.tabs-nav {
		gap: 4px;
		margin-bottom: 18px;
	}
	
	/* Categories 分类 */
	.categories-circles {
		gap: 10px;
	}
	
	.circle-img {
		width: 75px;
		height: 75px;
		margin-bottom: 6px;
	}
	
	.circle-name {
		font-size: 10px;
		margin-bottom: 3px;
	}
	
	.circle-count {
		font-size: 9px;
	}
	
	/* Nicotine Banner */
	.nicotine-section {
		margin-bottom: 22px;
	}
	
	.nicotine-text {
		padding: 14px;
	}
	
	.nicotine-text h2 {
		font-size: 18px;
		margin-bottom: 3px;
	}
	
	.nicotine-text h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}
	
	.nicotine-price {
		font-size: 12px;
		padding: 2px 8px;
		margin-bottom: 5px;
	}
	
	.nicotine-btn {
		padding: 5px 12px;
		font-size: 10px;
	}
	
	/* Brands 品牌 */
	.brands-bar {
		padding: 20px 0;
		margin-bottom: 22px;
	}
	
	.brands-title {
		font-size: 17px;
		margin-bottom: 14px;
	}
	
	.brands-swiper {
		padding: 10px 0;
	}
	
	.brand-logo {
		max-height: 50px;
	}
	
	/* Text + Image Section */
	.textimg-section,
	.why-choose-content {
		gap: 20px;
		padding: 24px 14px;
		margin-bottom: 22px;
	}
	
	.textimg-left h2,
	.why-choose-title {
		font-size: 18px;
		margin-bottom: 5px;
	}
	
	.textimg-left h3,
	.why-choose-subtitle {
		font-size: 14px;
		margin-bottom: 6px;
	}
	
	.textimg-left p,
	.why-choose-description {
		font-size: 11px;
		line-height: 17px;
		margin-bottom: 10px;
	}
	
	.textimg-btn,
	.why-choose-btn {
		padding: 7px 18px;
		font-size: 10px;
	}
	
	.why-choose-features {
		margin: 0 0 18px 0;
	}
	
	.why-choose-features li {
		gap: 6px;
		margin-bottom: 8px;
	}
	
	.feature-icon-wrapper {
		width: 22px;
		height: 22px;
		border-radius: 22px;
	}
	
	.feature-icon {
		width: 9px;
		height: 9px;
	}
	
	.why-choose-features span {
		font-size: 11px;
	}
	
	/* Shops & Guides */
	.shops-search-box {
		margin-bottom: 18px;
		gap: 6px;
	}
	
	.search-input-wrapper {
		height: 36px;
		padding: 0 12px;
		border-radius: 32px;
	}
	
	.search-location-icon {
		width: 14px;
		height: 14px;
		margin-right: 5px;
	}
	
	.shops-search-btn {
		height: 36px;
		padding: 0 24px;
		font-size: 11px;
		border-radius: 32px;
	}
	
	.shops-row,
	.guide-row {
		gap: 8px;
	}
	
	.shop-image,
	.guide-image {
		height: 180px;
		margin-bottom: 8px;
	}
	
	.shop-details {
		padding-top: 10px;
	}
	
	.shop-title {
		font-size: 11px;
		margin-bottom: 4px;
	}
	
	.shop-type,
	.shop-address {
		font-size: 10px;
	}
	
	.guide-card h3 {
		font-size: 11px;
		margin-bottom: 5px;
		min-height: 28px;
	}
	
	.guide-card p {
		font-size: 11px;
		margin-bottom: 5px;
	}
	
	.guide-link {
		font-size: 11px;
		padding-bottom: 4px;
	}
	
	.guide-actions {
		margin-top: 20px;
	}
	
	.guide-load-more {
		padding: 10px 28px;
		font-size: 11px;
	}
	
	/* FAQ */
	.faq-q {
		padding: 10px 12px;
		font-size: 11px;
	}
	
	.faq-q:after {
		font-size: 14px;
	}
	
	.faq-block.open .faq-q:after {
		font-size: 28px;
	}
	
	.faq-block.open .faq-a {
		padding: 10px 12px;
		font-size: 11px;
		line-height: 18px;
	}
	
	/* Subscribe */
	.subscribe-section {
		padding: 16px 0;
	}
	
	.subscribe-content {
		gap: 14px;
	}
	
	.subscribe-left h3 {
		font-size: 15px;
	}
	
	.subscribe-left p {
		font-size: 11px;
	}
	
	.subscribe-section .mailpoet_form form {
		gap: 8px;
		padding: 14px 0 !important;
	}
	
	.subscribe-section .mailpoet_form input[type="email"] {
		height: 36px !important;
		font-size: 11px !important;
		padding: 0 12px !important;
	}
	
	.subscribe-section .mailpoet_form .mailpoet_submit {
		height: 36px !important;
		padding: 0 18px !important;
		font-size: 11px !important;
	}
	
	.subscribe-section #mailpoet_form_1 .mailpoet_message {
		font-size: 13px;
	}
}

/* 超小屏手机 - Extra Small Mobile */
@media (max-width: 375px) {
	/* Banner 横幅 */
	.primary-banner {
		border-radius: 6px;
		margin-bottom: 20px;
	}
	
	.primary-banner-content {
		padding: 20px 10px;
		gap: 15px;
	}
	
	.primary-banner-left h1 {
		font-size: 22px;
		margin-bottom: 8px;
	}
	
	.primary-banner-tag {
		font-size: 11px;
		margin-bottom: 4px;
	}
	
	.primary-banner-price {
		font-size: 11px;
		margin-bottom: 2px;
	}
	
	.primary-banner-bigprice {
		font-size: 26px;
		margin-bottom: 8px;
	}
	
	.primary-banner-btn {
		padding: 5px 16px;
		font-size: 9px;
	}
	
	.primary-banner-right img {
		max-height: 180px;
	}
	
	.banner-swiper .swiper-button-prev,
	.banner-swiper .swiper-button-next {
		width: 28px;
		height: 28px;
	}
	
	.banner-swiper .swiper-button-prev::after,
	.banner-swiper .swiper-button-next::after {
		font-size: 11px;
	}
	
	.banner-swiper .swiper-pagination {
		bottom: 6px;
	}
	
	.banner-swiper .swiper-pagination-bullet {
		width: 6px;
		height: 6px;
	}
	
	.banner-swiper .swiper-pagination-bullet-active {
		width: 18px;
	}
	
	/* Sections */
	.section-spacing {
		margin-bottom: 20px;
	}
	
	.section-title {
		font-size: 16px;
		margin-bottom: 12px;
	}
	
	.section-subtitle {
		font-size: 10px;
		margin-bottom: 16px;
	}
	
	/* Products 产品 */
	.products-row {
		gap: 5px;
	}
	
	.tab-button {
		width: 86px;
		height: 30px;
		font-size: 9px;
	}
	
	.tabs-nav {
		gap: 3px;
		margin-bottom: 16px;
	}
	
	/* Categories 分类 */
	.categories-circles {
		gap: 8px;
	}
	
	.circle-img {
		width: 68px;
		height: 68px;
		margin-bottom: 5px;
	}
	
	.circle-name {
		font-size: 9px;
		margin-bottom: 2px;
	}
	
	.circle-count {
		font-size: 8px;
	}
	
	/* Nicotine Banner */
	.nicotine-section {
		margin-bottom: 20px;
	}
	
	.nicotine-text {
		padding: 12px;
	}
	
	.nicotine-text h2 {
		font-size: 16px;
		margin-bottom: 2px;
	}
	
	.nicotine-text h3 {
		font-size: 16px;
		margin-bottom: 4px;
	}
	
	.nicotine-price {
		font-size: 11px;
		padding: 1px 6px;
		margin-bottom: 4px;
	}
	
	.nicotine-btn {
		padding: 4px 10px;
		font-size: 9px;
	}
	
	/* Brands 品牌 */
	.brands-bar {
		padding: 18px 0;
		margin-bottom: 20px;
	}
	
	.brands-title {
		font-size: 16px;
		margin-bottom: 12px;
	}
	
	.brands-swiper {
		padding: 8px 0;
	}
	
	.brand-logo {
		max-height: 44px;
	}
	
	/* Text + Image Section */
	.textimg-section,
	.why-choose-content {
		gap: 18px;
		padding: 20px 12px;
		margin-bottom: 20px;
	}
	
	.textimg-left h2,
	.why-choose-title {
		font-size: 16px;
		margin-bottom: 4px;
	}
	
	.textimg-left h3,
	.why-choose-subtitle {
		font-size: 13px;
		margin-bottom: 5px;
	}
	
	.textimg-left p,
	.why-choose-description {
		font-size: 10px;
		line-height: 16px;
		margin-bottom: 8px;
	}
	
	.textimg-btn,
	.why-choose-btn {
		padding: 6px 16px;
		font-size: 9px;
		border-radius: 4px;
	}
	
	.why-choose-features {
		margin: 0 0 16px 0;
	}
	
	.why-choose-features li {
		gap: 5px;
		margin-bottom: 6px;
	}
	
	.feature-icon-wrapper {
		width: 20px;
		height: 20px;
		border-radius: 20px;
	}
	
	.feature-icon {
		width: 8px;
		height: 8px;
	}
	
	.why-choose-features span {
		font-size: 10px;
		line-height: 2.4;
	}
	
	/* Shops & Guides */
	.shops-search-box {
		margin-bottom: 16px;
		gap: 5px;
	}
	
	.search-input-wrapper {
		height: 34px;
		padding: 0 10px;
		border-radius: 30px;
	}
	
	.search-location-icon {
		width: 12px;
		height: 12px;
		margin-right: 4px;
	}
	
	.shops-search-btn {
		height: 34px;
		padding: 0 20px;
		font-size: 10px;
		border-radius: 30px;
	}
	
	.shops-row,
	.guide-row {
		gap: 6px;
	}
	
	.shop-item,
	.guide-card {
		padding: 0 3px;
	}
	
	.shop-image,
	.guide-image {
		height: 160px;
		margin-bottom: 6px;
	}
	
	.shop-details {
		padding-top: 8px;
	}
	
	.shop-title {
		font-size: 10px;
		margin-bottom: 3px;
	}
	
	.shop-type,
	.shop-address {
		font-size: 9px;
		line-height: 1.2;
		margin-bottom: 4px;
	}
	
	.guide-card h3 {
		font-size: 10px;
		margin-bottom: 4px;
		min-height: 26px;
	}
	
	.guide-card p {
		font-size: 10px;
		margin-bottom: 4px;
		line-height: 1.3;
	}
	
	.guide-link {
		font-size: 10px;
		padding-bottom: 3px;
	}
	
	.guide-actions {
		margin-top: 18px;
	}
	
	.guide-load-more {
		padding: 9px 24px;
		font-size: 10px;
		letter-spacing: 0.5px;
	}
	
	/* FAQ */
	.faq-q {
		padding: 8px 10px;
		font-size: 10px;
		line-height: 0.4;
	}
	
	.faq-q:after {
		font-size: 13px;
	}
	
	.faq-block.open .faq-q:after {
		font-size: 26px;
	}
	
	.faq-block.open .faq-a {
		padding: 8px 10px;
		font-size: 10px;
		line-height: 17px;
	}
	
	/* Subscribe */
	.subscribe-section {
		padding: 14px 0;
	}
	
	.subscribe-content {
		gap: 12px;
	}
	
	.subscribe-left h3 {
		font-size: 14px;
	}
	
	.subscribe-left p {
		font-size: 10px;
	}
	
	.subscribe-section .mailpoet_form form {
		gap: 6px;
		padding: 12px 0 !important;
	}
	
	.subscribe-section .mailpoet_form input[type="email"] {
		height: 34px !important;
		font-size: 10px !important;
		padding: 0 10px !important;
	}
	
	.subscribe-section .mailpoet_form .mailpoet_submit {
		height: 34px !important;
		padding: 0 16px !important;
		font-size: 10px !important;
	}
	
	.subscribe-section #mailpoet_form_1 .mailpoet_message {
		font-size: 12px;
	}
}

