@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script&family=Noto+Sans+TC&display=swap");

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
  /* 不累加邊框與內距 */
}

/* 捲軸滑動效果 */
/* html,body { 
	scroll-behavior: smooth;
} */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial;
}

:root {
  /* 灰階 */
  --light_grey: #ccc;
  --grey: #999;
  --deep_grey: #444;
  /* 主色調 */
  --major-color: #f2edf0;
  --major-color2: #e6ece5;
  --major-color3: #ecf0f4;
  /* 輔助色調 */
  --lesser-color1: #bf9899;
}

img {
  display: block;
  width: 100%;
}

a {
  display: inline;
  color: var(--deep_grey);
  text-decoration: none;
  /* 取消a預設底線 */
}

/* ===== Header 基礎設定 ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 10vh;
    line-height: 7vh;
    z-index: 1000;
    background: rgba(243, 243, 242, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===== Nav 主容器 ===== */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3vw;
    margin: 0 auto;
    width: 90%;
    max-width: 1800px;
}

.nav::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(243, 243, 242, 0.2);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: -1;
}

/* ===== Logo ===== */
.nav__logo img {
    height: 32px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav__logo:hover img {
    transform: scale(1.05);
}

/* ===== Menu 主選單 ===== */
.nav__menu {
    display: flex;
    align-items: center;
    gap: 2.4vw;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ===== Menu 項目 ===== */
.nav__item {
    position: relative;
}

.nav__link {
    text-decoration: none;
    color: rgba(113, 113, 113, 0.9);
    font-size: 1rem;
    letter-spacing: 2px;
    transition: color 0.3s ease-in-out,
        letter-spacing 0.4s ease-in-out;
    padding: 8px 0;
    display: inline-block;
    font-weight: 400;
}

/* hover 時淡入白亮效果 */
.nav__link:hover {
    color: rgba(228, 139, 14, 0.925);
    letter-spacing: 2.4px;
}


/* ====== Mega Menu 動畫用的狀態 (Apple 下滑風格) ====== */
.mega-menu {
    position: absolute;
    z-index: 90;
    top: 64px;
    left: 0;
    width: 100%;
    transform: translateY(-10px);
    background: rgba(243, 243, 242, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    padding: 20px 8vw;
}

.mega-menu::before {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(8px);
    background: rgba(243, 243, 242, 0.6);
    z-index: -1;
}

.mega-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}



/* === 預設隱藏狀態 === */
.mega-content {
    display: none;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .4s ease, transform .4s ease;
}

/* === 顯示時 === */
.mega-content.is-active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

/* === 子項目動畫設定 === */
.mega-content.is-active .column ul li,
.mega-content.is-active .article-mega__main,
.mega-content.is-active .article-mega__side {
    opacity: 0;
    transform: translateY(15px);
    animation: itemIn 0.5s ease forwards;
}

/* 子項目的延遲（依順序淡入） */
.mega-content.is-active .column ul li:nth-child(1) {
    animation-delay: 0.1s;
}

.mega-content.is-active .column ul li:nth-child(2) {
    animation-delay: 0.2s;
}

.mega-content.is-active .column ul li:nth-child(3) {
    animation-delay: 0.3s;
}

.mega-content.is-active .column ul li:nth-child(4) {
    animation-delay: 0.4s;
}
.mega-content.is-active .column ul li:nth-child(5) {
    animation-delay: 0.4s;
}

.mega-content.is-active .article-mega__main {
    animation-delay: 0.15s;
}

.mega-content.is-active .article-mega__side {
    animation-delay: 0.3s;
}

/* === 子項目動畫關鍵幀 === */
@keyframes itemIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====== Column 區塊 ====== */
.column {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.column h4 {
    font-size: 14px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: 1px;
}

.column ul {
    width: 80%;
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.column li {
    width: 15%;
    font-size: 14px;
    letter-spacing: 1px;
    color: rgba(0, 0, 0, 0.8);
    transition: color 0.25s ease;
}

.column li:hover {
    color: rgb(129, 41, 41);
}

.column ul {
    display: flex;
}

.column li img {
    width: 50%;
    position: relative;
}

.eq_m {
    display: flex;
    width: 100%;
}

.eq_m h5 {
    position: relative;
    right: -30%;
    width: 100%;
    line-height: 1.6;
}


.product-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.h5 {
    display: flex;
    flex-direction: column;
    position: relative;
    font-size: .8rem;
    letter-spacing: 1px;
    right: 10%;
    top: 25%;
    width: 45%;
    line-height: 1.6;
}

.h5 h5 {
    padding: 2%;
}



/* === mega-content (文章區塊) === */
#mega_article {
    display: none;
    /* 🚫 預設隱藏 */
    opacity: 0;
    /* 🚫 預設透明 */
    flex-direction: column;
    transition: opacity 0.4s ease;
    /* ✅ 加上淡入動畫 */
}

/* ✅ 顯示狀態 */
#mega_article.is-active {
    display: flex;
    opacity: 1;
}

.article-tag {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: end;
    padding: 0% 2% 2%;
}

.article-tag h5 {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 3px;
}

.article-tag div {
    content: "";
    display: block;
    /* ✅ 讓它成為區塊元素 */
    width: 77%;
    /* ✅ 給它寬度 */
    height: 0;
    /* ✅ 不需要高度，只畫底線 */
    border-bottom: 0.75px solid rgb(49, 49, 49);
}

.article-tag p {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
}

.article-mega {
    display: flex;
    justify-content: space-around;
    padding: 2%;
}

.article-mega__main {
    width: 50%;
}

.article-mega__title {
    font-size: 28px;
    letter-spacing: 2px;
    font-weight: 700;
}

.article-mega__excerpt {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 300;
    margin: 2% auto;
}

.article-mega__image {
    max-height: 185px;
    max-width: 580px;
    overflow: hidden;
    border-radius: 8px;
}

.article-mega__side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 40%;
}

.article-category__list li {
    font-size: 16px;
    letter-spacing: 3px;
    font-weight: 500;
    margin: 0% auto 4%;
    border-bottom: #9f4511 2px solid;
}

.article-category_tag {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin: 4% 0;
}

.article-category_tag h5 {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 4px;
}

.article-category_tag div {
    content: "";
    display: block;
    /* ✅ 讓它成為區塊元素 */
    width: 50%;
    margin: 0 auto;
    /* ✅ 給它寬度 */
    height: 0;
    /* ✅ 不需要高度，只畫底線 */
    border-bottom: 0.75px solid rgb(49, 49, 49);
}

.article-category_tag p {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 2px;
}

.article-mega__more {
    display: inline-block;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.article-mega__more span {
    display: inline-block;
    transform: translateX(0);
    transition: transform 0.8s ease;
    width: 85%;
}

.article-mega__more:hover span {
    transform: translateX(100%);
    /* 滑動距離 */
}




/* ====== 響應式處理 ====== */
@media (max-width: 1024px) {
    header {
        height: 56px;
    }

    .nav__menu {
        gap: 1.5rem;
    }

    .nav__link {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 0 4vw;
    }

    .nav__menu {
        display: none;
    }

    /* hamburger 或 mobile menu 可在此加入 */
}




.breadcrumb {
  display: flex;
  margin-top: 16vh;
  margin-bottom: 4vh;
  margin-left: 8vw;
  width: 50vw;
}

.breadcrumb-item {
  color: #949494;
  font-size: 0.8vw;
  font-weight: 300;
  letter-spacing: 1px;
  margin: 0 2%;
}

.footer {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  background-color: #444;
}

.footer a {
  color: #f8f8f8;
}

.footer__info {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: #f8f8f8;
}

.footer__nav {
  width: 20vw;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer__nav ul li {
  margin: 4vh auto;
  font-size: 1.5vw;
}

.footer__nav ul li img {
  width: 10vw;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  padding: 0 10vw;
  border-left: 0.25vw #f8f8f8 solid;
}

.footer__company {
  margin: 3vh 0 20vh;
}

.footer__company--ch {
  font-size: 2.8vw;
  margin: 0 0 4vh;
  letter-spacing: 5px;
}

.footer__company--en {
  font-size: 2.8vw;
  letter-spacing: 8px;
}

.footer__address {
  margin: 1vh 0;
  font-size: 1.3vw;
  letter-spacing: 2px;
}

.footer__address p {
  margin: 2vh 0;
}

.Yuuhakuchi {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 10vh;
  text-align: center;
  letter-spacing: 2px;
  background-color: #f8f8f8;
}

body.no-scroll {
  overflow: hidden;
  /* 禁止滾動 */
}

.navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(248, 248, 248, 0.8);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: space-around;
  padding: 6vw 10vw;
  z-index: 2;
  overflow-y: hidden;
}

.navigation--hidden {
  display: none;
  opacity: 0;
}

.navigation__buttons {
  width: 40vw;
  display: flex;
  flex-direction: column;
}

.navigation__link {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 6vh 0vh;
}

.navigation__text--ch {
  font-size: 2.2vw;
  letter-spacing: 2px;
  margin-bottom: 1vh;
}

.navigation__text--en {
  font-size: 1.2vw;
  letter-spacing: 4px;
  margin-bottom: 1vh;
}

.navigation__content {
  width: 60vw;
  display: flex;
  flex-direction: column;
  padding-left: 10%;
  margin-top: 5vh;
  border-left: 3px solid rgba(47, 47, 47, 0.8);
}

.navigation__banner img {
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 510px;
  border-radius: 8px;
}

.navigation__info {
  margin-top: 10vh;
}

.navigation__title {
  font-size: 2.2vw;
  letter-spacing: 4px;
}

.navigation__contact {
  font-size: 1.2vw;
  letter-spacing: 2px;
  margin: 2vh 0;
}

body {
  background: linear-gradient(to bottom, rgba(249, 239, 206, 0.1), rgba(248, 221, 178, 0.4), rgba(232, 194, 82, 0.7), rgba(246, 179, 50, 0.9));
  display: flex;
  flex-direction: column;
}

section {
  position: relative;
  bottom: 0px;
  display: flex;
  width: 100vw;
  flex-direction: row;
  justify-content: flex-start;
}

section .product-display {
  width: 40vw;
  position: sticky;
  height: 100%;
  top: 20vh;
}

section .product-display__image--main {
  max-width: 100%;
  height: auto;
  display: block;
}

section .product-card {
  width: 55vw;
  position: relative;
  top: 0vh;
  margin: 0vh 12vw 4vh 0vh;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

section .product-card--main {
  position: relative;
  z-index: 4;
  width: 80%;
  background-color: rgba(228, 228, 228, 0.7921568627);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  /* 背景模糊 */
  box-shadow: 4px 4px 10px rgba(224, 224, 224, 0.2823529412);
  box-shadow: inset -1px -2px 8px rgba(41, 41, 41, 0.1647058824);
  padding: 6vh 4.5vh;
  border-radius: 32px;
}

section .product-card__title {
  font-size: 2.9vw;
  font-weight: 700;
  line-height: 1.2;
  margin: 1vh 0 3vh;
}

section .product-card__subtitle {
  color: #848484;
  font-weight: 500;
  font-size: 1vw;
  letter-spacing: 1.5px;
  line-height: 1.6;
}

section .product-card__description {
  font-weight: 400;
}

section .product-card__description h3 {
  font-size: 1.1vw;
  letter-spacing: 0.2vw;
  line-height: 2;
}

section .product-card__description ul {
  margin: 4% auto;
  display: flex;
  flex-direction: column;
  font-size: 1.25vw;
}

section .product-card__description ul li {
  border: 1.5px solid #6c6c6c;
  border-radius: 0.4vw;
  padding: 1vw;
  margin: 1vw 0.7vw 0 1vw;
  line-height: 1.6;
}

section .product-card .product-specifications {
  font-weight: 200;
  display: flex;
  align-items: center;
  padding: 2% 0;
  margin: 3% 0 0;
}

.product-specifications__note{
  font-size: .8rem;
  letter-spacing: .8px;
  margin-bottom: 6%;
}

section .product-card .product-specifications__title {
  font-size: 16px;
  margin-right: 3%;
}

section .product-card .product-specifications__group {
  display: flex;
  align-items: center;
  margin: 0 3%;
}



section .product-card .product-specifications__size {
  font-size: 14px;
  margin: 0 4px;
}

section .product-card .product-specifications__options {
  display: flex;
  gap: 5px;
}

section .product-card .product-specifications__option {
  padding: 5px 10px;
  border: 1px solid #8b8b8b;
  border-radius: 5px;
  font-size: 14px;
}

section .product-card__more {
  font-size: 12px;
  color: #313131;
  letter-spacing: 2px;
}

section .product-feature__title {
  margin: 5vh 0 2vh;
  font-size: 2.5vw;
  font-weight: 700;
  letter-spacing: 3px;
}

section .product-feature__description h3 {
  width: 100%;
  font-size: 1.25vw;
  font-weight: 400;
  padding: 1% 0 1% 2%;
  margin: 5% 0 2%;
  letter-spacing: 1px;
  border: 1.75px solid rgb(94, 94, 94);
  color: rgb(67, 67, 67);
  border-radius: 4px;
}

section .product-feature__description p {
  font-weight: 300;
  font-size: 1vw;
  letter-spacing: 0.2vw;
  line-height: 2;
}

.product-feature__description img{
  margin: 6% auto 2%;
}

section .product-feature__recommand {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

section .product-feature__recommand li {
  display: flex;
  justify-content: center;
  flex-direction: row;
  width: 100%;
}

section .product-feature__recommand li div {
  width: 50%;
  display: flex;
  justify-content: space-around;
  padding: 2%;
  margin: 1% 2%;
  border-radius: 4px;
  border: 1px solid rgb(94, 94, 94);
}

section .product-feature__recommand li div p {
  font-weight: 600;
  font-size: 1vw;
  letter-spacing: 0.05vw;
  line-height: 1.2;
}

section .product-index {
  position: absolute;
  /* 初始位置設為絕對定位 */
  transition: all 0.4s ease-in-out;
  /* 過渡效果，讓固定更加平滑 */
  display: flex;
  flex-direction: column;
  /* 垂直排列 */
  /* 每個連結之間的間距 */
  text-align: center;
  /* 讓文字居中（可選） */
  top: 0vh;
  right: 12vw;
  z-index: 2;
}

section .product-index a {
  font-size: 1vw;
  font-weight: 600;
  padding: 1.5vh 1vw;
  margin: 2vh 0 0;
  letter-spacing: 3px;
  writing-mode: vertical-rl;
  /* 文字垂直排列，從右向左 */
  text-orientation: upright;
  /* 每個字直立顯示 */
  transition: color 0.4s ease-in;
  /* 增加滑鼠懸停效果 */
  color: #797979;
  background-color: #efefef;
  box-shadow: inset -1px -2px 4px rgba(64, 42, 12, 0.1764705882);
  border-radius: 8px;
}

section .product-index a:hover {
  color: #474747;
  background-color: #F6AA31;
}

section .product-comparison {
  position: relative;
  flex-direction: column;
  width: 10vw;
}

section .product-comparison--main {
  width: 90vw;
  margin: 5vh auto;
  padding: 1% 3%;
  display: flex;
  flex-direction: column;
  background-color: rgba(228, 228, 228, 0.7921568627);
  border-radius: 32px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  /* 背景模糊 */
  box-shadow: 4px 4px 10px rgba(224, 224, 224, 0.2823529412);
  box-shadow: inset -1px -2px 8px rgba(41, 41, 41, 0.1647058824);
}

section .product-comparison--first {
  display: flex;
  justify-content: center;
  margin: 5vh 0 0;
}

section .product-comparison--first p {
  width: 95%;
}

section .product-figures {
  width: 100vw;
}

section .product-figures--img {
  display: flex;
}

section .product-figure {
  margin: 1% 2%;
}

section .product-figure iframe {
  border-radius: 8px;
}

section .product-figure__image {
  height: 75%;
  border-radius: 16px;
  -o-object-fit: cover;
  object-fit: cover;
}

section .product-figure__caption {
  margin: 1% 0;
  font-size: 1vw;
  letter-spacing: 5px;
  font-weight: 500;
  color: #414141;
}

.cleaning-tutorial__article {
  width: 26vw;
  display: flex;
  flex-direction: column;
}

.cleaning-tutorial__article img {
  margin: 0vh auto 2vh;
  height: 24vh;
  -o-object-fit: cover;
  object-fit: cover;
  box-shadow: 1px 1px 3px rgba(68, 68, 68, 0.1);
  border-radius: 24px;
}

.cleaning-tutorial__article-title {
  font-size: 1.2vw;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 2px;
  margin: 1vh 0;
}

.cleaning-tutorial__description {
  font-size: 1vw;
  letter-spacing: 2px;
  margin: 2vh 0 4vh;
  line-height: 1.6;
}

.cleaning-tutorial__hashtag {
  font-size: 1vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.8px;
}

.cleaning-tutorial__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4vw;
}

.cleaning-tutorial__tag {
  font-size: 0.8vw;
  background-color: #f2f2f2;
  padding: 0.2rem 0.5rem;
  border-radius: 8px;
}

.product-relative {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 80%;
  background-color: rgba(228, 228, 228, 0.7921568627);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  /* 背景模糊 */
  box-shadow: 4px 4px 10px rgba(224, 224, 224, 0.2823529412);
  box-shadow: inset -1px -2px 8px rgba(41, 41, 41, 0.1647058824);
  padding: 10vh 8vh;
  border-radius: 32px;
  margin: 5vh auto;
}

.product-relative__title {
  margin: 4vh 0;
  font-size: 2.5vw;
  font-weight: 700;
  letter-spacing: 3px;
}

.product-relative__recommend{
  display: flex;
  flex-direction: column;
  width: 100%;
}

.product-relative__kite{
  margin: 2% auto;
}


.product-list {
  display: flex;
  justify-content: space-around;
  margin: 2vh auto 1vh;
}

.product-list__item {
  margin: 0 1vw;
}

.product__image {
  width: 18vw;
  height: 18vw;
  -o-object-fit: cover;
  object-fit: cover;
  background-color: #f2f2f2;
  border-radius: 16px;
}

.product__info {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2vh 0;
  width: 100%;
}

.product__number {
  font-size: 1.1vw;
  padding: 3%;
  margin: 1%;
  font-weight: 600;
}

.product__description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 1%;
  align-items: center;
}

.product__description h5 {
  font-size: 1.25vw;
  letter-spacing: 2px;
  margin: 5% 0;
}

.product__description h6 {
  font-weight: 300;
  font-size: 1vw;
}

.product-articles {
  display: flex;
  justify-content: space-around;
  gap: 5rem;
  margin: 4vh auto;
}

/*# sourceMappingURL=service-product-sk100.css.map */

.comparison,
.faq {
  display: flex;
  flex-direction: column;
  font-family: "Noto Sans TC", sans-serif;
  width: 90%;
  margin: 0 auto 20vh;
  padding: 4% 8%;
  background-color: rgba(228, 228, 228, 0.7921568627);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  /* 背景模糊 */
  box-shadow: 4px 4px 10px rgba(224, 224, 224, 0.2823529412);
  box-shadow: inset -1px -2px 8px rgba(41, 41, 41, 0.1647058824);
  padding: 6vh 4.5vh;
  border-radius: 32px;
}

.comparison h2,
.faq h2 {
  font-size: 2.4rem;
  font-weight: 700;
}

.comparison-group {
  margin-bottom: 3rem;
}

.comparison-group h3 {
  margin: .7% 0 2%;
  font-size: 1.2rem;
  color: #333;
}

.comparison-pair {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin: 4% auto 2%;
}

.comparison-pair div {
  display: flex;
  justify-content: space-between;
  padding: 1% 2%;
}

.comparison-pair figure {
  flex: 1;
  background-color: #fdfdfd;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
}

.comparison-pair img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.comparison-pair figcaption {
  font-size: 1rem;
  letter-spacing: 2px;
  font-weight: 600;
  margin: 0.6rem 0;
  display: inline-block;
  padding: 0.3rem 1rem;
}

.description {
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-top: 1rem;
  line-height: 1.8;
  color: #444;
}

/* RWD */
@media (max-width: 768px) {
  .comparison-pair {
    flex-direction: column;
  }
}

.faq {
  gap: 1rem;
}

.faq span {
  font-size: 24px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  border: #933b18 1px solid;
  padding: 2rem 4rem;
  border-radius: 8px;
}

.faq-item:hover {
  background-color: #eaeae4;

  
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  color: #333;
}


.faq-question .arrow {
    transition: transform .3s ease;
}

.faq-item.is-open .arrow {
    transform: rotate(180deg);
}


.faq-answer {
  max-height: 0;
  overflow: hidden;
  line-height: 1.8;
  color: #555;
}

.faq-answer p{
  font-size: 1.4rem;
}

.faq-answer .imgs {
  display: flex;
  width: 50%;
}


.faq-answer img {
  padding: 2% 1%;
}

.faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-item.is-open .faq-answer {
    max-height: 500px; /* 足夠大即可 */
}





























/* ===============================
   SK-111 顏色判讀表（沿用 dose-table 系統）
================================ */

.product-guide__table-wrap {
    width: 100%;
    overflow-x: auto; /* 手機可橫滑 */
}

/* 共用容器（直接沿用你既有設計） */
.dose-table {
    padding: 1.8rem var(--dose-pad);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* 表格主體 */
.table--sk111 {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
}

/* 表頭 */
.table--sk111 thead th {
    background: #e8f5e9;
    color: #1b5e20;
    font-weight: 900;
    font-size: 1rem;
    padding: 14px 10px;
    text-align: center;
    border-bottom: 2px solid rgba(46, 125, 50, .18);
    white-space: nowrap;
}

/* 內容 */
.table--sk111 tbody td {
    font-size: 1rem;
    padding: 14px 12px;
    text-align: center;
    border-bottom: 1px solid var(--line);
    line-height: 1.6;
}

/* 第一欄：顏色（重點欄位） */
.table--sk111 tbody td:first-child {
    font-weight: 800;
    background: #fbfbfb;
    white-space: nowrap;
}

/* Hover 提示 */
.table--sk111 tbody tr:hover {
    background: rgba(46, 125, 50, .06);
}

/* 最後一列去底線 */
.table--sk111 tbody tr:last-child td {
    border-bottom: none;
}

/* ===============================
   RWD：手機閱讀優化
================================ */
@media (max-width: 768px) {
    .table--sk111 thead th,
    .table--sk111 tbody td {
        font-size: .95rem;
        padding: 12px 8px;
    }
}




/* ===============================
   深綠色關鍵提醒列（避免過度酸洗）
================================ */

.table--sk111 tbody tr.table--warning {
    background: rgba(255, 243, 224, 0.8); /* 淡橘警示底 */
}

.table--sk111 tbody tr.table--warning td {
    border-bottom: 1px solid rgba(239, 108, 0, 0.25);
}

.table--sk111 tbody tr.table--warning td strong {
    color: #e65100;
    font-weight: 900;
}

























/* ===============================
   SK-100 × SK-111 判斷流程區塊
================================ */

.product-relative__guide {
  display: flex;
  width: 80vw;
  flex-direction: column;
  gap: 3vh;
  margin: 6vh auto 4vh;
  padding: 6vh 6vh;
  background-color: rgba(245, 245, 245, 0.65);
  backdrop-filter: blur(16px);
  border-radius: 28px;
  box-shadow: inset -1px -2px 8px rgba(41, 41, 41, 0.08);
}

.product-relative__guide-title {
  font-size: 2.1vw;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 1vh;
}

.product-relative__guide-intro {
  font-size: 1.05vw;
  line-height: 1.8;
  letter-spacing: 1.5px;
  color: #444;
}

.product-relative__workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 4vh;
  counter-reset: step;
  list-style: none;
  padding-left: 0;
}

.product-relative__workflow-step {
  padding: 3vh 3vh;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.06);
}

.product-relative__workflow-step-title {
  font-size: 1.3vw;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 1.2vh;
  color: #222;
}

.product-relative__workflow-step-desc {
  font-size: 1.05vw;
  line-height: 1.8;
  letter-spacing: 1.2px;
  color: #555;
  margin-bottom: 1.5vh;
}

.product-relative__workflow-list {
  padding-left: 1.5vw;
}

.product-relative__workflow-list li {
  font-size: 1vw;
  line-height: 1.8;
  letter-spacing: 1.2px;
  margin-bottom: 0.8vh;
}

.product-relative__decision {
  display: flex;
  gap: 2vw;
  margin-top: 2vh;
}

.product-relative__decision-item {
  flex: 1;
  padding: 2.5vh 2vh;
  background-color: #f7f7f7;
  border-radius: 16px;
  box-shadow: inset -1px -1px 6px rgba(0, 0, 0, 0.05);
}

.product-relative__decision-title {
  font-size: 1.1vw;
  font-weight: 600;
  margin-bottom: 0.6vh;
  letter-spacing: 1.5px;
}

.product-relative__decision-desc {
  font-size: 1vw;
  line-height: 1.7;
  letter-spacing: 1.2px;
  color: #444;
}

.product-relative__hint {
  margin-top: 1.5vh;
  font-size: 0.95vw;
  color: #666;
  letter-spacing: 1.2px;
}


.product-relative__notice {
  margin-top: 3vh;
  padding: 3vh 3vh;
  border-radius: 20px;
  background-color: rgba(255, 243, 224, 0.85);
  border-left: 6px solid #e65100;
}

.product-relative__notice p {
  font-size: 1.05vw;
  line-height: 1.9;
  letter-spacing: 1.3px;
  color: #4a2c18;
}

.product-relative__notice--warning strong {
  font-weight: 800;
}

.product-relative__link {
  margin-top: 2vh;
  font-size: 1vw;
  letter-spacing: 1.2px;
}

.product-relative__link a {
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .product-relative__guide {
    padding: 4vh 3vh;
  }

  .product-relative__guide-title {
    font-size: 1.6rem;
  }

  .product-relative__guide-intro,
  .product-relative__workflow-step-desc,
  .product-relative__decision-desc,
  .product-relative__notice p {
    font-size: 1rem;
  }

  .product-relative__workflow-step-title {
    font-size: 1.2rem;
  }

  .product-relative__decision {
    flex-direction: column;
  }
}








.product-relative__title--sub{
  margin: 6vh 0 2vh 10vh; /* 比主標題稍微收一點也行 */
  font-size: 2vw;        /* 比 h2 小一階 */
}


























.product-guide__list{
  font-size: 1.2vw;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 2% 4%;
}

.product-guide__list li{
  border: .8px solid rgb(93, 93, 92);
  padding: 1% 2%;
  margin-bottom: 2%;
  border-radius: 4px;
  line-height: 1.6;
  background-color: #efefef;
}






















.faq {
    display: flex;
    flex-direction: column;
    width: 80vw;
    margin: 0 auto 20vh;
    padding: 4% 8%;
    background-color: rgba(228, 228, 228, 0.7921568627);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    /* 背景模糊 */
    box-shadow: 4px 4px 10px rgba(224, 224, 224, 0.2823529412);
    box-shadow: inset -1px -2px 8px rgba(41, 41, 41, 0.1647058824);
    padding: 6vh 4.5vh;
    border-radius: 32px;
}

.faq {
    gap: 1rem;
}

.faq span {
    font-size: 24px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    border: #933b18 1px solid;
    padding: 2rem 4rem;
    border-radius: 8px;
}

.faq-item:hover {
    background-color: #eaeae4;


}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    color: #333;
}


.faq-question .arrow {
    transition: transform .3s ease;
}

.faq-item.is-open .arrow {
    transform: rotate(180deg);
}


.faq-answer {
    max-height: 0;
    overflow: hidden;
    line-height: 1.8;
    color: #555;
}

.faq-answer p {
    font-size: 1.4rem;
}

.faq-answer .imgs {
    display: flex;
    width: 50%;
}


.faq-answer img {
    padding: 2% 1%;
}

.faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-item.is-open .faq-answer {
    max-height: 500px;
    /* 足夠大即可 */
}
