@charset "utf-8";

body { 
  font-family:"Cinzel", serif, "Noto Sans TC", sans-serif, "Noto Serif TC", serif;
  background-color: #111111;
  color: #e0e0e0;
}

.me_tp_features { display: none; }
.path p, .path p a { display: none; }

/* Sticky 頂部區域 */
.header_area {
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(125, 98, 64, 0.3);
  padding: 10px 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}
.main_header_area .container { max-width: 98%; margin: auto; }
.header_area.sticky {
  background: rgba(17, 17, 17, 0.85);
}
/* 導覽列容器 */
.navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-brand img {
    width: 200px;
}

/* ========================================================
   主選單基礎設定 (第一層)
   ======================================================== */
.stellarnav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.stellarnav > ul > li { 
  position: relative; 
  z-index: 1; 
  display: inline-block;
}

/* 第一層連結 */
.stellarnav > ul > li > a {
  height: 36px;
  color: #dcdcdc;
  font-size: 14px;
  padding: 0 14px;
  display: block;
  text-decoration: none;
  overflow: hidden;
  font-weight: 400;
  position: relative;
  z-index: 2;
  border-radius: 20px;
  box-sizing: border-box;
}

/* 雙排文字 Vertical Center 與 Hover 滑動動畫 */
.stellarnav > ul > li > a b {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  color: #e0e0e0;
}

.stellarnav > ul > li > a b:last-child {
  color: #7d6240;
  font-size: 11px;
  letter-spacing: 1px;
}

.stellarnav > ul > li > a:hover b { 
  transform: translateY(-100%); 
}

/* 第一層 Li 膠囊 Hover 外框特效 */
.stellarnav > ul > li:before {
  content: '';
  position: absolute;
  inset: 0px;
  background: rgba(125, 98, 64, 0.15);
  border: 1px solid rgb(125 98 64);
  border-radius: 20px;
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.stellarnav > ul > li:hover::before {
  opacity: 1;
  transform: scale(1);
}

/* ========================================================
   下拉選單第二層 (毛玻璃暗黑輕奢)
   ======================================================== */
.stellarnav ul ul { 
  position: absolute; 
  top: 100%; 
  left: 0; 
  min-width: 200px; 
  background: rgba(22, 22, 22, 0.95); 
  backdrop-filter: blur(12px); 
  -webkit-backdrop-filter: blur(12px); 
  border: 1px solid rgba(125, 98, 64, 0.4); 
  border-radius: 16px; 
  list-style: none; 
  margin: 8px 0 0 0; 
  padding: 6px; 
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6); 
  z-index: 99; 
}

.stellarnav ul ul::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}

.stellarnav li:hover > ul { 
  opacity: 1; 
  visibility: visible; 
  transform: translateY(0); 
  transition-delay: 0s;
}

.stellarnav ul ul li { 
  border: none; 
  margin: 2px 0; 
  padding: 0; 
  display: block;
}

.stellarnav ul ul li a {
  height: auto;
  min-height: 38px;
  line-height: normal;
  overflow: visible;
  border-radius: 10px;
  color: #dcdcdc;
  font-size: 13.5px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.25s ease;
}

.stellarnav ul ul li a b { 
  height: auto; 
  transform: none !important; 
  display: inline; 
  color: inherit;
}

.stellarnav ul ul li a:hover { 
  background: rgba(125, 98, 64, 0.25); 
  color: #ffffff; 
  transform: translateX(3px);
}

/* 下拉箭頭 */
.stellarnav li.has-sub > a { 
  padding-right: 28px !important; 
}

.stellarnav li.has-sub > a::after {
  right: 12px;
  top: 50%;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #7d6240;
}

@media screen and (max-width: 1200px) {
  .stellarnav > ul > li > a {
    padding: 0 9px;
  }
}

@media screen and (max-width: 1024px) {
  .stellarnav > ul {
    padding: 20px 0 0;
  }
}

