@charset "UTF-8";
/* ==========================================
   Utility Classes (替代 Tailwind)
   ========================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.text-center {
  text-align: center;
}

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.bg-white {
  background-color: #ffffff;
}

.max-w-3xl {
  max-width: 48rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

/* Additional Utility Classes */
.mt-4 {
  margin-top: 1rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mt-16 {
  margin-top: 4rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.font-bold {
  font-weight: 700;
}

.font-serif {
  font-family: Georgia, serif;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.leading-relaxed {
  line-height: 1.625;
}

.text-primary {
  color: #5c4e42;
}

.text-gray-700 {
  color: #374151;
}

.bg-gray-100 {
  background-color: #f3f4f6;
}

.border-t {
  border-top-width: 1px;
}

.border-gray-200 {
  border-color: #e5e7eb;
}

/* 響應式類 */
.hidden {
  display: none !important;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.space-x-8 > * + * {
  margin-left: 2rem;
}

.md\:flex {
  display: none;
}

.md\:hidden {
  display: block;
}

@media (min-width: 768px) {
  .md\:flex {
    display: flex !important;
  }
  
  .md\:hidden {
    display: none !important;
  }
  
  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  
  .md\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  
  .md\:w-1\/3 {
    width: 33.333333%;
  }
  
  .md\:w-2\/3 {
    width: 66.666667%;
  }
  
  .md\:justify-between {
    justify-content: space-between;
  }
}

/* ==========================================
   Loading Screen
   ========================================== */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f5f0e8;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.page-loader__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.page-loader__logo {
  width: 180px;
  height: auto;
  animation: logoFade 2s ease-in-out infinite;
}

.page-loader__spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(156, 140, 122, 0.2);
  border-top-color: #9c8c7a;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.page-loader__text {
  font-size: 0.95rem;
  color: #5c4e42;
  letter-spacing: 0.1em;
  animation: textPulse 1.5s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes logoFade {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

@keyframes textPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* ==========================================
   Header & Navigation
   ========================================== */
.nav-link {
  position: relative;
  font-weight: 600;
  color: #5c4e42;
  transition: all 0.25s ease;
  padding: 0.5rem 1rem;
  transition: all 0.25s ease;
}
.nav-link:hover, .nav-link:focus-visible {
  color: #f5f0e8;
  background-color: #5c4e42;
}

#main-header .main-menu {
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* 為 main content 添加 padding，避免被 fixed header 遮擋 */
#main-content {
  padding-top: 80px;
}

.main-logo-img {
  width: 140px;
  height: auto;
}

#mobile-menu-btn {
  transition: all 0.25s ease;
  color: #5c4e42;
}
#mobile-menu-btn:hover, #mobile-menu-btn:focus-visible {
  background-color: rgba(156, 140, 122, 0.12);
}

#mobile-menu {
  transition: all 0.25s ease;
  width: 100%;
  display: flex;
  flex-direction: column;
}

#mobile-menu.hidden {
  display: none;
}

#mobile-menu .nav-link {
  display: block;
  width: 100%;
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid rgba(92, 78, 66, 0.1);
  color: #5c4e42;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

#mobile-menu .nav-link:hover,
#mobile-menu .nav-link:active {
  background-color: rgba(156, 140, 122, 0.08);
  padding-left: 2rem;
  color: #9c8c7a;
}

#main-footer {
  background-color: #f3f4f6;
  color: #4b5563;
  font-weight: 400;
  line-height: 1.6;
  padding-top: 3rem;
  padding-bottom: 2rem;
}
#main-footer .footer-inner {
  justify-content: space-between;
}

.footer-info{
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.footer-logo{
  width: 200px;
  height: auto;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  #main-footer .footer-inner {
    padding-inline: 1.5rem;
  }
}

#main-footer * {
  font-weight: 400;
}
#main-footer h2 {
  font-weight: 600;
  letter-spacing: 0.025em;
}
#main-footer a {
  transition: color 0.2s ease;
}
#main-footer a:hover {
  color: #5c4e42;
}
#main-footer ul li {
  line-height: 1.8;
}
#main-footer p {
  font-weight: 400;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background-color: rgba(156, 140, 122, 0.15);
  transition: all 0.25s ease;
  color: #6b7280;
}
.social-link i {
  font-size: 0.875rem;
}
.social-link:hover,
.social-link:focus-visible {
  background-color: #5c4e42;
  color: #ffffff;
}

#index-about {
  position: relative;
  overflow: visible;
}
#index-about .section-title {
  letter-spacing: 0.12em;
}
#index-about .accent-line {
  width: 96px;
  height: 2px;
  background-color: #9b8978;
}
#index-about .about-decoration {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
#index-about .about-decoration--left {
  top: 12%;
  left: 0;
  display: grid;
  gap: 1.25rem;
  transform: translateY(-10%);
}
#index-about .about-decoration--left .shape {
  background-color: rgba(148, 137, 126, 0.25);
  box-shadow: 0 24px 45px rgba(92, 78, 66, 0.05);
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0% 50%);
}
#index-about .about-decoration--left .shape-lg {
  width: 150px;
  height: 150px;
}
#index-about .about-decoration--left .shape-md {
  width: 110px;
  height: 110px;
  margin-left: 48px;
  opacity: 0.8;
}
#index-about .about-decoration--left .shape-sm {
  width: 72px;
  height: 72px;
  margin-left: 8px;
  opacity: 0.65;
}
#index-about .about-decoration--right {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  gap: 1.25rem;
  transform: translateY(+50%);
}
@media (max-width: 1024px) {
  #index-about .about-decoration--left {
    opacity: 0.4;
    transform: translate(-10%, -20%) scale(0.85);
  }
  #index-about .about-decoration--right {
    transform: translateX(10%) scale(0.85);
  }
}
@media (max-width: 768px) {
  #index-about .about-decoration--left,
  #index-about .about-decoration--right {
    display: none;
  }
  #index-about .section-title {
    letter-spacing: 0.08em;
  }
}

#hero-landing {
  position: relative;
  overflow: hidden;
  color: #5c4e42;
  padding-top: 4.5rem;
  padding-bottom: 13.5rem;
  min-height: 75vh;
  background-image: url("../images/primary/hero-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#hero-landing .deco{
  position: absolute;
  top: 2em;
  right: 10%;
  max-width: 40%;
}
@media (max-width: 768px) {
  #hero-landing .deco{
    top: 1.5em;
    right: 5%;
  }
}
#hero-landing .hero-landing__inner {
  margin: 0 auto;
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  #hero-landing .hero-landing__inner {
    padding-inline: 1.5rem;
  }
}
#hero-landing .hero-landing__inner {
  position: relative;
  z-index: 1;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
#hero-landing .hero-landing__title {
  font-size: clamp(2.4rem, 3.1vw, 3.2rem);
  letter-spacing: 0.25em;
  margin-bottom: 1.75rem;
  font-weight: 600;
}
#hero-landing .hero-landing__title .title-line {
  display: inline;
  margin-right: 0.5em;
}
/* 手機版：標題垂直排列 */
@media (max-width: 480px) {
  #hero-landing .hero-landing__title .title-line {
    display: block !important;
    margin-right: 0 !important;
    margin-bottom: 0.3em;
  }
  #hero-landing .hero-landing__title .title-line:last-child {
    margin-bottom: 0;
  }
}
#hero-landing .hero-landing__subtitle {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.9;
  color: #3f3c3c;
  font-family: "Noto Serif TC", serif;
}
#hero-landing .hero-landing__cta-group {
  margin-top: 2.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
#hero-landing .hero-landing__cta {
  min-width: 5.25rem;
  padding: 0.875rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid #5c4e42;
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-align: center;
  color: #5c4e42;
  background-color: rgba(255, 255, 255, 0.7);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
}

#hero-landing .hero-landing__cta-text {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

#hero-landing .hero-landing__cta-note {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  opacity: 0.8;
  line-height: 1.2;
}

#hero-landing .hero-landing__cta--primary {
  background-color: #5c4e42;
  color: #ffffff;
  border-color: #5c4e42;
}

#hero-landing .hero-landing__cta--primary .hero-landing__cta-note {
  opacity: 0.9;
}

#hero-landing .hero-landing__cta:hover, #hero-landing .hero-landing__cta:focus-visible {
  background-color: #5c4e42;
  color: #ffffff;
}

#hero-landing .hero-landing__cta--primary:hover, #hero-landing .hero-landing__cta--primary:focus-visible {
  background-color: #4a3f35;
  border-color: #4a3f35;
}
#hero-landing .hero-landing__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
#hero-landing .hero-landing__bg--texture {
  background-color: #f5f0e8;
  background-image: url("../images/hero-paper-texture.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.85;
}
@media (max-width: 768px) {
  #hero-landing {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  #hero-landing .hero-landing__inner {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }
  #hero-landing .hero-landing__title {
    text-align: center;
  }
  #hero-landing .hero-landing__copy {
    text-align: center;
    margin-inline: auto;
  }
  #hero-landing .hero-landing__cta-group {
    justify-content: center;
  }
  #hero-landing .hero-landing__bg--mountain {
    height: 200px;
    bottom: -1.25rem;
  }
}

/* 3 行總結區 */
#hero-summary,
.hero-summary {
  background: linear-gradient(180deg, #fdfcf9 0%, #faf8f4 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

#hero-summary::before,
.hero-summary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(156, 140, 122, 0.2) 50%, transparent 100%);
}

/* 在 expertise-band 內的樣式調整 */
#expertise-band .hero-summary {
  margin-top: 3rem;
  background: transparent;
}

#expertise-band .hero-summary::before {
  display: none;
}

.hero-summary__grid {
  max-width: 1200px;
  margin: 0 auto;
  gap: 2.5rem 2rem;
}

@media (max-width: 768px) {
  .hero-summary__grid {
    gap: 1rem;
  }
}

.hero-summary__card {
  background: linear-gradient(135deg, #ffffff 0%, #fdfcf9 100%);
  border: 1px solid rgba(156, 140, 122, 0.15);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 16px rgba(92, 78, 66, 0.08);
  position: relative;
  overflow: hidden;
}

/* AOS 動畫觸發時的滑入效果 */
.hero-summary__card[data-aos].aos-animate {
  animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-summary__card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 16px 40px rgba(92, 78, 66, 0.2);
  border-color: rgba(156, 140, 122, 0.4);
}

.hero-summary__card-image {
  transition: transform 0.5s ease-out;
}

.hero-summary__card:hover .hero-summary__card-image {
  transform: scale(1.05);
}

.hero-summary__card-content {
  transition: transform 0.5s ease-out;
}

.hero-summary__card:hover .hero-summary__card-content {
  transform: translateY(-4px);
}

.hero-summary__card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.hero-summary__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-summary__card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.hero-summary__card-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #5c4e42;
  margin-bottom: 1rem;
  font-family: "Noto Serif TC", serif;
  line-height: 1.4;
  text-align: left;
}

.hero-summary__card-desc {
  font-size: 0.9375rem;
  color: #6b5d52;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  text-align: left;
}

.hero-summary__card-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(156, 140, 122, 0.2) 50%, transparent 100%);
  margin: 1rem 0 1.5rem 0;
}

.hero-summary__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #9c8c7a;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
  padding: 0.5rem 0;
  text-align: left;
  align-self: flex-start;
}

.hero-summary__card-link:hover {
  color: #5c4e42;
  gap: 0.75rem;
}

.hero-summary__card-link i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.hero-summary__card-link:hover i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .hero-summary {
    padding: 2rem 0;
  }

  .hero-summary__card-image {
    height: 160px;
  }

  .hero-summary__card-content {
    padding: 1.5rem;
  }

  .hero-summary__card-title {
    font-size: 1.125rem;
    margin-bottom: 0.875rem;
  }

  .hero-summary__card-desc {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
  }

  .hero-summary__card-link {
    font-size: 0.875rem;
  }
}

#core-extraction {
  position: relative;
  background-color: #f9f4ec;
  background-image: url("../images/primary/bg-07.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 8rem;
}

#core-extraction .core-extraction__inner {
  position: relative;
  z-index: 1;
  padding: 3rem 0;
  background: rgba(255, 255, 255, 0.7);
}
#core-extraction .core-extraction__title {
  font-size: clamp(1.8rem, 2.4vw, 2.2rem);
  letter-spacing: 0.22em;
  font-weight: 600;
  color: #5c4e42;
}
#core-extraction .core-extraction__feature {
  position: relative;
  padding: 1.75rem;
  text-align: center;
}
#core-extraction .core-extraction__feature:first-child::before{
  display: none;
}
#core-extraction .core-extraction__feature::before {
  content: "";
  position: absolute;
  width: 0;
  top: 0;
  bottom: 0;
  left: -1.5rem;
  right: -1.5rem;
  border-left: 1px solid #5c4e42;
}
#core-extraction .core-extraction__icon-wrap {
  margin-bottom: 1rem;
  text-align: center;
}
#core-extraction .core-extraction__icon {
  display: inline-block;
  width: 4.5rem;
  height: 4.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
#core-extraction .core-extraction__feature-title {
  font-size: clamp(1.2rem, 1.4vw, 1.4rem);
  color: #5c4e42;
  letter-spacing: 0.18em;
  margin-bottom: 0.75rem;
}
#core-extraction .core-extraction__feature-text {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.9;
  color: #9b8978;
}
@media (max-width: 768px) {
  #core-extraction {
    padding-top: 3.75rem;
  }
  #core-extraction .core-extraction__feature::before {
    left: -0.5rem;
    right: -0.5rem;
  }
}

