@font-face {
	font-family: 'SweiSpringCJKtc-Regular';
	src: url(https://cdn.jsdelivr.net/gh/max32002/swei-spring@1.068/WebFont/CJK%20TC/SweiSpringCJKtc-Regular.woff2) format("woff2")
	, url(https://cdn.jsdelivr.net/gh/max32002/swei-spring@1.068/WebFont/CJK%20TC/SweiSpringCJKtc-Regular.woff) format("woff");
  }
img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
body {
	font-family: Microsoft JhengHei;
	background-image: url(../images/bg.jpg);
	background-size: cover; 
	box-sizing: content-box;
	background-attachment: fixed;
}
.desktop{
	display: block;
}
.mobile{
	display: none;
}
@keyframes fadeIn {
    0% {
        opacity: 0; /* 初始透明度 */
    }
    100% {
        opacity: 1; /* 最終透明度 */
    }
}
@keyframes float {
    0% {
        transform: translateY(0); /* 初始位置 */
    }
    50% {
        transform: translateY(-10px); /* 向上漂浮 */
    }
    100% {
        transform: translateY(0); /* 回到初始位置 */
    }
}
.kv_wrap {
	position: relative;
	top: 105px;
	display: inline-block;
	width: 100%;
}
.kv_wrap .item01 {
    width: 38%;
    height: auto;
	margin: 0 auto;
	display: block;
	animation: fadeIn 1s ease-in-out 0s 1; /* 動畫名稱、持續時間、延遲、播放次數 */
}
.kv_wrap .item02 {
	width: 50%;
	height: auto;
	margin: 5% auto 0;
	display: block;
	animation-delay: 0.8s;
	animation: fadeIn 2s ease-in-out 0s 1; /* 動畫名稱、持續時間、延遲、播放次數 */
}
.kv_wrap .item03 {
	width: 20%;
	height: auto;
	top: -17%;
	left: 0;
	display: block;
	position: absolute;
	animation: float 2s ease-in-out 0.1s infinite; /* 動畫名稱、持續時間、緩動效果、無限重複 */
}
.kv_wrap .item04 {
	width: 20%;
	height: auto;
	top: 60%;
	left: 0;
	display: block;
	position: absolute;
	animation: float 2s ease-in-out 0.3s infinite; /* 動畫名稱、持續時間、緩動效果、無限重複 */
}
.kv_wrap .item05 {
	width: 20%;
	height: auto;
	top: 25%;
	left: 12%;
	display: block;
	position: absolute;
	animation: float 2s ease-in-out 0.6s infinite; /* 動畫名稱、持續時間、緩動效果、無限重複 */
}
.kv_wrap .item06 {
	width: 16%;
	height: auto;
	top: -15%;
	right: 15%;
	display: block;
	position: absolute;
	animation: float 2s ease-in-out 0.1s infinite; /* 動畫名稱、持續時間、緩動效果、無限重複 */
}
.kv_wrap .item07 {
	width: 16%;
	height: auto;
	top: 38%;
	right: 18%;
	display: block;
	position: absolute;
	animation: float 2s ease-in-out 0.3s infinite; /* 動畫名稱、持續時間、緩動效果、無限重複 */
}
.kv_wrap .item08 {
	width: 20%;
	height: auto;
	top: -18%;
	right: 0;
	display: block;
	position: absolute;
	animation: float 2s ease-in-out 0.6s infinite; /* 動畫名稱、持續時間、緩動效果、無限重複 */
}
.kv_wrap .item09 {
	width: 25%;
	height: auto;
	top: 65%;
	right: 5%;
	display: block;
	position: absolute;
	animation: float 2s ease-in-out 0.9s infinite; /* 動畫名稱、持續時間、緩動效果、無限重複 */
}
.section_title {
	width: 80%;
	margin: 3rem auto;
	overflow: hidden;
}
.section_title h1{
	font-style: italic;
	font-family: 'SweiSpringCJKtc-Regular';
	font-weight: 600;
	letter-spacing: 0;
	font-size: 4rem;
	line-height: 1.15;
	letter-spacing: -0.1rem;
	text-align: center; 
	color: #dfceb7;
	text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2); /* 添加陰影效果 */
}
.section_title p{
    position: relative;
    letter-spacing: 1px;
    border-radius: 5rem;
    font-size: 1.5rem;
    display: inline-block;
    width: fit-content;
    padding: 10px 30px;
	margin-top: 1.5rem;
	border: #dfceb7 2px solid;
}
.section_title b {
	color: #fff;
	margin: 0 0.3rem 0;
}
.section_title span {
	color: #fff;
	font-size: 2rem;
	margin: 0 0 0 0.5rem;
}
.section_title p::before {
	content: '';
	top: 20px;
	left: -101%;
	position: absolute;
	border: #dfceb7 1px solid;
	width: 100%;
}
.section_title p::after {
	content: '';
	top: 20px;
	right: -101%;
	position: absolute;
	border: #dfceb7 1px solid;
	width: 100%;
}

/* 商品卡定義 */
.price-container {
    display: flex; /* 使用 Flexbox 來排列子元素 */
    align-items: center; /* 垂直居中對齊 */
}

.productname-label {
	color: #000;
	font-weight: 600;
	font-size: 1.3rem;
	margin-bottom: 0.6rem;
}

.product-tag {
	font-size: 1.5rem;
	letter-spacing: -0.05rem;
	font-weight: 600;
    display: inline-block; /* 使元素能夠旋轉 */
	background-image: linear-gradient(to right, #b8cbb8 0%, #b8cbb8 0%, #b465da 0%, #cf6cc9 33%, #ee609c 66%, #ee609c 100%);
    color: #fff; /* 文字顏色 */
    padding: 1rem 1.6rem; /* 內邊距 */
    border-radius: 0 0 2rem 2rem; /* 圓角 */
    position: absolute; 
    top: -6%; /* 調整位置 */
}

.brand-label {
	color: #fff;
	background-color: #000;
	font-size: 1rem;
	padding: 0.4rem 0.8rem;
	margin: 0.8rem;
	border-radius: 5rem;
}

.full-price-label {
    text-decoration: line-through;
    color: gray;
    font-size: 1rem; /* 設置原價的字體大小 */
    margin-right: 0.3rem; /* 添加右邊距以分開原價和特價 */
}

.sale-price-label {
    color: #c6264c;
    font-weight: bold;
    font-size: 1.8rem; /* 設置特價的字體大小，為原價的兩倍 */
	letter-spacing: -0.1rem;
    font-style: italic;
}

.shadowFx{
	box-shadow: 0 30px 5px -15px rgb(0, 0, 0, 0.3);
}
.boxFx {
	filter: contrast(98%);
	transition: all 0.3s;
}
.boxFx:hover {
	filter: contrast(110%);
	transform: scale(0.99); /* 添加縮小效果 */
	transition: all 0.1s; /* 可以根據需要調整時間 */
}
.Box_bg{
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1000' height='1000'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.005 0.3' numOctaves='2' stitchTiles='stitch'/><feGaussianBlur stdDeviation='0.3'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='1' /></svg>"), linear-gradient(45deg, #cfbca1, #fdf3e7, #cfbca1);
	background-blend-mode: soft-light;
	background-size: cover;
	background-repeat: no-repeat;
    padding: 10px; /* 可選：內邊距 */
}
.shop-more-wrapper {
	text-align: center;
	margin: 3rem 0 0;
}
.shop-more-btn {
	display: inline-block;
	background: #d7bf9d;
	color: #1D2D45;
	font-size: 1.3rem;
	padding: 1rem 1.5rem;
	text-decoration: none;
	letter-spacing: -0.03rem;
	font-weight: bolder;
	transition: background 0.2s, transform 0.3s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s;
	box-shadow: 0 2px 8px rgba(246,112,171,0.15);
}
.shop-more-btn::after{    
	margin-left: 1rem;
	display: inline-block;
    font: 25px FontAwesome;
	content: "\f0da";
}
.shop-more-btn:hover {
	transform: translateY(-8px) scale(1.05);
	box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}
.eventContainer{
	max-width: 1320px;
	margin: 0 auto;
	padding: 2rem 0 5rem;
	align-content: center;
}
.flex-container{
	display: flex;
	flex-wrap: wrap; /* 允許換行 */
	justify-content: center; 
}
.flexBox{
	width: 30%; 
	margin: 0.6rem;
	box-sizing: border-box;
	overflow: hidden;
}
.section-subheader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}
.section-title-image img {
    height: auto;
    width: fit-content;
}
.btn-shop-more {
	letter-spacing: -0.05rem;
    padding: 10px 25px 10px 15px; /* 調整左邊距以容納三角形icon */
    background-color: #000;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 0.6rem;
    white-space: nowrap;
    transition: background-color 0.3s;
    position: relative; /* 為了讓三角形icon能夠正確定位 */
}
.btn-shop-more::after {
    content: '';
    position: absolute;
    right: 8px; /* 調整三角形icon的位置 */
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #fff; /* 三角形icon的樣式 */
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.btn-shop-more:hover {
    background-color: #333;
}
.discountBlock{
	margin-top: 10%;
}
.discountBlock .title{
	color: #000;
	font-weight: bolder;
	font-size: 1.2rem;
	letter-spacing: 0;
	width: 100%;
	padding: 1.5rem 0;
	text-align: center;
	border-bottom: 1px solid #000;
}

.discountBlock p{
	margin: 1.2rem 0;
	line-height: 2.6rem;
	text-align: center;
	font-weight: bolder;
	font-size: 2rem;
}
.discountBlock p span{
	font-size: 1rem;
	letter-spacing: -0.05rem;
	margin: 0 0.1rem;
}
.discountBlock b {
	line-height: 1.3;
	font-family: 'SweiSpringCJKtc-Regular';
	color: #c6264c;
	font-size: 2.2rem;
	letter-spacing: -0.05rem;
	margin: 1rem 0.3rem 0 0;
	font-style: italic;
}
.mensFragranceBlock .productImg{
	object-fit: contain;
	margin:  0 2%;
	box-sizing: border-box;
}
.grid-container{
	display: grid;
	gap: 1.2rem; /* 設定格子之間的間距 */
	align-items: stretch; /* 讓列高度相等，並以最高者為基準 */
}
.grid-container img{
	object-fit: cover;
}
.mensFragranceBlock .gridBox{
	position: relative;
	overflow: hidden;
	background-color: #fff;
	text-align: center;
}

.mensFragranceBlock .productname-label {
	margin-bottom: 1.5rem;
}

.mensFragranceBlock .grid-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-areas:
	  "item01 item01 item04 item04"
	  "item02 item03 item05 item06";
	margin: 0 auto;
  }
  
.mensFragranceBlock .grid-container .item01 { grid-area: item01; }
.mensFragranceBlock .grid-container .item02   { grid-area: item02; }
.mensFragranceBlock .grid-container .item03    { grid-area: item03; }
.mensFragranceBlock .grid-container .item04   { grid-area: item04; }
.mensFragranceBlock .grid-container .item05   { grid-area: item05; }
.mensFragranceBlock .grid-container .item06   { grid-area: item06; }

.tab-container {
    display: flex; /* 使用 Flexbox */
    justify-content: center; /* 水平置中 */
    margin: 0 0 30px; /* 可選：添加上下邊距 */
}

.tab-button {
	letter-spacing: 0.05rem;
	transform: skewX(-20deg); /* 斜切20度 */
	border: #d7bf9d 1px solid;
	background: transparent;
	color: #d7bf9d;
    font-size: 1.5rem;
    padding: 10px 20px; /* 按鈕內邊距 */
    cursor: pointer; /* 鼠標懸停時顯示手型 */
    margin: 0 8px; /* 按鈕之間的間距 */
    transition: box-shadow 0.1s, transform 0.1s; /* 添加過渡效果 */
}

.tab-button:hover {
    transform: skewX(-20deg) translateY(-6px); /* 斜切20度並向上移動3px */
}

.tab-button.active {
	font-family: 'SweiSpringCJKtc-Regular';
	font-weight: bolder;
	color: #1D2D45;
	border: none;
	background: linear-gradient(45deg, #d7bf9d, #fdf3e7);
	transform: skewX(-20deg) translateY(-10px); /* 斜切20度並向上移動3px */
	position: relative; /* 為偽元素定位提供參考 */
}

.tab-button.active::after {
	content: ''; /* 必須有內容才能顯示偽元素 */
	position: absolute;
	bottom: -10px; /* 調整底線的位置 */
	left: 0;
	width: 100%; /* 底線寬度 */
	height: 1px; /* 底線高度 */
	background-color: #d7bf9d; /* 底線顏色 */
}

.electronicsPickBlock .grid-container{
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
}

.electronicsPickBlock .productImg{
	object-fit: contain;
	margin:  0 0 3%;
	box-sizing: border-box;
}
.electronicsPickBlock .gridBox{
	overflow: hidden;
	background-color: #fff;
	position: relative;
	text-align: center;
	padding-bottom: 1rem;
}
.healthcareDealsBlock .grid-container{
	grid-template-columns: repeat(4, 1fr);
}
.healthcareDealsBlock .productImg{
	object-fit: contain;
	margin:  0 0 8%;
	box-sizing: border-box;
}
.healthcareDealsBlock .gridBox{
	overflow: hidden;
	background-color: #fff;
	position: relative;
	text-align: center;
	padding-bottom: 8%;
}

.giftForHimBlock .grid-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-areas:
	  "item01 item03 item04"
	  "item02 item03 item05";
	margin: 0 auto;
  }
  
.giftForHimBlock .grid-container .item01 { grid-area: item01; }
.giftForHimBlock .grid-container .item02   { grid-area: item02; }
.giftForHimBlock .grid-container .item03    { grid-area: item03; }
.giftForHimBlock .grid-container .item04   { grid-area: item04; }
.giftForHimBlock .grid-container .item05   { grid-area: item05; }

.giftForHimBlock .grid-container .text-container {
	color: #000;
	position: absolute;
	width: 80%;
	left: 50%;
	bottom: 1.6rem;
	transform: translateX(-50%);
	z-index: 2;
}

.giftForHimBlock .grid-container h2 {
	font-size: 1.4rem;
	margin: 0.6rem 0 0;
}

.giftForHimBlock .grid-container p {
	z-index: 2;
	font-size: 1rem;
}
  
.giftForHimBlock .grid-container .gridBox {
	overflow: hidden;
	background-color: #fff;
	position: relative;
}

.giftForHimBlock .grid-container .gridBox img:not(.shopNow img) {
	width: 100%;
	height: 100%;
	display: block;
}

.giftForHimBlock .grid-container .gridBox .shopNow {
	position: absolute;
	bottom: 20px;  /* 距離底部的距離 */
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

.giftForHimBlock .grid-container .gridBox .shopNow img {
  width: 100%;
  height: auto;
}

.brandHighlight .grid-container {
	grid-template-columns: repeat(4, 1fr);
}

.brandHighlight .content{
	align-items: normal;
	box-sizing: border-box;
}

.brandHighlight .grid-item{
	background-color: #fff;
}
.brandHighlight .brandTitleTag{
    color: #CD1D47;
    display: inline-block;
    font-size: 1.05rem;
    line-height: 1.5rem;
    border-width: 1px;
    border-style: solid;
    border-color: #CD1D47;
    border-image: initial;
    padding: 0.1vw 0.5vw;
	width: fit-content;
	margin: auto;
}
.brandHighlight .brandTitleTag.none{
	line-height: 1.5rem;
	visibility: hidden;
}
.brandHighlight .brandTitle{
	text-transform: uppercase;
    font-size: 1.5rem;
    color: #000;
    margin: 0.75rem 0;
}
.brandHighlight .brandTitle02{
	color: #555;
	letter-spacing: 0.05vw;
}
.brandHighlight .pic{
	border-top: 1px solid #9b9b9b;
	border-bottom: 1px solid #9b9b9b;
	margin-top: 1rem;
}
.brandHighlight .actionBtn{
	text-decoration: none;
	filter: none;
}
.brandHighlight .actionBtn:hover{
    transform: scale(1);
}
.eventHighlight .grid-item{
	background-color: #f0f0f0;
	padding-bottom: 2rem;
}
.eventHighlight h2{
	padding: 1.5rem;
	font-size: 1.3rem;
	color: #CD1D47;
}
.eventHighlight p{
	line-height: 1.5rem;
	margin: 0 auto 1rem auto;
	color: #333;
}

/*******************follow us*******************/
.fu_wrap {
	width:100%;
	height:auto;
	position:relative;
	padding: 0;
  }
  .fu {
	width:100%;
	margin: 0 auto;
	box-sizing: border-box;
  }
  .fu_title {
	width:88%;
	max-width:750px;
	height:auto;
	margin:0px auto 1.25vw auto;
  }
  .fu_flexG4_container {
	border-radius: 0;
	margin:2vw auto 0;
	display:flex;
	display: -webkit-flex;
	flex-wrap:wrap;
	justify-content:space-around;
	transition:  0.2s;
	padding: 0 20%;
	box-sizing: border-box;
	background-color: #fff;
	position:relative;
  }
  .fu_flexG4_container::after {
	content: '';
	width: 18vw;
	height: 3vw;
	background-image: url(../images/social_title.png);
	background-position: center top;
	background-repeat: no-repeat;
	background-size:contain;
	position: absolute;
	top: -1.2vw;
	left: 50%;
	z-index: 1;
	margin-left: -9vw;
  }
  .fu_flexG4_container a, .fu_flexG4_container img {
	width:100%;
	height:auto;
	display:block;
  }
  a.fu_flexG4_item {
	border-radius: 2%;
	flex-basis:22%;
	text-align: center;
  }
  .fu_item_info {
	width:80%;
	margin:2vw auto;
	color:#555;
  }
  .fu_item_icon img {
	width:32%;
	margin:0 auto;
  }
  .fu_item_name {
	font-size: 1.2vw;
	padding: 0.5% 1.5%;
	margin: 5% 0;
	font-weight: 600;
  }
  .fu_item_account {
	font-size: 0.8vw;
	line-height: 1.5em;
	margin-bottom: 10%;
  }
  .fu_item_cta {
	font-size: 1vw;
	line-height: 3vw;
	border-top:1px solid #ccc;
	transition: 0.2s;
  }
  .fu_item_cta:hover {
	color: #d64930;
  }


.grid-item {
	overflow: hidden;
	text-align: center;
}
.eventHighlight .grid-container{
	grid-template-columns: repeat(3, 1fr); /* 初始為3欄 */
}

.content{
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;	
	align-items: center;
}
.actionBtn{
	text-decoration: none;
	filter: none;
	transform: scale(1);
	transition: all 0.3s;
}
.actionBtn:hover{
	filter: contrast(120%);
    transform: scale(1.05);
	transition: all 0.1s;
}
.shopNow{
	font-weight: bold;
	color: #d7bf9d;
	font-size: 1.2rem;
	padding: 1rem 2rem;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1000' height='1000'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.005 0.3' numOctaves='2' stitchTiles='stitch'/><feGaussianBlur stdDeviation='0.3'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.3' /></svg>"), linear-gradient(45deg, #000, #000, #555);
}

.shopNow_b{
	width: 100%;
	font-size: 1.05rem;
	font-weight: bold;
	padding: 1rem 0;
	color: #1D2D45;
	background: #d7bf9d;
	margin: auto auto 0;
}
.learnMore_b{
	width: fit-content;
	font-size: 1.05rem;
	font-weight: bold;
	padding: 0.75rem 1rem;
	color: #fff;
	background: #000;
}
.learnMore_b::after{    
	margin-left: 0.75rem;
	display: inline-block;
    font: 15px FontAwesome;
	content: "\f0da";
}
.shopMore{
	display: block;
	width:fit-content;
	font-size: 1.5rem;
	border-radius: 50px;
	border: #edd2ae solid 2px;
	padding: 0.75rem 1.5rem;
	color: #edd2ae;
	background: rgba(0, 0, 0, 0.8);
	margin: auto auto 0.5rem;
}
.event-info{
	color: #333;
	font-weight: bold;
	margin: 1.2rem 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.boxShadow{
	box-shadow:0.75rem 0.75rem 0px rgba(0, 0, 0, 0.1);	
}

/* response */

@media (max-width: 1440px) {
	.section_title{
		padding: 3% 0;
		box-sizing: border-box;
	}
	.section-subheader {
		width: 90%;
		margin: auto;
	}
	.eventContainer{
		margin: 0 10%;
	}
	.flex-container{
		flex-wrap: wrap;
	}
	.grid-container{
		width: 100%;
		margin: auto;
	}
	.productname-label {
		font-size: 1.3vw;
	}
	.imageBlock {
		width: 90%;
		margin: auto;
	}
	.discountBlock .eventContainer{
        max-width: 95%;
        margin: auto;
	}
	.discountBlock p, .discountBlock b {
		font-size: 2.4vw;
	}
	.giftForHimBlock .grid-container h2 {
		font-size: 1.3vw;
	}
	.giftForHimBlock .grid-container p {
		font-size: 1vw;
	}
	.eventHighlight h2 {
		font-size: 1.2rem;
		line-height: 1.3;
		padding: 1rem 0.6rem;
	}
	.brandHighlight .grid-container {
		grid-template-columns: repeat(3, 1fr); /* 螢幕小於max-width時，變為三欄 */
	}
	a.fu_flexG4_item {
		flex-basis: 32%;
	}
	.fu_flexG4_container {
		padding: 0;
	  }
}

@media (max-width: 1024px) {
	.boxFx:hover, .shop-more-btn:hover, .btn-shop-more:hover, .actionBtn:hover {
		transform: scale(1);
	}
	.desktop{
		display: none;
	}
	.mobile{
		display: block;
	}
	.flexBox {
		margin: 0.6rem;
		width: 45%;
	}
	.grid-container {
		gap: 1.2rem;
	}
	.section_title h1{
		letter-spacing: -0.15rem;
		font-size: 3rem;
		line-height: 1;
	}
	.discountBlock {
		margin-top: -15%;
	}
	.discountBlock p, .discountBlock b {
		font-size: 1.6rem;
	}
	.mensFragranceBlock .grid-container {
		grid-template-columns: repeat(2, 1fr);
		grid-template-areas:
		  "item01 item01"
		  "item02 item03"
		  "item04 item04"
		  "item05 item06";
	}
	.productname-label {
		font-size: 3vw;
	}
	.healthcareDealsBlock .grid-container{
		grid-template-columns: repeat(2, 1fr);
	}
	.electronicsPickBlock .grid-container{
		grid-template-columns: repeat(2, 1fr);
	}
	.giftForHimBlock .grid-container {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-template-columns: repeat(2, 1fr);
		grid-template-areas:
		"item01 item02"
		"item03 item04"
		"item03 item05";
		margin: 0 auto;
	}
	.eventHighlight .grid-container{
		grid-template-columns: repeat(2, 1fr); 
	}
	.eventHighlight h2 {
		line-height: 1.3;
	}
	.brandHighlight .grid-container{
		grid-template-columns: repeat(2, 1fr); /* 螢幕小於max-width時，變為兩欄 */
	}
	.brandHighlight .pic {
		margin-top: 1rem;
	}
}

@media(max-width: 768px){
	.eventContainer {
		margin: 0 5%;
	}
	.flexBox{
		margin: 0.5rem;
	}
	.grid-container {
		gap: 1rem;
	}
	.section-subheader{
		width: 90%;
		margin: auto;
	}
	.section-title-image img{
		width: 100%;
	}
	.section_title {
		width: 90%;
		padding: 0;
		margin: 0 auto;
	}
	.section_title h1 {
		letter-spacing: -0.1vw;
		font-size: 9vw;
	}
	.section_title b {
		letter-spacing: -0.2vw;
	}
	.section_title span {
		font-size: 3.6vw;
	}
	.section_title p {
		font-size: 4.6vw;
		padding: 3vw 5vw;
		margin-top: 3vw;
	}
	.btn-shop-more {
		font-size: 1rem;
	}
	.discountBlock .title {
		font-size: 3vw;
		padding: 3vw
	}
	.discountBlock p, .discountBlock b{
		font-size: 3.4vw;
		line-height: 1.5;
	}
	.discountBlock p span{
		font-size: 2vw;
		margin: 0 0.1rem;
	}
	.imageBlock {
		margin: 0 auto 5vw;
	}
	.shopNow {
		font-size: 3.2vw;
		padding: 2vw 2.5vw;
	}
	.product-tag {
		font-size: 4vw;
		color: #fff; /* 文字顏色 */
		padding: 2vw 3vw; /* 內邊距 */
		border-radius: 0 0 4vw 4vw; /* 圓角 */
		position: absolute; 
	}
	.brand-label {
		font-size: 2.6vw;
		padding: 1.2vw 1.8vw;
		margin-bottom: 2vw;
	}
	.productname-label {
		font-size: 3vw;
		font-weight: bold;
	}
	.giftForHimBlock .grid-container .text-container {
		bottom: 3vw;
	}
	.giftForHimBlock .grid-container h2 {
		font-size: 2.4vw;
		margin: 1vw 0 0;
	}
	.giftForHimBlock .grid-container p {
		font-size: 1.3vw;
	}
	/*******************follow us*******************/
	.fu_title {
		width:96%;
		margin:3vw auto;
	}
	.fu_flexG4_container {
		flex-wrap:wrap;
		justify-content:space-around;
		margin:8vw auto 0;
		padding:2vw;
	}
	.fu_flexG4_container::after {
		width: 42vw;
		height: 7vw;
		top: -5vw;
		margin-left: -21vw;
	}
	a.fu_flexG4_item {
		margin:1vw 0; /*宮格與下方版位間距-可調整*/
		flex-basis: 32%;
	}
	.fu_item_name {
		font-size: 3vw;
		padding: 0.5% 1.5%;
		margin: 5% 0;
		font-weight: 600;
	}
	.fu_item_account {
		font-size: 2vw;
		line-height: 1.5em;
		margin-bottom: 10%;
	}
	.fu_item_cta {
		font-size: 2vw;
		line-height: 6vw;
		border-top:1px solid #ccc;
	}
}

@media(max-width: 500px){
	.full-price-label {
		font-size: 3vw;
	}
	.sale-price-label {
		font-size: 6vw;
	}
	.shop-more-wrapper {
		text-align: center;
		margin: 10vw 0;
	}
	.shop-more-btn {
		font-size: 5vw;
		padding: 4vw 6vw;
	}
	.shop-more-btn::after{    
		margin-left: 3vw;
		font: 5vw FontAwesome;
	}
	.flexBox{
		margin: 1.5vw;
	}
	.eventContainer {
		padding: 10vw 0;
	}
	.discountBlock .title {
		padding: 3vw;
	}
	.discountBlock p {
		margin: 2vw 0;
	}
	.event-info {
		margin: 2vw 0;
		font-size: 3vw;
	}
	.tab-button {
		font-size: 5vw;
		white-space: nowrap;
		margin: 0 1vw;
		padding: 2vw 3vw;
	}
	.grid-container {
		gap: 3vw;
	}
	.giftForHimBlock .grid-container .text-container {
		bottom: 3vw;
	}
	.giftForHimBlock .grid-container h2 {
		font-size: 2.5vw;
		margin: 1.5vw 0 0;
	}
	.giftForHimBlock .grid-container p {
		font-size: 1.8vw;
	}
	.brandHighlight .grid-container{
		gap: 3vw;
	}
	.brandHighlight .grid-container .gridBox {
		border-radius: 8vw;
	}
	.brandHighlight .brandTitle {
		font-size: 4.2vw;
		margin: 1vw 0;
	}
	.brandHighlight .brandTitle02 {
		font-size: 3.6vw;
		line-height: 1.5;
	}
	.shopNow_b {
		font-size: 4vw;
	}
	.eventHighlight .grid-container{
		gap: 3vw;
		grid-template-columns: 1fr;
	}
	.eventHighlight h2 {
		line-height: 1.2;
		padding: 5vw;
		font-size: 5vw;
	}
	.eventHighlight p {
		font-size: 3.2vw;
		line-height: 1.5;
	}
}