@charset "utf-8";



/*★★★卷軸設定↓↓↓↓↓↓↓↓↓↓↓↓*/
/* 捲軸寬度及高度 */
::-webkit-scrollbar {
    width: 8px; /*右側捲軸寬度*/
    height: 0px; /*下方捲軸高度*/
}
/* 軌道背景底色 */
::-webkit-scrollbar-track {    background: #EBEDE8; }

/* 滑桿顏色 */
::-webkit-scrollbar-thumb {    background: #8D7158; }
/* 滑桿滑鼠滑入時的顏色 */
::-webkit-scrollbar-thumb:hover {    background: #534045; }
#to_top {
    width: 60px;
    height: 60px;
    color: #5e4730;
    background: transparent;
    box-shadow: 0px 0px 10px rgb(216 216 216 / 70%);
    border-radius: 100%;
    border: 1px solid #5e4730;   left: 30px;    bottom: 30px;
}
#to_top i:before, #to_top i:after {
    background:#5e4730;
}

/*@media (min-width:769px) {*/
.me_tp_features { display: none;}



/* =============== 開場動畫LOGO進入畫 =============== */

/* 底色：一開始就是實色 → 停留 → 慢慢淡出，加上淡顆粒紋理 */
body.pageIndex::before {
    content: '';
    pointer-events: none;
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    background-color: #241E24;   /* 底色 */
    background-image: url("https://www.transparenttextures.com/patterns/asfalt-light.png"); /* 顆粒紋理 */
    background-repeat: repeat;
    background-size: auto;
    opacity: 0.3; 
    background-blend-mode: overlay; 

    animation: bgElegant 2.5s ease forwards;
}

@keyframes bgElegant {
  0%   { opacity: 1; }
  80%  { opacity: 1; }
  100% { opacity: 0; }
}

/* Logo：更小開始 → 翻轉進場 → 短暫放大強調 → 快速淡出 */
body.pageIndex::after {
  content:"";
  position: fixed;
  left: 50%; top: 50%;
  width: 200px; height: 185px;
  transform: translate(-50%, -50%) scale(0.85) rotateY(90deg);
  background: url(https://pic03.eapple.com.tw/0963245247/word.png) no-repeat center/contain;
  z-index: 10001;
  opacity: 0;
  animation: logoFlip 2.5s ease forwards;
  animation-delay: 0.3s;
  pointer-events: none;
  backface-visibility: hidden;
  overflow: hidden;
}

@keyframes logoFlip {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.85) rotateY(90deg);}
  25%  { opacity: 1; transform: translate(-50%, -50%) scale(1.05) rotateY(0deg);}
  60%  { opacity: 1; transform: translate(-50%, -50%) scale(1);}
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1);}
}



/* =============== Banner 與側邊小字 =============== */
/*預設解除背景輪播*/

@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}

.swiper-pagination {margin-left: 0;transform: translateX(-50%);}
#content_main { margin:0;}
.bannerindex { position:relative; height:auto;}
.swiper-banner { position:static; margin:0; height:auto;} 
.swiper-slide img { height: auto !important;}
.bannerindex .swiper-wrapper {  position: relative; }
.swiper-slide{position: relative;}


/* 側邊小字 */
.swiper-banner:before,
.swiper-banner:after {
    font-size: .8vw;
    writing-mode: vertical-lr;
    z-index: 10002; /* 提高層級 */
    letter-spacing: 4px;
    height: 40%;
    position: absolute;
    right: 6vw;
    border-right: 1px solid #433c43;
}

.swiper-banner:before {
    content: "Mii Ru";
    top: 70px;
    color: #a0835e;
    text-align: right;
    animation: sideA 1.5s both;
	 animation-delay: 2s;
}

.swiper-banner:after {
    content: " Baking";
    padding-top: 2vw;
    top: 48%;
    color:#a0835e;
    text-align: left;
    animation: sideB 1.5s both;
	animation-delay: 2s;
}

/*底部色塊*/
.bannerindex .swiper-wrapper {
  position: relative; /* 保證 before 有定位基準 */
}
.bannerindex .swiper-wrapper::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 5vw;         /* 最終寬度固定 */
  height: 100%;
  background: rgba(87,72,60,0);
  z-index: 10;
  transform: scaleX(0);           /* 一開始縮到 0 */
  transform-origin: right center; /* 從右邊展開 */
  opacity: 0;
  animation: bg 6s forwards;
}

@keyframes bg {
  0%   { opacity: 0; transform: scaleX(0); }
  100% { opacity: 1; transform: scaleX(1); }
}


/* =============== Keyframes 動畫 =============== */
@keyframes sideA {
  0%   {opacity: 0; transform: translateY(-3vw);}
  100% {opacity: 1; transform: translateY(0);}
}
@keyframes sideB {
  0%   {opacity: 0; transform: translateY(3vw);}
  100% {opacity: 1; transform: translateY(0);}
}



