@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+TC:wght@200..900&display=swap");
:root {
  font-size: clamp(16px, 2.8vw, 18px);
}

h1 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 1.7rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.35rem);
  font-weight: 500;
}

h4 {
  font-size: clamp(1.2rem, 2vw, 1.3rem);
  font-weight: 500;
}

h5 {
  font-size: clamp(1.125rem, 1.7vw, 1.2rem);
  font-weight: 400;
}

h6 {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
}

p,
a,
span {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.6;
}

small {
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  font-weight: 400;
}

li {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.5;
}

button,
input,
textarea,
select {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.4;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans TC", sans-serif;
  background-color: #f7f4f1;
  color: #3e2f2a;
  line-height: 1.8;
  font-size: 16px;
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("../images/assets/bg.avif") no-repeat center center/cover;
  z-index: -1;
  opacity: 0.8;
}

.section-h2 {
  font-family: "Noto Serif TC", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #8b6b5a;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.section-h2 .h2-paw-left,
.section-h2 .h2-paw-right {
  color: #c7a27c;
  font-size: 1.2rem;
  opacity: 0.7;
}
.section-h2 .h2-paw-left i,
.section-h2 .h2-paw-right i {
  font-size: 1.2rem;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

section {
  padding: 8rem 0;
}
@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
}

.section-label {
  display: inline-block;
  font-family: "Noto Serif TC", serif;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: #c7a27c;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  position: relative;
  padding: 0 1rem;
}
.section-label::before, .section-label::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 1px;
  background: #c7a27c;
}
.section-label::before {
  right: 100%;
  margin-right: -1rem;
}
.section-label::after {
  left: 100%;
  margin-left: -1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: rgb(181.328125, 122.03125, 98.671875);
  margin-top: 0.5rem;
  font-family: "Noto Sans TC", sans-serif;
  letter-spacing: 0.05em;
}

.btn {
  font-family: "Noto Sans TC", sans-serif;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-size: 0.95rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
}

#mainNav {
  background: rgba(247, 244, 241, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(214, 181, 168, 0.25);
  padding: 0 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}
@media (max-width: 768px) {
  #mainNav {
    padding: 0.6rem 0;
  }
}
#mainNav.scrolled {
  background: rgba(247, 244, 241, 0.98);
  box-shadow: 0 4px 20px rgba(62, 47, 42, 0.08);
  padding: 0.6rem 0;
}
#mainNav .navbar-logo {
  width: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  #mainNav .navbar-logo {
    width: 38px;
    height: 38px;
  }
}
#mainNav .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
#mainNav .brand-text .brand-zh {
  font-family: "Noto Serif TC", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #8b6b5a;
  letter-spacing: 0.1em;
}
#mainNav .brand-text .brand-sub {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 0.65rem;
  color: rgb(189.49609375, 136.7734375, 116.00390625);
  letter-spacing: 0.12em;
  font-weight: 400;
}
#mainNav .brand-text .brand-en {
  font-family: "Noto Serif TC", serif;
  font-size: 0.5rem;
  color: #c7a27c;
  letter-spacing: 0.2em;
  font-style: italic;
  font-weight: 300;
}
#mainNav .nav-link {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 0.9rem;
  color: #3e2f2a;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.9rem;
  position: relative;
  font-weight: 400;
}
#mainNav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: #c7a27c;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
#mainNav .nav-link:hover {
  color: #8b6b5a;
}
#mainNav .nav-link:hover::after {
  width: 60%;
}
#mainNav .nav-cta {
  background: #8b6b5a;
  color: #ffffff !important;
  border-radius: 50px;
  padding: 0.45rem 1.4rem;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.05em;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(139, 107, 90, 0.28);
}
#mainNav .nav-cta::after {
  display: none;
}
#mainNav .nav-cta i {
  font-size: 1rem;
}
#mainNav .nav-cta:hover {
  background: rgb(114.2349344978, 87.9362445415, 73.9650655022);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(139, 107, 90, 0.38);
}
#mainNav .navbar-toggler {
  border: 1px solid #d6b5a8;
  border-radius: 10px;
  padding: 0.3rem 0.6rem;
}
#mainNav .navbar-toggler:focus {
  box-shadow: none;
}
#mainNav .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%238B6B5A' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
@media (max-width: 991px) {
  #mainNav .navbar-collapse {
    background: rgba(247, 244, 241, 0.98);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 0.5rem;
    border: 1px solid rgba(214, 181, 168, 0.3);
  }
}