#tech-message {
  position: relative;
  overflow: hidden;
  background-color: rgba(92, 78, 66, 0.9);
  color: #fdfbf7;
}
#tech-message .tech-message__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-block: 4.25rem;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 2;
}
@media (max-width: 768px) {
  #tech-message .tech-message__inner {
    padding-block: 3rem;
    padding-inline: 1.25rem;
  }
}

#doctor-story {
  background-image: url("../images/primary/bg-08.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 4rem;
}
#doctor-story .doctor-story__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  #doctor-story .doctor-story__inner {
    padding-inline: 1.5rem;
  }
}
#doctor-story .doctor-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 3rem;
  align-items: center;
}
#doctor-story .doctor-story__title {
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  letter-spacing: 0.16em;
  margin-bottom: 1.75rem;
  color: #5c4e42;
}
#doctor-story .doctor-story__body {
  font-size: 1rem;
  line-height: 2;
  color: #4b5563;
}
#doctor-story .doctor-story__photo-wrap {
  display: flex;
  justify-content: center;
}
#doctor-story .doctor-story__photo {
  max-width: 360px;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}
#doctor-story .doctor-story__photo img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1024px) {
  #doctor-story {
    padding-block: 3.25rem;
  }
  #doctor-story .doctor-story__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.25rem;
  }
}
@media (max-width: 768px) {
  #doctor-story .doctor-story__inner {
    padding-inline: 1.25rem;
  }
  #doctor-story .doctor-story__title {
    font-size: 1.4rem;
  }
  #doctor-story .doctor-story__photo {
    max-width: 300px;
  }
}

#market-stats {
  background-color: #ffffff;
  padding-block: 5rem;
}
#market-stats .market-stats__header {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
#market-stats .market-stats__title {
  font-size: clamp(1.8rem, 2.4vw, 2.2rem);
  letter-spacing: 0.22em;
  margin-bottom: 1rem;
  color: #5c4e42;
}
#market-stats .market-stats__subtitle {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.9;
  color: #5c4e42;
}
#market-stats .market-stats__grid {
  position: relative;
  max-width: 1080px;
  margin-inline: auto;
  padding-block: 2.25rem;
  gap: 2rem;
}
#market-stats .market-stats__item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}
#market-stats .market-stats__value {
  font-size: clamp(3rem, 4vw, 4.2rem);
  letter-spacing: 0.16em;
  color: #5c4e42;
}
#market-stats .market-stats__value span {
  font-size: 0.5em;
}
#market-stats .market-stats__label {
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #5c4e42;
}
#market-stats .market-stats__desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #4b5563;
}
#market-stats .market-stats__action {
  margin-top: 1.5rem;
}
#market-stats .market-stats__btn {
  display: inline-block;
  padding: 0.625rem 1.5rem;
  background-color: transparent;
  border: 1px solid #9c8c7a;
  border-radius: 9999px;
  color: #9c8c7a;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.3s ease;
}
#market-stats .market-stats__btn:hover {
  background-color: #9c8c7a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(156, 140, 122, 0.3);
}
#market-stats .market-stats__grid::before,
#market-stats .market-stats__grid::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border-top: 1px solid rgba(155, 137, 120, 0.85);
}
#market-stats .market-stats__grid::before {
  top: 0;
}
#market-stats .market-stats__grid::after {
  bottom: 0;
}

#brand-partners {
  background-color: #ffffff;
  padding-block: 4rem;
}
#brand-partners .brand-partners__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  #brand-partners .brand-partners__inner {
    padding-inline: 1.5rem;
  }
}
#brand-partners .brand-partners__header {
  margin-bottom: 2rem;
}
#brand-partners .brand-partners__title {
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  letter-spacing: 0.2em;
  color: #5c4e42;
}
#brand-partners .brand-partners__grid {
  align-items: center;
  justify-items: center;
  gap: 3rem;
  border-top: 1px solid #5c4e42;
  padding-top: 3rem;
}
#brand-partners .brand-partners__logo img {
  width: 140px;
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  #brand-partners {
    padding-block: 3rem;
  }
  #brand-partners .brand-partners__logo img {
    max-width: 120px;
  }
}

#knowledge-area {
  background-image: url("../images/primary/bg-06.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 6rem;
}
#knowledge-area .knowledge-area__inner {
  margin: 0 auto;
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  #knowledge-area .knowledge-area__inner {
    padding-inline: 1.5rem;
  }
}
#knowledge-area .knowledge-area__header {
  max-width: 880px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
#knowledge-area .knowledge-area__title {
  font-size: clamp(1.8rem, 2.4vw, 2.2rem);
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  color: #5c4e42;
}
#knowledge-area .knowledge-area__intro {
  font-size: 0.96rem;
  line-height: 1.9;
  color: #4b5563;
}
#knowledge-area .knowledge-card {
  background-color: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}
#knowledge-area .knowledge-card__media {
  position: relative;
}
#knowledge-area .knowledge-card__media img {
  display: block;
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
}
#knowledge-area .knowledge-card__index {
  position: absolute;
  right: 8%;
  bottom: 0;
  font-size: clamp(2.2rem, 3vw, 4rem);
  letter-spacing: 0;
  color: #ffffff;
  line-height: 0.7;
  font-family: sans-serif;
}
#knowledge-area .knowledge-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
}
#knowledge-area .knowledge-card__title {
  font-size: 1.05rem;
  letter-spacing: 0.16em;
  margin-bottom: 0.5rem;
  color: #5c4e42;
}
#knowledge-area .knowledge-card__text {
  font-size: 0.94rem;
  line-height: 1.9;
  color: #9c8a78;
}
@media (max-width: 768px) {
  #knowledge-area {
    padding-block: 3rem;
  }
  #knowledge-area .knowledge-card__media img {
    height: 180px;
  }
}

/* ==========================================
   Inner Pages - Page Banner
   ========================================== */
.page-banner {
  background-image: url("../images/primary/bg-01.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 5rem 4rem;
  position: relative;
}

.page-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(245, 240, 232, 0.85), rgba(245, 240, 232, 0.75));
  pointer-events: none;
}

.page-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.page-banner__title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: 0.2em;
  color: #5c4e42;
  margin-bottom: 1rem;
  font-weight: 600;
}

.page-banner__subtitle {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.8;
  color: #6b5a4d;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .page-banner {
    padding-block: 3.5rem 3rem;
  }
}

/* ==========================================
   Inner Pages - Breadcrumb
   ========================================== */
.breadcrumb {
  background-color: #fafaf8;
  border-bottom: 1px solid rgba(156, 140, 122, 0.15);
  padding-block: 1rem;
}

.breadcrumb__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #8b7a6a;
}

.breadcrumb__item:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: #c4b5a5;
}

.breadcrumb__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #8b7a6a;
  transition: color 0.25s ease;
  text-decoration: none;
}

.breadcrumb__link:hover {
  color: #5c4e42;
}

.breadcrumb__link i {
  font-size: 0.85em;
}

.breadcrumb__item--active {
  color: #5c4e42;
  font-weight: 500;
}

@media (max-width: 640px) {
  .breadcrumb__item {
    font-size: 0.8rem;
  }
}

/* ==========================================
   Blog List Page
   ========================================== */
.blog-list {
  background-color: #fefdfb;
  padding-block: 4.5rem;
  min-height: 60vh;
}

.blog-list__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding: 1.5rem;
  background-color: rgba(245, 240, 232, 0.4);
  border-radius: 1rem;
}

.blog-filter__btn {
  padding: 0.65rem 1.5rem;
  background-color: #ffffff;
  color: #6b5a4d;
  border: 2px solid rgba(156, 140, 122, 0.2);
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.blog-filter__btn:hover {
  background-color: #f5f0e8;
  border-color: #9c8c7a;
  color: #5c4e42;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.blog-filter__btn--active {
  background-color: #5c4e42;
  color: #ffffff;
  border-color: #5c4e42;
  box-shadow: 0 4px 12px rgba(92, 78, 66, 0.25);
}

.blog-filter__btn--active:hover {
  background-color: #4a3d33;
  border-color: #4a3d33;
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .blog-filter {
    gap: 0.5rem;
    padding: 1rem;
  }

  .blog-filter__btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

.blog-list__grid {
  margin-bottom: 4rem;
}

.blog-list__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  color: #8b7a6a;
}

.blog-list__empty p {
  font-size: 1.1rem;
  margin: 0;
  letter-spacing: 0.05em;
}

.blog-card {
  background-color: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.blog-card__media {
  position: relative;
  overflow: hidden;
  display: block;
}

.blog-card__media img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.05);
}