/* =============== 文字圖層 =============== */
.pageIndex .swiper-slide:after {
    content: "";  z-index: 20;
    position: absolute;
    top: 45%;
    left: 18%;
    transform: translate(-50%, 0); /* 預設原地 */
    width: 100%;
    max-width: 460px;
    aspect-ratio: 3 / 1; /* 292x145 ≈ 2:1 */
    background: url(https://pic03.eapple.com.tw/0963245247/text1.png) no-repeat center;
    background-size: contain;
   opacity: 0;
  letter-spacing: 0px;
  transition: all 1s ease;
}
.pageIndex .swiper-slide-active:after {
     opacity: 1;
}

/* 響應式調整 */
@media screen and (max-width: 768px) {
    .bannerindex { padding:0; margin:0; }
	.pageIndex .swiper-slide:after {
    top: 45%;
    left: 17%;
    width: 75%;
    max-width: 290px;}
}
@media screen and (max-width: 430px) {
    .pageIndex .swiper-slide:after {
        width: 50%;
        left: 15%;
    }
	.pageIndex .swiper-slide:after {
    top: 45%;
    left: 17%;
    width: 63%;
    max-width: 200px;}
}


/* header */
.pageIndex .header_area {
    transition: all 0.8s cubic-bezier(0.4, 0, 1, 1);
}
.header_area {
    position: fixed;
    padding: 20px 30px 0 30px;
	transition: .3s;
    background: transparent;
}
/*.header_area .main_header_area,*/

/*下滑*/
.header_area.sticky .main_header_area { width: 100%; height: 100%; transition: all 0.5s; /*padding: 0px;*/}
.header_area.sticky {
    /* padding: 0 30px 0 0;*/
	background:none ;
    /*background: linear-gradient(to bottom, #323A2D -9%, 29%, #323a2d00 100%);*/
    height: auto;
    transition: 0s;
}

.main_header_area .container,  .navigation {
    height: 100%;
    width: 100%;
    max-width: 100%;
}

.navigation {
    padding: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

.navigation>* {    order: 2;}

/* ----- topLogo ----- */
.nav-header {
    width: auto;
    display: block;
    position: relative;
    z-index: 5;
    max-width: 120px;
    transition: all 0.3s cubic-bezier(0.4, 0, 1, 1);
}
/*下滑*/
.header_area.sticky .nav-header {
   max-width: 100px;
    transition: all 0.3s cubic-bezier(0.4, 0, 1, 1);
}


/* ----- menu列 ----- */
.stellarnav.desktop {
    transition: 1s;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: auto;
}

/* --- 漢堡 --- */
.stellarnav .menu-toggle {
    display: block;
    width: 55px;
    max-width: 100%;
    padding: 10px;
    border-radius: 99em;
}
.stellarnav .menu-toggle:after {
	content: 'MENU';
	font-size: 11px;
	color: #eed1a7;
	padding-top: 5px;
  }

.stellarnav .menu-toggle span.bars {
    top: 0;
    display: flex;
    height: 18px;
    padding: 0;
    transition: 0.5s;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.stellarnav .menu-toggle span.bars span {
    width: 100%;
    height: 2px;
    background: #eed1a7;
    transition: 0.5s;
    margin: 0;
    padding: 0;
}

.stellarnav .menu-toggle:hover span.bars span:nth-child(2) {    width: 60%;}

  /* 選單開啟 - 漢堡改變 */
.stellarnav.active .menu-toggle span.bars {    height: 35px;}
.stellarnav.active .menu-toggle { background: transparent;}
.stellarnav.active .menu-toggle span.bars span {
    transform: translate(-50%, -50%) rotate(90deg);
    position: absolute;
    top: 50%;
    left: 50%;
}

.stellarnav.active .menu-toggle span.bars span:first-child {    left: 20%;}
.stellarnav.active .menu-toggle span.bars span:nth-child(2) {    top: 60%;}
.stellarnav.active .menu-toggle span.bars span:last-child {    left: 80%;}
.stellarnav.active .menu-toggle:hover span.bars span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
    top: 50%;
    left: 50%;
}

.stellarnav.active .menu-toggle:hover span.bars span:nth-child(2) {    width: 100%;    opacity: 0;}

.stellarnav.active .menu-toggle:hover span.bars span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
    top: 50%;
    left: 50%;
}

/* menu按鈕列表 */
.stellarnav.desktop {    z-index: 1;  }
.stellarnav.desktop>ul {
    position: fixed;
    width: 0vw;
    max-width: 400px;
    height: 100%;
    top: 0;
    bottom: 0;
    right:0;
    display: flex !important;
    margin: 0;
    padding: 0px;
    text-align: center;
    height: 100%;
    transition: .5s;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: -1;
    opacity: 0;
    background: rgba(67,40,20,0.96);
    display: block !important;
    backdrop-filter: blur(10px);
    display: none !important;
}
.pageIndex .stellarnav.left.desktop { animation: menu-in 2s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards; animation-delay: 2s;    background-color: #a5713f; }

@keyframes menu-in{
    0%{opacity: 0;}
    100%{opacity: 1;}
}


/* 墊在按鈕下的背景
.stellarnav.desktop>ul::before {
    content: '';
    width: 100%;
    height: 100%;
    background: #6d7b63cc;
    backdrop-filter: blur(10px);
    position: absolute;
    left: 0;
    top: 0;
    transition: 1s;
    transform: translate(50%, 0%);
} */
/*.stellarnav > ul {    display: none !important;}選單殘影刪除*/
.stellarnav > ul{display: none;}/*選單殘影刪除*/
.stellarnav.desktop.active>ul { 
    transform: unset; opacity: 1; width: 100vw; max-width: 600px; padding: 20px 50px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-top: 100px;
    display: block !important;
}

.stellarnav.desktop.active>ul::before {
    transition: 1s;
    transform: translate(0%, 0%);
}


.stellarnav>ul>li {
    display: block;
    width: 100%;
    max-width: 100%;
    text-align: center;
}

.stellarnav>ul>li a {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    flex-direction: column;
    text-align: left;
    padding: 5px 10px;
    margin: 0;
    position: relative;
    font-size: 15px;
    line-height: 140%;
    line-height: 60px;
    height: 60px;
    color:#c2a575;
}

.stellarnav>ul>li>a::before { 
    content: '';
    width: 0;
    height: 1px;
    border-bottom: 1px solid #fefefe47;
    transition: 1s;
    position: absolute;
    left: 0;
    bottom: 0;
}
.stellarnav.desktop.active>ul>li>a::before {         width: 100%; transition-delay: .3s;}

.stellarnav>ul>li>a:nth-of-type(1)::after, .stellarnav>ul>li.has-sub>a:nth-of-type(1)::after {
    content: "";
    width: 30px;
    height: 2px;
    border-bottom: 2px solid #B5C3B2;
    transition: 1.5s;
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    transition: all 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.stellarnav li.has-sub > a:after {
    content: '';
    margin-left: 0px;
    border-left: unset;
    border-right: unset;
    border-top: unset;
    display: inline-block;
    position: absolute;
    top: 97%;
    right: 0;
    transform: translateY(0px);
}
.stellarnav>ul>li>a:hover:nth-of-type(1)::after, .stellarnav>ul>li.has-sub>a:hover:nth-of-type(1)::after {        width: 100%;}

/* 主按鈕中英翻轉 - 不用可以刪掉 */
.stellarnav>ul>li>a b {
    height: 100%;
    transform: translateY(25px);
}

.stellarnav>ul>li>a b+b {    margin-top: 10px;}
.stellarnav>ul>li>a:hover b {    transform: translateY(-25px);  }

/*下拉+*/
.stellarnav a.dd-toggle .icon-plus:before, .stellarnav a.dd-toggle .icon-plus:after {
    border-bottom: solid 1px var(--logocolor);
}

/* 次分類 */
.stellarnav ul ul { left: 0%; position: relative; width: 100%; background: transparent; transition: all 0.3s ease-in-out; 
overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.stellarnav.desktop li.has-sub a { position: relative;}

.stellarnav.desktop li.has-sub a.dd-toggle { display: inline-block;  position: absolute;  text-align: center;  z-index: 999; padding-right: 0;}
.stellarnav .dd-toggle {  bottom: 15px;}
.stellarnav.desktop li.has-sub a.dd-toggle:before {  display: none;}
.stellarnav.desktop li .has-sub a.dd-toggle { display: none;}
.stellarnav ul ul ul { overflow: hidden; height: 0;}

/*次分類下拉按鈕*/
.stellarnav.desktop li.has-sub a.dd-toggle{display: none;}
.stellarnav.desktop.active li.has-sub a.dd-toggle {display: inline-block;}

/*第2層*/
.stellarnav li li {  border: unset; border-bottom-width: 0; padding-left: 15px; border-bottom: 1px dashed #eeeeee45; }
ul.news_classes li a , .stellarnav li li a {  height: 40px;}
.stellarnav li li a {
    display: block;
    font-size: 14px;
    line-height: 1.5;
    padding: 0;
    padding-top: 11px;
    height: auto;
    color: #d3c39e;
    padding-bottom: 7px;
}
.stellarnav li li a:hover {    color: #fff;}

/* --- 聯絡連結 --- */
.tp_links {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 100%;
}

/* --- 搜尋器 --- */
.box_search {    width: 100%;    order: 5;    display: none;  }

.shop_search_btn {
    width: 100%;
    border-radius: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.box_search input[type=text] {
    width: 100%;
    box-sizing: border-box;
    padding: 15px 10px;
    padding-left: 32px;
    border-radius: 0;
}

/* --- 購物車和匯款連結 --- */
.me_tp_features>a {
    text-align: center;
    display: flex;
    flex-direction: column;
    /* 不要直書可以拿掉 */
    width: 1.2em;
    /* 不要直書可以拿掉 */
    line-height: 1.2;
    letter-spacing: 0;
    justify-content: center;
    align-items: center;
}

.me_tp_features>a span {    margin-top: 5px;}


@media (max-width:1024px) {
    #page {
      /* padding-left: 100px; */
        padding: 0;
    }

    .header_area.sticky, .header_area {        width: 100%;        height: 80px;    }
    .header_area .main_header_area, .header_area.sticky .main_header_area {        width: 100%;    }
/*.navigation>*{      flex:1;    }*/

.nav-brand {
    background: none;
    width: 140px;
    height: auto;
}
.nav-brand img {
    display: block;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.stellarnav.desktop {         justify-content: flex-end;    }
.stellarnav.desktop>ul{        width: 220px;        padding-left: 20px;    }
.me_tp_features {order: 1;      max-width: 200px;      justify-content: flex-end;    }
.me_tp_features>a {      flex-direction: row;      width: auto;    }
.tp_links {      justify-content: flex-end;    }
}

@media screen and (max-width: 768px) { 
    .pageIndex .header_area {
        position:fixed ;
        background: var(--MainColor);
        padding: 10px;
    }
    .header_area { padding: 10px; background: var(--MainColor); }

    /*LOGO*/
    /*.nav-header { filter: invert(0.5); }*/
    .me_tp_features {display: none;}
    .nav-brand {  max-width: 80px; padding: 0; }
    .nav-header { max-width: fit-content;}

    /*選單*/
    .stellarnav.mobile { right: 0; left: auto; }
    /*.stellarnav .menu-toggle span.bars span { background: #8f8f8f;}*/
    /*.header_area.sticky { padding: 10px;}*/
    .stellarnav.mobile.left > ul { width: 100vw;}

    .stellarnav.mobile.left > ul {
        transform: unset; opacity: 1; width: 100vw; max-width: 400px;  padding: 20px 50px;  right: 0;  left: auto;flex-direction: column;
        background: rgb(255 255 255 / 89%) ;backdrop-filter: blur(10px); justify-content: flex-start; }
    .stellarnav.mobile ul {background: transparent;}
    .stellarnav.mobile > ul > li { border-bottom: unset; padding: 5px 30px; }
    .stellarnav.mobile > ul > li > a {
        line-height: 230%;
        color: #343a40;
        overflow: hidden;
        /* height: 60px; */
        /* max-height: 60px; */
        /* padding: 5px 30px; */
    }
    .stellarnav.mobile li.open { background: transparent; padding: 3px;}
    .stellarnav.mobile > ul > li > a b {line-height: 230%;}
    .stellarnav.mobile li a { border-bottom: 1px solid rgb(255 255 255); color: var(--logocolor); }
    .stellarnav .dd-toggle { bottom: auto;}
    .stellarnav li li a { border-bottom: unset !important;}

    .stellarnav .icon-close:after , .stellarnav .icon-close:before { border-bottom: solid 2px #777;width: 30px;}
    .stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu { background: transparent;}
    .stellarnav .icon-close {    padding-right: 8%;}
}
/*}*/

/*漢堡截止*/



/*電腦LOGO*/
.nav-brand {
    display: flex;
    align-items: center;
    padding: 20px 0 10px 10px;
    animation: down 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
    animation-delay: 2s;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
@keyframes down {
    0%{        opacity: 0;        transform: translate(0,-20px);    }
    100%{        opacity: 1;        transform: translate(0,0);    }
}

/*.header_area a.nav-brand::before {
    content: "";
    display: block;
    background: var(--MainColor);
    /*box-shadow: 1px 1px 5px #00000059;
    width: 130%;
    height: 105%;
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translate(-50%, 0px);
    z-index: -2;
    border-radius: 0 0 10px 10px;
    transition: all 0.3s;
}*/
.header_area.sticky a.nav-brand::before {    top: 0;    transition: all 1s;}
/
/*.nav-brand img {
       filter: brightness(0) invert(10);}*/
.header_area.sticky .nav-brand img {
    filter: none;  }
.footer_logo { max-width: 180px;}

/* 商品下拉超過30個變大 */
.stellarnav.desktop li.bigMenu>ul{display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); left: 0; width: 100%; position: fixed; padding: 20px;}
.stellarnav.desktop li.bigMenu ul ul{top: 100%; left: 0; width: 100%; background: #efefef; height: auto; max-height: 300px; overflow: auto;}
.stellarnav.desktop li.bigMenu ul ul li{margin: 0;} 
.stellarnav.hasBigMenu li.bigMenu li.has-sub > a:after{border-left: 6px solid transparent; border-bottom:unset; border-right: 6px solid transparent; border-top: 6px solid #898989; right: 5px;}
/* 商品下拉超過30個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.prod_part section {max-width: 1400px;}
.product_page .main_part { max-width:1500px;}
/* .product_info_page .main_part { max-width:1200px;} */
.i_prod_tit, .i_video_tit {color: #6e5b42;}
.product_page .show_content,
.product_info_page .show_content { width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap; align-items: flex-start; align-content: flex-start;}
.product_page .product_menu_list { position: relative; width: 220px; letter-spacing: 1px; /*border-right: 1px solid #ccc;*/min-height: 30vw;}
.product_page .products-list,
.product-wrapper { width: calc(100% - 270px);}
ul.page { width: 100%;}
.inquiry_a3 { background:#d1a672;}
.product-layer-two li ul { position:static; margin-top:5px; /*display:block !important;*/ width:100%; margin-left:0;}
.product-layer-two li:hover ul { border: none !important; /*display:block !important;*/}
.product-layer-two li li { display: block; padding:0; transition:all ease .3s;}
.product-layer-two li li a{ padding:5px 10px;}
.product-layer-two li li:hover > a { background:#fff; color:#ad925e;}
.product-layer-two > li { width: 100%;  max-width: 100%;  padding: 0;  text-align: left; border-bottom: none;  padding-bottom: 5px;}
.product-layer-two > li ul > li + li { margin-top:5px;}

.product_info_page .product-layer-two { display: none;}
.product_info_page .products-list,
.product-wrapper { width: 100%;}
.pic img { transition: transform 0.3s ease; /* 添加過渡效果，使放大更平滑 */border-radius: 20px;}
.products-list .pic:hover img  { transform: scale(1.2);}
.product-layer-two li li:hover{ margin-left: 15px;}
.product-layer-two li li > a:before { content: ""; position: absolute; width: 12px; height: 8px; background: transparent; left: 0; margin-left: -20px; top: 50%; margin-top: -4px; clip-path: polygon(0 0, 100% 50% , 0 100%);}
.product-layer-two li li:hover > a:before { background:#ad925e;}

.product_info_page .half_box { width: 100%; float: none; padding-right: 0;}
.product_info_page .half_box li.btn_blankTop { margin-top: 50px; justify-content: space-between; display: flex;}
.product_info_page .half_box li.btn_blankTop input { width: calc(50% - 10px); background-image: none; padding: 0; text-align: center;}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 768px) {
.product_menu_list,
.products-list,
.product-wrapper { width: 100%;}
.product-layer-two { margin-right: 0; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); grid-gap: 5px;}
.product_page .product-layer-two,
.product_page .products-list { width: 100%; border-right: none;}
.product_page .product_menu_list>h5{display: block;font-size: 1.2em; font-weight: 400;}
.product_page .show_content > a { order: 1;}
.product_page ul.products-list { order: 2;}
.product_page ul.page { order: 3;}
.product_page .product_menu_list {width: 100%; order: 0; min-height: unset;}
}
@media screen and (max-width: 600px) {}
@media screen and (max-width: 458px) { 
 .nav-brand {  max-width: 50px; padding: 0;padding:0px; }
 }



.product-layer-two li a {  position: relative;  border: none;  background: #a79277;  padding: 7px 16px; display: block; font-size: 15px;  color: #ffffff;  border-radius: 13px;}
.product-layer-two li li a { background: #fff;  font-size: 14px;  color: #333;  font-weight: 600;  letter-spacing: 0;  border-bottom: 1px solid #eeeeee !important;  border-radius: 0;  padding: 10px;}
.product-layer-two li i {  position: absolute;  right: 0;  top: 0; width: 37px;
 height: 37px;  display: flex;  justify-content: center;  align-items: center;  cursor: pointer;  color: rgba(255, 255, 255, 0.9);}
.products-list .name {  font-size: 15px;  font-weight: 600;  height: 20px;}
.products-list .more {  border: none;  color: #ffffff;  font-size: 14px;  font-weight: bold; line-height: 32px;  text-align: center;  transition: all .5s; position: absolute; transform: translateX(-50%);  left: 50%;  bottom: 0;  background: #aeaeae;  border-radius: 10px;}

.products-list .price b {   color: #C00;  font-size: 15px; }
.product_info {  margin: 20px 0;  width: 95%;}
.product_info li .txt_box {  display: inline-block;  vertical-align: top;  color: #444;  font-size: 14px;  text-align: justify;}
.sidebarBtn h2 { color: #111;  font-size: 20px;}
div#number_area {  color: #868686;}
.product_info li span {   display: block;   font-size: 14px;  color: #777;  margin-bottom: 3px;  font-family: 'Noto Serif TC';  letter-spacing: 1px;  font-weight: 600;  padding-bottom: 5px;}
.radio-inline__input:checked + .radio-inline__label { background: #a79277; /* border: 1px solid #000; */  color: #ffffff;}

.pd_tabTitle li.activeTab::after {  height: 1px;  background: #999999;}
.pd_tabTitle li a { display: block;  padding: 10px 10px;  color: #666666; line-height: 1.4; background: transparent;  font-size: 20px;  font-weight: 700;}
.prod_related h6 span:before {  content: '相關推薦';  font-size: 20px;  color: #666666; letter-spacing: 1px;}

.sidebarBtn {   padding: 15px; display: inline-block;  vertical-align: top;  border: 0px #ddd solid;  background: #fff;  box-shadow: 0px 0px 0px 2px #f5f5f5;}
.sidebarBtn .price {  color: #333;   font-size: 22px;  font-weight: bold; padding: 10px 0;  border-bottom: 1px solid #e6e6e6;  letter-spacing: 1px;}




form {  display: flex; justify-content: space-around;}
.inquiry_a1 { background: #a79277;  font-size: 12px;  width: 47%;}
.inquiry_a2 { background: #a79277;  font-size: 12px;  width: 47%;}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/* 內頁BANNER 設定 */

.banner h5 {
  width: 100%;
  margin: 0 auto;
  font-size: 28px;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 3px;
  font-weight: 500;
  opacity: 0;
  animation: fadeIn 3s ease-in-out forwards;
}

/* 在 h5 下面添加一行字 */
.banner h5::after {
  content: "做甜點的人，要用心也要有愛"; /* 添加的文字內容 */
  display: block; /* 讓文字換行顯示 */
  font-size: 16px; /* 字體大小 */
  color: #fff; /* 文字顏色 */
  text-align: center; /* 文字居中 */
  margin-top: 10px; /* 與 h5 的間距 */
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5); /* 文字陰影 */
}

.banner {
  background-image: url(https://pic03.eapple.com.tw/);
  background-position: center;
  background-size: cover;
  overflow: hidden;
  position: relative;
  z-index: 1;
  height: 350px; /* 設定 Banner 高度 */
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(173, 151, 123, 0.2); /* 半透明黑色遮罩 */
  backdrop-filter: blur(3px); /* 背景模糊效果 */
  z-index: -1;
}

.banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 180%; /* 雙倍高度以實現滾動效果 */
  background-image: url(https://pic03.eapple.com.tw/0963245247/banner.jpg);
  background-position: center;
  background-size: cover;
  animation: scrollBackground 20s linear infinite; /* 背景垂直滾動動畫 */
  z-index: -2;
}

/* 淡入動畫 */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -60%); /* 從上方淡入 */
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* 背景垂直滾動動畫 */
@keyframes scrollBackground {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%); /* 滾動到背景的一半高度 */
  }
}

/* 響應式設計 */
@media screen and (max-width: 1024px) {
  .banner {
    height: 300px; /* 調整高度 */
  }
}

@media screen and (max-width: 768px) {
  .banner {
    height: 200px; /* 調整高度 */
    background-position: left center; /* 手機版時背景圖片靠左顯示 */
  }
  .banner h5 {
    font-size: 24px; /* 調整文字大小 */
  }
  .banner::after {
    background-position: left center; /* 手機版時滾動背景圖片靠左顯示 */
  }
}



/*●●●●●●●●●●●●●●●●●●●●●●●●   文章分類管理   ●●●●●●●●●●●●●●●●●●●●●●●●*/
/*※※※※※【【  固定區塊不動↓↓↓  】】※※※※※*/

/*首頁文章管理*/
.products-box {    width: 90%;    max-width: 1300px;    margin: 100px auto;    border-top: 1px solid #ccc;    padding-top: 50px;}
.module_i_news ul {  display: flex;  flex-wrap: wrap;   max-width: 1400px;}
.module_i_news li {width: 23%;  padding: 10px;  background: #ffffff; border: 1px solid #eee;border-radius: 20px;}
.i_blog_le img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.i_blog_ri , .i_blog_le { width: 100%;}
.i_blog_ri p {  font-size: 15px;   color: #666;   line-height: 150%;  display: -webkit-box;  -webkit-line-clamp: 2;  -webkit-box-orient: vertical;   white-space: normal;  overflow: hidden;  word-break: break-all;}

.module_i_news li a {  position: relative;  display: flex;  grid-gap: 10px;  flex-direction: column;}
.module_i_news li a:before , .module_i_news li a:after , .subbox_item a:before , .subbox_item a:after{    transition: 0.3s;}
.module_i_news li a:after , .subbox_item a:after{ background: rgb(222 184 135 / 70%);content: none;}
.module_i_news li a:before, .subbox_item a:before {
    background: rgb(167 146 119 / 89%);
    color: #fff;
}
.module_i_news li a:before , .subbox_item a:before { transform: translateX(-50%);    width: 100%;   top: unset; }
.module_i_news li a:hover:before , .subbox_item a:hover:before { opacity: 1;  transform: translateX(-50%);  bottom: 0;}
.module_i_news li a:before {  left: 50%;   font-size: 18px;  padding: 10px 5px;}


.module_i_news .title_i_box h4 { 	color: #555;font-size: 16px;}
.module_i_news .title_i_box h4:before {
    content: "Comment";
    display: block;
    color: #a79277;
    font-size: 36px;
    /* letter-spacing: 1px; */
    font-family: "Dancing Script", cursive;
	font-weight:bold;
}

/*文章分享變1排3個*/
.blog_page .main_part {    max-width: 1400px;}
.blog_list_le , .blog_list_ri {    width: 100%;}
.blog_subbox {    display: flex;    flex-wrap: wrap;    justify-content: flex-start;}
.subbox_item { width: calc(100% / 3);  padding: 5px;}
.i_blog_ri em { font-size: 12px;   font-style: normal;  display: block;   margin: 5px 0;}

@media screen and (max-width: 980px) {
.module_i_news li , .subbox_item {    width: 31%;}
.module_i_news ul {    max-width: 100%;}
.products-box {    margin: 70px auto;}
.module_i_news {    padding: 70px 20px;}
}

@media screen and (max-width: 768px) {
.module_i_news li , .subbox_item {    width: 48%;}
}

@media screen and (max-width: 600px) {
.module_i_news {    padding: 50px 20px;}
.module_i_news li , .subbox_item{    width: 100%;    margin: 0 auto;    max-width: 350px;}
.products-box {    margin: 50px auto;}
.module_i_news .title_i_box h4 {    font-size:32px;}
}


/*------------------------------------------------------------------------------*/



/*文章設定*/

h5.blog_le_t { font-family: 'Noto Sans TC','Microsoft JhengHei', sans-serif;}
h5.blog_le_t span { font-family: 'Geologica';}
h5.blog_le_t {letter-spacing: 0;}
.accordion li .link a {font-weight: 500;}
.blog_search input[type=search] {border-radius: 0;}
.blog_le .accordion {  border-radius: 0;   border: NONE;}
.accordion li:not(:last-of-type) {  border-bottom: 1px solid #fff;}
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category { background: #00a0e8 !important;   transition: all 0.3s;}
.blog_subbox {  display: grid;  grid-template-columns: 1fr 1fr 1fr;  grid-gap: 10px;  background: #ffffff5e; padding: 12px;}
.blog_subbox:before {content: none;}
.subbox_item {   width: 100%;  margin-bottom: 0;}
.blog_list_le {  padding: 0; width: 100%;}
.blog_list_ri {  padding: 12px 0;  width: 100%;}
.blog_list_ri em {   font-size: 12px;  color: #999; font-style: normal;  display: block;  margin: 5px 0;}
.blog_list_ri p { -webkit-line-clamp: 2;  line-height: 160%;   font-size: 14px;   font-weight: bold;   letter-spacing: 0.5px;}
.blog_list_le {  position: relative;  height: auto; aspect-ratio: 4 / 3;  overflow: hidden;   border-radius: 20px;}
.blog_list_le img {   min-width: 100%;   display: block;  width: 100%;  margin: 0 auto;  height: 100%;   object-fit: cover;  object-position: center;}
.subbox_item a:hover .blog_list_le img { transform: scale(1.2);}
h4.blog_category_title { border-bottom: 1px #afafaf solid; font-size: 22px;}
.submenu a:hover { background: #666;  color: #FFF;}
.submenu a {  display: block;   position: relative;  color: #666;   padding: 13px 6px 12px 29px;  letter-spacing: 1px;  font-size: 12px;}
.subbox_item a:before, .subbox_item a:after {content: none;}
.subbox_item a:hover .blog_list_le:before, .subbox_item a:hover .blog_list_le:after {  opacity: 1;}
.subbox_item a .blog_list_le:after {   content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 8;
    background: rgba(0,0,0,.7);
    opacity: 0;
    transition: all .4s;
}
.subbox_item a .blog_list_le:before {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    content: 'VIEW MORE +';
    font-size: 14px;
    font-weight: 400;
    color: #f0f0f0;
    transform: translate(-50%, -50%);
    width: 148px;
    height: 40px;
    left: 50%;
    top: 50%;
    z-index: 9;
    opacity: 0;
    transition: ease all .4s;
    letter-spacing: 1px;
}
	
.blog_list_ri h5 {  font-weight: bold;}	

/*內頁*/
.blog_back {  width: 100%;   margin: 0 auto;  display: grid;  grid-template-columns: repeat(3, 1fr);  grid-gap: 10px;  justify-content: center;}
.blog_back a {width: 100%;}
.blog_back a.article_btn_back {  background: #00a0e8;}
h5.blog_le_t, .blog_le .accordion {   display: block;}

.blog_back a.article_btn_prev,.blog_back a.article_btn_next  {
    background: #d1c0aa;
}



@media screen and (max-width: 1024px) {
.blog_subbox {  grid-template-columns: 1fr 1fr;}
}

@media screen and (max-width: 768px) {
.blog_subbox {  grid-template-columns: 1fr; }
}

/*※※※※※【【  此案件更動處↓↓↓  】】※※※※※*/
/*側邊*/
.blog_le .accordion > li:hover, .blog_le .accordion > li.on_this_category { background: #a79277 !important;}
.subbox_item a { display: grid;  grid-template-columns: auto;  position: relative;  grid-gap: 20px;}
.news_related h6 span:before {  content: '相關文章';  font-size: 24px; color: #333333;}
.news_related_list li a {   background: transparent;}
.blog_back a.article_btn_back {   background: #a79277;}
.articel_mainPic img { display: none; max-width: 100%;}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


.path p, .path p a { display: none;}


@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
.footer.with_shopping_mode { padding:20px 0 70px; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}



/*※※※※※【【  此案件更動處↓↓↓  】】※※※※※*/



.i_news_b a i.fa-solid.fa-arrow-right { margin: 0;}
.i_news_b a:hover i.fa-solid.fa-arrow-right { margin:0}
.animated-arrow {  background: #a79277;  font-size: 14px;  width: 170px;  letter-spacing: 1px;border-radius: 10px;}
b, strong {  font-weight: 500;}
.animated-arrow:hover {  background: #DBA879;}

.news_list ul li p:after { content: 'Read more';}


.news_part .title_i_box h4:before {  content: 'NEWS';  display: block;  font-family: "Oswald", sans-serif;   color: #005b7e;
 font-size: 36px; letter-spacing: 1px;margin-bottom: -5px;}
.news_part .title_i_box h4 { color: #555;  font-size: 16px;}
.news_part {
    width: 100%;
    padding: 50px 20px;
    background: #fff;
}
.fa-arrow-right::before {
    content: "\f061";
	display:none;
}

.i_blog_b a i.fa-solid.fa-arrow-right { margin:0 }
/* hover */
.i_blog_b a:hover i.fa-solid.fa-arrow-right { margin:0px;}


@media screen and (max-width: 1200px){
.news_list ul li {  border: none;  margin-bottom: 7px;  background: transparent;	border-bottom: 1px #eee solid; }}
/*footer資訊欄位*/

.footer {
    padding-top: 55px;
    background: #efd2a4;letter-spacing: -1px;font-weight: 800;
}

.footer .center {
    max-width: 90%;
}

.footer_info {
    display: flex;
    padding: 0px;
    align-items: flex-start;
    flex-direction: row-reverse;
    justify-content: space-between;
    flex-wrap: wrap;font-weight: 800;
}

.footer_info ul {
    display: flex;
    letter-spacing: 0;
    padding: 0 0 36px;
    flex-direction: column-reverse;
    width: auto;letter-spacing: -1px;  
}

.footer_info li:nth-child(1) {
    padding-top: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.footer_info li:nth-child(2) {
    padding-top: 0;
}

.footer_info li p,
.footer_info li p a {
    color: #684e35;
    font-size: 15px;
    line-height: 230%;
}

.footer_info li p a:hover, .footer_menu a:hover {
    color: #3C1516;    background: none;
}

.footer_menu a:first-child {
    display: none;
}

.footer_menu a:nth-child(2) {
    padding: 0 20px;
    padding-left: 0;
}

.footer_menu a {
    margin: 0;
    text-align: left;
    padding: 5px 0;
    transition: all 0.3s;
    color: #684e35;
    border: none;
    background: transparent;
    font-size: 13px;
    padding-right: 20px;
    text-transform: uppercase;
}

.footer_menu a:hover {
    background: transparent;
    opacity: .8;
    color: #794708;
}

/*版權*/
.copy {
    color: #7b6035;
    border: none;
    text-align: right;
    padding: 0px 0 25px;
    max-width: 90%;
    margin: auto;
    font-size: 12px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.copy a {
    color: #7b6035;
    transition: all 0.3s;
}

.copy a:hover {
    color: #000;
}

.box_link {
    display: flex;
    left: 0%;
    top: 100%;
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    display: none;
}

.box_link a {
    transition: all 0.3s;
    border: none;
    color: #666;
    margin: 0 2px;
    width: auto;
    text-align: right;
    font-size: 20px;
    font-size: 16px;
}

.box_link a:hover {
    background: transparent;
    opacity: .8;
}

.box_link a:first-child {
    padding-left: 10px;
}

/*Logo/＝＝＝＝＝*/

.footer_logo {
    width: 150px;
    margin: 0;
}

.footer_logo img {
    max-width: 150px;
    width: 100%;
    display: inline-block;
    background-size: contain;
    background-position: top right;
	padding-right: 40px;
    margin-top: 10px;
}


/*按鈕/＝＝＝＝＝*/
.animated-arrow {
    background: #516fda;
}

.contact_form li.last cite,
.contact_form li.last blockquote {
    background: #252727;
    position: relative;
    font-weight: bold;
    text-align: center;
    background: #ffffff;
    border-radius: 30px;
    padding: 9px 32px;
    text-decoration: none;
    transition: .3s;
    width: 180px;
    color: #333;
    border: none;
    margin: 0 5px;
}

.contact_form li:nth-child(n+2){
    padding-top: 20px;
}

@media screen and (max-width: 768px) {
  .footer_info {    justify-content: center;}
}
@media screen and (max-width: 600px) {
.copy {
   text-align: left;
    justify-content: flex-start;
    align-items: left;
    align-content: left;
  
}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*●●●●●●●●●●●●●●●●●●●●●●●●   聯絡我們(表單功能)   ●●●●●●●●●●●●●●●●●●●●●●●●*/
/*※※※※※【【  固定區塊不動↓↓↓  】】※※※※※*/


/*聯絡我們/＝＝＝＝＝*/
.list_before.info li {    padding-left: 0;}
.contact_le_map a {    background: #888888;}
.contact_form li.last {    text-align: center;}


.contact_form li.last blockquote, .contact_form li.last cite { border: none;}


.contact_editbox { margin: auto;  padding: 0;}
.contact_content .information_left { display: none;}
.fa-arrow-right::before { display: none;}
.contact_form li.last cite { background: #005b7e;  color: #fff;}

/*聯絡我們MAP區改滿版編輯區*/
.contact_content {  width: 100%;    padding: 0;    padding-top: 20px;}
.contact_content .information_right { width: calc(100% - 750px);  padding-left: 30px;}
.contact_page .main_part {  max-width: 100%;    padding: 0;}
.contact_page .path {  display: none;}
.contact_content .information_left {  width: 100%;  padding: 0;}
.contact_content .information_right { margin: 0 auto;   padding: 50px 0; display: block;   background: #ffffff;   border-radius: 25px;}
.contact_content .information_left > h4.blank_letter {  display: none;}
.contact_content .list_before {  width: 100%;   max-width: 100%;    padding: 0;    margin: 0 auto;}
.contact_content .list_before > li:not(.contact_le_nomap) {  display: none;}
.contact_content .list_before.info > li:last-of-type {  padding: 0;    margin: 0;}
.red {    padding: 0;}
.contact_content .information_right > * { width: 90%;   max-width: 1000px;  margin: 0 auto;  padding-bottom: 50px;  font-family: 'Noto Serif TC';  color: #545454;   font-weight: 600;  font-size: 22px;}
.contact_form { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(500px,100%), 1fr));  gap: 5px 10px;  letter-spacing: 1px;}
.contact_form li input.noborder {  border: none;  border-bottom: 1px solid #e6e6e6;}
.contact_form li {    border: none;    width: 100%;    padding: 10px;}
.contact_form li {  display: grid;  grid-template-columns: auto;  grid-gap: 0px;}
.contact_form li .form__label {  width: 100%;   max-width: 100%;   margin: 0;  padding: 0 0 10px;  line-height: 160%;  text-align: justify;  font-weight: 700;
 display: flex;  flex-direction: row-reverse; justify-content: flex-end; background: none; font-size: 15px;}
.contact_form li:last-child { grid-column: 1 / -1;  text-align: center;}
.form select { background-image:none;background-color: #fff;  border: 1px solid #fff;  width: 100%;}
input[type="checkbox"] { margin-right: 5px;}
input[type="checkbox"]:nth-child(n+2) { margin-left: 5px;}
input#checknum { width: 85%;  margin-right: 2%;}

.contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert {  font-size: 15px;  font-weight: 300;  width: 256px;}



@media screen and (max-width: 1400px) {
.contact_content .information_right { width: calc(100% - 300px);}
}


@media screen and (max-width: 1400px) {.contact_content .information_right {   width: 90%;}
}


@media screen and (max-width: 768px) {.contact_content .information_right {   width: 95%;}
.footer_logo {    width: 120px;}
}


/*有的沒的*/
.info_fix_links {display: flex !important;}
.info_fix>span {display:none;}
.info_fix_links a {background:rgb(105 78 50);border-radius: 100px;}
.info_fix_links a:hover {background-color: #bd844c;}
.contact_form li.last cite {    background: #ac977d;}
#content_main { margin-top:0vh;min-height: 0px;}


/*●●●●●●●●●●●●●●●●●●●●●●●●   相簿管理(有分類)   ●●●●●●●●●●●●●●●●●●●●●●●●*/
/*※※※※※【【  固定區塊不動↓↓↓  】】※※※※※*/
/*分類頁面*/
.subalbum-menu{padding: 0;margin: 0;}
.subalbum-menu h2 {font-size: 18px;color: #333;letter-spacing: .6rem;display: none;}
.show-list .show_pic {aspect-ratio: 4 / 3;}
.show-list .show_pic img {transform: scale(1);transition: all .5s;border-radius: 20px;}
.show-list .show_name{color: #333;letter-spacing: .6rem;text-align: center;font-weight: 500;height: 40px;margin: 15px 0;
font-size: 18px;}
.show-list .item .overlay {-webkit-transform: scale(1);transform: scale(1);}
.show-list .item:hover .show_name {color: #b6a292;}
.show-list .item:hover .show_pic img {transform: scale(1.05);filter: grayscale(0);-webkit-filter: grayscale(0);}
/*相本頁面*/
.show-list {grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));}
.other_subalbum li a p {position: absolute;bottom: 15%;left: 50%;transform: translate(-50%, 0);color: #fff;
transition: all .5s;}
.other_subalbum li:hover a p{color: transparent;} 
.album_fixed_title{background: transparent;}
.other_album {margin: 50px 0;}
.other_album_choice li {background: #b6a292;padding: 5px 20px;border-radius: 0;font-size: 13px;}

@media screen and (max-width: 900px){
	
	.show-list {grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));}
}

/*分類管理*/
.show-list .show_name {color: rgb(185 177 167);}
.show-list .item:hover .show_name {color: rgb(185 187 187);}
/*相片頁*/
.album_descrip{color: rgb(185 177 167)}
.album_fixed_title{color: #ccc;}
.other_album_choice li {background: #002FA7;}
.swiper-pagination-bullet {
    width: 100px;
    height: 3px;
    border-radius: 0%;
    background:#433c43;
}

.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal{
 left: 50%;}
 @media screen and (max-width: 768px){
 .swiper-pagination-bullet {
    width: 33px;}
}
 @media screen and (max-width: 425px){
 .swiper-pagination-bullet {
    width: 15px;}
}
@media screen and (max-width: 1365px) {

.footer .center {
    max-width: 93%;
}
.info_fix {
    width: 55px;
}
.swiper-banner:after,.bannerindex .swiper-wrapper::before  {
 
}
.header_area {
 padding: 0px 13px 0 0;
}
.navigation {
    padding-left: 20px;
}
}