#hero {
  margin-top: 91.25px;
  position: relative;
  height: 60vh;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  #hero {
    margin-top: 73px;
    height: 40vh;
    height: auto;
  }
}
#hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#hero .hero-bg .hero-swiper,
#hero .hero-bg .swiper-wrapper,
#hero .hero-bg .swiper-slide {
  width: 100%;
  height: 100%;
}
#hero .hero-bg .swiper-slide {
  overflow: hidden;
}
#hero .hero-bg .hero-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  -o-object-position: right;
     object-position: right;
  transform: translateX(15rem);
  display: block;
}
@media (max-width: 991px) {
  #hero .hero-bg .hero-img {
    transform: none;
    -o-object-position: center;
       object-position: center;
  }
}
#hero .hero-bg .hero-swiper-pagination {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
#hero .hero-bg .hero-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.6);
  opacity: 1;
}
#hero .hero-bg .hero-swiper-pagination .swiper-pagination-bullet-active {
  background: #ffffff;
}
#hero .hero-bg .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to right, white 30%, rgba(247, 244, 241, 0) 100%);
}
@media (max-width: 991px) {
  #hero .hero-bg .hero-overlay {
    background: linear-gradient(180deg, rgba(247, 244, 241, 0.88) 0%, rgba(247, 244, 241, 0.65) 100%);
  }
}
#hero .container {
  position: relative;
  z-index: 3;
  flex: 1;
  padding: 2rem 0;
}
#hero .hero-content {
  padding: 2rem 0 0;
}
@media (max-width: 768px) {
  #hero .hero-content {
    padding: 0 2rem;
  }
}
#hero .hero-en-title {
  font-family: "Noto Serif TC", serif;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: #c7a27c;
  font-style: italic;
  margin-bottom: 0.5rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  #hero .hero-en-title {
    font-size: 0.75rem;
  }
}
#hero h1.hero-title {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
#hero h1.hero-title .hero-title-main {
  font-family: "Noto Serif TC", serif;
  font-size: clamp(1.5rem, 4vw, 4rem);
  font-weight: 900;
  color: #8b6b5a;
  letter-spacing: 0.05em;
}
#hero h1.hero-title .hero-title-sub {
  font-family: "Noto Serif TC", serif;
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  font-weight: 400;
  color: rgb(172.98046875, 107.3671875, 81.51953125);
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  #hero h1.hero-title .hero-title-sub {
    display: block;
    width: 100%;
  }
}
#hero .hero-tagline {
  font-family: "Noto Serif TC", serif;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: #8b6b5a;
  letter-spacing: 0.15em;
  font-weight: 500;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}
#hero .hero-desc {
  margin-bottom: 2rem;
}
#hero .hero-desc p {
  font-size: 0.95rem;
  color: rgb(46.7980769231, 35.4759615385, 31.7019230769);
  line-height: 1.9;
  margin-bottom: 0.5rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  #hero .hero-desc p {
    font-size: 0.9rem;
  }
}
#hero .hero-desc .hero-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0.75rem;
  padding: 0.4rem 1.2rem;
  background: rgba(255, 123, 147, 0.08);
  border: 1px solid rgba(255, 123, 147, 0.25);
  border-radius: 50rem;
  color: #8b6b5a;
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(255, 123, 147, 0.05);
  transition: all 0.3s ease;
}
#hero .hero-desc .hero-price-badge strong {
  color: #d1566e;
  font-size: 1.1rem;
  font-family: "Noto Serif TC", serif;
  margin: 0 0.15rem;
}
#hero .hero-desc .hero-price-badge i {
  color: #ff7b93;
  font-size: 1.1rem;
  animation: heart-beat 2.5s infinite ease-in-out;
}
#hero .hero-desc .hero-price-badge:hover {
  background: rgba(255, 123, 147, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 123, 147, 0.08);
}
@keyframes heart-beat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}
#hero .hero-actions .btn-hero-primary {
  background: #8b6b5a;
  color: #ffffff;
  box-shadow: 0 6px 24px rgba(139, 107, 90, 0.32);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
