*{
  font-family: "Noto Serif TC", serif;
}
body{
  background-color: #F4F0EC;
}
@media (min-width: 1500px) {
  .container {
      width: 1480px;
  }
}


.navbar{
  padding: 20px 0;
}
.navbar-nav{
  padding-top: 15px;
}
.navbar-nav li a{
  font-size: 18px;
  color: #BF9F75;
  letter-spacing: 1.5px;
}

a:hover, a:focus{
  text-decoration: none;
}


.header-Wrap{
  overflow: hidden;
}

.header_Item{
  display: flex;
  align-items: center;
}
@media (max-width: 992px){
  .header_Item{
    flex-direction: column;
  }
}
.header_Item img{
  max-width: 100%;
}


.header_Item .text-wrap h3{
  color: #BF9F75;
  font-size: 45px;
  font-weight: 500;
  letter-spacing: 5px;
}
.header_Item .text-wrap h4{
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 5px;
  color: #454545;
}
.header_Item .text-wrap h5{
  font-size: 18px;
  color: #BF9F75;
  margin-top: 60px;
  line-height: 1.3;
}
.header_Item .img-wrap01{
  border-radius: 0 0 150px 0;
}


.header_Item .img-wrap01 img{
  border-radius: 0 0 clamp(80px, 12vw, 150px) 0;
}
.header_Item .img-wrap02 img{
  border-radius: clamp(80px, 12vw, 150px) 0 0 0;
}
.header_Item .text-wrap{
  margin: 30px 0;
}
.header_Item .img-wrap02{
  position: relative;
  padding: 0;
  float: right;
}
.header_Item .img-wrap02 .appear{
  background: #BF9F75;
  border-radius: 40% 0 40% 0;
  flex: none;
  width: clamp(100px, 15vw, 250px);
  height: clamp(100px, 15vw, 250px); 
  opacity: 0.3;
  position: absolute;
  bottom: -15%;     
  left: -14%;  
  max-width: 100%;
}

/* 按鈕 */
/* 按鈕 */
.btn-container {
    position: relative;
    display: inline-block;
    margin: 30px 0;
}

.more-btn {
    background: linear-gradient(135deg, #c4a574 0%, #a88d5f 100%);
    color: white;
    border: none;
    padding: 19px 30px;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1.5px;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
}

.more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.more-btn:hover::before {
    left: 100%;
}

.more-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 40px rgba(164, 141, 95, 0.4);
    background: linear-gradient(135deg, #d4b584 0%, #b89d6f 100%);
    color: white;
}

.more-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(164, 141, 95, 0.3);
}

.more-btn:visited {
    color: white;
}

.arrow {
    display: inline-block;
    width: 15px;
    height: 1px;
    background: white;
    position: relative;
    margin-left: 15px;
    margin-bottom: 6px;
    transition: all 0.3s ease;
}

