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

/* Banner Swiper Styles */
.banner-swiper {
	width: 100%;
	height: auto;
	transform: translateZ(0);
	-webkit-transform: translateZ(0);
}

.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;
}

/* Primary Banner Content */
.primary-banner-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px;
	padding: 0;
	/* min-height: 600px;  */
	/* Default, can be overridden by inline style from theme customizer */
    margin: 0 auto;
}

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

.category-grid{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	place-items: center;
	gap: 0;
	padding: 0;
	align-items: center;
	justify-content: space-between;
	flex-shrink: 0;
	width: 100%;
}
.category-grid img{
	transition: all 0.3s ease;
}

.category-grid img:hover{
	transform: scale(1.05);
}
.category-card {
	display: flex;
	flex-direction: column;
	gap: 19px;
	align-items: center;
	justify-content: flex-end;
	flex-shrink: 0;
	height: 630px;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
/* Category card backgrounds are now set via WordPress Customizer (inline styles) */
a.category-card {
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
a.category-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.primary-banner-tag {
	font-size: 20px;
	font-weight: 800;
	margin-bottom: 20px;
	display: block;
	text-transform: capitalize;
	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-price {
	font-size: 20px;
	margin-bottom: 20px;
	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: 60px;
	font-weight: 900;
	margin-bottom: 30px;
	color: #FFCE00;
	line-height: 1;
	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(--dark);
	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(--dark);
	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%;
}

/* When only image is shown (no text) */
.primary-banner-content.banner-image-only {
	justify-content: center;
}

.primary-banner-content.banner-image-only .primary-banner-right {
	position: relative;
	right: auto;
	top: auto;
	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;
}

/* Primary Banner */
.primary-banner {
	position: relative;
	overflow: hidden;
	padding: 0;
    margin: 0 auto;
}

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

 /* Product Swiper Styles */
 .product-swiper-container {
	width: 100%;
	position: relative;
	padding: 0 60px;
 }
 
 .product-swiper-container .swiper {
	width: 100%;
	overflow: hidden;
 }
 
 .product-swiper-container .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: flex-start;
 }
 
 /* Hide navigation buttons by default */
 .product-swiper-button-prev,
 .product-swiper-button-next {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	width: 50px;
	height: 50px;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	color: #fff;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
 }
 
 .product-swiper-button-prev::after,
 .product-swiper-button-next::after {
	font-size: 20px;
	font-weight: bold;
 }
 
 .product-swiper-button-prev {
	left: 0;
 }
 
 .product-swiper-button-next {
	right: 0;
 }
 
 /* Show navigation buttons on hover */
 .product-swiper-container:hover .product-swiper-button-prev,
 .product-swiper-container:hover .product-swiper-button-next {
	opacity: 1;
	visibility: visible;
 }
 
 .product-swiper-button-prev:hover,
 .product-swiper-button-next:hover {
	background: rgba(0, 0, 0, 0.8);
 }
 
 /* Disabled state */
 .product-swiper-button-prev.swiper-button-disabled,
 .product-swiper-button-next.swiper-button-disabled {
	opacity: 0.3;
	cursor: not-allowed;
 }
 
 /* Responsive adjustments for product swiper */
 @media (max-width: 1280px) {
	.product-swiper-container {
		padding: 0 50px;
	}
	.product-swiper-button-prev,
	.product-swiper-button-next {
		width: 45px;
		height: 45px;
	}
 }
 
 @media (max-width: 768px) {
	.product-swiper-container {
		padding: 0 40px;
	}
	.product-swiper-button-prev,
	.product-swiper-button-next {
		width: 40px;
		height: 40px;
	}
	.product-swiper-button-prev::after,
	.product-swiper-button-next::after {
		font-size: 16px;
	}
 }
 
 @media (max-width: 640px) {
	.product-swiper-container {
		padding: 0 35px;
	}
	.product-swiper-button-prev,
	.product-swiper-button-next {
		width: 35px;
		height: 35px;
	}
	/* Always show arrows on mobile */
	.product-swiper-button-prev,
	.product-swiper-button-next {
		opacity: 0.7;
		visibility: visible;
	}
 }
.search-section {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
	justify-content: flex-start;
	flex-shrink: 0;
	width: 850px;
	position: relative;
}
.search-heading {
	color: #000000;
	text-align: center;
		font-size: var(--h3-font-size, 30px);
	font-weight: var(--h3-font-weight, 700);
	position: relative;
	align-self: stretch;
}
.search-bar-container {
	display: flex;
	flex-direction: row;
	gap: 0px;
	align-items: center;
	justify-content: center;
	align-self: stretch;
	flex-shrink: 0;
	height: 56px;
	position: relative;
}
.search-input-wrapper {
	background: var(--bramd-promary, #b7ff00);
	padding: 17px 20px 17px 20px;
	display: flex;
	flex-direction: row;
	gap: 10px;
	align-items: center;
	justify-content: flex-start;
	flex: 1;
	position: relative;
}
.search-placeholder {
	color: #000000;
	text-align: center;
		font-size: var(--boby-bold-font-size, 16px);
	line-height: var(--boby-bold-line-height, 22px);
	font-weight: var(--boby-bold-font-weight, 600);
	position: relative;
	width: 182px;
}
.search-button-icon {
	display: flex;
	flex-direction: row;
	gap: 10px;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	position: relative;
	overflow: visible;
}
.featured-products-section {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	flex-shrink: 0;
	width: 100%;
	max-width: 1680px;
	position: relative;
	margin: 70px auto;
	gap: 20px;
}
.featured-banners-container {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	align-self: stretch;
	flex-shrink: 0;
	width: 50%;
	position: relative;
	gap: 20px;
	overflow: hidden;
}
.featured-banner {
	padding: 50px;
	display: flex;
	flex-direction: column;
	gap: 39px;
	align-items: flex-start;
	justify-content: center;
	align-self: stretch;
	flex-shrink: 0;
	height: 400px;
	position: relative;
	overflow: hidden;
}
.banner-clickable {
	cursor: pointer;
	display: block;
	text-decoration: none;
}

img.featured-image-bg {
	transition: transform 0.3s ease, opacity 0.9s ease;
}
img.featured-image-bg:hover {
	transform: scale(1.02);
	opacity: 0.95;
}
.featured-banner .featured-image-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
.featured-product-image-container {
	width: 50%;
	height: 820px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	overflow: hidden;
}
.featured-product-image-container .featured-image-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
.banner-content {
	display: flex;
	flex-direction: column;
	gap: 5px;
	align-items: flex-start;
	justify-content: flex-start;
	align-self: stretch;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}
.featured-product-image-container .banner-content {
	padding: 29px;
    width: 50%;
    padding-top: 190px;
    align-items: flex-start;
    text-align: left;
}
.featured-product-image-container .banner-subtitle,
.featured-product-image-container .banner-title {
	text-align: left;
    align-self: start;
    font-size: 50px;
}
.banner-subtitle {
	color: var(--bg, #ffffff);
	text-align: left;
		font-size: 24px;
	line-height: 30px;
	font-weight: 600;
	text-transform: uppercase;
	position: relative;
	align-self: stretch;
	margin-bottom: 6px
}
.banner-title {
	color: var(--bg, #ffffff);
	text-align: left;
		font-size: var(--h1-font-size, 56px);
	font-weight: var(--h1-font-weight, 700);
	position: relative;
	align-self: stretch;
	margin-bottom: 10px;
    line-height: 1;
}
.fans-community-section {
	/* background: var(--bg2, #f2f4f4); */
	padding-top: 70px;
	display: flex;
	flex-direction: column;
	gap: 41px;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 100%;
	position: relative;
}
.community-title {
	color: #000000;
	text-align: center;
		font-size: var(--h1-font-size, 56px);
	font-weight: var(--h1-font-weight, 700);
	position: relative;
	align-self: stretch;
}
.community-description {
	color: #000000;
	text-align: center;
		font-size: 20px;
	font-weight: 500;
	font-style: italic;
	position: relative;
}
.community-gallery {
	display: flex;
	flex-direction: row;
	gap: 30px;
	align-items: center;
	justify-content: center;
	align-self: stretch;
	flex-shrink: 0;
	position: relative;
}
.gallery-item {
	position: relative;
	overflow: hidden;
	/* aspect-ratio: 1; */
	max-width: 25%;
}
.gallery-link {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	text-decoration: none;
	overflow: hidden;
}
.gallery-image {
	width: 100%;
	height: 457.5px;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}
.gallery-link:hover .gallery-image {
	transform: scale(1.05);
}
.gallery-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
	padding: 20px;
	color: #ffffff;
	transition: transform 0.3s ease;
}
.gallery-link:hover .gallery-overlay {
	transform: scale(1.02);
}
.gallery-date {
	font-size: 12px;
	opacity: 0.9;
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.gallery-title {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}


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

@media (max-width: 1740px) {
	.category-grid{
		grid-template-columns: repeat(3, 1fr);
		gap:40px;
		position: relative;
	}
	.category-card{
		width: 410px;
	}
}
/* 大屏优化 - Large Desktop */
@media (max-width: 1400px) {
	.featured-products-section {
		padding: 0 20px;
	}
	
	.featured-banner {
		padding: 40px;
		height: 350px;
	}
	
	.featured-product-image-container {
		height: 720px;
	}
	
	.banner-subtitle {
		font-size: 20px;
	}
	
	.banner-title {
		font-size: 48px;
	}
	
	.brand-story-text {
		font-size: 32px;
	}
	
	.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;
	}
	
}

/* 笔记本 - Laptop */
@media (max-width: 1200px) {
	/* Banner 横幅 */
	.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;
	}
	.category-grid{
		grid-template-columns: repeat(2, 1fr);
	}
	
}

/* 平板横屏 - Tablet Landscape */
@media (max-width: 1024px) {
	.featured-products-section {
		flex-direction: column;
		margin: 50px auto;
	}
	
	.featured-banners-container {
		width: 100%;
		flex-direction: row;
	}
	
	.featured-banner {
		width: 50%;
		height: 300px;
		padding: 30px;
	}
	
	.featured-product-image-container {
		width: 100%;
		height: 600px;
	}
	
	.banner-subtitle {
		font-size: 18px;
		line-height: 24px;
	}
	
	.banner-title {
		font-size: 40px;
	}
	
	.brand-story-text {
		font-size: 28px;
	}
	
	/* Community Section */
	.community-gallery {
		gap: 20px;
	}
	
	.gallery-image {
		height: 350px;
	}
	
	/* Banner 横幅 */
	.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;
	}
}

/* 平板竖屏 - Tablet Portrait */
@media (max-width: 992px) {
	/* Banner 横幅 */
	.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;
	}
	
	.category-grid{
		grid-template-columns: repeat(1, 1fr);
	}
}

/* 手机横屏 & 大屏手机 - Mobile Landscape & Large Phone */
@media (max-width: 768px) {
	.featured-products-section {
		margin: 40px auto;
	}
	
	.featured-banners-container {
		flex-direction: column;
	}
	
	.featured-banner {
		width: 100%;
		height: 250px;
		padding: 25px;
	}
	
	.featured-product-image-container {
		height: 500px;
	}
	
	.featured-product-image-container .banner-content {
		padding: 30px;
	}
	
	.banner-subtitle {
		font-size: 16px;
		line-height: 20px;
	}
	
	.banner-title {
		font-size: 32px;
	}
	
	.cta-text {
		padding: 8px 40px;
		height: 40px;
		font-size: 14px;
	}
	
	.brand-story-text {
		font-size: 24px;
		padding: 0 15px;
	}
	
	.brand-story-section {
		padding: 50px 20px;
	}
	
	/* Community Section */
	.community-title {
		font-size: 40px;
	}
	
	.community-description {
		font-size: 16px;
		padding: 0 20px;
	}
	
	.community-gallery {
		flex-wrap: wrap;
		gap: 15px;
		padding: 0 15px;
	}
	
	.gallery-item {
		max-width: calc(50% - 7.5px);
	}
	
	.gallery-image {
		height: 280px;
	}
	
	.gallery-overlay {
		padding: 15px;
	}
	
	.gallery-date {
		font-size: 11px;
		margin-bottom: 6px;
	}
	
	.gallery-title {
		font-size: 14px;
	}
	
	/* Banner 横幅 - 移动端垂直布局 */
	.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;
	}
	
}