#hero .hero-actions .btn-hero-primary i {
  font-size: 1.1rem;
}
#hero .hero-actions .btn-hero-primary:hover {
  background: rgb(108.0436681223, 83.1703056769, 69.9563318777);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(139, 107, 90, 0.42);
}
#hero .hero-actions .btn-hero-line {
  background: rgba(255, 255, 255, 0.85);
  color: #8b6b5a;
  border: 1.5px solid rgba(139, 107, 90, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  backdrop-filter: blur(8px);
}
#hero .hero-actions .btn-hero-line .line-icon-sm {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
}
#hero .hero-actions .btn-hero-line:hover {
  background: #ffffff;
  border-color: rgba(139, 107, 90, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(62, 47, 42, 0.08);
}

.hero-values {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(214, 181, 168, 0.3);
  position: relative;
  padding: 1rem 0;
}
@media (max-width: 768px) {
  .hero-values {
    position: relative;
    background: #efe9e4;
  }
}
.hero-values .value-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.3rem 1.5rem;
  border-right: 1px solid rgba(214, 181, 168, 0.25);
}
@media (max-width: 767px) {
  .hero-values .value-item {
    padding: 1rem;
    border-right: none;
    border-bottom: 1px solid rgba(214, 181, 168, 0.2);
  }
}
.hero-values .value-item i {
  font-size: 1.6rem;
  color: #c7a27c;
  flex-shrink: 0;
}
.hero-values .value-item .value-title {
  font-family: "Noto Serif TC", serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #8b6b5a;
  margin: 0;
  letter-spacing: 0.05em;
}
.hero-values .value-item .value-desc {
  font-size: 0.76rem;
  color: rgb(181.328125, 122.03125, 98.671875);
  margin: 0;
  letter-spacing: 0.03em;
}
.hero-values .col-6:last-child .value-item,
.hero-values .col-md-3:last-child .value-item {
  border-right: none;
}

#about {
  background: rgba(247, 244, 241, 0.8);
}
#about .about-swiper-wrap {
  position: relative;
}
#about .about-swiper-wrap .aboutSwiper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(62, 47, 42, 0.18);
}
#about .about-swiper-wrap .aboutSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#about .about-swiper-wrap .aboutSwiper .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.6;
}
#about .about-swiper-wrap .aboutSwiper .swiper-pagination-bullet-active {
  background: #ffffff;
  opacity: 1;
}
#about .about-swiper-wrap .about-paw-deco {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 64px;
  height: 64px;
  background: #c7a27c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 40px rgba(62, 47, 42, 0.14);
  z-index: 2;
}
@media (max-width: 991px) {
  #about .about-swiper-wrap .about-paw-deco {
    display: none;
  }
}
#about .about-swiper-wrap .about-paw-deco i {
  font-size: 1.8rem;
  color: #ffffff;
}
#about .about-content {
  padding-left: 2rem;
}
@media (max-width: 991px) {
  #about .about-content {
    padding-left: 0;
  }
}
#about .about-content .about-h2 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
#about .about-content .about-h2 .h2-main {
  font-family: "Noto Serif TC", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: #8b6b5a;
  letter-spacing: 0.05em;
  display: block;
}
#about .about-content .about-h2 .h2-deco-line {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #c7a27c, transparent);
  border-radius: 2px;
}
#about .about-content .about-text p {
  font-size: 1rem;
  color: #3e2f2a;
  margin-bottom: 0.9rem;
  line-height: 1.95;
  font-weight: 300;
}
@media (max-width: 768px) {
  #about .about-content .about-text p {
    font-size: 0.93rem;
  }
}
#about .about-content .about-text .about-lead {
  font-family: "Noto Serif TC", serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #8b6b5a;
  margin-bottom: 1.2rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  #about .about-content .about-text .about-lead {
    font-size: 1rem;
  }
}
#about .about-content .about-text .about-motto {
  font-family: "Noto Serif TC", serif;
  font-size: 1rem;
  color: rgb(181.328125, 122.03125, 98.671875);
  font-style: italic;
  background: rgba(232, 217, 201, 0.4);
  padding: 1rem 1.25rem;
  border-radius: 10px;
  letter-spacing: 0.05em;
}
#about .about-content .btn-about {
  background: transparent;
  border: 1.5px solid #8b6b5a;
  color: #8b6b5a;
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.65rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 500;
}
#about .about-content .btn-about i {
  font-size: 1rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
#about .about-content .btn-about:hover {
  background: #8b6b5a;
  color: #ffffff;
}
#about .about-content .btn-about:hover i {
  transform: translateX(4px);
}

#services .services-h2 {
  font-family: "Noto Serif TC", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #8b6b5a;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
