@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");
  }
  :root{
	--lux-o: 1; /* 0.5 = 50% 透明度，原本是 0.75 左右 */
    --lux-bg: #D0D5DB;
    --lux-gold: 212,175,55;

    /* 珠光色三段 */
    --iris-top:   #fff4c9;
    --iris-mid:   #f5c9e9;
    --iris-bot:   #cfe6ff;

    /* 全局顆粒強度 */
    --lux-grain-strength: .08;
  }

  body{
    font-family: Microsoft JhengHei, system-ui;
    margin:0;
    background: var(--lux-bg);
    color:#333;
    position:relative;
    z-index:1;
    overflow-x:hidden;
	background: url(../images/bg.jpg);
	background-size: cover;
	background-attachment: fixed;
  }

  .top-without-brand section, .top-without-brand header{
	position: relative;
	z-index: 1;
  }
  
  .lux-bokeh{
    position:fixed;
    inset:0;
    z-index:0;
    pointer-events:none;
    overflow:hidden;
    -webkit-mask: radial-gradient(ellipse at 50% 50%, transparent 0 38vmin, black 44vmin);
            mask: radial-gradient(ellipse at 50% 50%, transparent 0 38vmin, black 44vmin);
  }

  /* 全局顆粒層 */
  .lux-bokeh::before{
    content:"";
    position: fixed;
    inset:-10%;
    pointer-events:none;
    z-index: 0;
    opacity: var(--lux-grain-strength);
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' width='200' height='200' preserveAspectRatio='none'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 280px 280px;
    animation: lux-grain 1.6s steps(10) infinite;
  }
  @keyframes lux-grain{
    0%   { transform: translate3d(0,0,0); }
    100% { transform: translate3d(-3%, 2%, 0); }
  }

  .lux-bokeh__wrap{
    position:absolute;
    width:200px;
    height:200px;
    left:0; top:0;
    transform: translate3d(0,0,0);
    will-change: transform;
  }

  /* 珠光色光斑 */
  .lux-bokeh__dot{
    position:absolute;
    inset:0;
    border-radius:50%;
    opacity: var(--lux-o, .75);
    transform: scale(var(--lux-scale,1));
	filter:
    blur(var(--lux-blur,20px))
    saturate(112%)
    brightness(1.04)
    contrast(1.02);
    mix-blend-mode: screen;
    background:
	radial-gradient(circle at 42% 38%,
    rgba(255,255,255,.95) 0%,
    rgba(255,255,255,.60) 28%,
    rgba(255,255,255,.18) 55%,
    rgba(255,255,255,0)   72%),
  linear-gradient(180deg,
    rgba(255,244,201,0.45) 0%,   /* 黃色：原 0.72 → 改 0.45 */
    rgba(245,201,233,0.40) 48%,  /* 粉色：原 0.66 → 改 0.40 */
    rgba(207,230,255,0.42) 100%),/* 藍色：原 0.74 → 改 0.42 */
  radial-gradient(farthest-side at 50% 50%,
    rgba(255,255,255,.10), rgba(255,255,255,0) 80%);
    animation:
      lux-float var(--lux-float,18s) ease-in-out infinite alternate,
      lux-twinkle var(--lux-twinkle,8s) ease-in-out infinite;
  }

  /* 單顆光斑顆粒邊緣 */
  .lux-bokeh__dot::after{
    content:"";
    position:absolute;
    inset:-6%;
    border-radius:50%;
    pointer-events:none;
    mix-blend-mode: overlay;
    opacity:.12;
    -webkit-mask: radial-gradient(circle at 50% 50%, #000 55%, transparent 80%);
            mask: radial-gradient(circle at 50% 50%, #000 55%, transparent 80%);
    background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 140' width='140' height='140' preserveAspectRatio='none'%3E%3Cfilter id='m'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23m)'/%3E%3C/svg%3E");
    background-size: 180px 180px;
    animation: lux-dot-grain 2.2s steps(12) infinite;
  }
  @keyframes lux-dot-grain{
    0%   { transform: rotate(0deg) translate3d(0,0,0); }
    100% { transform: rotate(2deg) translate3d(2%, -2%, 0); }
  }

  /* 景深層 */
  .lux-bokeh__dot--near { --lux-scale: 1.35; } /* 近景更大 */
  .lux-bokeh__dot--mid  { --lux-scale: 1.00; }
  .lux-bokeh__dot--far  { --lux-scale: 0.75; } /* 遠景更小 */

  .lux-bokeh__wrap::before{
	content:"";
	position:absolute;
	inset:-8%;                /* 比光斑略大，產生柔邊光暈 */
	border-radius:50%;
	pointer-events:none;
	opacity: var(--lux-backdrop-alpha);
	background: rgba(255,255,255, .02); /* 建立 backdrop 渲染面 */
	mix-blend-mode: screen;   /* 疊加更亮的高光感（可改成 soft-light 試味道） */
	display:none;             /* 預設關閉，支援時再開 */
  }

  /* 只有支援 backdrop-filter 的瀏覽器才啟用提亮底圖（Chrome/Safari/Edge OK） */
@supports ((-webkit-backdrop-filter: blur(0)) or (backdrop-filter: blur(0))){
	.lux-bokeh__wrap::before{
	  display:block;
	  -webkit-backdrop-filter:
		brightness(var(--lux-backdrop-brightness))
		saturate(var(--lux-backdrop-saturate))
		contrast(var(--lux-backdrop-contrast))
		blur(var(--lux-backdrop-blur));
	  backdrop-filter:
		brightness(var(--lux-backdrop-brightness))
		saturate(var(--lux-backdrop-saturate))
		contrast(var(--lux-backdrop-contrast))
		blur(var(--lux-backdrop-blur));
	}
  }

  @keyframes lux-twinkle{
    0%,100% { opacity: calc(var(--lux-o, .75) * 0.92); filter: brightness(1); }
    50%     { opacity: calc(var(--lux-o, .75) * 1.00); filter: brightness(1.06); }
  }
  @keyframes lux-float{
    from{ transform: translate3d(var(--lux-fx, -6px), var(--lux-fy, 8px), 0) scale(var(--lux-scale,1)); }
    to  { transform: translate3d(calc(var(--lux-fx, -6px) + var(--lux-fdx, 22px)),
                                 calc(var(--lux-fy, 8px)  - var(--lux-fdy, 26px)), 0)
                      scale(var(--lux-scale,1)); }
  }

img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.desktop{
	display: block;
}
.mobile{
	display: none;
}
.section_title {
	font-family: 'SweiSpringCJKtc-Regular';
	font-weight: 600;
	color: #d19407;
	margin: 1rem auto;
	/*background: url(../images/section_title_bg.png);
	background-size: 800px;
	background-position: center;
	background-repeat: no-repeat;*/
	display: flex;
	flex-direction: column;
}
.section_title h1{
	color: #000;
    font-size: 2rem;
	margin: 1.5rem auto;
    line-height: 1.3;
    text-align: center;
    transform: skewX(-15deg);
    background-size: 150px 150px, cover;
  }
  .section_title h2{
	font-size: 5rem;
	letter-spacing: -0.1rem;
	text-shadow: 3px 3px 0 rgba(255, 255, 255, 0.9);
  }
.brand-script {	
	font-style: italic;
	letter-spacing: 1px;
	text-align: center;
}
.section_title h3{
	font-style: italic;
	text-align: center;
    letter-spacing: 0;
    border-radius: 5rem;
    font-size: 2.2rem;
	font-weight: 600;
    width: fit-content;
    padding: 1rem 2rem;
	margin: 0 auto 1.6rem;
	color: #000;
	background: linear-gradient(45deg, #e7c56b, lch(93.69% 22.98 96.87), #e7c56b, #f9edc1, #e7c56b);
	box-shadow: 1px 3px 1px #e7c56b;
}
.section_title span{
	margin: 0 auto 0.5rem;
	text-align: center;
	font-family: 'Times New Roman', Times, serif;
	font-size: 1.3rem;
}
.section_title b {
	color: #d91355;
	margin: 0 0.3rem 0;
}

/* 商品卡定義 */
.price-container {
    display: flex; /* 使用 Flexbox 來排列子元素 */
    flex-wrap: wrap; /* 允許換行 */
    align-items: center; /* 垂直居中對齊 */
    flex-direction: column; /* 設定排列方向為行 */
	margin-bottom: 1rem;
}
.productname-label {
	color: #333;
	font-weight: 600;
	font-size: 1.3rem;
	margin: 0.6rem;
	letter-spacing: -0.05rem;
}

.productname-label span{
	font-family: SweiSpringCJKtc-Regular;
}

.product-tag {
	font-size: 1.5rem;
	letter-spacing: -0.05rem;
	font-weight: 600;
    display: inline-block; /* 使元素能夠旋轉 */
	background-image: linear-gradient(45deg, #b8cbb8 0%, #b8cbb8 0%, #d91355 0%, #960032 33%, #d91355 66%, #d91355 100%);
    color: #fff; /* 文字顏色 */
    padding: 1rem 1.6rem; /* 內邊距 */
    border-radius: 0 0 2rem 2rem; /* 圓角 */
    position: absolute; 

}

.brand-label {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif, 'Microsoft JhengHei';
    color: #000;
	font-weight: 600;
    background: linear-gradient(45deg, #e7c56b, lch(93.69% 22.98 96.87), #e7c56b, #f9edc1, #e7c56b);
    font-size: 1.45rem;
    padding: 0.8rem 0;
    margin: 0 0 0.5rem;
    width: 100%;
    border-radius: 0;
}

.full-price-label{
	margin: 0.6rem;
}

.full-price-label b{
	width: 50%;
    text-decoration: line-through;
    color: gray;
    font-size: 1rem; /* 設置原價的字體大小 */
	margin: 0.5rem;
}

.full-price-label span{
	width: 50%;
	font-size: 1rem;
	color: #fff;
	background: #ff3176;
	padding: 0.2rem 0.5rem;
	border-radius: 10rem;
}

.sale-price-label {
	font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #d91355;
    font-weight: bold;
    font-size: 2.2rem; /* 設置特價的字體大小，為原價的兩倍 */
	letter-spacing: -0.05rem;
    font-style: italic;
}

.sale-price-label span{
	font-family: SweiSpringCJKtc-Regular;
	font-size: 1.5rem;
	margin-right: 0.3rem;
}

.shadowFx{
	box-shadow: 0 25px 0 -5px rgba(64, 53, 30, 0.1);
}
.boxFx {
	border: 1px #dca26c solid;
	transition: all 0.3s;
	background-color: #fff;
	border-radius: 1rem;
}
.boxFx:hover {
	transition: all 0.1s;
	transform: scale(0.95); /* 添加縮小效果 */
}
.Box_bg{
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: bottom;
	background-image: url(../images/discountBlock_bottom_bg.png);
}
.shop-more-wrapper {
	text-align: center;
	margin: 3rem 0 0;
}
.shop-more-btn {
	font-family: SweiSpringCJKtc-Regular;
	display: inline-block;
	background: #000;
	color: #fff;
	font-size: 1.6rem;
	padding: 1.3rem 2rem;
	border-radius: 5rem;
	text-decoration: none;
	letter-spacing: -0.03rem;
	font-weight: 300;
	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:hover {
	transform: translateY(-8px) scale(1.05);
	box-shadow: 0 8px 24px rgba(246,112,171,0.25);
}
.eventContainer{
	margin: 0 12%;
	padding: 2rem 0 6rem;
	align-content: center;
}
.flex-container{
	display: flex;
	flex-wrap: wrap; /* 允許換行 */
	justify-content: center; 
}
.flexBox{
	width: 23.5%; 
	padding-bottom: 0.5rem;
	margin: 0.5rem;
	box-sizing: border-box;
	border-radius: 4rem;
	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: -15%;
}
.discountBlock .title{
	font-family: 'Playfair Display', serif;
	background-image: url(../images/discountBlock-title-bg01.png);
	background-size: cover;
	background-position: bottom;
	color: #000;
	font-weight: 100;
	font-size: 1.6rem;
	letter-spacing: 0;
	width: 100%;
	padding: 2rem 0 2.5rem;
	margin-bottom: 0.5rem;
	text-align: center;
}
.discountBlock h4{
	font-weight: bolder;
	font-family: 'SweiSpringCJKtc-Regular';
	padding: 0 0 0.6rem;
	border-bottom: #000 solid 1px;
	font-size: 2.2rem;
}
.discountBlock p{
	font-style: italic;
	letter-spacing: -0.03rem;
	margin: 0.8rem auto 1rem;
	line-height: 1.5;
	text-align: center;
	font-weight: bolder;
	font-size: 1.25rem;

}
.discountBlock p span{
	font-size: 1rem;
	letter-spacing: -0.05rem;
	margin: 0 0.1rem;
}
.discountBlock b {
	font-weight: bolder;
	line-height: 1.3;
	font-family: 'SweiSpringCJKtc-Regular';
	color: #d91355;
	margin: 0 0.2rem;
}

.bannerBox {
	border: 0;
	position: relative; /* 作為定位容器 */
	margin-top: 1rem;
  }
  
  .bannerBox .cta-row {
	position: absolute;
	right: 1.5vw; 
	bottom: 1vw;
  }
  
  .bannerBox .cta-row a {
	display: inline-block;
	padding: 0.5vw 1vw;
	background-color: #000;
	color: #fff;
	text-decoration: none;
	font-size: 0.8rem;
	border-radius: 3px;  /* 如果想要有一點圓角 */
  }

.taiwanStyleBlock .productImg{
	object-fit: contain;
	margin:  0 2%;
	box-sizing: border-box;
}
.grid-container{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 1.5rem; /* 設定格子之間的間距 */
	align-items: stretch; /* 讓列高度相等，並以最高者為基準 */
}
.grid-container img{
	object-fit: cover;
}

.taiwanStyleBlock .gridBox{
	position: relative;
	overflow: hidden;
	background-color: #fff;
	position: relative;
	text-align: center;
}
.taiwanStyleBlock .price-container{
	flex-direction: row;
}
.taiwanStyleBlock .full-price-label{
	margin: 0;
}
.tab-container {
    display: flex; /* 使用 Flexbox */
    justify-content: center; /* 水平置中 */
    margin: 0 0 30px; /* 可選：添加上下邊距 */
}

.tab-button {
	font-family: SweiSpringCJKtc-Regular;
    font-size: 1.6rem;
    padding: 1rem 2rem; /* 按鈕內邊距 */
    cursor: pointer; /* 鼠標懸停時顯示手型 */
    border: none; /* 去掉邊框 */
    border-radius: 2rem;
	font-weight: 600;
    background: transparent; /* 按鈕背景顏色 */
    margin: 0 5px; /* 按鈕之間的間距 */
	border: 1px solid #000;
    transition: box-shadow 0.3s; /* 添加過渡效果 */
}

.tab-button:hover {
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 1); /* 懸停時增強內光暈效果 */
}

.tab-button.active {
	color: #fff;
	box-shadow: inset 0 0 10px rgba(255, 255, 255, 0); /* 內光暈效果 */
	background: #000;
}
.powerbankAddonBlock {
	width: 100%;
}
.mitBodycareSaleBlock .productImg{
	object-fit: contain;
	margin:  0 0 8%;
	box-sizing: border-box;
}
.mitBodycareSaleBlock .gridBox{
	overflow: hidden;
	background-color: #fff;
	position: relative;
	text-align: center;
	padding-bottom: 8%;
}
.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%;
}

.mensFragranceBlock .productImg{
	object-fit: contain;
	margin:  0 2%;
	box-sizing: border-box;
}
.mensFragranceBlock .gridBox{
	overflow: hidden;
	background-color: #fff;
	position: relative;
	text-align: center;
	padding-bottom: 8%;
}

.travelerLuxuryBlock .productImg{
	object-fit: contain;
	margin:  0 2%;
	box-sizing: border-box;
}
.travelerLuxuryBlock .gridBox{
	overflow: hidden;
	background-color: #fff;
	position: relative;
	text-align: center;
}

.travelerLuxuryBlock .productname-label{
	letter-spacing: 0;
	font-style: italic;
    background: linear-gradient(45deg, #e7c56b, lch(93.69% 22.98 96.87), #e7c56b, #f9edc1, #e7c56b);
	color: #000;
	width: 100%;
	margin: 0;
	font-size: 1.5rem;
	padding: 1rem 0 0.8rem;
}
.travelerLuxuryBlock .productname-label span{
	color: #d91355;
	font-size: 1.6rem;
	margin: 0 0.1rem;
}


.taiwanGiftBlock .productImg {
    object-fit: contain;
    margin: 0;
    box-sizing: border-box;
}

.taiwanGiftBlock .gridBox{
	overflow: hidden;
	background-color: #fff;
	position: relative;
	text-align: center;
}

.dutyfreeSaleBlock .productImg {
    object-fit: contain;
    margin: 0;
    box-sizing: border-box;
}

.dutyfreeSaleBlock .gridBox{
	overflow: hidden;
	background-color: #fff;
	position: relative;
	text-align: center;
}

.travelBeautyBlock .grid-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr); /* 初始為四欄 */
	margin: 0 auto;
  }

.travelBeautyBlock .grid-container h2 {
	font-family: SweiSpringCJKtc-Regular;
	font-weight: 600;
	color: #000;
	position: absolute;
	width: 80%;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	z-index: 2;
	margin: 2rem 0;
	font-size: 1.3rem;
}

.travelBeautyBlock .grid-container p {
	color: #000;
	width: 100%;
	padding: 1rem 2rem;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	z-index: 2;
	margin: 3.5rem 0;
	font-size: 1rem;
}
  
.travelBeautyBlock .grid-container .gridBox {
	overflow: hidden;
	background-color: #fff;
	position: relative;
	text-align: center;
}

.travelBeautyBlock .grid-container .gridBox img:not(.shopNow img) {
	width: 100%;
	height: 100%;
	display: block;
}

.travelBeautyBlock .grid-container .gridBox .shopNow {
	position: absolute;
	bottom: 20px;  /* 距離底部的距離 */
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

.travelBeautyBlock .grid-container .gridBox .shopNow img {
  width: 100%;
  height: auto;
}

.brandHighlight .content{
	align-items: normal;
	padding-top: 1.5rem;
	box-sizing: border-box;
}

.brandHighlight .grid-item{
	background-color: #fff;
}
.brandHighlight .brandTitleTag{
    color: #d91355;
    display: inline-block;
    font-size: large;
    line-height: 1.5rem;
    border-width: 1px;
    border-style: solid;
    border-color: #d91355;
    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: x-large;
    color: #333;
    margin: 0.75rem 0;
}
.brandHighlight .brandTitle02{
	color: #5d656c;
	letter-spacing: 0.05vw;
}
.brandHighlight .pic{
	border-top: 1px solid #9b9b9b;
	margin-top: 1vw;
}
.brandHighlight .actionBtn{
	text-decoration: none;
	filter: none;
}
.brandHighlight .actionBtn:hover{
    transform: scale(1);
}
.eventHighlight .grid-item{
	background-color: #f0f0f0;
}
.eventHighlight h3{
	padding: 1.5rem;
	font-size: 1.3rem;
	color: #d91355;
}
.eventHighlight p{
	margin-bottom: 1rem;
	line-height: 1.5rem;
	color: #666;
}

/*******************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:#5d656c;
  }
  .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(4, 1fr); /* 初始為四欄 */
}

.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-size: large;
	white-space: nowrap;
	display: flex;
	justify-content: center;
	align-items: center;
}

.shopNow_b{
	width: 100%;
	font-size: large;
	padding: 1rem 0;
	color: #fff;
	background: #000;
	margin: auto auto 0;
}
.learnMore_b{
	width: 100%;
	font-size: large;
	padding: 0.75rem 1rem;
	margin: 0;
	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: x-large;
	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: 1rem;
	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-subheader {
		width: 90%;
		margin: auto;
	}
	.eventContainer{
		margin: 0 2%;
	}
	.flex-container{
		flex-wrap: wrap;
	}
	.flexBox {
		width: 30%;
	}
	.grid-container{
		width: 90%;
		margin: auto;
	}
	.imageBlock {
		width: 90%;
		margin: auto;
	}
	.productname-label{
		font-size: 1.2rem;
	}
	.full-price-label {
		font-size: 0.8rem; /* 設置原價的字體大小 */
	}
	.sale-price-label {
		font-size: 1.5rem; /* 設置特價的字體大小，為原價的兩倍 */
	}
	.travelBeautyBlock .grid-container h2 {
		margin: 1.3rem 0;
	}
	.travelBeautyBlock .grid-container p {
		font-size: 1rem;
		margin: 2.5rem 0;
	}
	.eventHighlight .grid-container{
		grid-template-columns: repeat(4, 1fr); /* 螢幕小於max-width時，變為兩欄 */
	}
	.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) {
	.flexBox {
		min-width: 45%;
	}
	.price-container {
		flex-wrap: wrap;
		display: block;
	}
	.section_title{
		background-size: 100%;
	}
	.section_title h1{
		font-size: 8vw;
        background: linear-gradient(180deg, #e7c56b 0%, #f9edc1 28%, #e7c56b 60%, #b9802d 80%, #f9edc1 95%, #f9edc1 100%);
		text-shadow: 1px 2px 1px #e7c56b;
        background-size: cover;
		-webkit-background-clip: text;
		background-clip: text;
		-webkit-text-fill-color: transparent;
	}
	.section_title h3 {
		font-size: 2vw;
		padding: 1vw 3vw;
		margin-bottom: 1vw;
	}
	.brand-script {
		font-size: 1.8vw;
		margin-top: 1vw;
	}
	.discountBlock {
		margin-top: -5%;
	}
	.discountBlock .grid-container .bannerBox .cta-row{
		position: absolute;
		left: 16px; right: 16px; bottom: 10%;
	}
	.taiwanStyleBlock .grid-container{
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
	.productname-label {
		font-size: 3vw;
	}
	.grid-container{
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
	.taiwanGiftBlock .grid-container{
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
	.dutyfreeSaleBlock .grid-container{
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
	.travelBeautyBlock .grid-container {
		display: grid;
		grid-template-columns: repeat(2, 1fr); /* 螢幕小於max-width時，變為兩欄 */
		width: 90%; /* 可依需求調整 */
		margin: 0 auto;
	}
	.eventHighlight .grid-container{
		grid-template-columns: repeat(2, 1fr); /* 螢幕小於max-width時，變為兩欄 */
	}
	.brandHighlight .grid-container{
		grid-template-columns: repeat(2, 1fr); /* 螢幕小於max-width時，變為兩欄 */
	}
}

@media(max-width: 768px){
	.desktop{
		display: none;
	}
	.mobile{
		display: block;
	}
	body{
		background: #d5d7da;
	}
	.lux-bokeh{ display:none; }
	.section-subheader{
		width: 90%;
		margin: auto;
	}
	.section-title-image img{
		width: 100%;
	}
	.section_title {
		padding: 0;
		margin: 0 auto;
		background-size: 80%;
	}
	.section_title h1 {
		letter-spacing: -0.1vw;
		font-size: 10vw;
		background: none;
		margin: 5vw 0 2vw;
		text-shadow: 1px 0px 1px #d19407;
	}
	.section_title h2{
		font-size: 12vw;
	}
	.section_title b {
		letter-spacing: -0.2vw;
	}
	.section_title span {
		font-size: 3.6vw;
	}
	.section_title h3 {
		font-size: 6vw;
		padding: 2vw 6vw;
	}
	.section_title h3 span{
		font-size: 5vw;
	}
	.brand-script {
		font-size: 4vw;
	}
	.btn-shop-more {
		font-size: 1rem;
	}
	.discountBlock .title {
		font-size: 4vw;
		padding: 6vw
	}
	.discountBlock h4 {
		font-size: 5vw;
	}
	.discountBlock p{
		font-size: 3.2vw;
		line-height: 1.5;
		margin: 3vw 0;
	}
	.discountBlock p span{
		font-size: 2vw;
		margin: 0 0.1rem;
	}
	.bannerBox {
		position: relative; /* 作為定位容器 */
		margin-top: 1rem;
	}
	  
	.bannerBox .cta-row {
		right: 5vw;
		bottom: 3vw;
	}
	.bannerBox .cta-row a {
		padding: 1.5vw 2.2vw;
		font-size: 2.6vw;
	}
	.imageBlock {
		margin: 0 auto 5vw;
	}
	.flexBox{
		padding-bottom: 1rem;
		margin: 1.75%;
		min-width: auto;
		width: 45%;
		border-radius: 8vw;
	}
	.shopNow {
		width: 65%;
	}
	.product-tag {
		font-size: 4vw;
		color: #fff; /* 文字顏色 */
		padding: 2vw 3vw; /* 內邊距 */
		border-radius: 0 0 4vw 4vw; /* 圓角 */
		position: absolute; 
	}
	.brand-label {
		font-size: 4.2vw;
		padding: 2vw 2.6vw;
		margin-bottom: 3vw;
	}
	.productname-label {
		font-size: 3.6vw;
		font-weight: bold;
		margin-bottom: 0.5vw;
	}
	.travelBeautyBlock .grid-container h2 {
		font-size: 3vw;
		margin: 3vw 0;
	}
	.travelBeautyBlock .grid-container p {
		font-size: 2vw;
		margin: 4vw 0;
	}
	.travelerLuxuryBlock .productname-label{
		font-size: 4vw;
		padding: 3vw 0;
	}
	.travelerLuxuryBlock .productname-label span{
		font-size: 5vw;
	}
	.eventHighlight .grid-container{
		grid-template-columns: repeat(2, 1fr); 
	}
	.sale-price-label span{
		font-size: 3.5vw;
		margin-right: 0.5vw;
	}
	.eventHighlight h3 {
		line-height: 1.2;
	}
	.learnMore_b {
		font-size: 3.6vw;
		padding: 2.5vw 3vw;
	}
	.learnMore_b::after{
		margin-left: 2vw;
		font: 3vw FontAwesome;
	}
	/*******************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){
	.flexBox{
		padding-bottom: 2vw;
	}
	.event-info{
		margin: 3vw 0;
	}
	.discountBlock .grid-container .bannerBox .cta-row {
		bottom: 12%;
	}
	.full-price-label {
		font-size: 3.6vw;
		margin-bottom: 2vw;
		white-space: nowrap;
	}
	.sale-price-label {
		font-size: 6vw;
	}
	.full-price-label b {
		font-size: 3vw;
	}
	.full-price-label span{
		font-size: 3vw;
	}
	.productname-label {
		font-size: 4vw;
		margin-bottom: 2vw;
		font-weight: bold;
	}
	.productname-label span{
		font-size: 8vw;
	}
	.shop-more-wrapper {
		text-align: center;
		margin: 12vw 0;
	}
	.shop-more-btn {
		font-size: 5vw;
		padding: 4vw 6vw;
	}
	.eventContainer {
		padding: 5vw 0 10vw;
		margin: 0;
	}
	.event-info {
		font-size: 3vw;
	}
	.shopNow {
		width: 70%;
	}
	.tab-button {
		font-size: 5vw;
		white-space: nowrap;
		margin: 0 1vw;
		padding: 2vw 5vw;
	}
	.grid-container {
		gap: 3vw;
	}
	.travelBeautyBlock .grid-container .gridBox {
		border-radius: 3vw;
	}
	.travelBeautyBlock .grid-container h2 {
		font-size: 4vw;
		margin-top: 4vw;
	}
	.travelBeautyBlock .grid-container .gridBox .shopNow {
		width: 70%;
	}
	.brandHighlight .grid-container{
		gap: 3vw;
	}
	.brandHighlight .grid-container .gridBox {
		border-radius: 8vw;
	}
	.brandHighlight .brandTitle {
		font-size: 5vw;
	}
	.brandHighlight .brandTitle02 {
		padding: 0 3vw 3vw;
		line-height: 1.5;
	}
	.shopNow_b {
		font-size: 4vw;
	}
	.eventHighlight .grid-container{
		gap: 3vw;
	}
	.eventHighlight h3 {
		line-height: 1.2;
		padding: 5vw;
		font-size: 5vw;
	}
	.eventHighlight p {
		font-size: 3.2vw;
		line-height: 1.2;
		margin-bottom: 2vw;
	}
}

@media (prefers-reduced-motion: reduce){
	.lux-bokeh{ display:none; } /* 或者把動畫拿掉也行 */
	/* .lux-bokeh__dot{ animation: none; } */
  }

@media (max-width: 600px){
:root{ --lux-backdrop-alpha: .55; --lux-backdrop-blur: 1px; }
}