/* 手机竖屏 - Mobile Portrait */
@media (max-width: 576px) {
	/* Banner 横幅 */
	.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;
	}
	
	/* Community Section */
	.community-title {
		font-size: 32px;
	}
	
	.community-description {
		font-size: 14px;
	}
	
	.community-gallery {
		gap: 12px;
	}
	
	.gallery-item {
		max-width: calc(50% - 6px);
	}
	
	.gallery-image {
		height: 240px;
	}
	
	.gallery-overlay {
		padding: 12px;
	}
	
	.gallery-date {
		font-size: 10px;
		margin-bottom: 5px;
	}
	
	.gallery-title {
		font-size: 13px;
		-webkit-line-clamp: 2;
	}
	.category-card{
		width: 100%;
	}
}

/* 小屏手机 - Small Mobile */
@media (max-width: 480px) {
	/* Banner 横幅 */
	.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;
	}
	
	/* Community Section */
	.community-title {
		font-size: 28px;
	}
	
	.community-description {
		font-size: 13px;
		padding: 0 15px;
	}
	
	.community-gallery {
		gap: 10px;
		padding: 0 10px;
	}
	
	.gallery-item {
		max-width: calc(50% - 5px);
	}
	
	.gallery-image {
		height: 200px;
	}
	
	.gallery-overlay {
		padding: 10px;
	}
	
	.gallery-date {
		font-size: 9px;
		margin-bottom: 4px;
	}
	
	.gallery-title {
		font-size: 12px;
	}
	
}

/* 超小屏手机 - Extra Small Mobile */
@media (max-width: 375px) {
	/* Banner 横幅 */
	.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;
	}
	
}