#services .services-h2 .h2-paw-left,
#services .services-h2 .h2-paw-right {
  color: #c7a27c;
  font-size: 1.2rem;
  opacity: 0.7;
}
#services .services-h2 .h2-paw-left i,
#services .services-h2 .h2-paw-right i {
  font-size: 1.2rem;
}
#services .service-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(62, 47, 42, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}
#services .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 60px rgba(62, 47, 42, 0.18);
}
#services .service-card:hover .service-img-wrap img {
  transform: scale(1.06);
}
#services .service-card .service-img-wrap {
  position: relative;
  width: 100%;
  height: 350px;
}
@media (max-width: 768px) {
  #services .service-card .service-img-wrap {
    height: 150px;
  }
}
#services .service-card .service-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
#services .service-card .service-img-wrap .service-icon-badge {
  position: absolute;
  bottom: -18px;
  left: 1.25rem;
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(139, 107, 90, 0.18);
  border: 2px solid rgba(214, 181, 168, 0.4);
}
#services .service-card .service-img-wrap .service-icon-badge i {
  font-size: 1.1rem;
  color: #c7a27c;
}
#services .service-card .service-body {
  padding: 1.75rem 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
#services .service-card .service-body h3 {
  font-family: "Noto Serif TC", serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #8b6b5a;
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}
#services .service-card .service-body p {
  font-size: 0.88rem;
  color: rgb(181.328125, 122.03125, 98.671875);
  line-height: 1.8;
  margin: 0;
  font-weight: 300;
  flex: 1;
}
#services .btn-more-services {
  background: #8b6b5a;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.75rem 2.5rem;
  box-shadow: 0 6px 24px rgba(139, 107, 90, 0.28);
}
#services .btn-more-services i {
  font-size: 1rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
#services .btn-more-services:hover {
  background: rgb(114.2349344978, 87.9362445415, 73.9650655022);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(139, 107, 90, 0.38);
}
#services .btn-more-services:hover i {
  transform: translateX(4px);
}

#products {
  background: rgba(255, 255, 255, 0.55);
}
#products .products-swiper-wrap {
  position: relative;
}
#products .productsSwiper {
  padding: 0.5rem 0 3.5rem;
}
#products .product-photo-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(62, 47, 42, 0.08);
  background: #ffffff;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
#products .product-photo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 60px rgba(62, 47, 42, 0.18);
}
#products .product-photo-card:hover img {
  transform: scale(1.04);
}
#products .product-photo-card img {
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
@media (max-width: 768px) {
  #products .product-photo-card img {
    height: 320px;
  }
}

.product-photo-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(62, 47, 42, 0.08);
  background: #ffffff;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-photo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 60px rgba(62, 47, 42, 0.18);
}
.product-photo-card:hover img {
  transform: scale(1.04);
}
.product-photo-card img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.products-swiper-pagination {
  bottom: 0 !important;
}
.products-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(139, 107, 90, 0.3);
  opacity: 1;
}
.products-swiper-pagination .swiper-pagination-bullet-active {
  background: #c7a27c;
}

.products-swiper-prev,
.products-swiper-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 20px rgba(62, 47, 42, 0.08);
  color: #8b6b5a;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.products-swiper-prev::after,
.products-swiper-next::after {
  font-size: 1rem;
  font-weight: 700;
}
.products-swiper-prev:hover,
.products-swiper-next:hover {
  background: #8b6b5a;
  color: #ffffff;
}
@media (max-width: 768px) {
  .products-swiper-prev,
  .products-swiper-next {
    display: none;
  }
}

#dm {
  background: rgba(255, 255, 255, 0.35);
}
#dm .dm-photo-card {
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(62, 47, 42, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
#dm .dm-photo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 60px rgba(62, 47, 42, 0.18);
}
#dm .dm-photo-card:hover img {
  transform: scale(1.03);
}
#dm .dm-photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