@media screen and (max-width: 768px) {
  .header_area {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .stellarnav > ul > li:not(:last-child)::before {
    border-radius: 0px;
  }
  .stellarnav > ul > li:last-child > a {
    display: flex;
    align-items: center;
    border-radius: 0;
    gap: 6px;
    height: 55px;
  }
  .stellarnav > ul > li > a {
    margin: 0;
  }
  .stellarnav.mobile > ul > li > a.dd-toggle {
    padding: 6px;
  }
  .stellarnav ul ul {
    border-radius: 0px;
    margin: 8px 0 0 0;
    padding: 0px;
  }
  .stellarnav ul ul li a:hover {
    background: transparent;
  }
  .stellarnav.mobile > ul > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .stellarnav > ul {
    padding: 0;
  }
}

/* ========================================================
   頁尾 (Footer)
   ======================================================== */
.footer_menu a:first-child { display: none; }

.footer {
  background-color: #111111;
  color: #cfcfcf;
  border-top: 3px solid #7d6240;
  padding-top: 50px;
}

.footer .center {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 25px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: contents;
}

.footer ul > li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer_menu {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
}

.footer .footer_menu a {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer ul > li:first-child p {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.footer ul > li:first-child p a {
  color: #cfcfcf;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer ul > li:first-child p a:hover {
  color: #7d6240;
}

.footer p.line::before { content: "LINE： "; font-weight: 700; color: #7d6240; }
.footer p.mail::before { content: "EMAIL： "; font-weight: 700; color: #7d6240; }
.footer p.add::before { content: "ADD： "; font-weight: 700; color: #7d6240; }
.footer p.phone::before { content: "ADD： "; font-weight: 700; color: #7d6240; }


.footer .box_link { display: none; }

.footer .copy {
  background-color: #0b0b0b;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  font-size: 9px;
  color: #888888;
  border-top: 1px solid #222222;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 40px;
  justify-content: center;
}

.footer .copy p, .footer .copy span, .footer .copy a {
  color: #888888;
  font-size: 9px;
  text-decoration: none;
}

.footer .footer_info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 25px;
}

.footer .footer_logo img {
  max-width: 230px;
  margin: 0 auto;
  filter: contrast(1.1);
}



.footer .box_link { justify-content: center; margin-top: 5px; }

.footer ul > li:first-child {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 30px;
  padding: 20px 0;
  border-top: 1px solid #222222;
  border-bottom: 1px solid #222222;
  width: 100%;
}

.footer ul > li:first-child p {
  margin: 0;
  font-size: 14px;
  color: #aaaaaa;
}

.footer .footer_menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 25px;
}

.footer .footer_menu a {
  font-size: 14px;
  color: #cfcfcf;
  font-weight: 500;
}

.footer .footer_menu a:hover { color: #7d6240; }

@media (max-width: 600px) {
  .footer ul > li:first-child { flex-direction: column; align-items: center; gap: 10px; }
}

/* 商品下拉超過 30 個變大 */
.stellarnav.desktop li.bigMenu > ul { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); left: 0; width: 100%; position: fixed; padding: 20px; background: #111111; }
.stellarnav.desktop li.bigMenu ul ul { top: 100%; left: 0; width: 100%; background: #1a1a1a; height: auto; max-height: 300px; overflow: auto; }
.stellarnav.desktop li.bigMenu ul ul li { margin: 0; } 
.stellarnav.hasBigMenu li.bigMenu li.has-sub > a:after { border-left: 6px solid transparent; border-bottom: unset; border-right: 6px solid transparent; border-top: 6px solid #7d6240; right: 5px; }

/* ========================================================
   文章 A (Article A)
   ======================================================== */
.article_a .blog_box {
  min-height: 20vw;
  padding: 20px 15px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.article_a .blog_le,
.article_a .blog_ri {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 2vw;
  padding: 7px;
  box-sizing: border-box;
}

.article_a .blog_le {
  width: 240px;
  background: #1a1a1a;
  border: 1px solid #2e2e2e;
  border-radius: 12px;
  padding: 20px 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.article_a .blog_ri {
  width: calc(100% - 250px);
  padding: 0 0 0 24px;
  min-height: 75vh;
}

.article_a h5.blog_le_t {
  font-size: 20px;
  font-weight: 700;
  color: #7d6240;
  font-family: 'Noto Serif TC', serif;
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #7d6240;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.article_a h5.blog_le_t em {
  display: inline-block;
  font-style: normal;
}

.article_a h5.blog_le_t span {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: #7d6240;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 6px;
}

.article_a .blog_le a.news_menu_toggle {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  color: #7d6240;
  border-radius: 50%;
  background: rgba(125, 98, 64, 0.15);
  cursor: pointer;
}

.article_a .blog_search {
  position: relative;
  margin-bottom: 16px;
}

.article_a .blog_search input[type=search] {
  outline: none;
  box-sizing: border-box;
  width: 100%;
  height: 40px;
  font-size: 13.5px;
  color: #ffffff;
  background: #111111;
  border: 1px solid #333333;
  border-radius: 8px;
  padding: 0 40px 0 12px;
  transition: all 0.2s ease;
}

.article_a .blog_search input[type=submit] {
  outline: none;
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  width: 32px;
  height: 32px;
  background: #7d6240;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ffffff' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px;
}

.article_a .blog_search input[type=search]:focus {
  border-color: #7d6240;
}

.article_a .blog_le .accordion {
  list-style-type: none;
  margin: auto;
  padding: 0;
  border-radius: 8px;
  border: 1px solid #2e2e2e;
  background: #111111;
  overflow: hidden;
}

.article_a .accordion > li {
  transition: all 0.2s ease;
}

.article_a .accordion li + li {
  border-top: 1px solid #222222;
}

.article_a .accordion li .link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.article_a .accordion li .link a {
  cursor: pointer;
  display: block;
  padding: 12px 14px;
  color: #dcdcdc !important;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  width: 100%;
  transition: color 0.2s ease;
}

.article_a .blog_le .accordion li .link i {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  color: #7d6240;
  width: 40px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.article_a .blog_le .accordion > li:hover {
  background: rgba(125, 98, 64, 0.15) !important;
}

.article_a .blog_le .accordion > li:hover .link a,
.article_a .blog_le .accordion > li:hover .link i {
  color: #ffffff !important;
}

.article_a .blog_le .accordion > li.on_this_category {
  background: #7d6240 !important;
}

.article_a .blog_le .accordion > li.on_this_category .link a,
.article_a .blog_le .accordion > li.on_this_category .link i {
  color: #ffffff !important;
}

.article_a .submenu {
  display: none;
  background: #0a0a0a;
  font-size: 13px;
  padding: 4px 0;
}

.article_a .submenu li {
  background: none !important;
  border: none !important;
}

.article_a .submenu a {
  display: block;
  position: relative;
  color: #aaaaaa !important;
  padding: 9px 12px 9px 28px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.article_a .submenu a i {
  position: absolute;
  top: 50%;
  left: 10px;
  font-size: 10px;
  color: #7d6240;
  transform: translateY(-50%);
}

.article_a .submenu li:hover a,
.article_a .submenu li.on_this_category a {
  background: rgba(125, 98, 64, 0.2) !important;
  color: #ffffff !important;
  font-weight: 600;
  padding-left: 32px;
}

.article_a h4.blog_category_title {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Noto Serif TC', serif;
  padding-bottom: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid #2e2e2e;
}

.article_a h4.blog_category_title em {
  font-style: normal;
}

.article_a h4.blog_category_title em:after {
  content: '/';
  display: inline-block;
  vertical-align: middle;
  font-size: 20px;
  color: #7d6240;
  margin: 0 10px;
}

.article_a h4.blog_category_title span {
  font-size: 18px;
  color: #7d6240;
  font-weight: 500;
}

.article_a .blog_subbox {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.article_a .subbox_item {
  display: block;
  width: 100%;
  background: #1a1a1a;
  border: 1px solid #2e2e2e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.article_a .subbox_item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  border-color: #7d6240;
}

.article_a .subbox_item a {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 20px;
  text-decoration: none;
  padding: 16px;
  box-sizing: border-box;
  position: relative;
}

.article_a .subbox_item a:after,
.article_a .subbox_item a:before {
  display: none;
}

.article_a .blog_list_le {
  width: 100%;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
  background: #222222;
}

.article_a .blog_list_le img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.article_a .subbox_item:hover .blog_list_le img {
  transform: scale(1.05);
}

.article_a .blog_list_ri {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 10px;
}

.article_a .blog_list_ri h5 {
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
  font-family: "Noto Serif TC", serif;
}

.article_a .subbox_item:hover .blog_list_ri h5 {
  color: #7d6240;
}

.article_a .blog_list_ri em {
  font-size: 12.5px;
  color: #7d6240;
  font-style: normal;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.article_a .blog_list_ri em::before {
  content: '\f073';
  font-family: 'Font Awesome 6 Free';
  font-weight: 400;
}

.article_a .blog_list_ri p {
  font-size: 13.5px;
  color: #aaaaaa;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media screen and (max-width: 992px) {
  .article_a .blog_le,
  .article_a .blog_ri {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }
  .article_a .blog_le {
    position: static;
  }
  .article_a .blog_ri {
    padding-left: 0;
    min-height: auto;
  }
  .article_a .blog_le a.news_menu_toggle {
    display: flex;
  }
  .article_a h5.blog_le_t span {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  .article_a .blog_box {
    padding: 12px 10px;
  }
  .article_a .subbox_item a {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
  }
  .article_a .blog_list_le {
    height: 180px;
  }
  .article_a .blog_list_ri {
    padding-right: 0;
  }
  .article_a .blog_list_ri h5 {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .article_a h4.blog_category_title {
    font-size: 20px;
  }
  .article_a h4.blog_category_title span {
    font-size: 15px;
  }
}

/* ========================================================
   文章 B (Article B)
   ======================================================== */
.article_b .blog_box {
  min-height: 20vw;
  padding: 20px 15px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.article_b .blog_le,
.article_b .blog_ri {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 2vw;
  padding: 7px;
  box-sizing: border-box;
}

.article_b .blog_le {
  width: 240px;
  background: #1a1a1a;
  border: 1px solid #2e2e2e;
  border-radius: 12px;
  padding: 20px 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.article_b .blog_ri {
  width: calc(100% - 250px);
  padding: 0 0 0 24px;
  min-height: 75vh;
}

.article_b h5.blog_le_t {
  font-size: 20px;
  font-weight: 700;
  color: #7d6240;
  font-family: 'Noto Serif TC', serif;
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #7d6240;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.article_b h5.blog_le_t em {
  display: inline-block;
  font-style: normal;
}

.article_b h5.blog_le_t span {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: #7d6240;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 6px;
}

.article_b .blog_le a.news_menu_toggle {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  color: #7d6240;
  border-radius: 50%;
  background: rgba(125, 98, 64, 0.15);
  cursor: pointer;
}

.article_b .blog_search {
  position: relative;
  margin-bottom: 16px;
}

.article_b .blog_search input[type=search] {
  outline: none;
  box-sizing: border-box;
  width: 100%;
  height: 40px;
  font-size: 13.5px;
  color: #ffffff;
  background: #111111;
  border: 1px solid #333333;
  border-radius: 8px;
  padding: 0 40px 0 12px;
  transition: all 0.2s ease;
}

.article_b .blog_search input[type=submit] {
  outline: none;
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  width: 32px;
  height: 32px;
  background: #7d6240;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ffffff' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px;
}

.article_b .blog_search input[type=search]:focus {
  border-color: #7d6240;
}

.article_b .blog_le .accordion {
  list-style-type: none;
  margin: auto;
  padding: 0;
  border-radius: 8px;
  border: 1px solid #2e2e2e;
  background: #111111;
  overflow: hidden;
}

.article_b .accordion > li {
  transition: all 0.2s ease;
}

.article_b .accordion li + li {
  border-top: 1px solid #222222;
}

.article_b .accordion li .link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.article_b .accordion li .link a {
  cursor: pointer;
  display: block;
  padding: 12px 14px;
  color: #dcdcdc !important;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  width: 100%;
  transition: color 0.2s ease;
}

.article_b .blog_le .accordion li .link i {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  color: #7d6240;
  width: 40px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.article_b .blog_le .accordion > li:hover {
  background: rgba(125, 98, 64, 0.15) !important;
}

.article_b .blog_le .accordion > li:hover .link a,
.article_b .blog_le .accordion > li:hover .link i {
  color: #ffffff !important;
}

.article_b .blog_le .accordion > li.on_this_category {
  background: #7d6240 !important;
}

.article_b .blog_le .accordion > li.on_this_category .link a,
.article_b .blog_le .accordion > li.on_this_category .link i {
  color: #ffffff !important;
}

.article_b .submenu {
  display: none;
  background: #0a0a0a;
  font-size: 13px;
  padding: 4px 0;
}

.article_b .submenu li {
  background: none !important;
  border: none !important;
}

.article_b .submenu a {
  display: block;
  position: relative;
  color: #aaaaaa !important;
  padding: 9px 12px 9px 28px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.article_b .submenu a i {
  position: absolute;
  top: 50%;
  left: 10px;
  font-size: 10px;
  color: #7d6240;
  transform: translateY(-50%);
}

.article_b .submenu li:hover a,
.article_b .submenu li.on_this_category a {
  background: rgba(125, 98, 64, 0.2) !important;
  color: #ffffff !important;
  font-weight: 600;
  padding-left: 32px;
}

.article_b h4.blog_category_title {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Noto Serif TC', serif;
  padding-bottom: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid #2e2e2e;
}

.article_b h4.blog_category_title em {
  font-style: normal;
}

.article_b h4.blog_category_title em:after {
  content: '/';
  display: inline-block;
  vertical-align: middle;
  font-size: 20px;
  color: #7d6240;
  margin: 0 10px;
}

.article_b h4.blog_category_title span {
  font-size: 18px;
  color: #7d6240;
  font-weight: 500;
}

.article_b .subbox_item {
  display: block;
  width: 100%;
  background: #1a1a1a;
  border: 1px solid #2e2e2e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.article_b .subbox_item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  border-color: #7d6240;
}

.article_b .subbox_item a {
  display: flex;
  grid-template-columns: 240px 1fr;
  gap: 20px;
  text-decoration: none;
  padding: 16px;
  box-sizing: border-box;
  position: relative;
  flex-direction: column;
}

.article_b .subbox_item a:after,
.article_b .subbox_item a:before {
  display: none;
}

.article_b .blog_list_le {
  border-radius: 8px;
  overflow: hidden;
  background: #222222;
}

.article_b .blog_list_le img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.article_b .subbox_item:hover .blog_list_le img {
  transform: scale(1.05);
}

.article_b .blog_list_ri {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 10px;
}

.article_b .blog_list_ri h5 {
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
  font-family: "Noto Serif TC", serif;
}

.article_b .subbox_item:hover .blog_list_ri h5 {
  color: #7d6240;
}

.article_b .blog_list_ri em {
  font-size: 12.5px;
  color: #7d6240;
  font-style: normal;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.article_b .blog_list_ri em::before {
  content: '\f073';
  font-family: 'Font Awesome 6 Free';
  font-weight: 400;
}

.article_b .blog_list_ri p {
  font-size: 13.5px;
  color: #aaaaaa;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media screen and (max-width: 992px) {
  .article_b .blog_le,
  .article_b .blog_ri {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }
  .article_b .blog_le {
    position: static;
  }
  .article_b .blog_ri {
    padding-left: 0;
    min-height: auto;
  }
  .article_b .blog_le a.news_menu_toggle {
    display: flex;
  }
}

@media screen and (max-width: 576px) {
  .article_b .blog_box {
    padding: 12px 10px;
  }
  .article_b .subbox_item a {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
  }
  .article_b .blog_list_le {
    height: 180px;
  }
  .article_b .blog_list_ri {
    padding-right: 0;
  }
  .article_b .blog_list_ri h5 {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .article_b h4.blog_category_title {
    font-size: 20px;
  }
  .article_b h4.blog_category_title span {
    font-size: 15px;
  }
}

/* ========================================================
   其他設定 / 相關文章
   ======================================================== */
.blog_back a.article_btn_prev,
.blog_back a.article_btn_next {
  background: #1a1a1a;
  color: #7d6240;
  border: 1px solid #7d6240;
  border-radius: 10px;
}

.blog_back a.article_btn_back {
  background: #7d6240;
  color: #ffffff;
  border-radius: 10px;
}

.news_related {
  max-width: 900px;
  margin: 50px auto 100px;
  padding: 30px;
  background: #1a1a1a;
  border-radius: 16px;
  border: 1px solid #2e2e2e;
}
.news_related h6 { 
  text-align: center; 
  font-size: 20px; 
  font-weight: 700; 
  color: #ffffff; 
  margin-bottom: 24px; 
  position: relative; 
  font-family: "Noto Serif TC", serif; 
}
.news_related h6 span { 
  position: relative; 
  background: #1a1a1a; 
  padding: 0 20px; 
  z-index: 1; 
  color: #ffffff;
}
.news_related h6::before { 
  content: ''; 
  position: absolute; 
  top: 50%; 
  left: 0; 
  width: 100%; 
  height: 1px; 
  background: #7d6240; 
  opacity: 0.4; 
}
.news_related_list { 
  display: flex; 
  flex-direction: column; 
  gap: 16px; 
  list-style: none; 
  padding: 0; 
  margin: 0 0 24px 0; 
}
.news_related_list li a { 
  display: flex; 
  align-items: center; 
  background: #111111; 
  border: 1px solid #2e2e2e; 
  border-radius: 12px; 
  overflow: hidden; 
  text-decoration: none; 
  transition: all 0.3s ease; 
  padding-right: 24px; 
}
.news_related_list li a:hover { 
  border-color: #7d6240; 
  box-shadow: 0 8px 20px rgba(125, 98, 64, 0.25); 
  transform: translateX(4px); 
}
.news_related_list li figure { 
  width: 220px; 
  height: 130px; 
  margin: 0; 
  flex-shrink: 0; 
  overflow: hidden; 
}
.news_related_list li figure img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.4s ease; 
}
.news_related_list li a:hover figure img { 
  transform: scale(1.08); 
}
.news_related_list li p { 
  margin: 0; 
  padding-left: 20px; 
  font-size: 16px; 
  font-weight: 700; 
  color: #e0e0e0; 
  font-family: "Noto Serif TC", serif; 
  flex-grow: 1; 
  line-height: 1.5; 
}
.news_related_list li a::after { 
  content: '→'; 
  font-size: 18px; 
  color: #7d6240; 
  font-weight: bold; 
  transition: transform 0.3s; 
}
.news_related_list li a:hover::after { 
  transform: translateX(6px); 
}
.news_related_b_box { 
  display: flex; 
  justify-content: flex-end; 
  padding-top: 12px; 
}
.news_related_b_box .lastPage { 
  display: inline-block; 
  background: #111111; 
  color: #ffffff; 
  border: 1px solid #7d6240; 
  padding: 8px 24px; 
  border-radius: 8px; 
  font-size: 13px; 
  font-weight: 700; 
  text-decoration: none; 
}
.news_related_b_box .lastPage:hover { 
  border-color: #7d6240; 
  background: #7d6240; 
  color: #ffffff; 
}
.news_related h6 span:before {
  color: #7d6240;
}

@media (max-width: 640px) { 
  .news_related_list li a { flex-direction: column; align-items: stretch; padding-right: 0; } 
  .news_related_list li figure { width: 100%; height: 160px; } 
  .news_related_list li p { padding: 16px; } 
  .news_related_list li a::after { display: none; } 
}

/* ========================================================
   首頁文章 01 (Module I News)
   ======================================================== */
.module_i_news {
  padding: 40px 20px;
  background: #111111;
}
.module_i_news .title_i_box {
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}
.module_i_news .title_i_box h6 {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  color: #7d6240;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0;
}
.module_i_news .title_i_box h4 {
  font-family: 'Noto Serif TC', serif;
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin: 6px 0;
  position: relative;
  display: inline-block;
}
.module_i_news .title_i_box h4::before,
.module_i_news .title_i_box h4::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: #7d6240;
  vertical-align: middle;
  margin: 0 15px;
}
.module_i_news_list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.module_i_news_list li a {
  display: flex;
  flex-direction: column;
  background: #1a1a1a;
  border: 1px solid #2e2e2e;
  border-top: 3px solid #7d6240;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}
.module_i_news_list li a:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
  border-color: #7d6240;
}
.module_i_news_list .i_blog_le {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}
.module_i_news_list .i_blog_le img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.module_i_news_list li a:hover .i_blog_le img {
  transform: scale(1.06);
}
.module_i_news_list .i_blog_ri {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.module_i_news_list .i_blog_ri h5 {
  font-family: 'Noto Serif TC', serif;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
  line-height: 1.4;
}
.module_i_news_list .i_blog_ri em {
  font-style: normal;
  font-size: 12px;
  color: #7d6240;
  margin-bottom: 12px;
  display: block;
}
.module_i_news_list .i_blog_ri p {
  font-size: 13px;
  color: #aaaaaa;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.module_i_news .i_blog_b {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .module_i_news_list ul { grid-template-columns: 1fr; }
}

/* ========================================================
   首頁文章 02 (Module I News 02)
   ======================================================== */
.module_i_news02 {
  padding: 36px 32px;
  border: 1px solid #2e2e2e;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  background: #1a1a1a;
}
.module_i_news02 .title_i_box {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  border-bottom: 2px solid #7d6240;
  padding-bottom: 14px;
  margin-bottom: 32px;
}
.module_i_news02 .title_i_box h4 {
  font-family: 'Noto Serif TC', serif;
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}
.module_i_news02 .title_i_box h6 {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  color: #7d6240;
  letter-spacing: 2px;
  margin: 0;
  text-transform: uppercase;
}
.module_i_news02 .module_i_news_list ul {
  list-style: none !important;
  padding: 0 0 0 28px !important;
  margin: 0 !important;
  position: relative;
  border-left: 2px solid #7d6240;
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
}
.module_i_news02 .module_i_news_list li {
  position: relative;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.module_i_news02 .module_i_news_list li::before {
  content: '';
  position: absolute;
  left: -35px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #111111;
  border: 3px solid #7d6240;
  transition: all 0.3s ease;
  z-index: 2;
}
.module_i_news02 .module_i_news_list li:hover::before {
  background-color: #7d6240;
  transform: translateY(-50%) scale(1.3);
  box-shadow: 0 0 10px rgba(125, 98, 64, 0.8);
}
.module_i_news02 .module_i_news_list li a {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 20px !important;
  padding: 16px 20px !important;
  background-color: #111111;
  border: 1px solid #2e2e2e;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}
.module_i_news02 .module_i_news_list li a:hover {
  background-color: #222222;
  border-color: #7d6240;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  transform: translateX(4px);
}
.module_i_news02 .i_blog_le {
  width: 140px !important;
  min-width: 140px !important;
  max-width: 140px !important;
  height: 95px !important;
  flex-shrink: 0 !important;
  border-radius: 8px;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
}
.module_i_news02 .i_blog_le img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  margin: 0 !important;
}
.module_i_news02 .i_blog_ri {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  text-align: left !important;
  padding: 0 !important;
  margin: 0 !important;
}
.module_i_news02 .i_blog_ri h5 {
  font-family: 'Noto Serif TC', serif;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px 0 !important;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.module_i_news02 .module_i_news_list li a:hover .i_blog_ri h5 {
  color: #7d6240;
}
.module_i_news02 .i_blog_ri em {
  font-style: normal;
  font-size: 12px;
  color: #7d6240;
  display: block;
  margin-bottom: 6px !important;
  font-weight: 500;
}
.module_i_news02 .i_blog_ri p {
  font-size: 13.5px;
  color: #aaaaaa;
  margin: 0 !important;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.module_i_news02 .i_blog_b {
  margin-top: 32px;
  text-align: right;
}

.module_i_news li a:after,
.module_i_news li a:before {
  display: none;
}

@media (max-width: 768px) {
  .module_i_news02 { margin-top: 50px; }
  .module_i_news .i_blog_b { margin-top: 0; }
  .module_i_news02 .i_blog_b { margin-top: 0; }
}
@media (max-width: 640px) {
  .module_i_news02 .module_i_news_list ul { padding-left: 20px !important; }
  .module_i_news02 .module_i_news_list li::before { left: -27px; }
  .module_i_news02 .module_i_news_list li a { flex-direction: column !important; align-items: flex-start !important; }
  .module_i_news02 .i_blog_le { width: 100% !important; min-width: 100% !important; max-width: 100% !important; height: 160px !important; }
}

/* ========================================================
   購物車 / 產品列表樣式
   ======================================================== */
.product_page .main_part { max-width: 1500px; }
.product_page .show_content,
.product_info_page .show_content { width: 100%; display: flex; justify-content: space-between; flex-wrap: wrap; align-items: flex-start; align-content: flex-start; }
.product_page .product_menu_list { position: relative; width: 220px; letter-spacing: 1px; min-height: 30vw; }
.product_page .products-list,
.product-wrapper { width: calc(100% - 270px); }
ul.page { width: 100%; }

.product-layer-two li ul { position: static; margin-top: 5px; width: 100%; margin-left: 0; }
.product-layer-two li:hover ul { border: none; }
.product-layer-two li li { display: block; padding: 0; transition: all ease .3s; }
.product-layer-two li li a { padding: 5px 10px; }
.product-layer-two li li:hover > a { background: #222222; color: #7d6240; }
.product-layer-two > li { width: 100%; max-width: 100%; padding: 0; text-align: left; border-bottom: 1px dotted #333333; padding-bottom: 5px; }
.product-layer-two > li ul > li + li { margin-top: 5px; }

.product_info_page .product-layer-two { display: none; }
.product_info_page .products-list,
.product-wrapper { width: 100%; }

.product-layer-two li li:hover { margin-left: 15px; }
.product-layer-two li li > a:before { content: ""; position: absolute; width: 12px; height: 8px; background: transparent; left: 0; margin-left: -20px; top: 50%; margin-top: -4px; clip-path: polygon(0 0, 100% 50% , 0 100%); }
.product-layer-two li li:hover > a:before { background: #7d6240; }

.product_info_page .half_box { width: 100%; float: none; padding-right: 0; }
.product_info_page .half_box li.btn_blankTop { margin-top: 50px; justify-content: space-between; display: flex; }
.product_info_page .half_box li.btn_blankTop input { width: calc(50% - 10px); background-image: none; padding: 0; text-align: center; }

@media screen and (max-width: 768px) {
  .product_menu_list,
  .products-list,
  .product-wrapper { width: 100%; }
  .product-layer-two { margin-right: 0; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); grid-gap: 5px; }
  .product_page .product-layer-two,
  .product_page .products-list { width: 100%; border-right: none; }
  .product_page .product_menu_list > h5 { display: block; }
  .product_page .show_content > a { order: 1; }
  .product_page ul.products-list { order: 2; }
  .product_page ul.page { order: 3; }
  .product_page .product_menu_list { width: 100%; order: 0; min-height: unset; }
}

/* 方案 4：無圖純字列表 */
.show_content .product_menu_list {
  width: 260px;
  flex-shrink: 0;
  position: sticky;
  top: 90px;
  background-color: #1a1a1a;
  border: 1px solid #2e2e2e;
  border-radius: 12px;
  padding: 22px;
}

.show_content .product_menu_list h5 {
  font-size: 17px;
  color: #ffffff;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 2px solid #7d6240;
}

.show_content .product_menu_list .product-layer-two {
  list-style: none;
  padding: 0;
  margin: 0;
}
.show_content .product_menu_list .product-layer-two > li a {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s;
  background: #7d6240;
}

.show_content .product_menu_list .product-layer-two > li a:hover,
.show_content .product_menu_list .product-layer-two > li.active > a {
  background-color: #2e2e2e;
  color: #7d6240;
  font-weight: 600;
}

.product_info_page .show_content .product_menu_list { display: none; }

.show_content .products-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  border-top: 2px solid #7d6240;
  counter-reset: article-counter;
  gap: 0;
}

.show_content .products-list .item {
  position: static;
  width: 100%;
  border-bottom: 1px solid #222222;
}

.show_content .products-list .item a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 18px;
  height: auto;
  text-decoration: none;
  background-color: transparent;
  transition: all 0.3s ease;
}

.show_content .products-list .item a:hover {
  background-color: #1a1a1a;
  padding-left: 26px;
}

.show_content .products-list .item a > * { width: auto; }
.show_content .products-list .pic { display: none; }

.show_content .products-list .item a::before {
  counter-increment: article-counter;
  content: counter(article-counter, decimal-leading-zero);
  font-family: 'Noto Serif TC', serif;
  font-size: 16px;
  font-weight: 700;
  color: #7d6240;
  margin-right: 22px;
}

.show_content .products-list .name {
  flex: 1;
  font-family: 'Noto Serif TC', serif;
  font-size: 16px;
  font-weight: 600;
  color: #e0e0e0;
  margin: 0;
  height: auto;
  padding-right: 20px;
  overflow: visible;
  white-space: normal;
  display: block;
  -webkit-line-clamp: unset;
}

.show_content .products-list .item a:hover .name {
  color: #7d6240;
}

.show_content .products-list .more {
  position: static;
  transform: none;
  left: auto;
  bottom: auto;
  width: auto;
  padding: 6px 18px;
  font-size: 13px;
  color: #7d6240;
  border: 1px solid #7d6240;
  border-radius: 20px;
  white-space: nowrap;
  background: transparent;
}

.show_content .products-list .item a:hover .more {
  background-color: #7d6240;
  color: #ffffff;
}

@media (max-width: 992px) {
  .show_content { flex-direction: column; }
  .show_content .product_menu_list { width: 100%; position: static; }
}

@media (max-width: 640px) {
  .show_content .products-list .item a { padding: 16px 10px; }
  .show_content .products-list .name { font-size: 14.5px; }
}

.product_main, .sidebarBtn, .pd_tabTitle li.activeTab a, .pd_tabTitle li.activeTab::after, .pd_tabTitle li, .prod_related {
  display: none;
}

/* ========================================================
   首頁購物車列表 (Prod Part)
   ======================================================== */
.prod_part .i_prod_tit h2 {
  font-family: 'Noto Serif TC', 'Georgia', serif;
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2px;
}
.prod_part .i_prod_tit span {
  display: block;
  font-size: 14px;
  color: #7d6240;
  letter-spacing: 4px;
  margin-top: 6px;
  font-weight: 600;
}

.prod_part .productsListBox .products-list,
.pageIndex .productsListBox .products-list {
  display: flex;
  flex-direction: column;
  grid-template-columns: none;
  padding: 0;
  margin: 30px 0 10px 0;
  border-top: 2px solid #7d6240;
  border-bottom: 1px solid #222222;
  counter-reset: article-counter;
  gap: 0;
}

.prod_part .productsListBox .products-list .item {
  position: static;
  width: 100%;
  margin: 0;
  border-bottom: 1px solid #222222;
}
.prod_part .productsListBox .products-list .item:last-child {
  border-bottom: none;
}

.prod_part .productsListBox .products-list .item a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  height: auto;
  text-decoration: none;
  background-color: transparent;
  border-left: 0px solid #7d6240;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}
.prod_part .productsListBox .products-list .item a:hover {
  background-color: #1a1a1a;
  padding-left: 32px;
  border-left: 4px solid #7d6240;
}

.prod_part .productsListBox .products-list .item a > * { width: auto; }
.prod_part .productsListBox .products-list .item .pic { display: none; }

.prod_part .productsListBox .products-list .item a::before {
  counter-increment: article-counter;
  content: counter(article-counter, decimal-leading-zero);
  font-family: 'Noto Serif TC', 'Georgia', serif;
  font-size: 15px;
  font-weight: 700;
  color: #7d6240;
  margin-right: 24px;
  letter-spacing: 1px;
  opacity: 0.85;
  transition: all 0.3s ease;
}
.prod_part .productsListBox .products-list .item a:hover::before {
  color: #a38458;
  transform: scale(1.1);
}

.prod_part .productsListBox .products-list .item .name {
  font-family: 'Noto Serif TC', -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #e0e0e0;
  height: auto;
  margin: 0;
  line-height: 1.6;
  flex: 1;
  padding-right: 28px;
  display: block;
  overflow: visible;
  white-space: normal;
  text-overflow: clip;
  -webkit-line-clamp: unset;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}
.prod_part .productsListBox .products-list .item a:hover .name {
  color: #7d6240;
}

.prod_part .productsListBox .products-list .item .more {
  position: static;
  transform: none;
  left: auto;
  bottom: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 6px 20px;
  font-size: 13.5px;
  font-weight: 500;
  color: #7d6240;
  border: 1px solid #7d6240;
  border-radius: 20px;
  white-space: nowrap;
  background: transparent;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.prod_part .productsListBox .products-list .item a:hover .more {
  background-color: #7d6240;
  color: #FFFFFF;
  letter-spacing: 2px;
  box-shadow: 0 4px 12px rgba(125, 98, 64, 0.4);
}

.prod_part .i_prod_b a.animated-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 38px;
  background-color: #7d6240;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.prod_part .i_prod_b a.animated-arrow:hover {
  background-color: #5f4a2f;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(125, 98, 64, 0.4);
}

@media (max-width: 640px) {
  .prod_part .productsListBox .products-list .item a { padding: 16px 12px; }
  .prod_part .productsListBox .products-list .item a:hover { padding-left: 18px; }
  .prod_part .productsListBox .products-list .item a::before { margin-right: 14px; font-size: 13.5px; }
  .prod_part .productsListBox .products-list .item .name { font-size: 14.5px; padding-right: 12px; }
  .prod_part .productsListBox .products-list .item .more { padding: 4px 12px; font-size: 12px; border-radius: 14px; }
}

/* 按鈕風格 */
.i_prod_b a.animated-arrow,
a.animated-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 54px;
  background: linear-gradient(135deg, #7d6240 0%, #5f4a2f 100%);
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(125, 98, 64, 0.4);
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.i_prod_b a.animated-arrow i.fa-solid,
.i_prod_b a.animated-arrow .arrow,
a.animated-arrow i.fa-solid,
a.animated-arrow .arrow {
  position: static;
  transform: none;
  margin-left: 12px;
  width: 28px;
  height: 28px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.35s ease;
}

.i_prod_b a.animated-arrow:hover,
a.animated-arrow:hover {
  background: linear-gradient(135deg, #94754d 0%, #7d6240 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(125, 98, 64, 0.55);
}

.i_prod_b a.animated-arrow:hover i.fa-solid,
.i_prod_b a.animated-arrow:hover .arrow,
a.animated-arrow:hover i.fa-solid,
a.animated-arrow:hover .arrow {
  background-color: #FFFFFF;
  color: #7d6240;
  transform: translateX(4px);
}

/* ========================================================
   輪播與 BANNER 設定
   ======================================================== */
#content_main { margin: 0; }
.bannerindex { position: relative; height: auto; }
.swiper-banner { position: static; margin: 0; height: auto; } 
@media screen and (max-width: 768px) {
  .bannerindex { padding: 0; margin: 0; }
}

.swiper-banner .swiper-slide img {
  animation: none;
}

.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  background: url(https://pic03.eapple.com.tw/chuanyilawyer/ppl1.png) no-repeat right/contain;
  padding-bottom: calc(100% / 1 * 0.12);
  z-index: 99;
  animation: fade-in-right .6s cubic-bezier(.39,.575,.565,1.000) both;
  animation-delay: .5s;
}

.bannerindex .swiper-slide.swiper-slide-active:nth-child(1):after {
  content: ""; 
  position: absolute; 
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  background: url(https://pic03.eapple.com.tw/chuanyilawyer/title1.svg) no-repeat right/contain;
  padding-bottom: calc(100% / 1 * 0.12);
  opacity: 0;
  animation: animDepthTitle 2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
  animation-delay: 1s;
}

.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  background: url(https://pic03.eapple.com.tw/chuanyilawyer/ppl2.png) no-repeat right/contain;
  padding-bottom: calc(100% / 1 * 0.12);
  z-index: 99;
  animation: fade-in-left .6s cubic-bezier(.39,.575,.565,1.000) both;
  animation-delay: .5s;
}

.bannerindex .swiper-slide.swiper-slide-active:nth-child(2):after {
  content: ""; 
  position: absolute; 
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  background: url(https://pic03.eapple.com.tw/chuanyilawyer/title2.svg) no-repeat right/contain;
  padding-bottom: calc(100% / 1 * 0.12);
  opacity: 0;
  animation: animDepthTitle 2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
  animation-delay: 1s;
}

.bannerindex .ban_btn {
  background-image: url(https://pic03.eapple.com.tw/chuanyilawyer/buttom.svg);
  width: clamp(100px,18vw,320px);
  aspect-ratio: 3.4 / 1;
  background-position: center;
  background-size: cover;
  transition: all .4s ease;
  position: absolute;
  z-index: 100;
}
.bannerindex .swiper-slide.swiper-slide-active .ban_btn {
  opacity: 0;
  animation: animDepthTitle 2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
  animation-delay: 1s;
}
.bannerindex .ban_btn:hover {
  background-image: url(https://pic03.eapple.com.tw/chuanyilawyer/buttom-h.svg);
}
.bannerindex .ban_btn01 {
  left: 10vw;
  bottom: 9vw;
}
.bannerindex .ban_btn02 {
  right: 24vw;
  bottom: 11vw;
}

@keyframes fade-in-left {
  0% { transform: translateX(-50px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes fade-in-right {
  0% { transform: translateX(50px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes animDepthTitle {
  from { opacity: 0; transform: translateY(-20px); filter: brightness(1.8); }
  to { opacity: 1; transform: translateY(0); filter: brightness(1); }
}

/* 內頁 BANNER */
.banner {
  font-size: 40px;
  padding: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  min-height: 240px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  background-color: #111111;
  background-image: radial-gradient(#222222 1px, transparent 1px), linear-gradient(to bottom, #111111, #1a1a1a);
  background-size: 20px 20px, 100% 100%;
  border-bottom: 1px solid #2e2e2e;
}
.banner h5 {
  margin: 0;
  font-family: "Noto Serif TC", serif;
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 3px;
  padding: 24px 50px;
  border: 1px solid #7d6240;
  position: relative;
  background-color: rgba(26, 26, 26, 0.9);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  border-radius: 4px;
}
.banner h5::before {
  content: '';
  position: absolute;
  top: -5px;
  bottom: -5px;
  left: 12px;
  right: 12px;
  border-top: 1px solid #7d6240;
  border-bottom: 1px solid #7d6240;
  pointer-events: none;
}
.banner h5::after {
  content: '';
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #7d6240;
  letter-spacing: 5px;
  margin-top: 6px;
}
.banner.banF h5::after { content: 'LEGAL ARTICLES'; }
.banner.banC h5::after { content: 'CONTACT US'; }
.article_a .banner.banblog h5::after { content: 'CASE STUDIES'; }
.article_b .banner.banblog h5::after { content: 'NEWS'; }

/* ========================================================
   表單區域 (Contact Form)
   ======================================================== */
.contact_content .information_left {
  display: none;
}
.contact_form li .form__label {
  text-align: left;
  max-width: 100%;
}
.contact_content {
  display: flex;
  justify-content: center;
  padding-bottom: 100px;
}

.contact_content .information_right {
  width: 1000px;
  padding-left: 30px;
}

.information_right {
  background: #1a1a1a;
  border-radius: 24px;
  padding: 40px 32px;
  border: 1px solid #2e2e2e;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}
.information_right h4.blank_letter {
  font-family: 'Noto Serif TC', serif;
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 28px 0;
  text-align: center;
}
.information_right h4 .note.red {
  display: block;
  font-size: 12px;
  color: #7d6240;
  font-weight: 500;
  margin-top: 4px;
  font-family: 'Noto Sans TC', sans-serif;
}
.information_right ul.contact_form {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.information_right ul.contact_form li {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.information_right .form__label {
  font-size: 13.5px;
  font-weight: 700;
  color: #e0e0e0;
  padding-left: 4px;
}
.information_right .form__label .star.red {
  color: #7d6240;
  margin-right: 3px;
}
.information_right .form__insert input.noborder,
.information_right .form__insert textarea.noborder {
  width: 100%;
  padding: 13px 16px;
  background: #111111;
  border: 1px solid #333333;
  border-radius: 12px;
  font-size: 14px;
  color: #ffffff;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.information_right .form__insert input.noborder:focus,
.information_right .form__insert textarea.noborder:focus {
  background: #181818;
  border-color: #7d6240;
  box-shadow: 0 0 0 4px rgba(125, 98, 64, 0.25);
}
.information_right .tncode {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px;
  background: #111111;
  border: 1px solid #7d6240;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.information_right .tncode:hover {
  background: #7d6240;
  color: #ffffff;
}
.information_right ul.contact_form li.last {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  padding-top: 20px;
}
.information_right li.last blockquote,
.information_right li.last cite {
  margin: 0;
  font-style: normal;
}
.information_right li.last blockquote {
  flex: 1;
  border: none;
}
.information_right li.last cite {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #7d6240 0%, #544026 100%);
  color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}
.information_right li.last cite:hover {
  background: linear-gradient(135deg, #94754d 0%, #7d6240 100%);
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(125, 98, 64, 0.45);
}
.information_right li.last input[type="reset"] {
  width: 100%;
  padding: 14px;
  background: #111111;
  border: 1px solid #333333;
  color: #aaaaaa;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.information_right li.last input[type="reset"]:hover {
  background: #222222;
  color: #ffffff;
  border-color: #555555;
}
.information_right li.last input[type="submit"] {
  background: transparent;
  border: none;
  color: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}

@media screen and (max-width: 768px) {
  #bottom_menu { display: flex; }
  .footer.with_shopping_mode { padding: 30px 0 70px; }
  #to_top { bottom: 60px; }
}

@media screen and (max-width: 600px) { 
}