@font-face {
  font-family: "Noto Sans TC";
  src: url("assets/fonts/noto-sans-tc/NotoSansCJKtc-Medium.woff2")
    format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

body {
  /* max-width: 1440px; */
  margin: 0 auto;
}

body.lock-scroll,
html.lock-scroll {
  overflow: hidden;
  height: 100vh;
  touch-action: none;
  overscroll-behavior: contain;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

button {
  all: unset;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background-color: transparent;
}

a {
  text-decoration: none;
}
a:visited {
  color: inherit;
}

ul {
  list-style: none;
}

button {
  border: none;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  /* border-radius: 24px; */
}

.page-404 {
  position: relative;
  width: 100%;
}

.page-404 .deco-block {
  width: 100%;
  line-height: 0;
}

/* site-header */
.site-header {
  padding: 0px 8.33%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  border-bottom: 1px solid var(--Gray-05, #dbdbdb);
  background: var(--Gray-07, #fff);
}

.site-header .header-top {
  width: 100%;
  display: flex;
  padding: 24px 0;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}

@media (max-width: 425px) {
  .site-header .header-top .logo img {
    max-width: 130px;
  }
}

.site-header .header-top .top-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .site-header .header-top .top-right {
    display: none;
  }
}

.web_search-field {
  display: flex;
  width: 100%;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 5px;
  background: var(--Gray-06, #f5f5f5);
}

.web_search-input {
  width: 90%;
  border: none;
  color: var(--Gray-04, #8f8f8f);
  background: var(--Gray-06, #f5f5f5);
  font-family: "Noto Sans TC";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 2px;

  outline-color: var(--Primary-01, #f6ae54);
}

.site-header .web_nav {
  width: 100%;
}

.mobile-right {
  display: none;
}

.site-header .web_nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  align-self: stretch;
}

.site-header .web_nav ul li a {
  display: flex;
  padding: 8px 0;
  justify-content: center;
  align-items: center;
  gap: 8px;

  color: var(--Gray-01, #0d0d0d);
  text-align: center;
  font-family: "Noto Sans TC";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 2px;
}
@media (max-width: 1024px) {
  .site-header .web_nav ul li a {
    font-size: 16px;
  }
}
@media (max-width: 850px) {
  .site-header .web_nav ul li a {
    font-size: 13px;
  }
}

.site-header .web_nav ul li.current-menu-item {
  border-bottom: 4px solid var(--Primary-01, #f6ae54);
}
.site-header .web_nav ul li.current-menu-item:hover {
  border-bottom: 4px solid var(--Primary-01, #f6ae54);
}

.site-header .web_nav ul li:hover {
  border-bottom: 2px solid var(--Primary-01, #f6ae54);
}

.site-header .mobile_nav {
  position: fixed;
  top: 12.3%;
  right: 0;
  width: 100%;
  height: 100%;
  background: #f0eeec;
  padding: 40px 24px;
  z-index: 1000;
  flex-direction: column;
  gap: 60px;

  opacity: 0;
  transform: translateX(100%);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.5s ease;
}

@media (max-width: 768px) {
  .mobile-right {
    display: flex;
    gap: 24px;
    align-items: center;
  }
  .hamburger {
    display: flex;
    width: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    z-index: 1001;
  }

  .hamburger svg {
    transition: all 0.3s ease;
  }

  /* 點擊後變 X */
  .hamburger.active svg:nth-child(1) {
    transform: rotate(-45deg) translateY(14px);
  }

  .hamburger.active svg:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active svg:nth-child(3) {
    transform: rotate(45deg) translateY(-14px) translateX(0px);
  }

  .site-header .web_nav {
    display: none;
  }

  .site-header .mobile_nav.open {
    display: flex;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }

  .site-header .mobile_nav ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .site-header .mobile_nav ul li a {
    display: flex;
    padding: 8px 0;
    justify-content: start;
    align-items: center;
    gap: 40px;

    color: var(--Gray-01, #0d0d0d);
    font-family: "Noto Sans TC";
    font-size: 20px;
    /* 先暫時用20px */
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 2px;

    border-bottom: 1px solid #dbdbdb;
  }

  .site-header .mobile_nav .top-right {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
  }
}

/* site-footer */
.site-footer {
  width: 100%;
}

.footer-top {
  width: 100%;
  background: url("/wp-content/uploads/2025/10/footer_bg-scaled.png") lightgray
    50% / cover no-repeat;
  height: 280px;
  padding: 51px 8.3%;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.site-footer .title {
  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans CJK TC";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 3px;
}
@media (max-width: 525px) {
  .site-footer .title {
    font-size: 23px;
  }
}

.site-footer .sub-title {
  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans TC";
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: 180%;
  letter-spacing: 2px;
}
@media (max-width: 475px) {
  .site-footer .sub-title {
    font-size: 14px;
    white-space: nowrap;
  }
}
@media (max-width: 425px) {
  .site-footer .sub-title {
    font-size: 12px;
    white-space: nowrap;
  }
}
@media (max-width: 320px) {
  .site-footer .sub-title {
    font-size: 10px;
    white-space: nowrap;
  }
}

.footer-bottom {
  display: flex;
  width: 100%;
  padding: 24px 8.3%;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.footer-bottom .contacts {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  background: rgba(246, 174, 84, 0.05);
}
@media (max-width: 768px) {
  .footer-bottom .contacts {
    flex-direction: column;
  }
  .footer-bottom .contacts svg {
    display: none;
  }
}

.footer-bottom .contacts .contact {
  display: flex;
  padding: 8px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
  flex: 1 0 0;
  align-self: stretch;
}
.footer-bottom .contacts .contact a {
  color: var(--Primary-01, #f6ae54);
}

.footer-bottom .contacts .contact .title {
  color: var(--Gray-01, #0d0d0d);
  text-align: center;
  font-family: "Noto Sans TC";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 2px;
}

.footer-bottom .contacts .contact .desc {
  color: var(--Primary-01, #f6ae54);
  text-align: center;
  font-family: Arial;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 2px;
}

.footer-bottom .contacts .contact.time .time-desc1 {
  color: var(--Gray-01, #0d0d0d);
  text-align: center;
  font-family: "Noto Sans TC";
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: 180%;
  letter-spacing: 2px;
}
.footer-bottom .contacts .contact.time .time-desc2 {
  color: var(--Gray-04, #8f8f8f);
  text-align: center;
  font-family: "Noto Sans TC";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 2px;
}

.footer_nav {
  width: 100%;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--Gray-05, #dbdbdb);
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .footer_nav {
    margin-bottom: 0;
  }
}

.footer_nav ul.designhuFooter {
  display: flex;
  padding: 12px 0;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
.footer_nav ul.designhuFooter li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1 0 0;
}
@media (max-width: 725px) {
  .footer_nav ul.designhuFooter li {
    flex: auto;
  }
  .footer_nav ul.designhuFooter {
    flex-wrap: wrap;
  }
}

.footer_nav ul.designhuFooter li > a {
  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans TC";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 2px;
}
.footer_nav ul.designhuFooter li .accordion-item-content-nav ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}
/* .footer_nav ul li:hover > a {
  text-decoration: underline;
} */
.footer_nav ul.designhuFooter li .accordion-item-content-nav ul li > a {
  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans TC";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 2px;
}

.footer-bottom .bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}
@media (max-width: 768px) {
  .footer-bottom .bottom {
    flex-direction: column;
    gap: 24px;
  }
}
.footer-bottom .bottom .policy {
  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans TC";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 2px;
}
.footer-bottom .bottom .social-media {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-bottom .bottom .social-media img {
  width: auto;
  height: auto;
}

/* 首頁 */

.hero {
  width: 100%;
  position: relative;
}
/* Swiper 分頁容器 */
.hero-pagination {
  z-index: 10;
  position: absolute;
  left: 0 !important;
  bottom: 40px !important;
  padding: 0 8.3%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
}

/* 每一條 bullet（進度線） */
.hero-bullet {
  flex: 1;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.3); /* 白色 + 透明度 */
  border-radius: 2px;
  transition: opacity 0.3s ease, background-color 0.3s ease;
}

.hero-bullet.is-active {
  background-color: rgba(255, 255, 255, 1);
}

.site-main {
  width: 100%;
}

.home-news {
  width: 100%;
  padding: 80px 8.3%;
}
@media (max-width: 768px) {
  .home-news {
    padding: 80px 0;
  }
}
.home-news .main-title {
  width: 100%;
  text-align: center;
  color: var(--Gray-01, #0d0d0d);
  text-align: center;
  font-family: "Noto Sans TC";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 60px */
  letter-spacing: 5px;

  margin-bottom: 60px;
}

.home-news .news-items {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  align-self: stretch;
}
@media (max-width: 768px) {
  .home-news .news-items {
    flex-direction: column;
  }
}
.home-news .news-items .left-content {
  width: 46%;
  height: 415px;
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
@media (max-width: 768px) {
  .home-news .news-items .left-content {
    width: 100%;
    height: 281px;
  }
}
.home-news .news-items .left-content .title {
  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans CJK TC";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 3px;
}
.home-news .news-items .left-content .subtitle {
  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans TC";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 2px;
}
.home-news .news-items .left-content .button {
  display: flex;
  padding: 12px 36px;
  justify-content: center;
  align-items: center;
  gap: 10px;

  border-radius: 5px;
  background: var(--Gray-01, #0d0d0d);

  color: var(--Gray-07, #fff);
  font-family: "Noto Sans TC";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 2px;
}

.home-news .news-items .swiper-container {
  max-width: 50%;
}
@media (max-width: 768px) {
  .home-news .news-items .swiper-container {
    padding: 8.3%;
    max-width: 100%;
  }
}
.home-news .news-items .right-products {
  max-width: 100%;
  height: 100%;
  position: relative;
  padding-bottom: 28px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home-news .news-items .right-products .product-card {
  padding: 15px 0;
  height: 90%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  align-self: stretch;
}
@media (min-width: 1200px) {
.home-news .news-items .right-products .product-card {
    height: 415px;
  }
}
.home-news .news-items .right-products .product-card .product-image img {
  aspect-ratio: 1 / 1;
}
@media (min-width: 1440px) {
  .home-news .news-items .right-products .product-card .product-image img {
    height: 282px;
  }
}
@media (max-width: 768px) {
  .home-news .news-items .right-products .product-card .product-image img {
    height: 240px;
  }
}
@media (max-width: 600px) {
  .home-news .news-items .right-products .product-card .product-image img {
    height: 200px;
  }
}
@media (max-width: 475px) {
  .home-news .news-items .right-products .product-card .product-image img {
    height: 160px;
  }
}
.home-news .news-items .right-products .product-card .product-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  align-self: stretch;
}
.home-news
  .news-items
  .right-products
  .product-card
  .product-info
  .product-category {
  color: var(--Primary-02, #dc5c27);
  text-align: center;
  font-family: "Noto Sans TC";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 2px;
}
.home-news
  .news-items
  .right-products
  .product-card
  .product-info
  .product-name {
  color: var(--Gray-01, #0d0d0d);
  text-align: center;
  font-family: "Noto Sans TC";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 2px;
}

/* 圓點 */
.news-items .right-products .swiper-pagination {
  bottom: 0;
  text-align: center;
}

.news-items .right-products .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 1;
  background: #fff;
  border: 1px solid #f6ae54;
  margin: 0 6px !important;
}

.news-items .right-products .swiper-pagination-bullet-active {
  background: #f6ae54;
  transform: scale(1.1);
}

.home-category {
  width: 100%;
  padding: 40px 8.3%;
  background: var(--Secondary-01, #f0eeec);
}
.home-category .category-items {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  align-self: stretch;
}
@media (max-width: 600px) {
  .home-category .category-items {
    flex-direction: column;
  }
}
.home-category .category-items .left,
.home-category .category-items .right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.home-category .category-items .category-name {
  color: var(--Gray-01, #0d0d0d);
  text-align: center;
  font-family: "Noto Sans TC";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 3px;
}
@media (max-width: 475px) {
  .home-category .category-items .category-name {
    font-size: 16px;
  }
}

/* ==========================
   Home Popular 區塊基本樣式
========================== */
.home-popular {
  width: 100%;
  padding: 80px 0;
}

.home-popular .main-title {
  color: var(--Gray-01, #0d0d0d);
  text-align: center;
  font-family: "Noto Sans TC";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 5px;
  margin-bottom: 60px;
}

@media (max-width: 475px) {
  .home-popular .main-title {
    font-size: 24px;
  }
}

.home-popular .popular-items {
  width: 100%;
  padding: 0 8.3%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
}

/* 只保留這裡的「下邊線 + 撐滿寬度」即可 */
.home-popular .popular-items .popular-tabs {
  border-bottom: 1px solid var(--Gray-05, #dbdbdb);
  align-self: stretch;
}

/* tab 視覺（字型、padding…） */
.home-popular .popular-items .popular-tabs .tab-btn {
  padding: 8px 0;
  gap: 8px;

  color: var(--Gray-01, #0d0d0d);
  text-align: center;
  font-family: "Noto Sans TC";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 2px;
}

.home-popular .popular-items .popular-tabs .tab-btn.is-active {
  border-bottom: 4px solid var(--Primary-01, #f6ae54);
}

/* ==========================
   人氣排行 Tabs（排版邏輯）
   左右箭頭 + 中間 tabs-inner
========================== */

/* 整組 tabs：左右箭頭 + 中間 tab-buttons */
.popular-tabs {
  display: flex;
  align-items: center;
  justify-content: center; /* 桌機置中 */
  gap: 16px;
}

/* 中間 tabs 容器 */
.popular-tabs .tabs-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px; /* tab 之間的距離 */
}

/* 通用 tab 按鈕排版 */
.popular-tabs .tab-btn {
  flex: 0 0 auto;            /* 不要拉滿，吃內容寬度 */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

/* 箭頭樣式 */
.popular-tabs .tab-arrow {
  background: transparent;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.popular-tabs .tab-arrow[disabled] {
  opacity: 0.3;
  cursor: default;
}

/* ------- 桌機 ------- */
@media (min-width: 769px) {
  .popular-tabs .tab-arrow {
    display: none; /* 桌機版不需要左右箭頭 */
  }

  .popular-tabs .tabs-inner .tab-btn {
    display: inline-flex;
  }
}

/* ------- 手機 ------- */
@media (max-width: 768px) {
  .popular-tabs {
    justify-content: space-between;
  }

  .popular-tabs .tabs-inner {
    flex: 0 1 auto;
    justify-content: center;
  }

  /* 手機：先全部隱藏 */
  .popular-tabs .tabs-inner .tab-btn {
    display: none !important;
  }

  /* 手機：只顯示 active 的那一個 */
  .popular-tabs .tabs-inner .tab-btn.is-active {
    display: inline-flex !important;
  }
}


.home-popular .popular-items .tab-panels {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch; /* 避免 align-items:center 造成量測以內容寬為主 */
  gap: 40px;
}
.home-popular .popular-items .tab-panel {
  display: none;
  width: 100%;
  min-width: 0; /* flex 子項避免被內容撐爆 */
}
.products-swiper {
  width: 100%;
  min-width: 0;
  position: relative;
  touch-action: pan-x pan-y; /* 讓瀏覽器不要阻擋手勢 */
  pointer-events: auto;
  overflow: hidden;
}
/* 子元素不要阻擋拖曳（尤其是圖片） */
.products-swiper img {
  user-select: none;
  -webkit-user-drag: none;
}
/* 保險：wrapper/slide 本身也保持可互動 */
.home-popular .popular-items .swiper,
.home-popular .popular-items .swiper-wrapper,
.home-popular .popular-items .swiper-slide {
  pointer-events: auto;
  cursor: grab;
}
.home-popular .popular-items .product-card {
  transition: all 0.3s ease;
}
.home-popular .popular-items .product-card:hover {
  transform: translateY(-8px);
}
@media (hover: hover) and (pointer: fine) {
  .home-popular .popular-items .product-card:hover {
    transform: translateY(-8px);
  }
}

.home-popular .popular-items .swiper-slide:active {
  cursor: grabbing;
}
.home-popular .popular-items .swiper-wrapper {
  margin-bottom: 60px;
}
.home-popular .popular-items .product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  align-self: stretch;
}
/* .home-popular .popular-items .product-card img {
  width: 282px;
  height: 282px;
} */
.home-popular .popular-items .product-card .product-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  align-self: stretch;
}
.home-popular .popular-items .product-card .product-info .product-cat {
  color: var(--Primary-02, #dc5c27);
  text-align: center;
  font-family: "Noto Sans TC";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 2px;
}
.home-popular .popular-items .product-card .product-info .product-name {
  color: var(--Gray-01, #0d0d0d);
  text-align: center;
  font-family: "Noto Sans TC";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 2px;
}

/* 圓點 */
.home-popular .popular-items .swiper-pagination {
  margin-top: 24px;
  bottom: 0;
  text-align: center;
}

.home-popular .popular-items .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 1;
  background: #fff;
  border: 1px solid #f6ae54;
  margin: 0 6px !important;
}

.home-popular .popular-items .swiper-pagination-bullet-active {
  background: #f6ae54;
  transform: scale(1.1);
}

/* 讓面板佔滿寬，避免以內容寬量測造成錯誤 */
.home-popular .popular-items .tab-panels {
  align-items: stretch;
}
.home-popular .popular-items .tab-panel {
  display: none;
  width: 100%;
  min-width: 0;
}
.home-popular .popular-items .tab-panel.is-active {
  display: block;
}

.home-popular .popular-points {
  padding: 40px 8.3%;
  margin-top: 80px;
  border-top: 1px solid var(--Gray-05, #dbdbdb);
  border-bottom: 1px solid var(--Gray-05, #dbdbdb);
  background: var(--Gray-06, #f5f5f5);
}
.popular-points .point-card-group {
  display: flex;
  align-items: start;
  gap: 24px;
  align-self: stretch;
}
@media(max-width: 600px){
.popular-points .point-card-group {
flex-direction: column;
align-items: center;}
}
.popular-points .point-card-group .point-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.popular-points .point-card-group .point-card .point-card__image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.popular-points .point-card-group .point-card .point-card__image img {
  max-width: 282px;
  max-height: 282px;
}
.popular-points .point-card-group .point-card .point-card__title {
  color: var(--Gray-01, #0d0d0d);
  text-align: center;
  font-family: "Noto Sans TC";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 3px;
}

.home-intro {
  width: 100%;
  display: flex;
  padding: 80px 8.3%;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
}
.home-intro .intro-block {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  align-self: stretch;
}
.intro-block.right-image-left .content-block {
  order: 1;
}
.intro-block.right-image-left .img-block {
  order: 2;
}
@media(max-width: 768px){
  .home-intro .intro-block {
    flex-direction: column;
  }
  .intro-block.right-image-left .content-block {
    order: 2;
  }
  .intro-block.right-image-left .img-block {
    order: 1;
  }
}
.home-intro .intro-block .img-block {
  flex: 1;
}
.home-intro .intro-block .content-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.home-intro .intro-block .content-block .title {
  color: var(--Gray-01, #0d0d0d);
  text-align: center;
  font-family: "Noto Sans CJK TC";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 3px;
}
@media(max-width: 768px){
  .home-intro .intro-block .content-block .title {
    font-size: 24px;
  }
}
.home-intro .intro-block .content-block .description {
  color: var(--Gray-01, #0d0d0d);
  text-align: center;
  font-family: "Noto Sans TC";
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: 180%;
  letter-spacing: 2px;
}
@media(max-width: 768px){
  .home-intro .intro-block .content-block .description {
    font-size: 12px;
  }
}
/* bread */
.bread span {
  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans TC";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 2px;
  opacity: 0.7;

  margin: 16px 0;
}
.bread a {
  color: var(--Gray-01, #0d0d0d);
}
/* archive-product */
.product-archive {
  width: 100%;
}

.product-archive .banner {
  width: 100%;
  max-height: 400px;
  display: flex;
  align-items: center;
  align-items: stretch;
}
.product-archive.centella-asiatica-series .banner {
  background: var(--Secondary-02, #ddd7cc);
}
.product-archive.luminous-saffron-omega .banner {
  background: #69140b;
}

.product-archive .banner .left {
  width: 58.33%;
  display: flex;
  padding: 60px 4.15% 60px 8.3%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  align-self: stretch;
}
@media (max-width: 525px) {
  .product-archive .banner .left {
    width: 100%;
  }
}

.product-archive .banner .left .title {
  color: var(--Primary-02, #dc5c27);
  font-family: "Noto Sans TC";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 5px;

  margin-bottom: 24px;
}
.product-archive.luminous-saffron-omega .banner .left .title,
.product-archive.luminous-saffron-omega .banner .left .subtitle,
.product-archive.luminous-saffron-omega .banner .left .bread,
.product-archive.luminous-saffron-omega .banner .left .bread span,
.product-archive.luminous-saffron-omega .banner .left .bread a {
  color: var(--Gray-07, #fff);
}

.product-archive .banner .left .subtitle {
  color: var(--Gray-02, #333);
  font-family: "Noto Sans TC";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 3px;

  margin-bottom: 60px;
}

.product-archive .banner .right {
  flex: 1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 525px) {
  .product-archive .banner .right {
    display: none;
  }
}
.product-archive .banner .right img {
  max-height: 400px;
  /* object-position: center calc(100% - 15%); */
  height: auto;
}
@media (max-width: 1440px) {
  .product-archive .banner .right img {
    width: auto;
  }
}
@media (min-width: 1441px) {
  .product-archive .banner .right img {
    width: 100%;
  }
}
.product-archive .content-block {
  display: flex;
  width: 100%;
}

/* 初始：兩個 icon，只顯示箭頭 */
.sidebar-toggle .icon-close {
  display: none;
}
.sidebar-toggle.is-open .icon-arrow {
  display: none;
}
.sidebar-toggle.is-open .icon-close {
  display: inline;
}

/* 側欄開關按鈕 */
.sidebar-toggle {
  position: sticky;
  top: 1%;
  left: 2%;
  transition: transform 0.15s ease;
  background-color: transparent;
  z-index: 1008;
}
.sidebar-toggle:active {
  transform: scale(0.96);
}

/* 手機尺寸以下才做 off-canvas */
@media (max-width: 768px) {
  .series-sidebar {
    position: fixed;
    inset: 0;
    background: #fff;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
      box-shadow 0.35s;
    z-index: 1005;
    overflow: auto;
  }
  .series-sidebar.is-open {
    transform: translateX(0);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  /* 背景遮罩 */
  .sidebar-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 998;
  }
  .sidebar-backdrop.show {
    opacity: 1;
    pointer-events: auto;
  }

  /* 開啟側欄時鎖卷軸 */
  body.series-sidebar-open {
    overflow: hidden;
    touch-action: none;
  }
}

@media (min-width: 600px) and (max-width: 768px) {
  .sidebar-toggle {
    position: sticky;
    top: 1%;
    left: 2%;
  }
}

@media (min-width: 769px) {
  .sidebar-toggle {
    display: none;
  }
}

.product-archive .content-block .series-sidebar {
  display: flex;
  width: 28%;
  padding: 60px 40px 60px 8.3%;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
}
@media (max-width: 768px) {
  .product-archive .content-block .series-sidebar {
    width: 60%;
    height: 100dvh;
  }
}
@media (max-width: 425px) {
  .product-archive .content-block .series-sidebar {
    width: 100%;
    height: 100dvh;
  }
}
.product-archive .content-block .series-sidebar .side_nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
.product-archive .content-block .series-sidebar .title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-archive .content-block .series-sidebar .title .text {
  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans TC";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 2px;
}
.product-archive .content-block .series-sidebar .cat-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}
.product-archive .content-block .series-sidebar .cat-list .cat {
  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans TC";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 2px;
}
.product-archive .content-block .series-sidebar .cat-list .cat.is-active {
  color: var(--Primary-01, #f6ae54);
}
.product-archive .content-block .series-sidebar .cat-list .cat.is-active:hover {
  color: var(--Primary-01, #f6ae54);
}

.product-archive .content-block .series-sidebar .cat-list .cat:hover {
  color: rgba(246, 174, 84, 0.7);
}

.product-archive .content-block .series-sidebar .quick-search {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}
.product-archive .content-block .series-sidebar .quick-search .title {
  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans TC";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 2px;
}
.product-archive .content-block .series-sidebar .quick-search .btn-list {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 8px;
  align-self: stretch;
  flex-wrap: wrap;
}
.product-archive
  .content-block
  .series-sidebar
  .quick-search
  .btn-list
  .nav-btn {
  cursor: pointer;
  display: flex;
  padding: 4px 12px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 5px;
  border: 1px solid var(--Gray-04, #8f8f8f);

  color: var(--Gray-03, #5c5c5c);
  font-family: "Noto Sans TC";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 2px;
}
.product-archive
  .content-block
  .series-sidebar
  .quick-search
  .btn-list
  .nav-btn:hover {
  background: rgba(246, 174, 84, 0.1);
}
.product-archive .content-block .content {
  flex: 1;
  display: flex;
  padding: 60px 8.3% 60px 4.15%;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}
@media (max-width: 768px) {
  .product-archive .content-block .content {
    padding: 0 4.15%;
  }
}
.product-archive .content-block .content .series-btns {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
@media (max-width: 380px) {
  .product-archive .content-block .content .series-btns {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.product-archive .content-block .content .series-btns .series-btn {
  cursor: pointer;
  display: flex;
  padding: 12px 36px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  border-radius: 5px;
  background: #fff;
  border: 1px solid var(--Primary-02, #dc5c27);

  color: var(--Primary-02, #dc5c27);
  font-family: "Noto Sans TC";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 2px;
}
@media (max-width: 380px) {
  .product-archive .content-block .content .series-btns .series-btn {
    width: 70%;
  }
}
.product-archive .content-block .content .series-btns .series-btn.is-active {
  background: var(--Primary-02, #dc5c27);
  color: var(--Gray-07, #fff);
}
.content > * {
  transition: opacity 0.2s ease;
}
.content > *[style*="display: none"] {
  opacity: 0;
}

.product-archive .content-block .content .idea-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
}
.product-archive .content-block .content .idea-block .idea {
  display: flex;
  width: 100%;
  height: max-content;
  padding: 40px;
  align-items: center;
  gap: 40px;
  align-self: stretch;
  border-radius: 20px;
  background: rgba(246, 174, 84, 0.1);
}
.product-archive .content-block .content .idea-block .idea .left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 1 0 0;
}
.product-archive .content-block .content .idea-block .left .title {
  display: flex;
  height: 90px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}
.product-archive .content-block .content .idea-block .idea .left .title .top {
  color: var(--Primary-01, #f6ae54);
  font-family: "Noto Sans TC";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 2px;
}
@media (max-width: 425px) {
  .product-archive .content-block .content .idea-block .idea .left .title .top {
    font-size: 18px;
  }
}
@media (max-width: 320px) {
  .product-archive .content-block .content .idea-block .idea .left .title .top {
    font-size: 15px;
  }
}
.product-archive
  .content-block
  .content
  .idea-block
  .idea
  .left
  .title
  .bottom {
  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans CJK TC";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 3px;
}
@media (max-width: 425px) {
  .product-archive
    .content-block
    .content
    .idea-block
    .idea
    .left
    .title
    .bottom {
    font-size: 26px;
  }
}
@media (max-width: 320px) {
  .product-archive
    .content-block
    .content
    .idea-block
    .idea
    .left
    .title
    .bottom {
    font-size: 22px;
  }
}
.product-archive .content-block .content .idea-block .idea .left .desc {
  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans TC";
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: 180%;
  letter-spacing: 2px;
}
.product-archive .content-block .content .idea-block .idea .right {
  flex: 0.62;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .product-archive .content-block .content .idea-block .idea .right {
    display: none;
  }
}
.product-archive .content-block .content .idea-block .idea .right img {
  border-radius: 20px;
  aspect-ratio: 3/4;
  max-height: 376px;
  object-position: center calc(100% - 80%);
}

.product-archive .content-block .content .feature-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  align-self: stretch;
}
.product-archive .content-block .content .feature-block .top-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  align-self: stretch;
}
.product-archive .content-block .content .feature-block .top-title .top {
  color: var(--Primary-01, #f6ae54);
  text-align: center;
  font-family: "Noto Sans TC";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 2px;
}
.product-archive .content-block .content .feature-block .top-title .bottom {
  color: var(--Gray-01, #0d0d0d);
  text-align: center;
  font-family: "Noto Sans CJK TC";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 3px;
}
.product-archive .content-block .content .feature-block .feature-content-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
.product-archive
  .content-block
  .content
  .feature-block
  .feature-content-block
  .feature-content {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
@media (max-width: 1024px) {
  .product-archive
    .content-block
    .content
    .feature-block
    .feature-content-block
    .feature-content {
    flex-direction: column;
  }
}
.product-archive
  .content-block
  .content
  .feature-block
  .feature-content-block
  .feature-content
  .cap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex: 1 0 0;
}
@media (max-width: 1024px) {
  .product-archive
    .content-block
    .content
    .feature-block
    .feature-content-block
    .feature-content
    .cap {
    flex-direction: column;
  }
}
.product-archive
  .content-block
  .content
  .feature-block
  .feature-content-block
  .feature-content
  .cap
  .left-img
  img {
  max-width: 180px;
  height: auto;
  aspect-ratio: 1/1;
  border: 50%;
}
.product-archive
  .content-block
  .content
  .feature-block
  .feature-content-block
  .feature-content
  .cap
  .right-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1 0 0;
}
@media (max-width: 768px) {
  .product-archive
    .content-block
    .content
    .feature-block
    .feature-content-block
    .feature-content
    .cap
    .right-content {
    align-items: center;
  }
}
.product-archive
  .content-block
  .content
  .feature-block
  .feature-content-block
  .feature-content
  .cap
  .right-content
  .title {
  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans TC";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 2px;
  text-align: center;
}
.product-archive
  .content-block
  .content
  .feature-block
  .feature-content-block
  .feature-content
  .cap
  .right-content
  .desc {
  align-self: stretch;
  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans TC";
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: 180%;
  letter-spacing: 2px;
}

.product-archive .content-block .content .slogan {
  color: var(--Primary-02, #dc5c27);
  text-align: center;
  font-family: "Noto Sans TC";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 3px;
}

.product-archive .content-block .content .centella-asiatica-block {
  border-radius: 20px;
  background: url(/wp-content/uploads/2025/11/積雪草修護能量背景.png) lightgray
    50% / cover no-repeat;
}
.product-archive .content-block .content .centella-asiatica-block .ca-content {
  display: flex;
  width: 100%;
  height: max-content;
  padding: 60px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.product-archive
  .content-block
  .content
  .centella-asiatica-block
  .ca-content
  .top-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}
.product-archive
  .content-block
  .content
  .centella-asiatica-block
  .ca-content
  .top-title
  .top {
  color: var(--Primary-01, #f6ae54);
  font-family: "Noto Sans TC";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 2px;
}
.product-archive
  .content-block
  .content
  .centella-asiatica-block
  .ca-content
  .top-title
  .bottom {
  color: var(--Gray-07, #fff);
  font-family: "Noto Sans CJK TC";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 3px;
}
.product-archive
  .content-block
  .content
  .centella-asiatica-block
  .ca-content
  .desc {
  color: var(--Gray-07, #fff);
  font-family: "Noto Sans TC";
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: 180%;
  letter-spacing: 2px;
}
@media (max-width: 768px) {
  .product-archive
    .content-block
    .content
    .centella-asiatica-block
    .ca-content {
    padding: 30px;
  }
  .product-archive
    .content-block
    .content
    .centella-asiatica-block
    .ca-content
    .top-title
    .top {
    font-size: 16px;
  }
  .product-archive
    .content-block
    .content
    .centella-asiatica-block
    .ca-content
    .top-title
    .bottom {
    font-size: 26px;
  }
  .product-archive
    .content-block
    .content
    .centella-asiatica-block
    .ca-content
    .desc {
    font-size: 12px;
  }
}

.product-archive .content-block .content .ritual-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.product-archive .content-block .content .ritual-block .top-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  align-self: stretch;
}
.product-archive .content-block .content .ritual-block .top-title .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.product-archive .content-block .content .ritual-block .top-title .title .top {
  color: var(--Primary-01, #f6ae54);
  text-align: center;
  font-family: "Noto Sans TC";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 2px;
}
.product-archive
  .content-block
  .content
  .ritual-block
  .top-title
  .title
  .bottom {
  color: var(--Gray-01, #0d0d0d);
  text-align: center;
  font-family: "Noto Sans CJK TC";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 3px;
}
@media (max-width: 768px) {
  .product-archive
    .content-block
    .content
    .ritual-block
    .top-title
    .title
    .bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.product-archive .content-block .content .ritual-block .top-title .sub-title {
  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans TC";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 2px;
}
@media (max-width: 768px) {
  .product-archive .content-block .content .ritual-block .top-title .sub-title {
    text-align: center;
  }
}

.product-archive .content-block .content .ritual-block .card-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.product-archive .content-block .content .ritual-block .card-list .card {
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: calc(50% - 12px);
  border-radius: 20px;
  background: rgba(246, 174, 84, 0.1);
}
@media (max-width: 1024px) {
  .product-archive .content-block .content .ritual-block .card-list .card {
    width: 100%;
  }
}
.product-archive .content-block .content .ritual-block .card-list .card .step {
  color: var(--Primary-01, #f6ae54);
  font-family: "Crimson Text";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid var(--Primary-01, #f6ae54);
}
.product-archive
  .content-block
  .content
  .ritual-block
  .card-list
  .card
  .step.times {
  color: var(--Primary-01, #f6ae54);
  font-family: "Noto Sans TC";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 2px;
}
.product-archive
  .content-block
  .content
  .ritual-block
  .card-list
  .card
  .top-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  align-self: stretch;
}
.product-archive
  .content-block
  .content
  .ritual-block
  .card-list
  .card
  .title
  .zh {
  color: var(--Gray-01, #0d0d0d);
  text-align: center;
  font-family: "Noto Sans TC";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 3px;
}
.product-archive
  .content-block
  .content
  .ritual-block
  .card-list
  .card
  .title
  .en {
  color: var(--Gray-01, #0d0d0d);
  text-align: center;
  font-family: "Noto Sans TC";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 2px;
}
.product-archive
  .content-block
  .content
  .ritual-block
  .card-list
  .card
  .img
  img {
  display: flex;
  height: 246px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  aspect-ratio: 3/2;
  border-radius: 10px;
}
.product-archive .content-block .content .ritual-block .card-list .card .desc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}
.product-archive
  .content-block
  .content
  .ritual-block
  .card-list
  .card
  .desc
  .top {
  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans TC";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 2px;
}
.product-archive
  .content-block
  .content
  .ritual-block
  .card-list
  .card
  .desc
  .bottom {
  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans TC";
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: 180%;
  letter-spacing: 2px;
}
.product-archive
  .content-block
  .content
  .ritual-block
  .card-list
  .card
  .product-block {
  display: flex;
  padding: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;

  border-radius: 10px;
  border: 1px solid rgba(246, 174, 84, 0.5);
  background: var(--Gray-07, #fff);
}
.product-archive
  .content-block
  .content
  .ritual-block
  .card-list
  .card
  .product-block
  .top {
  display: flex;
  align-items: center;
  gap: 12px;
  align-self: stretch;
}
.product-archive
  .content-block
  .content
  .ritual-block
  .card-list
  .card
  .product-block
  .top
  .left-img {
  aspect-ratio: 1/1;
  border-radius: 8px;
}
.product-archive
  .content-block
  .content
  .ritual-block
  .card-list
  .card
  .product-block
  .top
  .left-img
  img {
  width: 80px;
  height: 80px;
}
.product-archive
  .content-block
  .content
  .ritual-block
  .card-list
  .card
  .product-block
  .top
  .right-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  flex: 1 0 0;
}
.product-archive
  .content-block
  .content
  .ritual-block
  .card-list
  .card
  .product-block
  .top
  .right-content
  .cat {
  color: var(--Primary-02, #dc5c27);
  font-family: "Noto Sans TC";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 2px;
}
.product-archive
  .content-block
  .content
  .ritual-block
  .card-list
  .card
  .product-block
  .top
  .right-content
  .title {
  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans TC";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 2px;
}
.product-archive
  .content-block
  .content
  .ritual-block
  .card-list
  .card
  .product-block
  .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  align-self: stretch;
}
.product-archive
  .content-block
  .content
  .ritual-block
  .card-list
  .card
  .product-block
  .bottom
  .button {
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  border: 0.5px solid var(--Gray-05, #dbdbdb);
  background: var(--Gray-07, #fff);
  flex: 1 0 0;
  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans TC";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 2px;

  cursor: pointer;
}
@media (max-width: 1200px) {
  .product-archive
    .content-block
    .content
    .ritual-block
    .card-list
    .card
    .product-block
    .bottom
    .button {
    font-size: 14px;
    padding: 10px 20px;
  }
}
@media (max-width: 1024px) {
  .product-archive
    .content-block
    .content
    .ritual-block
    .card-list
    .card
    .product-block
    .bottom
    .button {
    font-size: 16px;
    padding: 12px 24px;
  }
}
@media (max-width: 575px) {
  .product-archive
    .content-block
    .content
    .ritual-block
    .card-list
    .card
    .product-block
    .bottom
    .button {
    font-size: 12px;
    padding: 6px 12px;
  }
}

.product-archive
  .content-block
  .content
  .ritual-block
  .card-list
  .card
  .product-block
  .bottom
  .button:hover {
  background: rgba(246, 174, 84, 0.1);
}

.product-archive .content-block .content .desc-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  align-self: stretch;
}
.product-archive .content-block .content .desc-block .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.product-archive .content-block .content .desc-block .title .top {
  color: var(--Primary-01, #f6ae54);
  text-align: center;
  font-family: "Noto Sans TC";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 2px;
}
.product-archive .content-block .content .desc-block .title .bottom {
  color: var(--Gray-01, #0d0d0d);
  text-align: center;
  font-family: "Noto Sans CJK TC";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 3px;
}
.product-archive .content-block .content .desc-block .desc {
  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans TC";
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: 180%;
  letter-spacing: 2px;
}
.product-archive .content-block .content .desc-block img {
  max-width: 486px;
}

.product-archive .content-block .content .all-product-block {
  display: flex;
  padding: 40px 0;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  align-self: stretch;
}
.product-archive .content-block .content .all-product-block .top-title {
  color: var(--Gray-01, #0d0d0d);
  text-align: center;
  font-family: "Noto Sans CJK TC";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 3px;
}
.product-archive .content-block .content .all-product-block .product-card-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.product-archive
  .content-block
  .content
  .all-product-block
  .product-card-list
  .product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: calc(33% - (48px / 3));
  align-self: stretch;
}
@media (max-width: 425px) {
  .product-archive
    .content-block
    .content
    .all-product-block
    .product-card-list
    .product-card {
    width: calc(50% - (48px / 2));
  }
}
.product-archive
  .content-block
  .content
  .all-product-block
  .product-card-list
  .product-card:hover {
  border: 2px solid rgba(246, 174, 84, 0.7);
}
.product-archive
  .content-block
  .content
  .all-product-block
  .product-card-list
  .product-card
  img {
  width: 100%;
  align-self: stretch;
  aspect-ratio: 1/1;
  border-radius: 5px;
}
.product-archive
  .content-block
  .content
  .all-product-block
  .product-card-list
  .product-card
  .product-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  align-self: stretch;
}
.product-archive
  .content-block
  .content
  .all-product-block
  .product-card-list
  .product-card
  .product-info
  .cat {
  color: var(--Primary-02, #dc5c27);
  text-align: center;
  font-family: "Noto Sans TC";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 2px;
}
.product-archive
  .content-block
  .content
  .all-product-block
  .product-card-list
  .product-card
  .product-info
  .name {
  color: var(--Gray-01, #0d0d0d);
  text-align: center;
  font-family: "Noto Sans TC";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 2px;
}
@media (max-width: 425px) {
  .product-archive
    .content-block
    .content
    .all-product-block
    .product-card-list
    .product-card
    .product-info
    .name {
    font-size: 14px;
  }
}

/* single-product */
.single-product {
  width: 100%;
}
.single-product .bread {
  padding: 0 8.3%;
}
.single-product .bread,
.single-product .breadcrumb_last,
.single-product .bread p {
  opacity: 1;
}

.single-product .hero {
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 60px;
  margin-top: 27px;
  margin-bottom: 80px;
  padding: 0 8.3%;
}
@media (max-width: 768px) {
  .single-product .hero {
    display: flex;
    flex-direction: column;
  }
}

.single-product .product-hero-images {
  flex: 1;
}

.single-product .hero-images {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}
.single-product .product-hero-images .hero-group {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
.single-product .product-hero-images .hero-group .hero-image {
  flex: 1;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}

.single-product .product-hero-images .hero-image {
  width: 100%;
}

.single-product .product-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.single-product .product-main .main-category {
  color: var(--Primary-01, #f6ae54);
  font-family: "Noto Sans TC";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 2px;

  margin-bottom: 12px;
}
.single-product .product-main .main-title.zh {
  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans TC";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 5px;
}
@media (max-width: 768px) {
  .single-product .product-main .main-title.zh {
    font-size: 32px;
  }
}
.single-product .product-main .main-title.en {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .single-product .product-main .main-title.en {
    font-size: 24px;
  }
}
.single-product .product-main .main-sub-title {
  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans TC";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 2px;

  margin-bottom: 12px;
}
.single-product .product-main .main-description {
  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans TC";
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: 180%;
  letter-spacing: 2px;

  margin-bottom: 40px;
}
.single-product .product-main .btn-main {
  display: flex;
  padding: 12px 36px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  background: var(--Gray-01, #0d0d0d);

  color: var(--Gray-07, #fff);
  font-family: "Noto Sans TC";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 2px;
}

.single-product .product-tabs {
  width: 100%;
  padding: 24px 8.3%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(246, 174, 84, 0.05);
}
.single-product .product-tabs .tabs-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1 0 0;
  border-bottom: 1px solid var(--Gray-05, #dbdbdb);
  width: 100%;
}
.single-product .product-tabs .tabs-nav .tab {
  background-color: transparent;
  color: var(--Gray-04, #8f8f8f);
  font-family: "Noto Sans TC";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 3px;

  display: flex;
  padding: 12px 0;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 768px) {
  .single-product .product-tabs .tabs-nav .tab {
    font-size: 16px;
  }
}
.single-product .product-tabs .tabs-nav .tab:hover {
  color: var(--Gray-01, #0d0d0d);
}
.single-product .product-tabs .tabs-nav .tab.is-active {
  color: var(--Gray-01, #0d0d0d);
  border-bottom: 2px solid var(--Primary-01, #f6ae54);
}
.single-product .product-tabs .tab-panel {
  display: flex;
  padding: 60px 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
.single-product .product-tabs .tab-panel .tab-title {
  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans CJK TC";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 3px;
}
.single-product .product-tabs .tab-panel .tab-subtitle {
  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans TC";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 2px;
}
.single-product .product-tabs .tab-panel .tab-list {
  list-style: disc;
  margin-left: 24px;
}
.single-product .product-tabs .tab-panel .tab-list li {
  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans TC";
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: 180%;
  letter-spacing: 2px;
}
@media (max-width: 768px) {
  .single-product .product-tabs .tab-panel .tab-list li {
    font-size: 14px;
  }
}
.single-product .product-tabs .tab-panel .tab-description {
  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans TC";
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: 180%;
  letter-spacing: 2px;
}
@media (max-width: 768px) {
  .single-product .product-tabs .tab-panel .tab-description {
    font-size: 14px;
  }
}

.pf__table-wrap {
  overflow-x: auto;
}
.pf__table {
  width: 100%;
  border-collapse: collapse;
  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans TC";
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: 180%;
  letter-spacing: 2px;
}
.pf__table th,
.pf__table td {
  padding: 14px 16px;
  /* border: 1px dashed #d8d8d8; */
  vertical-align: top;
}
.pf__table th[scope="row"] {
  white-space: nowrap; /* 避免換行 */
}

.pf__table th:nth-child(1),
.pf__table td:nth-child(1) {
  width: 20%; /* 第一欄 */
}
.pf__table th:nth-child(2),
.pf__table td:nth-child(2) {
  width: 25%; /* 第二欄 */
}
.pf__table th:nth-child(3),
.pf__table td:nth-child(3) {
  width: 35%; /* 第三欄 */
}
.pf__table th:nth-child(4),
.pf__table td:nth-child(4) {
  width: 30%; /* 第四欄 */
}

.pf__table thead th {
  background: #fafafa;
  font-weight: 700;
}

/* 確保 hidden 真的隱藏 */
.single-product .product-tabs [hidden] {
  display: none !important;
}
.single-product .product-related {
  display: flex;
  width: 100%;
  padding: 80px 8.3%;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.single-product .product-related .section-title {
  color: var(--Gray-01, #0d0d0d);
  text-align: center;
  font-family: "Noto Sans CJK TC";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 3px;
}
.single-product .product-related .related-grid {
  display: flex;
  align-items: flex-start;
  gap: 60px 24px;
  align-self: stretch;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .single-product .product-related .related-grid {
    justify-content: center;
  }
}
.single-product .product-related .related-grid .related-card {
  display: flex;
  max-width: 282px;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  align-self: stretch;
}
.single-product .product-related .related-grid .related-card:hover {
  background: rgba(246, 174, 84, 0.05);
  /* border: 2px solid rgba(246, 174, 84, 0.7); */
}
.single-product .product-related .related-grid .related-card img {
  width: 282px;
  height: 282px;
  background: #f5f5f5;
}
.single-product .product-related .related-grid .related-card .meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  align-self: stretch;
}
.single-product .product-related .related-grid .related-card .meta .series {
  color: var(--Primary-02, #dc5c27);
  text-align: center;
  font-family: "Noto Sans TC";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 2px;
}
.single-product .product-related .related-grid .related-card .meta .title {
  color: var(--Gray-01, #0d0d0d);
  text-align: center;
  font-family: "Noto Sans TC";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 2px;
}

/* 品牌故事 */
.story-banner {
  width: 100%;
  display: flex;
}
.story-banner .story-banner__texts {
  display: flex;
  padding: 60px 4.15% 60px 8.3%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  flex: 1 0 0;
  align-self: stretch;

  background: var(--Primary-01, #f6ae54);
}
.story-banner .story-banner__texts .top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
.story-banner__title {
  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans TC";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 5px;
}
@media (max-width: 425px) {
  .story-banner__title {
    font-size: 30px;
  }
}
.story-banner__subtitle {
  color: var(--Gray-02, #333);
  font-family: "Noto Sans TC";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 3px;
}

.story-banner .story-banner__image {
  width: 41.66%;
}

.story-content-blocks {
  width: 100%;
}
.story-content-blocks .s-block {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.story-content-blocks .s-white-image-right,
.story-content-blocks .s-white-image-left {
  padding: 80px 8.3%;
  gap: 60px;
}
@media (max-width: 768px) {
  .story-content-blocks .s-white-image-right,
  .story-content-blocks .s-white-image-left {
    flex-direction: column;
  }
}
.story-content-blocks .s-block .s-block__content {
  flex: 1 0 0;

  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans TC";
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: 180%;
  letter-spacing: 2px;
}
.story-content-blocks .s-white-image-left .s-block__media,
.story-content-blocks .s-white-image-right .s-block__media {
  width: 49%;
}
@media (max-width: 768px) {
  .story-content-blocks .s-white-image-left .s-block__media,
  .story-content-blocks .s-white-image-right .s-block__media {
    width: 80%;
  }
}
.s-bg-image-left,
.s-bg-image-right {
  background: rgba(246, 174, 84, 0.05);
}
@media (max-width: 768px) {
  .story-content-blocks .s-bg-image-left,
  .story-content-blocks .s-bg-image-right {
    flex-direction: column;
  }
}
.story-content-blocks .s-bg-image-left .s-block__media,
.story-content-blocks .s-bg-image-right .s-block__media {
  width: 50%;
}
@media (max-width: 768px) {
  .story-content-blocks .s-bg-image-left .s-block__media,
  .story-content-blocks .s-bg-image-right .s-block__media {
    width: 100%;
  }
}
.story-content-blocks .s-bg-image-left .s-block__content,
.story-content-blocks .s-bg-image-right .s-block__content {
  padding: 40px 8.3%;
}
.story-content-blocks .s-bg-image-left .s-block__content .top,
.story-content-blocks .s-bg-image-right .s-block__content .top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.story-content-blocks .s-bg-image-left .s-block__content .top .title,
.story-content-blocks .s-bg-image-right .s-block__content .top .title {
  color: var(--Primary-01, #f6ae54);
  font-family: "Noto Sans TC";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 2px;
}
.story-content-blocks .s-bg-image-left .s-block__content .top .subtitle,
.story-content-blocks .s-bg-image-right .s-block__content .top .subtitle {
  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans CJK TC";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 3px;
}
.story-content-blocks .s-bg-image-right .s-block__content .desc,
.story-content-blocks .s-bg-image-left .s-block__content .desc {
  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans TC";
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: 180%;
  letter-spacing: 2px;

  margin-top: 24px;
}

.story-rc {
  margin: 80px 8.3%;
  border-radius: 20px;
}
.story-rc .story-rc__inner {
  display: flex;
  height: 400px;
  padding: 60px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 24px;
  flex-shrink: 0;

  background: rgba(13, 13, 13, 0.5);
  backdrop-filter: blur(5px);
  border-radius: 20px;
}
.story-rc .story-rc__inner .story-rc__title {
  color: var(--Primary-01, #f6ae54);
  font-family: "Noto Sans TC";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 2px;
}
.story-rc .story-rc__inner .story-rc__subtitle {
  color: var(--Gray-07, #fff);
  font-family: "Noto Sans CJK TC";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 3px;
}
.story-rc .story-rc__inner .story-rc__desc {
  color: var(--Gray-07, #fff);
  font-family: "Noto Sans TC";
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: 180%;
  letter-spacing: 2px;
}
@media (max-width: 475px) {
  .story-rc .story-rc__inner {
    height: auto;
    padding: 40px;
  }
  .story-rc .story-rc__inner .story-rc__subtitle {
    font-size: 22px;
  }
  .story-rc .story-rc__inner .story-rc__desc {
    font-size: 14px;
  }
}
.story-future {
  width: 100%;
  padding: 0 15.4%;
}
.story-future .story-future__texts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;

  margin-bottom: 40px;
}
.story-future .story-future__texts .top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.story-future .story-future__texts .top .en {
  color: var(--Primary-01, #f6ae54);
  text-align: center;
  font-family: "Noto Sans TC";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 2px;
}
.story-future .story-future__texts .top .zh {
  color: var(--Gray-01, #0d0d0d);
  text-align: center;
  font-family: "Noto Sans CJK TC";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 3px;
}
.story-future .story-future__texts .desc {
  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans TC";
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: 180%;
  letter-spacing: 2px;
}
.story-future .story-future__image {
  margin: 0 auto;
  max-width: 588px;
}

.story-declare {
  width: 100%;
  padding: 0 8.3%;
  margin: 80px 0;
}
.story-declare .story-declare__inner {
  display: flex;
  padding: 24px 5%;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-radius: 20px;
  background: rgba(246, 174, 84, 0.1);
}
.story-declare .story-declare__title {
  color: var(--Gray-01, #0d0d0d);
  text-align: center;
  font-family: "Noto Sans TC";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 2px;
}
.story-declare .story-declare__desc {
  color: var(--Gray-01, #0d0d0d);
  text-align: center;
  font-family: "Noto Sans TC";
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: 180%;
  letter-spacing: 2px;
}
/* ================ 暫時先鎖連結 ================= */
.site-header .web_nav ul li a,
.site-header .mobile_nav ul li a {
  pointer-events: none;
}
.site-header .web_nav ul li:first-child a,
.site-header .web_nav ul li:nth-child(5) a,
.site-header .mobile_nav ul li:first-child a,
.site-header .mobile_nav ul li:nth-child(5) a {
  pointer-events: visible;
}
.footer_nav ul li a {
  pointer-events: none;
}
.single-product .product-main a {
  pointer-events: none;
}
.site-header .header-top .logo a {
  pointer-events: none;
}
.web_search-btn {
  pointer-events: none;
}
.bread a:first-child {
  pointer-events: none;
}

/* 銷售通路 */

.wtb-banner {
  width: 100%;
  display: flex;
}
.wtb-banner__texts {
  display: flex;
  padding: 60px 4.25% 60px 8.3%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  flex: 1 0 0;
  align-self: stretch;

  background: rgba(246, 174, 84, 0.05);
}
.wtb-banner__texts .top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
.wtb-banner__title {
  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans TC";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 5px;
}
.wtb-banner__subtitle {
  color: var(--Gray-02, #333);
  font-family: "Noto Sans TC";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 3px;
}
.wtb-banner__image {
  width: 41.66%;
}

.wtb-online {
  width: 100%;
  padding: 80px 8.3%;
}
.wtb-online .main-title {
  color: var(--Gray-01, #0d0d0d);
  text-align: center;
  font-family: "Noto Sans CJK TC";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 3px;

  margin-bottom: 60px;
}
.wtb-online__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  align-self: stretch;

  flex-wrap: wrap;
}
.wtb-online__item {
  width: 282px;
  height: 180px;

  display: flex;
  justify-content: center;
  align-self: center;

  border-radius: 20px;
  background: var(--Gray-07, #fff);
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.15);
}
.wtb-online__card {
  display: flex;
  justify-content: center;
  align-self: center;
}
.wtb-online__img {
  width: 240px;
  height: 153px;

  object-fit: contain;
}

.wtb-line {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;

  width: 100%;
}
@media (max-width: 1280px) {
  .wtb-line {
    width: 80%;
  }
}
.wtb-store {
  width: 100%;
  padding: 80px 8.3%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  align-self: stretch;
}
.wtb-store .main-title {
  color: var(--Gray-01, #0d0d0d);
  text-align: center;
  font-family: "Noto Sans CJK TC";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 3px;
}
.wtb-store__section {
  display: flex;
  align-items: center;
  gap: 60px;
  align-self: stretch;
}
@media (max-width: 768px) {
  .wtb-store__section {
    flex-direction: column;
    align-items: start;
  }
}
.wtb-store__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  flex: 1 0 0;
}
.wtb-store__title {
  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans TC";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 3px;
}
.wtb-store__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
.wtb-store__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;

  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans TC";
  font-size: 16px;
  font-style: normal;
  line-height: 180%;
  letter-spacing: 2px;
}
.wtb-store__item-title {
  font-weight: 500;
}
.wtb-store__item-desc {
  font-weight: 350;
}
.wtb-store__right_image {
  width: 50%;
}
@media (max-width: 1440px) {
  .wtb-store__right_image {
    max-width: 588px;
  }
}
@media (max-width: 768px) {
  .wtb-store__right_image {
    width: 80%;
  }
}

/* 聯絡我們 */
.contact-banner {
  width: 100%;
  display: flex;
}
.contact-banner .contact-banner__texts {
  display: flex;
  padding: 60px 4.15% 60px 8.3%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  flex: 1 0 0;
  align-self: stretch;

  background: var(--Primary-02, #dc5c27);
}
.contact-banner .contact-banner__texts .top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
.contact-banner__title {
  color: var(--Gray-01, #fff);
  font-family: "Noto Sans TC";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 5px;
}
@media (max-width: 425px) {
  .contact-banner__title {
    font-size: 30px;
  }
}
.contact-banner__subtitle {
  color: var(--Gray-02, #fff);
  font-family: "Noto Sans TC";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 3px;
}
.contact-banner .contact-banner__image {
  width: 41.66%;
}

.contact-body {
  width: 100%;
  padding: 80px 8.3%;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .contact-body {
    flex-direction: column;
  }
}
.contact-body .company {
  display: flex;
  width: 45.5%;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  flex-shrink: 0;

  padding-right: 5%;
  border-right: 1px solid #dbdbdb;
}
@media (max-width: 768px) {
  .contact-body .company {
    width: 100%;

    border-right: none;
  }
}
.contact-body .company .title-block,
.contact-form .title-block {
  display: flex;
  align-items: center;
  gap: 12px;
  align-self: stretch;
}
.contact-body .company .title-block .company-name {
  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans CJK TC";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 3px;
}
.company-infos {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
.company-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;

  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans TC";
  font-size: 16px;
  font-style: normal;
  line-height: 180%;
  letter-spacing: 2px;
}
.company-info .info-title {
  font-weight: 500;
}
.company-info .info-desc {
  font-weight: 350;
}

.contact-form {
  padding-left: 5%;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1 0 0;
  align-self: stretch;
}
@media (max-width: 768px) {
  .contact-form {
    padding-left: 0;
    margin-top: 80px;
  }
}
.contact-form .top-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
}
.contact-form .top-block .form-desc {
  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans TC";
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: 180%;
  letter-spacing: 2px;
}

.contact-form .wpcf7 {
  width: 100%;
}
.contact-form .wpcf7 .wpcf7-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  align-self: stretch;
}
.contact-form .wpcf7 .wpcf7-form .form-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}
.contact-form .wpcf7 .wpcf7-form .label-container {
  width: 100%;
  display: flex;
  padding: 12px 24px;
  align-items: flex-start;
  gap: 12px;
  flex: 1 0 0;

  border-radius: 5px;
  background: var(--Gray-06, #f5f5f5);
}
.contact-form .wpcf7 .wpcf7-form .label-container label {
  width: 100%;
  display: flex;
}
.contact-form .wpcf7 .wpcf7-form .label-container label .title {
  flex: 0 0 72px;

  display: flex;
  align-items: center;
  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans TC";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 2px;
}
.contact-form .wpcf7-form .label-container label .wpcf7-form-control-wrap {
  flex: 1 1 0%;
  min-width: 0;
}
.contact-form .wpcf7 .wpcf7-form .label-container input,
.contact-form .wpcf7 .wpcf7-form .label-container select,
.contact-form .wpcf7 .wpcf7-form .label-container textarea {
  border: none;
  border-radius: 5px;
  background: var(--Gray-06, #f5f5f5);
  width: 100%;
  height: 100%;
  outline: none;
  padding: 8px;

  color: var(--Gray-03, #5c5c5c);
  font-family: "Noto Sans TC";
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: 180%;
  letter-spacing: 2px;
}
.contact-form .wpcf7 .wpcf7-form .label-container select {
  text-align: center;
}
.contact-form .wpcf7 .wpcf7-form .label-container textarea {
  max-height: 87px;
}
.contact-form .wpcf7 .wpcf7-form .label-container label.label-textarea {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 152px;
}
.contact-form .wpcf7 .wpcf7-form .label-container label .title.textarea {
  flex: 0 0 26px;
}
.contact-form .wpcf7 .wpcf7-form .wpcf7-submit {
  cursor: pointer;
  display: flex;
  padding: 12px 36px;
  justify-content: center;
  align-items: center;
  gap: 10px;

  border-radius: 5px;
  background: var(--Gray-01, #0d0d0d);
  border: none;

  color: var(--Gray-07, #fff);
  font-family: "Noto Sans TC";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 2px;

  transition: all 0.3s ease;
}
.contact-form .wpcf7 .wpcf7-form .wpcf7-submit:hover {
  background-color: var(--Gray-06, #f5f5f5);
  color: var(--Gray-07, #0d0d0d);
}

.contact-social-buttons {
  width: 100%;
}
.contact-social-buttons .social-list {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
  flex-wrap: wrap;
}
.contact-social-buttons .social-list .social-item {
  flex: 1 0 0;

  display: flex;
  padding: 12px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 5px;
  border: 1px solid var(--Gray-05, #dbdbdb);
  background: var(--Gray-07, #fff);
}
.contact-social-buttons .social-list .social-item:hover {
  background-color: var(--Gray-06, #f5f5f5);
}
.contact-social-buttons .social-list .social-item img {
  width: 40px;
  height: 40px;
}

.contact-social-buttons .social-list .social-item .social-title {
  flex: 1 0 0;

  color: var(--Gray-02, #333);
  text-align: center;
  font-family: "Noto Sans TC";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 2px;
}

/* 新鮮事 */
.news-banner {
  width: 100%;
  display: flex;
}
.news-banner .news-banner__texts {
  display: flex;
  padding: 60px 4.15% 60px 8.3%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  flex: 1 0 0;
  align-self: stretch;

  background: var(--Secondary-01, #f0eeec);
}
.news-banner .news-banner__texts .top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
.news-banner__title {
  color: var(--Gray-01, #0d0d0d);
  font-family: "Noto Sans TC";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 5px;
}
@media (max-width: 425px) {
  .news-banner__title {
    font-size: 30px;
  }
}
.news-banner__subtitle {
  color: var(--Gray-02, #333);
  font-family: "Noto Sans TC";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 3px;
}

.news-banner .news-banner__image {
  width: 41.66%;
}