#process {
  background: rgba(247, 244, 241, 0.8);
  overflow: hidden;
}
#process .process-h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
}
#process .process-h2 .h2-main {
  font-family: "Noto Serif TC", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #8b6b5a;
  letter-spacing: 0.08em;
  display: block;
  position: relative;
  z-index: 1;
}
#process .process-h2::before {
  content: "PROCESS";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Noto Serif TC", serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(232, 217, 201, 0.6);
  letter-spacing: 0.2em;
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 768px) {
  #process .process-h2::before {
    font-size: 2.5rem;
  }
}
#process .process-timeline {
  margin-top: 3rem;
  position: relative;
}
#process .process-timeline::before {
  content: "";
  position: absolute;
  top: 52px;
  left: calc(10% + 16px);
  right: calc(10% + 16px);
  height: 1px;
  background: linear-gradient(90deg, transparent, #d6b5a8, #d6b5a8, transparent);
  z-index: 0;
}
@media (max-width: 991px) {
  #process .process-timeline::before {
    display: none;
  }
}
#process .process-step {
  position: relative;
  text-align: center;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  #process .process-step {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 1.25rem;
    padding: 0 0 2rem 0;
    border-left: 1.5px solid rgba(214, 181, 168, 0.5);
    margin-left: 1.5rem;
    padding-left: 1.75rem;
  }
}
#process .process-step .step-number {
  font-family: "Noto Serif TC", serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: #c7a27c;
  margin-bottom: 0.75rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  #process .process-step .step-number {
    display: none;
  }
}
#process .process-step .step-icon {
  width: 64px;
  height: 64px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 20px rgba(62, 47, 42, 0.08);
  border: 2px solid rgba(214, 181, 168, 0.4);
  position: relative;
  z-index: 1;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
#process .process-step .step-icon i {
  font-size: 1.5rem;
  color: #c7a27c;
}
@media (max-width: 768px) {
  #process .process-step .step-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    margin: 0;
  }
  #process .process-step .step-icon i {
    font-size: 1.2rem;
  }
}
#process .process-step:hover .step-icon {
  background: #8b6b5a;
  border-color: #8b6b5a;
  transform: scale(1.08);
}
#process .process-step:hover .step-icon i {
  color: #ffffff;
}
@media (max-width: 768px) {
  #process .process-step .step-content {
    flex: 1;
  }
}
#process .process-step .step-content h3 {
  font-family: "Noto Serif TC", serif;
  font-size: 1rem;
  font-weight: 700;
  color: #8b6b5a;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  #process .process-step .step-content h3 {
    font-size: 1rem;
  }
}
#process .process-step .step-content p {
  font-size: 0.85rem;
  color: rgb(181.328125, 122.03125, 98.671875);
  line-height: 1.75;
  margin: 0;
  font-weight: 300;
}
@media (max-width: 768px) {
  #process .process-step::before {
    content: "";
    position: absolute;
    left: -6px;
    top: 16px;
    width: 10px;
    height: 10px;
    background: #c7a27c;
    border-radius: 50%;
    border: 2px solid #f7f4f1;
  }
}
@media (max-width: 768px) {
  #process .last-step {
    border-left-color: transparent;
  }
}

.auto-carousel {
  padding: 0;
}
.auto-carousel .swiper {
  width: 100%;
  transform: rotate(0deg);
  position: relative;
}
.auto-carousel .swiper .swiper-wrapper {
  transition-timing-function: linear !important; /* 平滑線性移動 */
}
.auto-carousel .swiper .swiper-slide {
  width: 600px;
  aspect-ratio: 3/2;
}
@media (max-width: 768px) {
  .auto-carousel .swiper .swiper-slide {
    width: 300px;
  }
}
.auto-carousel .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

#contact .contact-h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
}
#contact .contact-h2 .h2-main {
  font-family: "Noto Serif TC", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #8b6b5a;
  letter-spacing: 0.08em;
  display: block;
  position: relative;
  z-index: 1;
}
#contact .contact-h2::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, #c7a27c, transparent);
  border-radius: 2px;
  margin: 0.5rem auto 0;
}
#contact .contact-info-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px rgba(62, 47, 42, 0.08);
  border: 1px solid rgba(214, 181, 168, 0.25);
}
#contact .contact-info-card .contact-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}
#contact .contact-info-card .contact-logo img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #d6b5a8;
}
#contact .contact-info-card .contact-logo .contact-brand {
  display: flex;
  flex-direction: column;
}
#contact .contact-info-card .contact-logo .contact-brand .brand-zh-lg {
  font-family: "Noto Serif TC", serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #8b6b5a;
  letter-spacing: 0.1em;
  line-height: 1;
}
#contact .contact-info-card .contact-logo .contact-brand .brand-sub-sm {
  font-size: 0.7rem;
  color: rgb(189.49609375, 136.7734375, 116.00390625);
  letter-spacing: 0.12em;
  margin-top: 2px;
}
#contact .contact-info-card .contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#contact .contact-info-card .contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(214, 181, 168, 0.2);
}
#contact .contact-info-card .contact-list li:last-child {
  border-bottom: none;
}
#contact .contact-info-card .contact-list li > i,
#contact .contact-info-card .contact-list li .line-icon-wrap {
  font-size: 1.25rem;
  color: #c7a27c;
  flex-shrink: 0;
  margin-top: 2px;
  width: 24px;
}
#contact .contact-info-card .contact-list li .line-icon-wrap svg {
  width: 24px;
  height: 24px;
  fill: #c7a27c;
  display: block;
}
#contact .contact-info-card .contact-list li > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
#contact .contact-info-card .contact-list li > div .contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgb(189.49609375, 136.7734375, 116.00390625);
  font-weight: 500;
  text-transform: uppercase;
}
#contact .contact-info-card .contact-list li > div a {
  font-size: 0.95rem;
  color: #3e2f2a;
  font-weight: 400;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