.arrow::after {
    content: '';
    position: absolute;
    right: -3px;
    top: -4px;
    width: 8px;
    height: 8px;
    border-top: 1px solid white;
    border-right: 1px solid white;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.more-btn:hover .arrow {
    margin-left: 20px;
    width: 30px;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: rippleEffect 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* @media (max-width: 768px) {
    h1 {
        font-size: 2rem;
        letter-spacing: 0.3rem;
    }

    .subtitle {
        font-size: 1.8rem;
        margin-bottom: 3rem;
    }

    .more-btn {
        padding: 20px 60px;
        font-size: 1.5rem;
        letter-spacing: 0.2rem;
    }
} */

/* about */
.about{
  padding: 200px 0 100px;
  overflow: hidden;
}
@media (max-width: 768px){
  .about{
    padding: 40px 0 0;
  }
}
.about .left{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px){
  .about .left{
    flex-direction: column;
  }
}
.about .text-wrap h2{
  font-family: "Cormorant", serif;
  color: #BF9F75;
  font-size: 60px;
  margin-bottom: 0px;
}
.about .text-wrap h3{
  margin-top: 0px;
}
.about .text-wrap p{
  max-width: 350px;
  font-size: 16px;
  color: #636363;
  letter-spacing: 1.5px;
  line-height: 1.8;
  margin: 30px 0 0;
}
.about .text-wrap{
  margin-left: 100px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 992px){
  .about .text-wrap{
    margin: 30px;
  }
}
.about .right{
  position: relative;
}
.about .about-wrap .appear{
  background: #C4BEB7;
  border-radius: 40% 0 40% 0;
  flex: none;
  width: clamp(100px, 15vw, 250px);
  height: clamp(100px, 15vw, 250px); 
  opacity: 0.6;
  position: absolute;
  top: 320px;     
  left: 40%;  
  max-width: 100%;
}

.about02{
  padding: 100px 0;
}
@media (max-width: 768px){
  .about02{
    padding: 50px 0;
  }
}
.about02 .about02-wrap{
  background-color: #EFE7DC;
  border-radius: 100px 0 0 0;
  padding: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px){
  .about02 .about02-wrap{
    flex-direction: column;
    padding: 40px 20px;
  }
}
.about02 .title-wrap{
  padding: 20px;
  max-width: 450px;
}

.title-wrap h2{
  font-size: 32px;
  font-weight: 600;
  color: #BF9F75;
  letter-spacing: 1.8px;
}
.title-wrap h4{
  font-size: 20px;
  letter-spacing: 1.8px;
  line-height: 1.5;
  margin-top: 30px;
}
.text-marquee {
    width: 100%;
    overflow: hidden;
}

.text-track {
    display: flex;
    gap: 100px;
    animation: textScroll 25s linear infinite;
    width: fit-content;
    white-space: nowrap;
}

.text-track span {
    font-size: 150px;
    font-weight: 700;
    font-family: "Cormorant", serif;
    color: #bf9f7552;
    text-transform: uppercase;
    letter-spacing: -5px;
    
}

@keyframes textScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.text-track:hover {
    animation-play-state: paused;
}

/* product */
.product {
  padding: 80px 0 200px;
}
@media (max-width: 768px){
  .product {
    padding: 40px 0 80px;
  }
}
.product .title-wrap{
  padding: 0 50px;
}
@media (max-width: 768px){
  .product .title-wrap{
    padding: 0 10px;
  }
}
/* 首頁 熱門商品 Owl Carousel 設定 */

.owl-nav {
    width: 100%;
    position: absolute;
    top: 25%;
}

.owl-prev {
    position: absolute;
    left: 0px;
}

.owl-next {
    position: absolute;
    right: 0px;
}

.owl-carousel .fa {
    color: #fff;
    font-size: 40px;
    background-image: none;
    background-color: #BF9F75;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    position: relative;
    transition: all .2s;
}
.owl-carousel .fa:hover{
    background-color: #b3b3b3;
    transform: scale(1.1);
}
.owl-carousel .fa-angle-right {
    margin-right: -29px;
}
.owl-carousel .fa-angle-left {
    margin-left: -29px;
}
@media screen and (max-width: 768px) {
  .owl-carousel .fa-angle-right,
  .owl-carousel .fa-angle-left {
    margin-right: 0;
    margin-left: 0;
  }
}
.owl-carousel .fa-angle-left:before{
    position: absolute;
    top: 18%;
    left: 5%;
}
.owl-carousel .fa-angle-right:before{
    position: absolute;
    top: 14%;
    left: 44%;
}
.owl-carousel .fa-angle-left:before{
    position: absolute;
    top: 15%;
    right: 15%;
}

.owl-dots {
    display: none;
}

/* .owl-dot span {
    background-color: rgba(22, 80, 152, 0.5);
    display: inline-block;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    margin: 5px;
}

.owl-dots .active span {
    background-color: rgba(22, 80, 152, 1);
}

.owl-dot:hover span {
    background-color: rgba(22, 80, 152, 1);
} */

/* Owl Carousel 商品 style */

.owl-item .item .pro_main,
.owl-item .item .pro_item .pro_txt_box .pro_text,
.owl-item .item .pro_sale .pro_price,
.owl-item .item .pro_sale .pro_btn .fa {
    display: none;
}

.owl-item .item .pro_item .pro_title {
    color: #333333;
    font-size: 18px;
    font-weight: bold;
    margin: 20px;
}

.owl-item .item .pro_item a:hover {
    text-decoration: none;
}

.owl-item .item .pro_item .pro_title:hover {
    text-decoration: none;
}

.owl-item .item .pro_sale {
    color: #888888;
    text-align: center;
    padding: 10px 30px 30px;
}

.owl-item .item .pro_btn {
    /* color: #ffffff;
    background-color: #277ad0;
    border-radius: 20px;
    display: inline-block;
    padding: 10px 27px;
    transition: all .4s; */
    display: none;
}

.owl-item .item .pro_btn:hover {
    background-color: #185eb1;
    text-decoration: none;
}

.owl-item .item .pro_item {
    overflow: hidden;
}

.owl-item .item .pro_item a img {
    background-color: #ffffff;
    display: block;
    border-radius: 30px;
    transform: scale(1);
    transition: all .4s;
}

.owl-item .item:hover .pro_item a img {
    transform: scale(1.05);
}
.owl-item .on_sale{
    display: none;
}
.owl-carousel .owl-item{
    border-radius: 30px;
}
.product .content{
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1160px) {
  .product .content{
    flex-direction: column;
  }
}
.news{
  background-color: #FFF9F1;
  padding: 40px 0 80px;
  position: relative;
  border-radius: 0 0 60px 60px;
}
@media screen and (max-width: 1160px) {
  .news{
    padding: 50px 0 80px;
  }
}
section.news::before {
  content: "";
  background-image: url(../../images/news-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 200px;
  position: absolute;
  top: -190px;
}
@media screen and (max-width: 768px) {
  section.news::before {
    background-position: center;
    height: 100px;
    top: -100px;
  }
}
.news .content{
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .news .content{
    flex-direction: column;
    align-items: center;
  }
}
.news .text-wrap h2{
  font-family: "Cormorant", serif;
  color: #BF9F75;
  font-size: 60px;
  margin-bottom: 0px;
}
.news .text-wrap h3{
  margin-top: 0px;
}

.news .text-wrap{
  display: flex;
  flex-direction: column;
}

.news .pic{
    display: none;
}
.news .newscontent{
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e1e1e1;
    margin: 0 20px;
    padding: 16px 0;
}
@media screen and (max-width: 1200px) {
    .news .newscontent{
        flex-direction: column;
        align-items: flex-start;
        margin: 20px 0;
    }
}
.news .ctydate{
    margin-right: 30px;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}
@media screen and (max-width: 1200px) {
    .news .ctydate{
        flex-direction: row;
        margin-bottom: 5px;
    }
}
@media screen and (max-width: 350px) {
    .news .ctydate{
        flex-direction: column;
        align-items: flex-start;
    }
}
.news .newsDate{
    font-family: "Blinker", serif;
    color: #999;
    letter-spacing: 1.5px;
    font-size: 18px;
    margin-right: 10px;
    min-width: 103px;
}
@media screen and (max-width: 1200px) {
    .news .newsDate{
        min-width: none;
    }
}
.news .card-category{
  display: none;
    /* padding: 5px 15px;
    background-color: #4d90fe;
    color: #fff;
    white-space: nowrap;
    border-radius: 20px; */
}
@media screen and (max-width: 1200px) {
    .news .card-category{
        margin-right: 10px;
    }
}
@media screen and (max-width: 1200px) {
    .news .newscontent{
        flex-direction: column;
        align-items: flex-start;
        margin: 0 20px;
    }
}
.news .newscontent p{
    display: none;
}
.news .newscontent h4{
    width: 100%;         
    white-space: nowrap;  
    overflow: hidden;     
    text-overflow: ellipsis;
    line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .news .newscontent h4{ 
    white-space: normal;  
  }
}
.news .HeadLineMoveA{
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1.3px;
    color: #5B5050;
    transition: all 0.3s;
}
.news .HeadLineMoveA:hover{
    color: #a39d9d;
    text-decoration: none;
}

@media screen and (max-width: 992px) {
    .news .title-wrap{
        text-align: center;
    }
    .news hr{
        margin: 25px auto;
    }
    .news .more-button{
        margin: 35px auto 25px;
    }
}
.news .news-list{
  max-width: 700px;
  padding: 0 30px;
}
@media screen and (max-width: 992px) {
  .news .news-list{
    padding: 0 10px;
  }
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 100px 0 50px;
}

.marquee-track {
    display: flex;
    gap: 20px;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.image-box {
    width: 300px;
    height: 300px;
    border-radius: 30px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.image-box::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.3;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee-track:hover {
    animation-play-state: paused;
}

footer{
  padding: 20px 0;
}
footer .link{
  padding: 30px 0;
}

footer .link ul{
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 480px) {
  footer .link ul{
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

footer .link li{
  margin: 0 20px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 480px) {
  footer .link li{
    margin: 20px;
  }
}
footer .link li a{
  color: #000;
  transition: 0.3s;
}
footer .link li a:hover{
  color: #BF9F75;
}
footer .footer-logo{
  border-bottom: 1px #BF9F75 solid;
  padding-bottom: 20px;
  margin: 20px 0;
}

/* form-css*/
.contact-wrapper .form-control{
  border: none;
}
.contact-wrapper .form-control{
  display: block;
  width: 100%;
  height: 45px;
  padding: 10px 0;
  font-size: 15px;
  line-height: 1.42857143;
  color: #555;
  background-image: none;
  background-color: transparent;
  border-bottom: 1px #ddd solid;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: none;
  -o-transition: none;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.contact-wrapper .content-wrap{
  background-color: #fff;
  margin-top: 50px;
}
@media screen and (max-width: 1200px) {
  .contact-wrapper .content-wrap{
    margin: 30px 10px;
  }
}
.contact-wrapper .form-group{
  margin: 25px 0;
}
.contact-wrapper .form-wrap {
  padding: 0 100px;
}
@media screen and (max-width: 1350px) {
  .contact-wrapper .form-wrap {
    padding: 0 40px;
  }
}
@media screen and (max-width: 480px) {
  .contact-wrapper .form-wrap {
    padding: 0 10px;
  }
}
.contact-wrapper .form-group .control-label {
  font-size: 16px;
  margin: 0;
}

.contact-wrapper .btn-info{
  color: #fff;
  background-color: #bf9f75;
  border-color: transparent;
  border-radius: 0;
  padding: 10px 40px;
  font-size: 15px;
  transition: all 0.3s;
}
.contact-wrapper .btn-info:hover{
  color: #616161;
  background-color: #fff;
  border-color: #000000;;
}
.contact-wrapper .has-error .form-control:focus{
  box-shadow: none;
}
/* page-news */
.news-wrapper .news-content{
  margin: 30px 10px 0;
}
.news_author{
    display: none;
}
.news_title{
    font-size: 25px;
    font-weight: 600;
    color: #5B5050;
    margin: 0 0 18px!important;
    line-height: 1.4;
}
.news-wrapper .aside-title{
    display: none;
}
.newsitem{
    margin-bottom: 20px;
    padding: 0 20px;
  }
.NEWS_type{
    margin: 0 30px;
    padding-bottom: 20px;
}
.NEWS_type li{
    font-weight: 600;
    transition: all .3s linear;
    display: block;
    margin-bottom: 10px;
    max-width: 200px;
}
@media screen and (max-width: 768px){
    .NEWS_type li{
      max-width: 100%;
  }
}

.NEWS_type li a{
  background-color: #bf9f75;
  color: #fff;
  margin: 0 10px;
  border-radius: 25px;
  padding: 10px 20px;
  text-align: center;
}
.NEWS_type li a:hover{
  background-color: #bf9f75;
  color: #fff;
}
.NEWS_type li .topic{
  background-color: #746046;;
  color: #fff;
}
.NEWS_type li .type_icon{
    display: none;
}
.NEWS_type .badge{
    display: none;
}
@media screen and (max-width: 480px){
.headlinecate{
    border: transparent;
    border-radius: 0px;
    margin: 0;
}
}
.headlinecate img{
    display: none;
}

.news-wrapper .newsbar{
  display: none;
}
.news-wrapper .thumbnail{
    border: none;
    border-bottom: 1px #cccccc solid;
    background-color: transparent;
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.newslist img.news_pic{
    margin: 0 30px 0 0;
    padding: 0;
    width: 250px;
    border-radius: 15px;
    border: 1px #d2d7db solid;
    transition: all 0.3s;
}
@media screen and (max-width: 560px){
    .newslist img.news_pic{
        margin: 0 0 20px 0;
        width: 100%;
    }
}
.newslist :hover img{
    transform: scale(1.03);
}
.newslist .newslist img:hover .news_title{
    color: #7B9AB9;
}

.news-list .news_imgBox-fit{
  overflow: hidden;
  display: block;
}
.caption p{
    margin: 20px 0;
    letter-spacing: 1.2px;
    font-weight: 500;
    color: #7d7d7d;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media screen and (max-width: 768px){
    .caption p{
        margin: 0 0 10px 0;
    }
}
.news_date{
  letter-spacing: 0.5px;
  font-size: 16px;
  min-width: 103px;
  font-weight: 500;
  color: #5B5050;
}
.news_date img{
    display: none;
}
.news_sort{
  display: none;
}
.news_sort img{
    display: none;
}
.news_author{
  display: none;
}
.news_more:hover,
.news_more:focus{
  background-color: #bf9f75;
  color: #fff;
}
#LinkContainer h1.news_title{
    padding: 0 20px;
}
.news-wrapper .btn-default{
    border-radius: 0px;
    padding: 10px 30px;
    transition: all.2s ;
}
.news p{
    padding-left: 20px;
}
.descri-none {
    font-size: 15px;
    letter-spacing: 1.5px;
    line-height: 1.5;
    margin: 20px 0;
}   
.news-wrapper h1.news_title{
  padding: 0;
}
.news-wrapper .article-content{
  margin: 20px 0;
}
.news-wrapper .arti-news{
  margin: 0;
  text-align: center;
}
.news-wrapper .news_content{
  margin: 0;
}
.news-content .arti-news > img{
  margin: 20px 0;
  max-width: 800px;
}
.pagination>.active>a{
    transition: all.3s;
}
.pagination>.active>a, 
.pagination>.active>a:focus, 
.pagination>.active>a:hover,
.pagination>li>a:focus,
.pagination>li>a:hover{
    background-color: #bf9f75;
    border-color: transparent;
}
@media screen and (max-width: 768px) {
    .news-wrapper h2.aside-title:after {
        color: #555;
        font-weight: 400;
    }
}

/* category */

/* 好康推薦1、好康推薦2、好康推薦3、好康推薦4 標題 */
.B_Prod_Slide4 h3,
.B_Prod_Slide3 h3,
.B_hot_3 .page-header h1,
.B_hot_4 .page-header h1{
  margin: 10px 0;
  font-size: 32px;
}
/* 好康推薦3、好康推薦4，標題對齊 */
.page-header {
    padding: 0 0 9px;
    margin: 0;
    border-bottom: 0px;
    /* background: url(../../images/pagebanner.png); */
    min-height: 100px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    position: relative;
}

.page-header h1 {
    font-size: 24px;
    transform: translate(-50%, -50%);
    position: absolute;
    left: 50%;
    top: 50%;
    padding: 10px;
    /* background: hsla(0, 100%, 79%, 0.66); */
    letter-spacing: 10px;
    font-weight: bold;
    border-bottom: 1px solid #8b7d6b;
    color: #8b7d6b;
}

@media screen and (max-width: 768px) {
    .page-header {
        min-height: 180px;
    }

    /* .page-header h1 {
        transform: translate(-112%, -80%);
    } */
}
.page-content{
  background-color: #fff;
  padding: 40px;
  border-radius: 30px;
}

.nav_cate_item{
  border: 1px #8b7d6b solid;
  border-radius: 10px;
  margin: 10px 0;
}
aside .nav li a{
  text-align: center;
  color: #8b7d6b ;
  font-size: 18px;
  font-weight: 500;
}
/* 商品頁、商品清單列，側邊導覽列 回饋效果 */
.category-wrapper aside .nav li a:hover, 
.product-wrapper aside .nav li a:hover, 
.category-wrapper aside .nav li a.topic, 
.product-wrapper aside .nav li a.topic {
  background-color: #8b7d6b;
  color: #f0f0f0;
  border-radius: 6px;
}
/* 商品列表設定 */
/* .thumbnail-list li {
    width: calc(100% / 4);
}

@media (max-width: 992px) {
    .thumbnail-list li {
        width: calc(100% / 2);
    }
}
@media (max-width: 544px) {
    .thumbnail-list li {
        width: 100%;
    }
} */
.sub_box, #category_descr{
  display: none;
}
.breadcrumb{
  background-color: transparent;
  float: right;
  margin-bottom: 0;
  /* position: absolute;
  top: 10%;
  right: 0; */
}
ol.breadcrumb li a{
  font-size: 14px;
}
.breadcrumb span{
  font-size: 14px;
}
.aside-title{
  background-color: transparent;
}

.category-wrapper .imgBox-inner
.product-wrapper .imgBox-inner{
  border: 1px #bbb solid;
  border-radius: 10px;
}
.category-wrapper .li-item:hover,
.product-wrapper .li-item:hover{
  box-shadow: none;
}
.prd_info {
  font-size: 18px!important;
  padding: 20px 0;
}
.hero-feature{
  margin-top: 30px;
}