.blog-card__date {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: rgba(92, 78, 66, 0.9);
  color: #ffffff;
  font-size: 0.8rem;
  padding: 0.35rem 0.75rem;
  border-radius: 0.375rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.blog-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-card__category {
  font-size: 0.8rem;
  color: #9c8c7a;
  background-color: rgba(156, 140, 122, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.blog-card__title {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.blog-card__title a {
  color: #5c4e42;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.25s ease;
}

.blog-card__title a:hover {
  color: #9c8c7a;
}

.blog-card__excerpt {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #8b7a6a;
  flex: 1;
}

.blog-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #9c8c7a;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.25s ease;
  letter-spacing: 0.05em;
  margin-top: auto;
}

.blog-card__more:hover {
  color: #5c4e42;
  gap: 0.75rem;
}

.blog-card__more i {
  font-size: 0.75em;
  transition: transform 0.25s ease;
}

.blog-card__more:hover i {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .blog-list {
    padding-block: 3rem;
  }
  
  .blog-card__media img {
    height: 200px;
  }
}

/* ==========================================
   Pagination
   ========================================== */
.pagination {
  margin-top: 3rem;
}

.pagination__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.pagination__item {
  display: flex;
}

.pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  background-color: #ffffff;
  color: #8b7a6a;
  border: 1px solid rgba(156, 140, 122, 0.25);
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.25s ease;
}

.pagination__link:hover {
  background-color: #f5f0e8;
  border-color: #9c8c7a;
  color: #5c4e42;
}

.pagination__link--active {
  background-color: #5c4e42;
  color: #ffffff;
  border-color: #5c4e42;
}

.pagination__link--active:hover {
  background-color: #4a3d33;
  border-color: #4a3d33;
}

.pagination__link--prev,
.pagination__link--next {
  font-size: 0.8rem;
}

.pagination__ellipsis {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  color: #8b7a6a;
  font-weight: 500;
}

@media (max-width: 640px) {
  .pagination__link {
    min-width: 2.25rem;
    height: 2.25rem;
    font-size: 0.85rem;
  }
}

/* ==========================================
   Article Detail Page
   ========================================== */
.page-banner--compact {
  padding-block: 4rem 3rem;
}

.page-banner__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.page-banner__category {
  font-size: 0.85rem;
  color: #9c8c7a;
  background-color: rgba(156, 140, 122, 0.15);
  padding: 0.4rem 1rem;
  border-radius: 1.5rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.page-banner__date {
  font-size: 0.85rem;
  color: #8b7a6a;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.page-banner__date::before {
  content: "•";
  color: #c4b5a5;
}

.article-detail {
  background-color: #fefdfb;
  padding-block: 3rem 4rem;
}

.article-detail__inner {
  max-width: 880px;
  margin: 0 auto;
}

.article-detail__featured {
  margin-bottom: 3rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.article-detail__featured img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-detail__content {
  font-size: 1.05rem;
  line-height: 1.95;
  color: #4a4039;
  letter-spacing: 0.03em;
}

.article-detail__intro {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #6b5a4d;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background-color: rgba(245, 240, 232, 0.5);
  border-left: 4px solid #9c8c7a;
  border-radius: 0.5rem;
}

.article-detail__intro p {
  margin: 0;
}

.article-detail__content h2 {
  font-size: 1.75rem;
  color: #5c4e42;
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(156, 140, 122, 0.2);
}

.article-detail__content h3 {
  font-size: 1.35rem;
  color: #5c4e42;
  margin-top: 2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.article-detail__content h4 {
  font-size: 1.15rem;
  color: #6b5a4d;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.article-detail__content p {
  margin-bottom: 1.5rem;
}

.article-detail__content strong {
  color: #5c4e42;
  font-weight: 600;
}

.article-detail__quote {
  margin: 2.5rem 0;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, rgba(156, 140, 122, 0.08), rgba(156, 140, 122, 0.04));
  border-left: 5px solid #9c8c7a;
  font-size: 1.15rem;
  line-height: 1.85;
  color: #5c4e42;
  font-style: italic;
  position: relative;
}

.article-detail__quote::before {
  content: """;
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 4rem;
  color: rgba(156, 140, 122, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.article-detail__quote cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #8b7a6a;
  font-style: normal;
  text-align: right;
}

.article-detail__image {
  margin: 2.5rem 0;
}

.article-detail__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.article-detail__image figcaption {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #8b7a6a;
  text-align: center;
  font-style: italic;
}

.article-detail__list {
  margin: 2rem 0;
  padding-left: 1.5rem;
}

.article-detail__list li {
  margin-bottom: 1rem;
  padding-left: 0.5rem;
  line-height: 1.85;
}

.article-detail__list li::marker {
  color: #9c8c7a;
}

.article-detail__highlight {
  margin: 2.5rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(245, 240, 232, 0.9), rgba(250, 245, 237, 0.9));
  border-radius: 0.75rem;
  border: 1px solid rgba(156, 140, 122, 0.2);
}

.article-detail__highlight h4 {
  margin-top: 0;
  color: #5c4e42;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.article-detail__highlight p {
  margin-bottom: 0;
  font-size: 1rem;
  color: #6b5a4d;
}

.article-detail__footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(156, 140, 122, 0.2);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.article-detail__tags {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.article-detail__tag-label {
  font-size: 0.95rem;
  color: #8b7a6a;
  font-weight: 600;
}

.article-detail__tag {
  display: inline-block;
  font-size: 0.85rem;
  color: #6b5a4d;
  background-color: rgba(156, 140, 122, 0.1);
  padding: 0.4rem 1rem;
  border-radius: 1.5rem;
  text-decoration: none;
  transition: all 0.25s ease;
  letter-spacing: 0.03em;
}

.article-detail__tag:hover {
  background-color: #9c8c7a;
  color: #ffffff;
}

.article-detail__share {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.article-detail__share-label {
  font-size: 0.95rem;
  color: #8b7a6a;
  font-weight: 600;
}

.article-detail__share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(156, 140, 122, 0.1);
  color: #6b5a4d;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.25s ease;
}

.article-detail__share-btn:hover {
  background-color: #9c8c7a;
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .page-banner--compact {
    padding-block: 3rem 2.5rem;
  }

  .article-detail {
    padding-block: 2rem 3rem;
  }

  .article-detail__featured {
    margin-bottom: 2rem;
  }

  .article-detail__content {
    font-size: 1rem;
  }

  .article-detail__intro {
    font-size: 1.05rem;
    padding: 1.25rem;
  }

  .article-detail__content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
  }

  .article-detail__content h3 {
    font-size: 1.25rem;
  }

  .article-detail__quote {
    padding: 1.5rem;
    font-size: 1.05rem;
  }

  .article-detail__footer {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* ==========================================
   Related Articles Section
   ========================================== */
.related-articles {
  background-color: #f5f0e8;
  padding-block: 4rem;
}

.related-articles__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.related-articles__title {
  font-size: clamp(1.8rem, 2.4vw, 2.2rem);
  letter-spacing: 0.2em;
  color: #5c4e42;
  text-align: center;
  margin-bottom: 3rem;
}

.related-articles__grid {
  margin-bottom: 3rem;
}

.related-articles__action {
  display: flex;
  justify-content: center;
}

.btn-back-to-list {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  background-color: #ffffff;
  color: #5c4e42;
  border: 2px solid rgba(156, 140, 122, 0.3);
  border-radius: 2rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-back-to-list:hover {
  background-color: #5c4e42;
  color: #ffffff;
  border-color: #5c4e42;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(92, 78, 66, 0.2);
}

.btn-back-to-list i {
  font-size: 0.85em;
  transition: transform 0.3s ease;
}

.btn-back-to-list:hover i {
  transform: translateX(-3px);
}

@media (max-width: 768px) {
  .related-articles {
    padding-block: 3rem;
  }

  .related-articles__title {
    margin-bottom: 2rem;
  }

  .related-articles__grid {
    margin-bottom: 2rem;
  }
}

/* ==========================================
   Case Studies Page (合作案例)
   ========================================== */
.case-studies {
  background-color: #fefdfb;
  padding-block: 4.5rem;
  min-height: 60vh;
}

.case-studies__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.case-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  padding: 1.75rem;
  background-color: rgba(245, 240, 232, 0.4);
  border-radius: 1rem;
}

.case-filter__btn {
  padding: 0.75rem 1.75rem;
  background-color: #ffffff;
  color: #6b5a4d;
  border: 2px solid rgba(156, 140, 122, 0.25);
  border-radius: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.case-filter__btn:hover {
  background-color: #f5f0e8;
  border-color: #9c8c7a;
  color: #5c4e42;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.case-filter__btn--active {
  background-color: #5c4e42;
  color: #ffffff;
  border-color: #5c4e42;
  box-shadow: 0 4px 12px rgba(92, 78, 66, 0.25);
}

.case-filter__btn--active:hover {
  background-color: #4a3d33;
  border-color: #4a3d33;
  transform: translateY(-2px);
}

.case-studies__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.case-studies__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  color: #8b7a6a;
}

.case-studies__empty p {
  font-size: 1.1rem;
  margin: 0;
  letter-spacing: 0.05em;
}

.case-card {
  background-color: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.case-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.case-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.case-card:hover .case-card__media img {
  transform: scale(1.05);
}

.case-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.case-card__title {
  font-size: 1.15rem;
  color: #5c4e42;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 0;
}

.case-card__desc {
  font-size: 0.9rem;
  color: #8b7a6a;
  line-height: 1.6;
  margin: 0 0 0.75rem 0;
}

.case-card__category {
  display: inline-block;
  font-size: 0.8rem;
  color: #6b5a4d;
  background-color: rgba(156, 140, 122, 0.12);
  padding: 0.35rem 0.85rem;
  border-radius: 1rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  align-self: flex-start;
}

@media (max-width: 1024px) {
  .case-studies__grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .case-studies {
    padding-block: 3rem;
  }

  .case-filter {
    gap: 0.5rem;
    padding: 1.25rem;
    margin-bottom: 2.5rem;
  }

  .case-filter__btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
  }

  .case-studies__grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
  }

  .case-card__body {
    padding: 1.25rem;
  }
}

@media (max-width: 640px) {
  .case-studies__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .case-filter__btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}

/* ==========================================
   Product List Page (產品介紹)
   ========================================== */
.product-list {
  background-color: #fefdfb;
  padding-block: 4.5rem;
  min-height: 60vh;
}

.product-list__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.product-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  padding: 1.75rem;
  background-color: rgba(245, 240, 232, 0.4);
  border-radius: 1rem;
}

.product-filter__btn {
  padding: 0.75rem 1.75rem;
  background-color: #ffffff;
  color: #6b5a4d;
  border: 2px solid rgba(156, 140, 122, 0.25);
  border-radius: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.product-filter__btn:hover {
  background-color: #f5f0e8;
  border-color: #9c8c7a;
  color: #5c4e42;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.product-filter__btn--active {
  background-color: #5c4e42;
  color: #ffffff;
  border-color: #5c4e42;
  box-shadow: 0 4px 12px rgba(92, 78, 66, 0.25);
}

.product-filter__btn--active:hover {
  background-color: #4a3d33;
  border-color: #4a3d33;
  transform: translateY(-2px);
}

.product-list__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-list__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  color: #8b7a6a;
}

.product-list__empty p {
  font-size: 1.1rem;
  margin: 0;
  letter-spacing: 0.05em;
}

.product-card {
  background-color: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.product-card__link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.05);
}

.product-card__badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 1.5rem;
  color: #ffffff;
  backdrop-filter: blur(10px);
  z-index: 1;
}

.product-card__badge--hot {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.product-card__badge--new {
  background: linear-gradient(135deg, #3498db, #2980b9);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.product-card__badge--recommend {
  background: linear-gradient(135deg, #9c8c7a, #7a6a5a);
  box-shadow: 0 4px 12px rgba(156, 140, 122, 0.3);
}

.product-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.product-card__category {
  display: inline-block;
  font-size: 0.75rem;
  color: #9c8c7a;
  font-weight: 500;
  letter-spacing: 0.05em;
  align-self: flex-start;
}

.product-card__title {
  font-size: 1.05rem;
  color: #5c4e42;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin: 0;
  line-height: 1.4;
}

.product-card__desc {
  font-size: 0.875rem;
  color: #6b5a4d;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.product-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.35rem;
}

.product-card__feature {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: #8b7a6a;
}

.product-card__feature i {
  color: #9c8c7a;
  font-size: 0.75em;
}

.product-card__action {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(156, 140, 122, 0.15);
}

.product-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #9c8c7a;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.25s ease;
}

.product-card:hover .product-card__more {
  color: #5c4e42;
  gap: 0.75rem;
}

.product-card__more i {
  font-size: 0.85em;
  transition: transform 0.25s ease;
}

.product-card:hover .product-card__more i {
  transform: translateX(3px);
}

@media (max-width: 1280px) {
  .product-list__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .product-list {
    padding-block: 3rem;
  }

  .product-filter {
    gap: 0.5rem;
    padding: 1.25rem;
    margin-bottom: 2.5rem;
  }

  .product-filter__btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
  }

  .product-list__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .product-card__body {
    padding: 1rem;
  }
  
  .product-card__title {
    font-size: 0.95rem;
  }
  
  .product-card__desc {
    font-size: 0.8rem;
  }
}

@media (max-width: 640px) {
  .product-filter__btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  
  .product-list__grid {
    gap: 0.85rem;
  }
}

#contact-partner {
  background-image: url("../images/primary/bg-05.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 4rem;
}
#contact-partner .contact-partner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  #contact-partner .contact-partner__inner {
    padding-inline: 1.5rem;
  }
}
#contact-partner .contact-partner__grid {
  display: grid;
  grid-template-columns: minmax(0, 2.6fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: flex-start;
}
#contact-partner .contact-partner__title {
  font-size: 1.6rem;
  letter-spacing: 0.18em;
  margin-bottom: 1.75rem;
  color: #5c4e42;
}
#contact-partner .contact-partner__intro {
  font-size: 0.96rem;
  line-height: 1.9;
  color: #4b5563;
  margin-bottom: 2rem;
}
#contact-partner .contact-partner__field {
  display: flex;
  flex-direction: column;
}
#contact-partner .contact-partner__label {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 0.1rem;
}
#contact-partner .contact-partner__input {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  background: transparent;
  padding: 0.35rem 0;
  font-size: 0.94rem;
  outline: none;
  width: 100%;
  font-family: inherit;
}

#contact-partner .contact-partner__input:focus {
  border-bottom-color: #5c4e42;
}


#contact-partner .text-red-500 {
  color: #ef4444;
}

#contact-partner select.contact-partner__input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235c4e42' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 1.5rem;
}

#contact-partner .contact-partner__input--textarea {
  resize: vertical;
  min-height: 3.5rem;
}
#contact-partner .contact-partner__submit {
  margin-top: 1rem;
  padding: 0.6rem 1.8rem;
  border-radius: 9999px;
  border: 1px solid #5c4e42;
  background-color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  letter-spacing: 0.2em;
  color: #5c4e42;
  transition: all 0.25s ease;
}
#contact-partner .contact-partner__submit:hover, #contact-partner .contact-partner__submit:focus-visible {
  background-color: #5c4e42;
  color: #ffffff;
}
#contact-partner .contact-partner__qrcodes {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: center;
}
#contact-partner .contact-partner__qrcode-block {
  text-align: center;
}
#contact-partner .contact-partner__qrcode-image {
  width: 96px;
  height: 96px;
  margin-inline: auto;
  margin-bottom: 0.4rem;
}
#contact-partner .contact-partner__qrcode-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#contact-partner .contact-partner__qrcode-label {
  font-size: 0.9rem;
  color: #5c4e42;
}
@media (max-width: 1024px) {
  #contact-partner {
    padding-block: 3.25rem;
  }
  #contact-partner .contact-partner__grid {
    grid-template-columns: minmax(0, 1fr);
  }
  #contact-partner .contact-partner__qrcodes {
    flex-direction: row;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  #contact-partner .contact-partner__inner {
    padding-inline: 1.25rem;
  }
  #contact-partner .contact-partner__qrcodes {
    flex-direction: column;
  }
}

.expertise-band {
  position: relative;
  background-image: url("../images/primary/bg-01.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #f9fafb;
  padding-block: 5.25rem;
}
.expertise-band .expertise-band__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  .expertise-band .expertise-band__inner {
    padding-inline: 1.5rem;
  }
}
.expertise-band .expertise-band__inner {
  text-align: center;
}
.expertise-band .expertise-band__title {
  font-size: clamp(1.5rem, 2vw, 1.75rem);
  color: #f9fafb;
  letter-spacing: 0.16em;
  font-weight: 600;
}

.doctor-section {
  position: relative;
  background-color: #fbf7f0;
  background-image: url("../images/primary/bg-03.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 4.5rem;
}
.doctor-section .doctor-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  .doctor-section .doctor-section__inner {
    padding-inline: 1.5rem;
  }
}
.doctor-section .doctor-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 3.5rem;
  align-items: center;
}
/* 桌面版：文字在HTML中是第一個，但顯示在右側（第二列） */
.doctor-section .doctor-section__content {
  grid-column: 2;
}
/* 桌面版：照片在HTML中是第二個，但顯示在左側（第一列） */
.doctor-section .doctor-section__photo-wrap {
  display: flex;
  justify-content: center;
  grid-column: 1;
  grid-row: 1;
}
.doctor-section .doctor-photo {
  overflow: hidden;
}
.doctor-section .doctor-photo img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.doctor-section .doctor-section__content {
  position: relative;
}
.doctor-section .doctor-section__eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  color: #5c4e42;
  margin-bottom: 0.75rem;
}
.doctor-section .doctor-section__name {
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  color: #5c4e42;
}
.doctor-section .doctor-section__position {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #9b8978;
  margin-bottom: 1.75rem;
}
.doctor-section .doctor-section__block {
  margin-bottom: 1.75rem;
}
.doctor-section .doctor-section__block-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #3f3c3c;
}
.doctor-section .doctor-section__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.9;
  color: #9b8978;
}
.doctor-section .doctor-section__text {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #9b8978;
}
.doctor-section .doctor-section__quote {
  margin-top: 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid #9b8978;
  border-bottom: 1px solid #9b8978;
  font-size: 0.95rem;
  font-style: italic;
  color: #5c4e42;
}
.doctor-section .doctor-section__quote p {
  margin-bottom: 0.5rem;
  &:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 1024px) {
  .doctor-section {
    padding-block: 3.5rem;
    padding-bottom: 0;
  }
  .doctor-section .doctor-section__grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 2.5rem;
  }
  /* 手機版：文字在上，照片在下 */
  .doctor-section .doctor-section__content {
    order: -1 !important;
  }
  .doctor-section .doctor-section__photo-wrap {
    order: 1 !important;
  }
  .doctor-section .doctor-section__wave {
    right: 1.5rem;
    top: 0.75rem;
    transform: scale(0.8);
  }
}
@media (max-width: 768px) {
  .doctor-section .doctor-section__wave {
    display: none;
  }
  .doctor-section .doctor-section__inner {
    padding-inline: 1.25rem;
  }
  .doctor-section .doctor-photo {
    max-width: 260px;
  }
}

#partner-message {
  position: relative;
  overflow: hidden;
  color: #fdfcf9;
  background-image: url("../images/primary/bg-02.webp");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#partner-message .partner-message__inner {
  position: relative;
  z-index: 1;
  min-height: 440px;
  display: flex;
  align-items: center;
  padding-block: 7em;
}
#partner-message .partner-message__copy {
  max-width: 980px;
  margin-inline: auto;
}
#partner-message .partner-message__eyebrow {
  font-size: 1rem;
  letter-spacing: 0.25em;
  margin-bottom: 0.75rem;
}
#partner-message .partner-message__title {
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  letter-spacing: 0.22em;
  margin-bottom: 1em;
  border-bottom: 1px solid #fdfcf9;
  padding-bottom: 1em;
}
#partner-message .partner-message__paragraphs {
  font-size: clamp(1rem, 1.8vw, 1.8rem);
  line-height: 2;
}
#partner-message .partner-message__paragraphs span.text-border {
  display: inline-block;
  font-size: 1.1em;
  padding: 0 0.1em;
  border: 1px solid #fdfcf9;
  line-height: 1.2em;
}
#partner-message .partner-message__paragraphs span.text-border.end-border {
  border: none;
  border-left: 1px solid #fdfcf9;
  padding: 0;
  margin-left: 0.2em;
}
@media (max-width: 768px) {
  #partner-message .partner-message__inner {
    min-height: auto;
    padding-block: 3rem;
  }
  #partner-message .partner-message__copy {
    max-width: 100%;
  }
}

#cooperation-flow {
  position: relative;
  background-color: #f8f3ec;
  background-image: url("../images/flow-paper-texture.jpg");
  /* TODO: 以實際紙紋背景圖 flow-paper-texture.jpg 替換 */
  background-size: cover;
  background-position: center;
  padding-block: 4rem;
}
#cooperation-flow .cooperation-flow__inner {
  position: relative;
}
#cooperation-flow .cooperation-flow__header {
  margin-bottom: 2.75rem;
}
#cooperation-flow .cooperation-flow__label {
  padding: 0.4rem 1.3rem;
  border: 1px solid #5c4e42;
  border-left: 0.4em solid #5c4e42;
  background-color: rgba(255, 255, 255, 0.92);
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  color: #5c4e42;
}
#cooperation-flow .cooperation-flow__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  max-width: 980px;
  margin: 0 auto;
}
#cooperation-flow .cooperation-flow__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: flex-start;
  gap: 1.75rem;
  padding: 1rem ;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

#cooperation-flow .cooperation-flow__item:hover,
#cooperation-flow .cooperation-flow__item:focus-within {
  background-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
  border-bottom-color: rgba(0, 0, 0, 0.16);
  transform: translateY(-2px);
}
#cooperation-flow .cooperation-flow__number {
  font-size: clamp(3rem, 5.8vw, 5.8rem);
  font-family: "Noto Serif TC", serif;
  font-style: italic;
  color: #5c4e42;
  line-height: 1;
}
#cooperation-flow .cooperation-flow__content {
  padding-top: 0.5rem;
}
#cooperation-flow .cooperation-flow__step-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
#cooperation-flow .cooperation-flow__step-text {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.9;
  color: #9b8978;
}
#cooperation-flow .cooperation-flow__icon-wrap {
  padding-top: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
#cooperation-flow .cooperation-flow__icon {
  padding: 1em;
  border-radius: 9999px;
  border: 1px solid #9b8978;
}
#cooperation-flow .cooperation-flow__icon img {
  width: 4em;
  height: 4em;
  -o-object-fit: contain;
     object-fit: contain;
}
#cooperation-flow .cooperation-flow__more {
  margin-top: 2.5rem;
}
#cooperation-flow .cooperation-flow__more-link {
  min-width: 8rem;
  border-radius: 9999px;
  border: 1px solid #5c4e42;
  padding: 0.5rem 1.75rem;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: #5c4e42;
  background-color: rgba(255, 255, 255, 0.9);
  transition: all 0.25s ease;
}
#cooperation-flow .cooperation-flow__more-link:hover, #cooperation-flow .cooperation-flow__more-link:focus-visible {
  background-color: #5c4e42;
  color: #ffffff;
}
@media (max-width: 768px) {
  #cooperation-flow {
    padding-block: 3.25rem;
  }
  #cooperation-flow .cooperation-flow__item {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 0.75rem 1.25rem;
  }
  #cooperation-flow .cooperation-flow__icon-wrap {
    grid-column: 2/-1;
    justify-self: flex-end;
  }
}

#value-collab {
  position: relative;
  overflow: hidden;
  background: url("../images/primary/bg-04.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fdfcf9;
}
#value-collab .value-collab__inner {
  position: relative;
  z-index: 1;
  padding-block: 10rem;
}
#value-collab .value-collab__lead {
  font-size: clamp(1.6rem, 1.2vw, 1.8rem);
  line-height: 1.9;
  letter-spacing: 0.18em;
}
#value-collab .value-collab__lead--emphasis {
  margin-top: 0.75rem;
}
#value-collab .value-collab__roles {
  max-width: 780px;
}
#value-collab .value-collab__role {
  display: flex;
  justify-content: center;
}
#value-collab .value-collab__role-inner {
  width: 210px;
  height: 210px;
  border-radius: 9999px;
  background-color: rgba(250, 249, 246, 0.96);
  color: #251e1c;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.25rem;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.25);
}
#value-collab .value-collab__role-title {
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  margin-bottom: 0.6rem;
  border-bottom: 1px solid #9b8978;
  padding: 0 0.6rem 0.6rem;
}
#value-collab .value-collab__role-text {
  font-size: 0.9rem;
  line-height: 1.7;
}
@media (max-width: 1024px) {
  #value-collab .value-collab__inner {
    padding-block: 3.5rem;
  }
}
@media (max-width: 768px) {
  #value-collab {
    text-align: center;
  }
  #value-collab .value-collab__copy {
    margin-inline: auto;
  }
}

.odm-intro {
  background: url("../images/primary/bg-05.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding-block: 6rem;
}
#odm-intro .odm-intro__copy {
  font-size: clamp(1.6rem, 1.2vw, 1.8rem);
  line-height: 2;
  color: #5c4e42;
}

#odm-flow {
  position: relative;
  background-color: #fbf7f0;
  background-image: url("../images/primary/bg-06.webp");
  background-size: cover;
  background-position: center;
  padding-block: 4rem;
  overflow-x: clip;
  overflow-y: visible;
}
#odm-flow .odm-flow__inner {
  position: relative;
}
#odm-flow .odm-flow__header {
  max-width: 960px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(155, 137, 120, 0.9);
}
#odm-flow .odm-flow__title {
  font-size: clamp(1.8rem, 2.4vw, 2.2rem);
  letter-spacing: 0.22em;
  margin-bottom: 1rem;
  color: #5c4e42;
}
#odm-flow .odm-flow__subtitle {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.9;
  color: #4b5563;
}
#odm-flow .odm-flow__list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 2rem;
  max-width: 980px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
#odm-flow .odm-flow__item {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  -moz-column-gap: 1.75rem;
       column-gap: 1.75rem;
  border-radius: 0 100px 100px 80px;
  border: 1px solid rgba(155, 137, 120, 0.9);
  transition: all 0.25s ease;
}

#odm-flow .odm-flow__item:hover{
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
#odm-flow .odm-flow__item:after{
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0;
  border-top: 1px solid rgba(155, 137, 120, 0.9);
  width: 100%;
  height: 0;
}

#odm-flow .odm-flow__left {
  position: relative;
  padding: 2rem 1.5rem 1.5rem 2rem;
  border-right: 1px dashed rgba(155, 137, 120, 0.9);
}
#odm-flow .odm-flow__icon {
  width: 4em;
  height: 4em;
  -o-object-fit: contain;
     object-fit: contain;
}
#odm-flow .odm-flow__item:last-child .odm-flow__left::after {
  display: none;
}
#odm-flow .odm-flow__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 2rem;
}
#odm-flow .odm-flow__step-title {
  font-size: clamp(1.2rem, 1.4vw, 1.4rem);
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: #5c4e42;
}
#odm-flow .odm-flow__step-text {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.9;
  color: #9b8978;
}
#odm-flow .odm-flow__decor {
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
}
#odm-flow .odm-flow__decor--top {
  right: 5%;
  top: -5%;
}
#odm-flow .odm-flow__decor--left {
  top: 50%;
  left: 0;
}
#odm-flow .odm-flow__decor--right {
  bottom: 15%;
  right: -3rem;
}
@media (max-width: 1024px) {
  #odm-flow {
    padding-block: 3.25rem;
  }
  #odm-flow .odm-flow__item {
    padding-inline: 1.75rem;
  }
}
@media (max-width: 768px) {
  #odm-flow .odm-flow__item {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 0.75rem;
    padding-inline: 1.5rem;
  }
  #odm-flow .odm-flow__left {
    padding-right: 0;
    padding-left: 0.75rem;
  }
  #odm-flow .odm-flow__left::after {
    left: 32px;
    bottom: -0.75rem;
  }
  #odm-flow .odm-flow__decor--left,
  #odm-flow .odm-flow__decor--right {
    opacity: 0.5;
  }
}

*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

/* ! tailwindcss v3.4.14 | MIT License | https://tailwindcss.com */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: "Noto Serif TC", serif; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
  font-family: "Noto Serif TC", serif;
  font-weight: 600;
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

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

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
.container{
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 640px){
  .container{
    max-width: 640px;
  }
}
@media (min-width: 768px){
  .container{
    max-width: 768px;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
@media (min-width: 1024px){
  .container{
    max-width: 1024px;
  }
}
@media (min-width: 1280px){
  .container{
    max-width: 1280px;
  }
}
@media (min-width: 1536px){
  .container{
    max-width: 1536px;
  }
}
.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.relative{
  position: relative;
}
.mx-auto{
  margin-left: auto;
  margin-right: auto;
}
.mb-10{
  margin-bottom: 2.5rem;
}
.mb-3{
  margin-bottom: 0.75rem;
}
.mb-8{
  margin-bottom: 2rem;
}
.mt-10{
  margin-top: 2.5rem;
}
.mt-12{
  margin-top: 3rem;
}
.mt-4{
  margin-top: 1rem;
}
.block{
  display: block;
}
.inline-block{
  display: inline-block;
}
.flex{
  display: flex;
}
.inline-flex{
  display: inline-flex;
}
.grid{
  display: grid;
}
.hidden{
  display: none;
}
.h-6{
  height: 1.5rem;
}
.w-6{
  width: 1.5rem;
}
.max-w-3xl{
  max-width: 48rem;
}
.resize{
  resize: both;
}
.grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.flex-wrap{
  flex-wrap: wrap;
}
.items-center{
  align-items: center;
}
.justify-center{
  justify-content: center;
}
.justify-between{
  justify-content: space-between;
}
.gap-10{
  gap: 2.5rem;
}
.gap-3{
  gap: 0.75rem;
}
.gap-8{
  gap: 2rem;
}
.gap-x-10{
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}
.gap-y-8{
  row-gap: 2rem;
}
.space-x-8 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.overflow-hidden{
  overflow: hidden;
}
.rounded-md{
  border-radius: 0.375rem;
}
.border{
  border-width: 1px;
}
.border-t{
  border-top-width: 1px;
}
.border-gray-200{
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity));
}
.border-transparent{
  border-color: transparent;
}
.bg-gray-100{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}
.bg-gray-50{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
}
.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.p-2{
  padding: 0.5rem;
}
.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}
.py-20{
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.py-4{
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.pb-4{
  padding-bottom: 1rem;
}
.pb-6{
  padding-bottom: 1.5rem;
}
.pt-10{
  padding-top: 2.5rem;
}
.pt-4{
  padding-top: 1rem;
}
.text-center{
  text-align: center;
}
.font-serif{
  font-family: "Noto Serif TC", serif;
}
.text-2xl{
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl{
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-base{
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xs{
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-bold{
  font-weight: 700;
}
.leading-6{
  line-height: 1.5rem;
}
.leading-relaxed{
  line-height: 1.625;
}
.tracking-wide{
  letter-spacing: 0.025em;
}
.text-gray-500{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
}
.text-gray-700{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
}
.text-primary{
  --tw-text-opacity: 1;
  color: rgb(92 78 66 / var(--tw-text-opacity));
}
.antialiased{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.shadow-md{
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
html {
  font-size: 120%;
}

body {
  font-family: "Noto Serif TC", serif;
  color: #1f2937;
  background-color: #ffffff;
}

h1,
h2,
h3,
h4 {
  font-family: "Noto Serif TC", serif;
}

.hover\:border-secondary:hover{
  --tw-border-opacity: 1;
  border-color: rgb(155 137 120 / var(--tw-border-opacity));
}

.hover\:text-primary:hover{
  --tw-text-opacity: 1;
  color: rgb(92 78 66 / var(--tw-text-opacity));
}

.focus\:outline-none:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:ring-2:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-secondary:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(155 137 120 / var(--tw-ring-opacity));
}

@media (min-width: 640px){
  .sm\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px){
  /* 確保桌面版導航選單顯示 - 使用屬性選擇器 */
  .main-menu div[class*="md:flex"] {
    display: flex !important;
  }
  
  /* 確保漢堡按鈕在桌面版隱藏 */
  .main-menu button[class*="md:hidden"],
  #mobile-menu-btn {
    display: none !important;
  }
  
  .md\:flex{
    display: flex;
  }
  .md\:hidden{
    display: none;
  }
  .md\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .md\:text-lg{
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1024px){
  .lg\:grid-cols-5{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

/* ===================================
   Product Detail Page
   =================================== */

/* Product Detail Section */
.product-detail {
  padding: 4rem 0;
  background-color: #ffffff;
}

.product-detail__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Product Main Area */
.product-detail__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .product-detail__main {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* Product Gallery */
.product-detail__gallery {
  position: relative;
}

.product-gallery__main {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background-color: #f9fafb;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2rem;
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  z-index: 10;
}

.product-badge--hot {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.product-badge--new {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.product-badge--recommend {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.product-gallery__thumb {
  aspect-ratio: 1;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #f9fafb;
  padding: 0.5rem;
}

.product-gallery__thumb:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.product-gallery__thumb--active {
  border-color: var(--color-primary);
  background-color: #fef3e8;
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Product Info */
.product-detail__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-detail__category {
  display: inline-block;
  align-self: flex-start;
  padding: 0.5rem 1rem;
  background-color: #fef3e8;
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.product-detail__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  margin: 0;
}

.product-detail__subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.6;
}

/* Product Features */
.product-detail__features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.product-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #374151;
}

.product-feature i {
  color: #10b981;
  font-size: 1.125rem;
}

/* Product Specifications */
.product-detail__specs {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-spec__label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.75rem;
}

.product-spec__options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.product-spec__option {
  padding: 0.75rem 1.5rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  background-color: #ffffff;
  color: #6b7280;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-spec__option:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.product-spec__option--active {
  border-color: var(--color-primary);
  background-color: #fef3e8;
  color: var(--color-primary);
}

/* Product Quantity */
.product-detail__quantity {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product-quantity__label {
  font-weight: 600;
  color: #374151;
}

.product-quantity__control {
  display: flex;
  align-items: center;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}

.product-quantity__btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9fafb;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  color: #6b7280;
}

.product-quantity__btn:hover {
  background-color: #e5e7eb;
  color: var(--color-primary);
}

.product-quantity__input {
  width: 60px;
  height: 40px;
  border: none;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
}

.product-quantity__input::-webkit-inner-spin-button,
.product-quantity__input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Product Actions */
.product-detail__actions {
  display: flex;
  gap: 1rem;
  padding-top: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #ffffff;
  border-color: transparent;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(92, 78, 66, 0.2);
}

.btn--outline {
  background-color: #ffffff;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn--outline:hover {
  background-color: #fef3e8;
}


/* Product Meta */
.product-detail__meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
  font-size: 0.875rem;
  color: #6b7280;
}

.product-meta__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-meta__item i {
  color: var(--color-primary);
}

.product-share {
  display: flex;
  gap: 0.5rem;
  margin-left: 0.5rem;
}

.product-share__link {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9fafb;
  border-radius: 50%;
  color: #6b7280;
  transition: all 0.3s ease;
}

.product-share__link:hover {
  background-color: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Product Tabs */
.product-detail__content {
  margin-top: 4rem;
}

.product-tabs {
  display: flex;
  gap: 0.5rem;
  border-bottom: 2px solid #e5e7eb;
  margin-bottom: 2rem;
  overflow-x: auto;
}

.product-tabs__btn {
  padding: 1rem 2rem;
  background-color: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: #6b7280;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.product-tabs__btn:hover {
  color: var(--color-primary);
}

.product-tabs__btn--active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.product-tab__panel {
  display: none;
}

.product-tab__panel--active {
  display: block;
}

/* Product Content */
.product-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #374151;
}

.product-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e5e7eb;
}

.product-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 2rem 0 1rem;
}

.product-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #374151;
  margin: 1.5rem 0 0.75rem;
}

.product-content p {
  margin-bottom: 1rem;
}

.product-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.product-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.product-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.25rem;
}

.product-content img {
  border-radius: 12px;
}

/* Product Highlight Box */
.product-highlight {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #fef3e8, #ffffff);
  border-left: 4px solid var(--color-primary);
  border-radius: 8px;
  margin: 2rem 0;
}

.product-highlight i {
  font-size: 2rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.product-highlight h4 {
  margin: 0 0 0.5rem 0;
  color: var(--color-primary);
}

.product-highlight p {
  margin: 0;
  color: #6b7280;
}

/* Usage Steps */
.usage-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
}

.usage-step {
  display: flex;
  gap: 1.5rem;
}

.usage-step__number {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 700;
}

.usage-step__content h4 {
  margin: 0 0 0.5rem 0;
}

.usage-step__content p {
  margin: 0;
  color: #6b7280;
}

/* Product Tip Box */
.product-tip {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background-color: #fef3e8;
  border-radius: 8px;
  margin: 2rem 0;
}

.product-tip i {
  font-size: 1.5rem;
  color: #f59e0b;
  flex-shrink: 0;
}

.product-tip h4 {
  margin: 0 0 0.5rem 0;
  color: var(--color-primary);
}

.product-tip p {
  margin: 0;
  color: #6b7280;
}

/* Ingredients List */
.ingredients-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .ingredients-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ingredient-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background-color: #f9fafb;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.ingredient-item:hover {
  background-color: #fef3e8;
  transform: translateY(-2px);
}

.ingredient-item__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.25rem;
}

.ingredient-item__info h4 {
  margin: 0 0 0.5rem 0;
  color: var(--color-primary);
}

.ingredient-item__info p {
  margin: 0;
  font-size: 0.875rem;
  color: #6b7280;
}

/* Nutrition Table */
.nutrition-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.875rem;
}

.nutrition-table thead {
  background-color: var(--color-primary);
  color: #ffffff;
}

.nutrition-table th,
.nutrition-table td {
  padding: 1rem;
  text-align: left;
  border: 1px solid #e5e7eb;
}

.nutrition-table tbody tr:nth-child(even) {
  background-color: #f9fafb;
}

.nutrition-table tbody tr:hover {
  background-color: #fef3e8;
}

/* Notice Section */
.notice-section {
  margin: 2rem 0;
}

.notice-section h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background-color: #fef3e8;
  border-left: 4px solid var(--color-primary);
  border-radius: 4px;
  margin-bottom: 1rem;
}

.notice-section h3 i {
  color: var(--color-primary);
}

/* Related Products */
.related-products {
  padding: 4rem 0;
  background-color: #f9fafb;
}

.related-products__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.related-products__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 3rem;
}

.related-products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}


/* ===================================
   手機版 RWD 優化 (Mobile Responsive)
   =================================== */

@media (max-width: 767px) {
  /* ========= 基礎樣式確保 ========= */
  section {
    width: 100%;
    display: block;
  }
  
  /* 調整 Tailwind py-20 在手機版的間距 */
  .py-20 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  /* Tailwind-like utility classes for mobile */
  .hidden {
    display: none !important;
  }
  
  /* ========= 強制隱藏桌面選單 ========= */
  #desktop-menu,
  .desktop-nav,
  .main-menu .hidden,
  .main-menu .md\:flex,
  .main-menu [class*="md:flex"],
  .main-menu > div > #desktop-menu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    left: -9999px !important;
  }
  
  /* 強制隱藏桌面版導航選單的 hidden 類 */
  .main-menu .hidden {
    display: none !important;
  }
  
  /* 強制隱藏桌面選單 - 使用 ID */
  #desktop-menu {
    display: none !important;
  }
  
  /* 隱藏桌面版導航選單 - 使用屬性選擇器 */
  .main-menu [class*="md:flex"] {
    display: none !important;
  }
  
  /* 隱藏桌面版導航選單 - 更具體的選擇器 */
  .main-menu > div > div.hidden.md\:flex,
  .main-menu div.hidden.md\:flex.items-center,
  .main-menu > div > .hidden,
  .main-menu > div > div.hidden,
  .desktop-nav {
    display: none !important;
  }
  
  /* 顯示漢堡按鈕 - 使用屬性選擇器 */
  .main-menu [class*="md:hidden"],
  #mobile-menu-btn {
    display: flex !important;
  }
  
  /* 手機選單展開時顯示 */
  #mobile-menu.active {
    display: block !important;
  }
  
  /* 容器與間距 */
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Hero 主視覺 */
  .hero-landing__inner {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
  }
  
  .hero-landing__copy {
    width: 100%;
  }
  
  .hero-landing__title {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }
  
  .hero-landing__subtitle {
    font-size: 1rem;
    line-height: 1.8;
  }
  
  .hero-landing__cta-group {
    justify-content: center;
    gap: 0.75rem;
  }
  
  .hero-landing__cta {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
    min-width: auto;
  }
  
  .hero-landing__cta-text {
    font-size: 0.9375rem;
  }
  
  .hero-landing__cta-note {
    font-size: 0.8125rem;
  }
  
  /* ODM Flow */
  .odm-flow__list {
    grid-template-columns: 1fr;
  }
  
  /* Footer */
  #main-footer .md\\:flex {
    flex-direction: column;
    gap: 2rem;
  }
  
  #main-footer .md\\:w-1\\/3,
  #main-footer .md\\:w-2\\/3 {
    width: 100%;
  }
  
  /* Header Logo */
  .main-logo-img {
    height: 32px;
  }
  
  /* Sections */
  section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .expertise-band__list {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  #index-about .about-content__grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  #index-about .about-content__item {
    text-align: center !important;
  }
  
  /* Partner Message */
  #partner-message .partner-message__inner {
    padding: 3rem 1rem !important;
  }
  
  /* Value Collab */
  #value-collab .cooperation-flow__list {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  #value-collab .cooperation-flow__item {
    padding: 1.5rem !important;
  }
  
  /* ODM Intro */
  #odm-intro .odm-intro__grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  #odm-intro .odm-flow__list {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  
  #odm-intro .odm-flow__item {
    padding: 1.25rem !important;
  }
  
  /* Core Extraction */
  #core-extraction .core-extraction__grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  #core-extraction .core-extraction__feature {
    text-align: center !important;
  }
  
  /* Market Stats */
  #market-stats .market-stats__grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  #market-stats .market-stats__item {
    padding: 1.5rem !important;
  }
  
  #market-stats .market-stats__value {
    font-size: 2rem !important;
  }
  
  #market-stats .market-stats__action {
    margin-top: 1.25rem;
  }
  
  #market-stats .market-stats__btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
  }
  
  /* Brand Partners */
  #brand-partners .brand-partners__grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1rem !important;
  }
  
  #brand-partners .brand-partners__item img {
    max-width: 80px !important;
  }
  
  /* Knowledge Area */
  #knowledge-area .knowledge-area__grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  /* Contact Form */
  #contact-partner .contact-partner__grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  #contact-partner .contact-partner__form {
    order: 1 !important;
    max-width: 100%;
  }
  
  #contact-partner .contact-partner__info {
    order: 2 !important;
  }
  
  /* Product Grid */
  .product-list__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Blog Grid */
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  /* Case Studies */
  .case-studies__grid {
    grid-template-columns: 1fr;
  }
  
  /* 通用樣式調整 */
  .section-title {
    font-size: 1.75rem;
    line-height: 1.4;
  }
  
  .section-subtitle {
    font-size: 0.9375rem;
  }
  
  
  /* 按鈕調整 */
  .btn,
  .cta-btn {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0.875rem 1.5rem !important;
    font-size: 0.9375rem !important;
  }
  
  /* Product Detail */
  .product-detail__actions {
    flex-direction: column !important;
  }
  
  .related-products__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }
  
  /* 圖片響應式 */
  img {
    max-width: 100% !important;
    height: auto !important;
  }
}

/* ==========================================
   顧問服務頁面樣式
   ========================================== */

/* 顧問服務區塊 */
.consultant-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.consultant-service__card {
  background-color: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.consultant-service__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.consultant-service__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.consultant-service__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.consultant-service__card:hover .consultant-service__image img {
  transform: scale(1.05);
}

.consultant-service__title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #5c4e42;
  padding: 1.5rem 1.5rem 1rem;
  text-align: center;
}

.consultant-service__desc {
  color: #6b5f52;
  line-height: 1.8;
  padding: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
  text-align: left;
}

/* 專業信任感區塊 */
.consultant-trust__steps {
  max-width: 900px;
  margin: 3rem auto 0;
}

.consultant-trust__step {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}

.consultant-trust__step:last-child {
  margin-bottom: 0;
}

.consultant-trust__number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5c4e42 0%, #7a6b5d 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(92, 78, 66, 0.3);
}

.consultant-trust__content {
  flex: 1;
}

.consultant-trust__step-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #5c4e42;
  margin-bottom: 0.8rem;
}

.consultant-trust__step-desc {
  color: #6b5f52;
  line-height: 1.8;
  font-size: 0.95rem;
}

.consultant-trust__cooperation {
  max-width: 800px;
  margin: 4rem auto 0;
  padding: 2rem;
  background: linear-gradient(to right, #f8f6f3 0%, #fdfcf9 100%);
  border-left: 4px solid #9c8c7a;
  border-radius: 0.5rem;
}

.consultant-trust__cooperation-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #5c4e42;
  margin-bottom: 1rem;
}

.consultant-trust__cooperation-content {
  color: #6b5f52;
  line-height: 1.8;
}

.consultant-trust__cooperation-content p {
  margin-bottom: 0.5rem;
}

.consultant-trust__cooperation-content p:last-child {
  margin-bottom: 0;
}

.consultant-trust__cooperation-content strong {
  color: #9c8c7a;
  font-weight: 600;
}

/* 顧問服務頁面 RWD */
@media (max-width: 768px) {
  .consultant-services__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .consultant-trust__step {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .consultant-trust__number {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
  
  .consultant-trust__cooperation {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .consultant-service__image {
    height: 180px;
  }
  
  .consultant-service__title {
    font-size: 1.1rem;
    padding: 1.2rem 1.2rem 0.8rem;
  }
  
  .consultant-service__desc {
    padding: 0 1.2rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .consultant-trust__number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .consultant-trust__step-title {
    font-size: 1.1rem;
  }
  
  .consultant-trust__step-desc {
    font-size: 0.9rem;
  }
}

/* ==========================================
   OEM/ODM 頁面樣式
   ========================================== */

/* OEM 簡介區塊 */
.oem-intro {
  background-color: #fff;
}
.oem-intro__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.oem-intro__title {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 600;
  color: #5c4e42;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}
.oem-intro__desc {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: #6b5f52;
  margin-bottom: 3rem;
  line-height: 1.8;
}
.oem-intro__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}
.oem-intro__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  color: #5c4e42;
  padding: 1.2rem;
  background-color: #fdfcf9;
  border-left: 3px solid #9c8c7a;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}
.oem-intro__item:hover {
  background-color: #f5f3ef;
  transform: translateX(10px);
}
.oem-intro__item i {
  color: #9c8c7a;
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* OEM 定位區塊 */
.oem-positioning__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.oem-positioning__card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.oem-positioning__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.oem-positioning__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #5c4e42;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #9c8c7a;
}
.oem-positioning__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.oem-positioning__list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1rem;
  color: #6b5f52;
  line-height: 1.6;
}
.oem-positioning__list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #9c8c7a;
  font-weight: bold;
}

/* OEM 顧問服務架構 */
.oem-consulting__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.oem-consulting__item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background-color: #fdfcf9;
  border-radius: 1rem;
  transition: all 0.3s ease;
}
.oem-consulting__item:hover {
  background-color: #9c8c7a;
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(156, 140, 122, 0.3);
}
.oem-consulting__item:hover .oem-consulting__icon {
  color: #fff;
}
.oem-consulting__item:hover h3,
.oem-consulting__item:hover p {
  color: #fff;
}
.oem-consulting__icon {
  font-size: 3rem;
  color: #9c8c7a;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}
.oem-consulting__item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #5c4e42;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}
.oem-consulting__item p {
  color: #6b5f52;
  line-height: 1.6;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

/* OEM 合作模式對比表格 */
.oem-comparison__subtitle {
  font-size: 1.1rem;
  color: #6b5f52;
  margin-top: 1rem;
  margin-bottom: 3rem;
}
.oem-comparison__table-wrapper {
  overflow-x: auto;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.oem-comparison__table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
  background-color: #fff;
}
.oem-comparison__table thead {
  background-color: #5c4e42;
  color: #fff;
}
.oem-comparison__table th {
  padding: 1.5rem 1rem;
  text-align: center;
  font-weight: 600;
}
.oem-comparison__table th:first-child {
  border-radius: 1rem 0 0 0;
}
.oem-comparison__table th:last-child {
  border-radius: 0 1rem 0 0;
}
.mode-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.mode-number {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "Noto Serif TC", serif;
  font-style: italic;
}
.mode-name {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}
.oem-comparison__table tbody tr {
  border-bottom: 1px solid #e5e5e5;
}
.oem-comparison__table tbody tr:last-child {
  border-bottom: none;
}
.oem-comparison__table tbody tr:hover {
  background-color: #fdfcf9;
}
.oem-comparison__table td {
  padding: 1.2rem 1rem;
  text-align: center;
  color: #5c4e42;
}
.oem-comparison__table td.feature-name {
  background-color: #f8f6f3;
  font-weight: 600;
  text-align: left;
  padding-left: 1.5rem;
}

/* OEM 合作模式卡片 */
.oem-modes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.oem-mode__card {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}
.oem-mode__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.oem-mode__card--highlight {
  border: 3px solid #9c8c7a;
}
.oem-mode__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #9c8c7a;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 1;
}
.oem-mode__header {
  background: linear-gradient(135deg, #5c4e42 0%, #7a6b5d 100%);
  color: #fff;
  padding: 2rem;
  text-align: center;
}
.oem-mode__number {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: "Noto Serif TC", serif;
  font-style: italic;
  display: block;
  margin-bottom: 0.5rem;
}
.oem-mode__title {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.oem-mode__content {
  padding: 2rem;
}
.oem-mode__subtitle {
  font-size: 1.1rem;
  color: #5c4e42;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e5e5e5;
}
.oem-mode__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}
.oem-mode__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: #6b5f52;
  line-height: 1.6;
}
.oem-mode__features li i {
  color: #9c8c7a;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.oem-mode__info {
  background-color: #fdfcf9;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border-left: 3px solid #9c8c7a;
}
.oem-mode__info p {
  margin-bottom: 0.8rem;
  color: #5c4e42;
  line-height: 1.6;
}
.oem-mode__info p:last-child {
  margin-bottom: 0;
}
.oem-mode__info strong {
  color: #9c8c7a;
  font-weight: 600;
}

/* OEM 優勢區塊 */
.oem-advantages__subtitle {
  font-size: 1.1rem;
  color: #6b5f52;
  margin-top: 1rem;
  margin-bottom: 3rem;
}
.oem-advantages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.oem-advantage__card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.oem-advantage__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.oem-advantage__icon {
  font-size: 3.5rem;
  color: #9c8c7a;
  margin-bottom: 1.5rem;
}
.oem-advantage__card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #5c4e42;
  margin-bottom: 1rem;
}
.oem-advantage__card p {
  color: #6b5f52;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* OEM 統計數據 */
.oem-stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.oem-stat__card {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #5c4e42 0%, #7a6b5d 100%);
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.oem-stat__card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.oem-stat__number {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  font-family: "Noto Serif TC", serif;
  margin-bottom: 1rem;
}
.oem-stat__number::after {
  content: "+";
  font-size: 2rem;
  margin-left: 0.2rem;
}
.oem-stat__label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.05em;
}

/* OEM 流程時間軸 */
.oem-process__timeline {
  max-width: 900px;
  margin: 3rem auto 0;
  position: relative;
}
.oem-process__timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #9c8c7a, #d4c4b0);
}
.oem-process__step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}
.oem-process__step:last-child {
  margin-bottom: 0;
}
.oem-process__number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5c4e42 0%, #7a6b5d 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: "Noto Serif TC", serif;
  box-shadow: 0 4px 12px rgba(92, 78, 66, 0.3);
  position: relative;
  z-index: 1;
}
.oem-process__content {
  flex: 1;
  background-color: #fff;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.oem-process__content:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.oem-process__content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #5c4e42;
  margin-bottom: 0.5rem;
}
.oem-process__content p {
  color: #6b5f52;
  line-height: 1.6;
}

/* OEM 應用領域 */
.oem-applications__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.oem-application__card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background-color: #fdfcf9;
  border-radius: 1rem;
  border: 2px solid #e5e5e5;
  transition: all 0.3s ease;
}
.oem-application__card:hover {
  border-color: #9c8c7a;
  background-color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.oem-application__icon {
  font-size: 3rem;
  color: #9c8c7a;
  margin-bottom: 1.5rem;
}
.oem-application__card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #5c4e42;
  margin-bottom: 1rem;
}
.oem-application__card p {
  color: #6b5f52;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* OEM FAQ */
.oem-faq__container {
  max-width: 900px;
  margin: 3rem auto 0;
}
.oem-faq__item {
  background-color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.oem-faq__item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.oem-faq__question {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.oem-faq__question i {
  color: #9c8c7a;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.oem-faq__question h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #5c4e42;
  line-height: 1.6;
}
.oem-faq__answer p {
  color: #6b5f52;
  line-height: 1.8;
  padding-left: 2.5rem;
}

/* OEM CTA */
.oem-cta {
  background: url("../images/primary/bg-01.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}
.oem-cta__content {
  max-width: 800px;
  margin: 0 auto;
}
.oem-cta__title {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.oem-cta__desc {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}
.oem-cta__buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.oem-cta__buttons .btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 3rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.oem-cta__buttons .btn-primary {
  background-color: #fff;
  color: #5c4e42;
}
.oem-cta__buttons .btn-primary:hover {
  background-color: #9c8c7a;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.oem-cta__buttons .btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.oem-cta__buttons .btn-secondary:hover {
  background-color: #fff;
  color: #5c4e42;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* OEM 頁面 RWD */
@media (max-width: 1024px) {
  .oem-process__timeline::before {
    left: 25px;
  }
  .oem-process__number {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }
  .oem-process__step {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .oem-intro__list {
    gap: 1rem;
  }
  .oem-intro__item {
    padding: 1rem;
  }
  
  .oem-positioning__grid,
  .oem-consulting__grid,
  .oem-modes__grid,
  .oem-advantages__grid,
  .oem-stats__grid,
  .oem-applications__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .oem-comparison__table-wrapper {
    border-radius: 0.5rem;
  }
  
  .oem-comparison__table {
    font-size: 0.85rem;
  }
  
  .oem-comparison__table th,
  .oem-comparison__table td {
    padding: 0.8rem 0.5rem;
  }
  
  .mode-number {
    font-size: 1.3rem;
  }
  
  .mode-name {
    font-size: 0.9rem;
  }
  
  .oem-process__timeline::before {
    left: 20px;
  }
  
  .oem-process__number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .oem-process__step {
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .oem-process__content {
    padding: 1.2rem 1.5rem;
  }
  
  .oem-stat__card {
    padding: 2rem 1.5rem;
  }
  
  .oem-stat__number {
    font-size: 2.5rem;
  }
  
  .oem-cta__buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .oem-cta__buttons .btn {
    width: 100%;
  }
  
  .oem-faq__answer p {
    padding-left: 0;
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .oem-intro__item {
    flex-direction: column;
    text-align: center;
  }
  
  .oem-mode__header {
    padding: 1.5rem;
  }
  
  .oem-mode__number {
    font-size: 2rem;
  }
  
  .oem-mode__title {
    font-size: 1.2rem;
  }
  
  .oem-mode__content {
    padding: 1.5rem;
  }
  
  .oem-consulting__item,
  .oem-advantage__card,
  .oem-application__card {
    padding: 2rem 1rem;
  }
}

/* ===========================
   OEM/ODM 新版樣式（美化版）
   =========================== */

/* 品牌主軸定位與核心劑型 */
.oem-brand-core {
  background: url("../images/primary/bg-03.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.oem-brand-core::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(156, 140, 122, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.oem-brand-core::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(156, 140, 122, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.oem-brand-core__content {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.oem-brand-core__section {
  margin-bottom: 3rem;
}

.oem-brand-core__subtitle {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: #5c4e42;
  margin-bottom: 1.5rem;
  font-family: "Noto Serif TC", serif;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.oem-brand-core__subtitle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #9c8c7a, transparent);
}

.oem-brand-core__text {
  font-size: 1.125rem;
  line-height: 2;
  color: #6b5d52;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.oem-dosage-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.oem-dosage-type {
  background: linear-gradient(135deg, #ffffff 0%, #fdfcf9 100%);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(92, 78, 66, 0.1);
  border: 1px solid rgba(156, 140, 122, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.oem-dosage-type::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #9c8c7a 0%, #7d6e5f 100%);
}

.oem-dosage-type:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(92, 78, 66, 0.15);
}

.oem-dosage-type__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #5c4e42;
  margin-bottom: 1.25rem;
  font-family: "Noto Serif TC", serif;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.oem-dosage-type__title::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #9c8c7a;
  border-radius: 50%;
}

.oem-dosage-type__note {
  font-size: 0.875rem;
  font-weight: 400;
  color: #8b7a6a;
}

.oem-dosage-type__features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.oem-dosage-type__features li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: #6b5d52;
  line-height: 1.7;
  font-size: 1.05rem;
}

.oem-dosage-type__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #9c8c7a;
  font-weight: bold;
  width: 24px;
  height: 24px;
  background: rgba(156, 140, 122, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}

/* 進階加值亮點 */
.oem-value-points__subtitle {
  font-size: 1.25rem;
  color: #6b5d52;
  margin-top: 1rem;
  margin-bottom: 3.5rem;
  text-align: center;
  font-weight: 500;
  line-height: 1.8;
}

.oem-value-points__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.oem-value-point__card {
  background: linear-gradient(135deg, #ffffff 0%, #fdfcf9 100%);
  padding: 3rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(92, 78, 66, 0.1);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(156, 140, 122, 0.1);
  position: relative;
  overflow: hidden;
}

.oem-value-point__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(156, 140, 122, 0.05), transparent);
  transition: left 0.5s ease;
}

.oem-value-point__card:hover::before {
  left: 100%;
}

.oem-value-point__card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(92, 78, 66, 0.2);
  border-color: #9c8c7a;
}

.oem-value-point__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #9c8c7a 0%, #7d6e5f 100%);
  color: #ffffff;
  border-radius: 50%;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(92, 78, 66, 0.25);
  transition: all 0.3s ease;
  position: relative;
}

.oem-value-point__icon::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(156, 140, 122, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.oem-value-point__card:hover .oem-value-point__icon {
  transform: scale(1.1);
}

.oem-value-point__card:hover .oem-value-point__icon::after {
  opacity: 1;
}

.oem-value-point__title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #5c4e42;
  margin-bottom: 1.25rem;
  font-family: "Noto Serif TC", serif;
}

.oem-value-point__text {
  font-size: 1.05rem;
  color: #6b5d52;
  line-height: 1.8;
}

.oem-value-points__highlight {
  background: linear-gradient(135deg, #fff8f0 0%, #fdfcf9 100%);
  padding: 2.5rem 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(92, 78, 66, 0.12);
  margin-top: 2.5rem;
  border: 2px solid rgba(199, 133, 111, 0.3);
  position: relative;
  overflow: hidden;
}

.oem-value-points__info {
  background: linear-gradient(135deg, #f0f4f8 0%, #fdfcf9 100%);
  padding: 2.5rem 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(92, 78, 66, 0.12);
  margin-top: 2rem;
  border: 2px solid rgba(156, 140, 122, 0.2);
}

.oem-value-points__highlight-title,
.oem-value-points__info-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #5c4e42;
  margin-bottom: 1.5rem;
  font-family: "Noto Serif TC", serif;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.oem-value-points__highlight-title::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #c7856f;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(199, 133, 111, 0.2);
}

.oem-value-points__info-title::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #9c8c7a;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(156, 140, 122, 0.2);
}

.oem-value-points__highlight-list,
.oem-value-points__info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.oem-value-points__highlight-list li,
.oem-value-points__info-list li {
  position: relative;
  padding-left: 2.5rem;
  color: #6b5d52;
  line-height: 1.8;
  font-size: 1.05rem;
}

.oem-value-points__highlight-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #c7856f;
  font-weight: bold;
  font-size: 1.5rem;
  top: -0.1rem;
}

.oem-value-points__info-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #9c8c7a;
  font-weight: bold;
  font-size: 1.5rem;
  top: -0.1rem;
}

/* 三種合作模式表格 */
.oem-modes-table {
  background: url("../images/primary/bg-02.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.oem-modes-table::before {
  content: "";
  position: absolute;
  top: 10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(156, 140, 122, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.oem-modes-table .section-title {
  color: #fff8f0;
}
.oem-modes-table__subtitle {
  font-size: 1.25rem;
  color: #fff8f0;
  margin-top: 1rem;
  margin-bottom: 3rem;
  line-height: 1.9;
  text-align: center;
  font-weight: 500;
}

.oem-modes-table__section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff8f0;
  text-align: center;
  margin: 3rem auto 3rem;
  font-family: "Noto Serif TC", serif;
  position: relative;
  display: block;
  width: 100%;
}

.oem-modes-table__section-title::after {
  content: "";
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #9c8c7a, transparent);
  border-radius: 2px;
}

/* 可展開的模式列表 */
.oem-modes-expandable {
  max-width: 1200px;
  margin: 0 auto;
}

.oem-mode-row {
  background: #ffffff;
  border-radius: 16px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(92, 78, 66, 0.1);
  overflow: hidden;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
}

.oem-mode-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #9c8c7a 0%, #7d6e5f 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.oem-mode-row:hover {
  box-shadow: 0 6px 30px rgba(92, 78, 66, 0.15);
  border-color: rgba(156, 140, 122, 0.2);
}

.oem-mode-row:hover::before {
  opacity: 1;
}

.oem-mode-row.active {
  box-shadow: 0 8px 40px rgba(92, 78, 66, 0.2);
  border-color: #9c8c7a;
}

.oem-mode-row.active::before {
  opacity: 1;
  width: 100%;
  height: 6px;
  left: 0;
  top: 0;
}

.oem-mode-row__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, #f8f5f1 0%, #fdfcf9 100%);
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.oem-mode-row__header::before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(156, 140, 122, 0.05), transparent);
  transition: left 0.6s ease;
}

.oem-mode-row:hover .oem-mode-row__header::before {
  left: 100%;
}

.oem-mode-row.active .oem-mode-row__header {
  background: linear-gradient(135deg, #9c8c7a 0%, #7d6e5f 100%);
  box-shadow: 0 4px 15px rgba(92, 78, 66, 0.2);
}

.oem-mode-row__main {
  flex: 1;
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 2fr 0.8fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.oem-mode-row__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #5c4e42;
  font-family: "Noto Serif TC", serif;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.oem-mode-row__name::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #9c8c7a;
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.oem-mode-row.active .oem-mode-row__name::before {
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.oem-mode-row__target,
.oem-mode-row__feature {
  font-size: 1rem;
  color: #6b5d52;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.oem-mode-row__moq,
.oem-mode-row__time {
  font-size: 1rem;
  color: #5c4e42;
  font-weight: 700;
  text-align: center;
  padding: 0.5rem 1rem;
  background: rgba(156, 140, 122, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.oem-mode-row.active .oem-mode-row__name,
.oem-mode-row.active .oem-mode-row__target,
.oem-mode-row.active .oem-mode-row__feature {
  color: #ffffff;
}

.oem-mode-row.active .oem-mode-row__moq,
.oem-mode-row.active .oem-mode-row__time {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  font-weight: 700;
}

.oem-mode-row__icon {
  font-size: 1.25rem;
  color: #9c8c7a;
  transition: all 0.4s ease;
  margin-left: 2rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: rgba(156, 140, 122, 0.1);
  border-radius: 50%;
  line-height: 1;
}

.oem-mode-row:hover .oem-mode-row__icon {
  background: rgba(156, 140, 122, 0.2);
}

.oem-mode-row.active .oem-mode-row__icon {
  color: #ffffff;
  transform: rotate(180deg);
  background: rgba(255, 255, 255, 0.2);
}

.oem-mode-row__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.oem-mode-row__body {
  padding: 2.5rem 3rem;
  background: linear-gradient(135deg, #fdfcf9 0%, #ffffff 100%);
  border-top: 1px solid rgba(156, 140, 122, 0.1);
}

/* 可展開的 Accordion */
.oem-accordion {
  max-width: 1000px;
  margin: 2rem auto 0;
}

.oem-accordion__item {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 12px rgba(92, 78, 66, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.oem-accordion__item:hover {
  box-shadow: 0 4px 20px rgba(92, 78, 66, 0.12);
}

.oem-accordion__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 2rem;
  background: linear-gradient(135deg, #f5f1ec 0%, #fdfcf9 100%);
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.oem-accordion__item.active .oem-accordion__header {
  background: linear-gradient(135deg, #9c8c7a 0%, #7d6e5f 100%);
}

.oem-accordion__title {
  flex: 1;
}

.oem-accordion__label {
  font-size: 1.25rem;
  font-weight: 700;
  color: #5c4e42;
  font-family: "Noto Serif TC", serif;
}

.oem-accordion__item.active .oem-accordion__label {
  color: #ffffff;
}

.oem-accordion__icon {
  font-size: 1.25rem;
  color: #9c8c7a;
  transition: transform 0.3s ease;
}

.oem-accordion__item.active .oem-accordion__icon {
  color: #ffffff;
}

.oem-accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.oem-accordion__body {
  padding: 2rem;
}

.oem-mode-detail__section {
  margin-bottom: 1.5rem;
}

.oem-mode-detail__section h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #5c4e42;
  margin-bottom: 0.75rem;
}

.oem-mode-detail__section p {
  color: #6b5d52;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.oem-mode-detail__section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.oem-mode-detail__section li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  color: #6b5d52;
  line-height: 1.6;
}

.oem-mode-detail__section li i {
  color: #9c8c7a;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* 服務流程時間軸 */
.oem-process-flow {
  position: relative;
  background: linear-gradient(180deg, #fdfcf9 0%, #ffffff 100%);
}

.oem-process-flow::after {
  content: "";
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(156, 140, 122, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.oem-process-flow__subtitle {
  font-size: 1.25rem;
  color: #6b5d52;
  margin-top: 1rem;
  margin-bottom: 4rem;
  line-height: 1.9;
  text-align: center;
  font-weight: 500;
}

.oem-process-flow__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.oem-process-flow__timeline::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 5%;
  right: 5%;
  height: 3px;
  background: linear-gradient(90deg, #9c8c7a 0%, #7d6e5f 50%, #9c8c7a 100%);
  z-index: 0;
  opacity: 0.3;
}

.oem-process-flow__step {
  position: relative;
  text-align: center;
  z-index: 1;
  padding-top: 50px;
}

.oem-process-flow__step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #9c8c7a 0%, #7d6e5f 100%);
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 0 8px rgba(156, 140, 122, 0.15);
}

.oem-process-flow__step-content {
  background: linear-gradient(135deg, #ffffff 0%, #fdfcf9 100%);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(92, 78, 66, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.oem-process-flow__step-content::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(156, 140, 122, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.oem-process-flow__step-content:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 40px rgba(92, 78, 66, 0.2);
  border-color: #9c8c7a;
}

.oem-process-flow__step-content:hover::before {
  opacity: 1;
}

.oem-process-flow__step-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #9c8c7a;
  opacity: 0.3;
  font-family: "Noto Serif TC", serif;
  margin-bottom: 1rem;
}

.oem-process-flow__step-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #5c4e42;
  margin-bottom: 1rem;
  font-family: "Noto Serif TC", serif;
  position: relative;
  z-index: 1;
}

.oem-process-flow__step-desc {
  font-size: 1.05rem;
  color: #6b5d52;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.oem-value-points{
  background: url("../images/primary/bg-05.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* 客戶注意事項 */
.oem-notice {
  position: relative;
  background: url("../images/primary/bg-05.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.oem-notice::before {
  content: "";
  position: absolute;
  top: 20%;
  right: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(156, 140, 122, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.oem-notice__content {
  max-width: 1100px;
  margin: 3rem auto 0;
  position: relative;
  z-index: 1;
}

.oem-notice__group {
  background: linear-gradient(135deg, #ffffff 0%, #fdfcf9 100%);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(92, 78, 66, 0.12);
  margin-bottom: 2.5rem;
  border-left: 6px solid #9c8c7a;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.oem-notice__group::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(156, 140, 122, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.oem-notice__group:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 30px rgba(92, 78, 66, 0.18);
}

.oem-notice__group-title {
  font-size: 1.625rem;
  font-weight: 700;
  color: #5c4e42;
  margin-bottom: 2rem;
  font-family: "Noto Serif TC", serif;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.oem-notice__group-title::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #9c8c7a;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(156, 140, 122, 0.2);
}

.oem-notice__list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.oem-notice__list li {
  margin-bottom: 1.5rem;
  color: #6b5d52;
  line-height: 1.8;
  font-size: 1.0625rem;
  padding-left: 2rem;
  position: relative;
}

.oem-notice__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #9c8c7a;
  font-weight: bold;
  font-size: 1.25rem;
}

.oem-notice__list li strong {
  color: #5c4e42;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(156, 140, 122, 0.1) 0%, rgba(156, 140, 122, 0.05) 100%);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

/* 從研發到行銷的全程支持 */
.oem-full-support{
  background: url("../images/primary/bg-03.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.oem-full-support__subtitle {
  font-size: 1.25rem;
  color: #6b5d52;
  margin-top: 1rem;
  margin-bottom: 4rem;
  text-align: center;
  font-weight: 500;
  line-height: 1.8;
}

.oem-full-support__list {
  max-width: 900px;
  margin: 0 auto 4rem;
}

.oem-full-support__item {
  display: flex;
  align-items: flex-start;
  background: linear-gradient(135deg, #ffffff 0%, #fdfcf9 100%);
  padding: 2rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(92, 78, 66, 0.1);
  margin-bottom: 1.25rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.oem-full-support__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #9c8c7a 0%, #7d6e5f 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.oem-full-support__item:hover {
  transform: translateX(12px) scale(1.02);
  box-shadow: 0 8px 30px rgba(92, 78, 66, 0.18);
  border-color: #9c8c7a;
}

.oem-full-support__item:hover::before {
  opacity: 1;
}

.oem-full-support__number {
  font-size: 2rem;
  font-weight: 700;
  color: #9c8c7a;
  margin-right: 2rem;
  flex-shrink: 0;
  font-family: "Noto Serif TC", serif;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(156, 140, 122, 0.1) 0%, rgba(156, 140, 122, 0.05) 100%);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.oem-full-support__item:hover .oem-full-support__number {
  background: linear-gradient(135deg, #9c8c7a 0%, #7d6e5f 100%);
  color: #ffffff;
  transform: scale(1.1);
}

.oem-full-support__text {
  font-size: 1.0625rem;
  color: #6b5d52;
  line-height: 1.8;
  flex: 1;
  padding-top: 0.5rem;
}

.oem-full-support__highlight {
  background: linear-gradient(135deg, #fff8f0 0%, #fdfcf9 100%);
  padding: 3.5rem 3rem;
  border-radius: 20px;
  text-align: center;
  border: 3px solid #9c8c7a;
  box-shadow: 0 8px 40px rgba(92, 78, 66, 0.15);
  position: relative;
  overflow: hidden;
}

.oem-full-support__highlight-title {
  font-size: 2rem;
  font-weight: 700;
  color: #5c4e42;
  margin-bottom: 2rem;
  font-family: "Noto Serif TC", serif;
  position: relative;
  z-index: 1;
}

.oem-full-support__highlight-text {
  font-size: 1.25rem;
  color: #6b5d52;
  line-height: 2;
  position: relative;
  z-index: 1;
}

/* RWD 響應式設計 */
@media (max-width: 1024px) {
  .oem-process-flow__timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .oem-process-flow__timeline::before {
    display: none;
  }

  .oem-dosage-types {
    grid-template-columns: 1fr;
  }

  .oem-value-points__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .oem-mode-row__main {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .oem-mode-row__name {
    font-size: 1.125rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(92, 78, 66, 0.1);
  }

  .oem-mode-row.active .oem-mode-row__name {
    border-bottom-color: rgba(255, 255, 255, 0.3);
  }

  .oem-mode-row__target::before {
    content: "適合對象：";
    font-weight: 600;
    margin-right: 0.5rem;
  }

  .oem-mode-row__feature::before {
    content: "特點：";
    font-weight: 600;
    margin-right: 0.5rem;
  }

  .oem-mode-row__moq::before {
    content: "MOQ：";
    font-weight: 600;
    margin-right: 0.5rem;
  }

  .oem-mode-row__time::before {
    content: "交期：";
    font-weight: 600;
    margin-right: 0.5rem;
  }

  .oem-mode-row__moq,
  .oem-mode-row__time {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .oem-brand-core__text {
    font-size: 1rem;
  }

  .oem-dosage-type {
    padding: 2rem 1.5rem;
  }

  .oem-dosage-type__title {
    font-size: 1.125rem;
  }

  .oem-value-points__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .oem-value-point__card {
    padding: 2.5rem 2rem;
  }

  .oem-value-point__icon {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
  }

  .oem-value-points__highlight,
  .oem-value-points__info {
    padding: 2rem 1.5rem;
  }

  .oem-mode-row {
    margin-bottom: 1.5rem;
  }

  .oem-mode-row__header {
    padding: 1.5rem 1.25rem;
  }

  .oem-mode-row__main {
    gap: 0.75rem;
  }

  .oem-mode-row__name {
    font-size: 1.125rem;
  }

  .oem-mode-row__target,
  .oem-mode-row__feature,
  .oem-mode-row__moq,
  .oem-mode-row__time {
    font-size: 0.9375rem;
  }

  .oem-mode-row__icon {
    margin-left: 1rem;
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
  }

  .oem-mode-row__body {
    padding: 2rem 1.5rem;
  }

  .oem-process-flow__timeline {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .oem-process-flow__timeline::before {
    display: none;
  }

  .oem-process-flow__step {
    padding-top: 0;
  }

  .oem-process-flow__step::before {
    display: none;
  }

  .oem-process-flow__step-number {
    display: block;
  }

  .oem-process-flow__step-content {
    padding: 2rem 1.5rem;
    min-height: 160px;
  }

  .oem-notice__group {
    padding: 2rem 1.5rem;
  }

  .oem-notice__group-title {
    font-size: 1.375rem;
  }

  .oem-notice__list li {
    font-size: 1rem;
    padding-left: 1.75rem;
  }

  .oem-full-support__item {
    padding: 1.5rem 1.25rem;
    margin-bottom: 1rem;
  }

  .oem-full-support__number {
    font-size: 1.5rem;
    margin-right: 1.25rem;
    width: 45px;
    height: 45px;
  }

  .oem-full-support__text {
    font-size: 1rem;
  }

  .oem-full-support__highlight {
    padding: 2.5rem 2rem;
  }

  .oem-full-support__highlight-title {
    font-size: 1.625rem;
  }

  .oem-full-support__highlight-text {
    font-size: 1.0625rem;
  }
}

/* ===========================
   聯絡頁面 Contact Page
   =========================== */
.contact-page {
  padding: 4rem 0;
  background-color: #fdfcf9;
}

.contact-page__inner {
  max-width: 1400px;
}

.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-page__section-title {
  font-size: clamp(1.5rem, 2vw, 1.875rem);
  font-weight: 700;
  color: #5c4e42;
  margin-bottom: 1rem;
  font-family: "Noto Serif TC", serif;
}

.contact-page__section-desc {
  font-size: 1rem;
  color: #6b5d52;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* 表單樣式 */
.contact-page__form-wrapper {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(92, 78, 66, 0.08);
}

.contact-page__form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.contact-page__field {
  display: flex;
  flex-direction: column;
}

.contact-page__field--full {
  grid-column: 1 / -1;
}

.contact-page__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #5c4e42;
  margin-bottom: 0.5rem;
}

.contact-page__label .required {
  color: #c7856f;
}

.contact-page__input,
.contact-page__textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #ddd5cc;
  border-radius: 8px;
  font-size: 1rem;
  color: #3f3c3c;
  background-color: #fdfcf9;
  transition: all 0.3s ease;
  font-family: inherit;
}

select.contact-page__input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235c4e42' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-page__input:focus,
.contact-page__textarea:focus {
  outline: none;
  border-color: #9c8c7a;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(156, 140, 122, 0.1);
}

.contact-page__textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.contact-page__submit {
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #9c8c7a 0%, #7d6e5f 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.contact-page__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(92, 78, 66, 0.25);
  background: linear-gradient(135deg, #8a7a6a 0%, #6d5e4f 100%);
}

.contact-page__submit i {
  font-size: 1rem;
}

/* 聯絡資訊樣式 */
.contact-page__info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-page__info {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(92, 78, 66, 0.08);
}

.contact-page__info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-page__info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background-color: #fdfcf9;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-page__info-item:hover {
  background-color: #f5f1ec;
  transform: translateX(4px);
}

.contact-page__info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #9c8c7a 0%, #7d6e5f 100%);
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.25rem;
}

.contact-page__info-content {
  flex: 1;
}

.contact-page__info-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #9c8c7a;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-page__info-value {
  font-size: 1.1rem;
  color: #3f3c3c;
  line-height: 1.6;
}

.contact-page__info-value a {
  color: #5c4e42;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-page__info-value a:hover {
  color: #9c8c7a;
}

/* 社群連結 */
.contact-page__social {
  padding-top: 2rem;
  border-top: 1px solid #efe9e1;
}

.contact-page__social-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #5c4e42;
  margin-bottom: 1rem;
}

.contact-page__social-links {
  display: flex;
  gap: 1rem;
}

.contact-page__social-link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fdfcf9;
  border: 2px solid #ddd5cc;
  border-radius: 50%;
  color: #5c4e42;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-page__social-link:hover {
  background: linear-gradient(135deg, #9c8c7a 0%, #7d6e5f 100%);
  border-color: #9c8c7a;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(92, 78, 66, 0.2);
}

/* 地圖樣式 */
.contact-page__map {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(92, 78, 66, 0.08);
}

.contact-page__map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(92, 78, 66, 0.1);
}

.contact-page__map-wrapper iframe {
  display: block;
  width: 100%;
  min-height: 400px;
}

/* RWD 響應式設計 */
@media (max-width: 1024px) {
  .contact-page__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 767px) {
  .contact-page {
    padding: 2.5rem 0;
  }

  .contact-page__form-wrapper,
  .contact-page__info,
  .contact-page__map {
    padding: 1.5rem;
  }

  .contact-page__section-title {
    font-size: 1.5rem;
  }

  .contact-page__submit {
    width: 100%;
    padding: 1rem;
  }

  .contact-page__info-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .contact-page__info-value {
    font-size: 1rem;
  }

  .contact-page__social-link {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }

  .contact-page__map-wrapper iframe {
    min-height: 300px;
  }
}

/* ===========================
   下載頁面 Download Page
   =========================== */
.download-page {
  padding: 4rem 0;
  background-color: #fdfcf9;
}

.download-page__inner {
  max-width: 1200px;
}

.download-page__intro {
  text-align: center;
  margin-bottom: 3rem;
}

.download-page__title {
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #5c4e42;
  margin-bottom: 1rem;
  font-family: "Noto Serif TC", serif;
  letter-spacing: 0.05em;
}

.download-page__desc {
  font-size: 1.125rem;
  color: #6b5d52;
  line-height: 1.6;
}

/* 下載列表 */
.download-list {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(92, 78, 66, 0.08);
  overflow: hidden;
}

.download-item {
  display: grid;
  grid-template-columns: 280px 1fr 200px;
  align-items: center;
  padding: 2rem 2.5rem;
  border-bottom: 1px solid #efe9e1;
  transition: all 0.3s ease;
  gap: 2rem;
}

.download-item:last-child {
  border-bottom: none;
}

.download-item:hover {
  background-color: #fdfcf9;
}

.download-item--highlight {
  background: linear-gradient(135deg, #f5f1ec 0%, #fdfcf9 100%);
  border: 2px solid #9c8c7a;
  border-left: 6px solid #9c8c7a;
}

.download-item--highlight:hover {
  background: linear-gradient(135deg, #efe9e1 0%, #f5f1ec 100%);
  transform: translateX(4px);
}

/* 檔案類型 */
.download-item__type {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  color: #5c4e42;
  font-size: 1.125rem;
}

.download-item__type i {
  font-size: 2rem;
  color: #9c8c7a;
}

.download-item--highlight .download-item__type i {
  color: #7d6e5f;
  font-size: 2.25rem;
}

/* 說明文字 */
.download-item__desc {
  font-size: 1rem;
  color: #6b5d52;
  line-height: 1.7;
}

/* 下載按鈕 */
.download-item__action {
  display: flex;
  justify-content: flex-end;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.download-btn i {
  font-size: 1rem;
}

.download-btn--pdf,
.download-btn--docx {
  background: linear-gradient(135deg, #9c8c7a 0%, #7d6e5f 100%);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(92, 78, 66, 0.25);
}

.download-btn--pdf:hover,
.download-btn--docx:hover {
  background: linear-gradient(135deg, #8a7a6a 0%, #6d5e4f 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(92, 78, 66, 0.35);
}

.download-btn--zip {
  background: linear-gradient(135deg, #9c8c7a 0%, #7d6e5f 100%);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(92, 78, 66, 0.25);
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.download-btn--zip:hover {
  background: linear-gradient(135deg, #8a7a6a 0%, #6d5e4f 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(92, 78, 66, 0.35);
}

/* 注意事項 */
.download-notice {
  display: flex;
  gap: 1.5rem;
  background: #fff8f0;
  border: 1px solid #f0e6d8;
  border-left: 4px solid #c7856f;
  border-radius: 8px;
  padding: 2rem;
  margin-top: 3rem;
}

.download-notice__icon {
  flex-shrink: 0;
}

.download-notice__icon i {
  font-size: 2rem;
  color: #c7856f;
}

.download-notice__content {
  flex: 1;
}

.download-notice__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #5c4e42;
  margin-bottom: 1rem;
  font-family: "Noto Serif TC", serif;
}

.download-notice__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.download-notice__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #6b5d52;
  line-height: 1.6;
}

.download-notice__list li:last-child {
  margin-bottom: 0;
}

.download-notice__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c7856f;
  font-weight: bold;
}

.download-notice__list a {
  color: #9c8c7a;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.download-notice__list a:hover {
  color: #7d6e5f;
}

/* CTA 區塊 */
.download-cta {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #f5f1ec 0%, #fdfcf9 100%);
  border-radius: 12px;
  margin-top: 3rem;
}

.download-cta__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #5c4e42;
  margin-bottom: 1rem;
  font-family: "Noto Serif TC", serif;
}

.download-cta__desc {
  font-size: 1.125rem;
  color: #6b5d52;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.download-cta__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.download-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.download-cta__btn--primary {
  background: linear-gradient(135deg, #9c8c7a 0%, #7d6e5f 100%);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(92, 78, 66, 0.25);
}

.download-cta__btn--primary:hover {
  background: linear-gradient(135deg, #8a7a6a 0%, #6d5e4f 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(92, 78, 66, 0.35);
}

.download-cta__btn--secondary {
  background: #ffffff;
  color: #5c4e42;
  border: 2px solid #9c8c7a;
  box-shadow: 0 2px 8px rgba(92, 78, 66, 0.1);
}

.download-cta__btn--secondary:hover {
  background: #9c8c7a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(92, 78, 66, 0.25);
}

/* RWD 響應式設計 */
@media (max-width: 1024px) {
  .download-item {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }

  .download-item__action {
    justify-content: flex-start;
  }

  .download-btn {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .download-page {
    padding: 2.5rem 0;
  }

  .download-page__intro {
    margin-bottom: 2rem;
  }

  .download-item {
    padding: 1.5rem 1rem;
  }

  .download-item__type {
    font-size: 1rem;
  }

  .download-item__type i {
    font-size: 1.5rem;
  }

  .download-item--highlight .download-item__type i {
    font-size: 1.75rem;
  }

  .download-item__desc {
    font-size: 0.9375rem;
  }

  .download-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
  }

  .download-notice {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
  }

  .download-notice__icon i {
    font-size: 1.5rem;
  }

  .download-cta {
    padding: 2rem 1.5rem;
  }

  .download-cta__buttons {
    flex-direction: column;
  }

  .download-cta__btn {
    width: 100%;
  }
}

/* 浮動 LINE 按鈕 (桌面版) */
.floating-line-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #06C755;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 2rem;
  box-shadow: 0 4px 20px rgba(6, 199, 85, 0.4);
  transition: all 0.3s ease;
  z-index: 999;
  text-decoration: none;
}

.floating-line-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 6px 30px rgba(6, 199, 85, 0.6);
  background: #06C755;
  color: #ffffff !important;
}

.floating-line-btn i {
  line-height: 1;
}

/* 手機版固定底部按鈕條 */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.mobile-bottom-bar__btn {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: #5c4e42;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-right: 1px solid #e5e7eb;
}

.mobile-bottom-bar__btn:last-child {
  border-right: none;
}

.mobile-bottom-bar__btn i {
  font-size: 1.25rem;
  line-height: 1;
}

.mobile-bottom-bar__btn--line {
  background: #06C755;
  color: #ffffff !important;
}

.mobile-bottom-bar__btn:active {
  background: #f3f4f6;
}

.mobile-bottom-bar__btn--line:active {
  background: #05b34c;
}

/* 手機版顯示 */
@media (max-width: 768px) {
  .floating-line-btn {
    display: none;
  }

  .mobile-bottom-bar {
    display: flex;
  }

  /* 為了避免內容被底部按鈕擋住，給 body 添加 padding */
  body {
    padding-bottom: 60px;
  }
}