#contact .contact-info-card .contact-list li > div a:hover {
  color: #8b6b5a;
  text-decoration: underline;
}
#contact .contact-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(62, 47, 42, 0.08);
  border: 1px solid rgba(214, 181, 168, 0.25);
}
#contact .contact-map iframe {
  display: block;
  border-radius: 16px;
}

#footer {
  background: #2e2420;
  color: rgba(255, 255, 255, 0.75);
}
#footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
#footer .footer-brand .footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid rgba(214, 181, 168, 0.4);
}
#footer .footer-brand .footer-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
#footer .footer-brand .footer-brand-text .footer-brand-zh {
  font-family: "Noto Serif TC", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #e8d9c9;
  letter-spacing: 0.1em;
}
#footer .footer-brand .footer-brand-text .footer-brand-sub {
  font-size: 0.65rem;
  color: rgba(232, 217, 201, 0.65);
  letter-spacing: 0.12em;
}
#footer .footer-brand .footer-brand-text .footer-brand-en {
  font-family: "Noto Serif TC", serif;
  font-size: 0.48rem;
  color: #c7a27c;
  letter-spacing: 0.2em;
  font-style: italic;
}
#footer .footer-slogan {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-weight: 300;
}
#footer .footer-social {
  display: flex;
  gap: 0.75rem;
}
#footer .footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.1rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
#footer .footer-social a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
#footer .footer-social a:hover {
  background: #c7a27c;
  border-color: #c7a27c;
  color: #ffffff;
}
#footer .footer-heading {
  font-family: "Noto Serif TC", serif;
  font-size: 0.88rem;
  letter-spacing: 0.15em;
  color: #e8d9c9;
  margin-bottom: 1.25rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.6rem;
}
#footer .footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 1px;
  background: #c7a27c;
}
#footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-links li {
  margin-bottom: 0.5rem;
}
#footer .footer-links li a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.05em;
  font-weight: 300;
}
#footer .footer-links li a:hover {
  color: #e8d9c9;
}
#footer .footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}
#footer .footer-contact-list li i {
  color: #c7a27c;
  font-size: 1rem;
  flex-shrink: 0;
}
#footer .footer-contact-list li svg {
  fill: rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
}
#footer .footer-contact-list li a {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
}
#footer .footer-contact-list li a:hover {
  color: #e8d9c9;
}
#footer .footer-bottom {
  padding: 0.5rem 0;
  text-align: center;
}
#footer .footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  letter-spacing: 0.05em;
}
#footer .footer-bottom .designed-by {
  color: #c7a27c;
  margin-left: 0.5rem;
}
#footer .footer-bottom .designed-by:hover {
  opacity: 0.8;
}

.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (max-width: 768px) {
  .floating-actions {
    bottom: 1.25rem;
    right: 1rem;
    gap: 0.6rem;
  }
}
.floating-actions .floating-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
@media (max-width: 768px) {
  .floating-actions .floating-btn {
    width: 48px;
    height: 48px;
  }
}
.floating-actions .floating-btn:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
}
.floating-actions .floating-phone {
  background: #8b6b5a;
  color: #ffffff;
}
.floating-actions .floating-phone i {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .floating-actions .floating-phone i {
    font-size: 1.3rem;
  }
}
.floating-actions .floating-line {
  background: #ffffff;
  padding: 10px;
}
.floating-actions .floating-line svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .floating-actions .floating-line {
    padding: 8px;
  }
}/*# sourceMappingURL=all.css.map */