@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  color: #203027;
  background: #fbfaf5;
  font-family: "Noto Sans TC", sans-serif;
  line-height: 1.75;
}

[v-cloak] {
  display: none;
}

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

button, input, select {
  font: inherit;
}

button, a {
  -webkit-tap-highlight-color: transparent;
}

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

.container {
  width: min(1180px, 100% - 48px);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 200;
  padding: 10px 16px;
  color: white;
  background: #284d34;
}
.skip-link:focus {
  top: 12px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: #203027;
  background: rgba(251, 250, 245, 0.94);
  border-bottom: 1px solid rgba(40, 77, 52, 0.1);
  backdrop-filter: blur(12px);
}

.header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  position: relative;
  width: 44px;
  height: 44px;
  border: 2px solid #284d34;
  border-radius: 50% 50% 48% 52%;
  transform: rotate(-8deg);
}
.brand-mark::before, .brand-mark::after {
  content: "";
  position: absolute;
  background: #284d34;
}
.brand-mark::before {
  width: 9px;
  height: 15px;
  top: -9px;
  left: 20px;
  border-radius: 100% 0;
  transform: rotate(28deg);
}
.brand-mark::after {
  width: 18px;
  height: 9px;
  top: -5px;
  left: 25px;
  border-radius: 100% 0;
  transform: rotate(-22deg);
}
.brand-mark i {
  position: absolute;
  width: 13px;
  height: 18px;
  right: 7px;
  top: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}
.brand-copy strong {
  font-family: "Noto Serif TC", serif;
  font-size: 1.25rem;
  letter-spacing: 0.16em;
}
.brand-copy small {
  margin-top: 4px;
  color: #3e7048;
  font-size: 0.68rem;
  letter-spacing: 0.36em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.9rem;
  font-weight: 500;
}
.main-nav a {
  position: relative;
}
.main-nav a:not(.nav-order)::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 1px;
  background: #3e7048;
  transition: width 0.25s;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after {
  width: 100%;
}

.nav-order {
  padding: 9px 20px;
  color: white;
  background: #284d34;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #203027;
  transition: 0.25s;
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background: #284d34;
}

.hero-image, .hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(14, 36, 23, 0.86) 0%, rgba(16, 40, 25, 0.69) 35%, rgba(16, 40, 25, 0.12) 70%, rgba(16, 40, 25, 0.05) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 85px;
}
.hero-content h1 {
  font-family: "Noto Serif TC", serif;
  margin: 14px 0 24px;
  font-size: clamp(3rem, 5.3vw, 5.4rem);
  line-height: 1.28;
  letter-spacing: 0.03em;
  font-weight: 600;
}
.hero-content h1 em {
  color: #dce9a8;
  font-style: normal;
}

.eyebrow {
  margin: 0 0 12px;
  color: #3e7048;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.eyebrow.light {
  color: #d7e59e;
}

.hero-lead {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 11px 26px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: #3e7048;
  box-shadow: 0 12px 24px rgba(22, 56, 32, 0.16);
}
.button-primary:hover {
  background: #284d34;
}

.button-ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.05);
}
.button-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.button.full {
  width: 100%;
}

.demo-note {
  margin-top: 26px;
  font-size: 0.75rem;
}

.light-note {
  color: rgba(255, 255, 255, 0.55);
}

.harvest-card {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  min-width: 260px;
  padding: 24px 48px 27px;
  color: #203027;
  background: #f5f1e6;
}
.harvest-card span, .harvest-card small {
  display: block;
}
.harvest-card span {
  color: #3e7048;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
}
.harvest-card strong {
  font-family: "Noto Serif TC", serif;
  display: block;
  margin: 3px 0;
  font-size: 1.5rem;
}
.harvest-card small {
  color: #66736a;
  font-size: 0.75rem;
}

.trust-strip {
  color: white;
  background: #284d34;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 108px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}
.trust-item:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}
.trust-item strong, .trust-item small {
  display: block;
}
.trust-item strong {
  font-size: 0.92rem;
}
.trust-item small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
}

.trust-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(215, 229, 158, 0.45);
  border-radius: 50%;
  color: #d7e59e;
  font-size: 0.75rem;
}

.section {
  padding: 120px 0;
}

.section-heading {
  max-width: 650px;
  margin-bottom: 54px;
}
.section-heading h2 {
  font-family: "Noto Serif TC", serif;
  margin: 4px 0 16px;
  font-size: clamp(2rem, 3.3vw, 3.1rem);
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.section-heading > p:last-child {
  color: #66736a;
}
.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.section-heading.compact {
  margin-bottom: 42px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  position: relative;
  min-height: 330px;
  padding: 38px 34px;
  overflow: hidden;
  background: white;
  border: 1px solid #e5e8e1;
  transition: transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(31, 67, 42, 0.09);
}
.feature-card h3 {
  font-family: "Noto Serif TC", serif;
  margin: 22px 0 12px;
  font-size: 1.45rem;
}
.feature-card p {
  margin: 0;
  color: #66736a;
  font-size: 0.92rem;
}

.feature-number {
  position: absolute;
  top: 24px;
  right: 28px;
  color: #dfe5da;
  font-family: "Noto Serif TC", serif;
  font-size: 2.3rem;
}

.feature-symbol {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  color: white;
  background: #3e7048;
  border-radius: 46% 54% 48% 52%;
  font-family: "Noto Serif TC", serif;
  font-size: 1.2rem;
  transform: rotate(-4deg);
}

.story-section {
  background: #f5f1e6;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 9%;
  align-items: center;
}

.story-visual {
  position: relative;
  padding: 0 0 45px 38px;
}
.story-visual::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48%;
  height: 62%;
  background: #dce3c0;
}

.story-photo {
  position: relative;
  height: 600px;
  overflow: hidden;
}
.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% center;
  transform: scale(1.25);
}

.year-stamp {
  position: absolute;
  right: -38px;
  bottom: 0;
  display: flex;
  width: 205px;
  min-height: 118px;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  color: white;
  background: #284d34;
}
.year-stamp strong {
  font-family: "Noto Serif TC", serif;
  font-size: 2.1rem;
}
.year-stamp span {
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.72rem;
}

.story-copy h2 {
  font-family: "Noto Serif TC", serif;
  margin: 5px 0 25px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.45;
  font-weight: 600;
}
.story-copy > p:not(.eyebrow) {
  color: #66736a;
}
.story-copy .story-lead {
  font-family: "Noto Serif TC", serif;
  color: #3e7048 !important;
  font-size: 1.15rem;
}

.signature {
  margin-top: 34px;
  font-family: "Noto Serif TC", serif;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
}
.signature span {
  margin-left: 10px;
  color: #66736a;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.products-section {
  background: #fbfaf5;
}

.split-heading {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}
.split-heading > div {
  flex: 1;
}
.split-heading > p {
  max-width: 430px;
  margin: 0 0 10px;
}

.demo-banner {
  margin: -24px 0 30px;
  padding: 12px 16px;
  color: #68562e;
  background: #f2e7c9;
  border-left: 3px solid #d5ac59;
  font-size: 0.82rem;
}
.demo-banner span {
  margin-right: 8px;
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.product-card {
  overflow: hidden;
  background: white;
  border: 1px solid #e2e6df;
  transition: transform 0.25s, box-shadow 0.25s;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 46px rgba(31, 67, 42, 0.1);
}
.product-card.featured {
  border-color: #9fb26c;
}

.product-visual {
  position: relative;
  height: 285px;
  overflow: hidden;
  background: #dce3c0;
}
.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.product-card:nth-child(1) .product-visual img {
  object-position: 70% 54%;
}
.product-card:nth-child(2) .product-visual img {
  object-position: 83% 36%;
}
.product-card:nth-child(3) .product-visual img {
  object-position: 64% 72%;
}
.product-card:hover .product-visual img {
  transform: scale(1.04);
}

.product-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 5px 11px;
  color: white;
  background: #3e7048;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.product-body {
  padding: 27px 27px 25px;
}
.product-body > h3 {
  font-family: "Noto Serif TC", serif;
  margin: 3px 0 10px;
  font-size: 1.4rem;
}
.product-body > p:not(.product-kind) {
  min-height: 55px;
  color: #66736a;
  font-size: 0.85rem;
}
.product-body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 14px;
  margin: 20px 0 24px;
  padding: 16px 0;
  border-top: 1px solid #d9dfd5;
  border-bottom: 1px solid #d9dfd5;
  list-style: none;
  color: #66736a;
  font-size: 0.74rem;
}
.product-body ul li::before {
  content: "•";
  margin-right: 5px;
  color: #6f924c;
}

.product-kind {
  margin: 0;
  color: #6f924c;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.product-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.price small, .price strong {
  display: block;
}
.price small {
  color: #66736a;
  font-size: 0.66rem;
}
.price strong {
  color: #284d34;
  font-size: 1.25rem;
}

.round-button {
  width: 54px;
  height: 54px;
  color: white;
  background: #284d34;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.74rem;
  transition: transform 0.2s, background 0.2s;
}
.round-button:hover {
  background: #3e7048;
  transform: rotate(-5deg) scale(1.05);
}

.how-section {
  padding: 92px 0;
  background: #e8edd9;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}
.steps li {
  position: relative;
  padding: 0 50px;
  text-align: center;
}
.steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 29px;
  right: -35px;
  width: 70px;
  border-top: 1px dashed #9eaa82;
}
.steps span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin: 0 auto 18px;
  color: white;
  background: #3e7048;
  border-radius: 50%;
  font-family: "Noto Serif TC", serif;
}
.steps strong {
  font-family: "Noto Serif TC", serif;
  font-size: 1.2rem;
}
.steps p {
  margin: 5px 0 0;
  color: #66736a;
  font-size: 0.85rem;
}

.contact-section {
  color: white;
  background: #284d34;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 9%;
  align-items: center;
}

.contact-copy h2 {
  font-family: "Noto Serif TC", serif;
  margin: 5px 0 22px;
  font-size: clamp(2.3rem, 4.5vw, 4rem);
  line-height: 1.4;
  font-weight: 600;
}
.contact-copy > p:not(.eyebrow) {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.68);
}
.contact-copy > small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.45);
}

.line-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 12px 20px;
  color: #284d34;
  background: #d8e798;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  font-weight: 700;
}
.line-button span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: white;
  background: #4d8b56;
  border-radius: 50%;
  font-size: 0.56rem;
}

.faq-section {
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 10%;
}

.faq-heading {
  margin-bottom: 0;
}
.faq-heading a {
  display: inline-block;
  margin-top: 15px;
  padding-bottom: 3px;
  color: #3e7048;
  border-bottom: 1px solid #3e7048;
  font-weight: 600;
}

.faq-item {
  border-top: 1px solid #d9dfd5;
}
.faq-item:last-child {
  border-bottom: 1px solid #d9dfd5;
}
.faq-item h3 {
  margin: 0;
}
.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 25px 4px;
  color: #203027;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-weight: 600;
}
.faq-item i {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-left: 20px;
}
.faq-item i::before, .faq-item i::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 1px;
  width: 16px;
  height: 1px;
  background: #3e7048;
  transition: transform 0.2s;
}
.faq-item i::after {
  transform: rotate(90deg);
}
.faq-item.open i::after {
  transform: rotate(0);
}

.faq-answer {
  padding: 0 45px 22px 4px;
  color: #66736a;
  font-size: 0.9rem;
}
.faq-answer p {
  margin: 0;
}

.site-footer {
  padding: 70px 0 25px;
  color: rgba(255, 255, 255, 0.68);
  background: #172c1e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 1fr;
  gap: 80px;
  padding-bottom: 52px;
}
.footer-grid h3 {
  margin: 0 0 18px;
  color: white;
  font-size: 0.88rem;
}
.footer-grid a:not(.brand), .footer-grid p {
  display: block;
  margin: 7px 0;
  font-size: 0.78rem;
}
.footer-grid a:hover {
  color: white;
}

.footer-brand {
  color: white;
  margin-bottom: 20px;
}
.footer-brand .brand-mark {
  border-color: #d7e59e;
}
.footer-brand .brand-mark::before, .footer-brand .brand-mark::after {
  background: #d7e59e;
}
.footer-brand small {
  color: #c9da8b;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 36px, 720px);
  }
  .menu-toggle {
    display: block;
  }
  .main-nav {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    max-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    background: #fbfaf5;
    box-shadow: 0 15px 25px rgba(31, 67, 42, 0.08);
    transition: max-height 0.3s;
  }
  .main-nav a {
    padding: 13px 25px;
    border-top: 1px solid #d9dfd5;
  }
  .main-nav .nav-order {
    margin: 10px 18px 18px;
    text-align: center;
  }
  .site-header.is-open .main-nav {
    max-height: 420px;
  }
  .site-header.is-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .site-header.is-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  .site-header.is-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .hero {
    min-height: 720px;
  }
  .hero-image {
    object-position: 62% center;
  }
  .hero-content {
    padding-top: 60px;
  }
  .harvest-card {
    min-width: 220px;
    padding: 18px 28px 20px;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-item:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.13);
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }
  .trust-item:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }
  .section {
    padding: 90px 0;
  }
  .feature-grid, .product-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-inline: auto;
  }
  .feature-card {
    min-height: auto;
  }
  .story-grid, .contact-panel, .faq-grid {
    grid-template-columns: 1fr;
  }
  .story-grid {
    gap: 60px;
  }
  .story-visual {
    max-width: 620px;
  }
  .story-photo {
    height: 540px;
  }
  .story-copy {
    max-width: 620px;
  }
  .split-heading {
    display: block;
  }
  .product-visual {
    height: 340px;
  }
  .contact-panel {
    gap: 55px;
  }
  .faq-grid {
    gap: 45px;
  }
}
@media (max-width: 600px) {
  .container {
    width: calc(100% - 32px);
  }
  .header-inner {
    height: 68px;
  }
  .brand-mark {
    width: 38px;
    height: 38px;
  }
  .brand-copy strong {
    font-size: 1.08rem;
  }
  .main-nav {
    top: 68px;
  }
  .hero {
    min-height: 720px;
    align-items: flex-start;
  }
  .hero-image {
    object-position: 68% center;
  }
  .hero-shade {
    background: linear-gradient(180deg, rgba(13, 32, 20, 0.73) 0%, rgba(13, 32, 20, 0.3) 43%, rgba(13, 32, 20, 0.88) 100%);
  }
  .hero-content {
    padding-top: 150px;
  }
  .hero-content h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }
  .hero-lead {
    font-size: 0.91rem;
  }
  .hero-lead br {
    display: none;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 280px;
  }
  .harvest-card {
    right: 16px;
    min-width: 190px;
    padding: 14px 20px 16px;
  }
  .harvest-card strong {
    font-size: 1.2rem;
  }
  .trust-item {
    min-height: 95px;
    justify-content: flex-start;
    padding: 12px;
    gap: 9px;
  }
  .trust-item strong {
    font-size: 0.8rem;
  }
  .trust-item small {
    font-size: 0.63rem;
  }
  .trust-icon {
    width: 34px;
    height: 34px;
  }
  .section {
    padding: 72px 0;
  }
  .section-heading {
    margin-bottom: 38px;
  }
  .feature-card {
    padding: 30px 25px;
  }
  .story-visual {
    padding-left: 18px;
  }
  .story-photo {
    height: 420px;
  }
  .year-stamp {
    right: -5px;
    width: 180px;
    min-height: 100px;
    padding: 15px;
  }
  .story-grid {
    gap: 48px;
  }
  .product-visual {
    height: 245px;
  }
  .product-body {
    padding: 24px 21px;
  }
  .how-section {
    padding: 70px 0;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .steps li {
    padding: 0 20px;
  }
  .steps li:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -28px;
    width: 1px;
    height: 22px;
    border-top: 0;
    border-left: 1px dashed #9eaa82;
  }
  .line-button {
    width: 100%;
    justify-content: center;
    padding-inline: 10px;
    font-size: 0.85rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
.nav-order {
  border: 0;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
}

.sales-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 9px;
  padding: 6px 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
}
.sales-status i {
  width: 7px;
  height: 7px;
  background: #d7e59e;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(215, 229, 158, 0.13);
}
.sales-status.is-paused i {
  background: #e7c87c;
}
.sales-status.is-sold i {
  background: rgba(255, 255, 255, 0.55);
}

.story-note {
  margin-top: 24px;
  padding: 14px 16px;
  color: #59675e !important;
  background: rgba(255, 255, 255, 0.45);
  border-left: 3px solid #6f924c;
  font-size: 0.78rem;
}

.status-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: -24px 0 30px;
  padding: 14px 18px;
  color: #4f5f55;
  background: #e8edd9;
  border-left: 3px solid #6f924c;
  font-size: 0.82rem;
}
.status-banner strong {
  flex: 0 0 auto;
  color: #284d34;
}
.status-banner.is-active {
  color: #fff;
  background: #3e7048;
  border-left-color: #d7e59e;
}
.status-banner.is-active strong {
  color: #fff;
}
.status-banner.is-paused {
  background: #f1e4c5;
  border-left-color: #d5ac59;
}
.status-banner.is-sold {
  background: #ecece8;
  border-left-color: #92998f;
}

.product-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 900px;
  margin-inline: auto;
}

.product-state {
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 5px 11px;
  color: #284d34;
  background: rgba(251, 250, 245, 0.92);
  font-size: 0.68rem;
  font-weight: 700;
}

.product-price {
  margin-bottom: 20px;
}
.product-price strong {
  font-size: 1.3rem;
}

.product-order-row {
  display: flex;
  align-items: stretch;
  gap: 12px;
}

.quantity-control {
  display: grid;
  grid-template-columns: 36px minmax(62px, auto) 36px;
  align-items: center;
  min-height: 48px;
  border: 1px solid #d9dfd5;
}
.quantity-control button {
  height: 100%;
  color: #284d34;
  background: #f4f5ef;
  border: 0;
  cursor: pointer;
  font-size: 1.15rem;
}
.quantity-control button:disabled {
  color: #a9afa9;
  cursor: not-allowed;
}
.quantity-control output {
  padding: 0 8px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
}

.product-action {
  flex: 1;
  min-height: 48px;
  padding: 10px 16px;
  color: #fff;
  background: #284d34;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
}
.product-action:hover:not(:disabled) {
  background: #3e7048;
  transform: translateY(-1px);
}
.product-action:disabled {
  color: #7d847f;
  background: #daddd8;
  cursor: not-allowed;
}

.product-footnote {
  margin: 24px 0 0;
  color: #66736a;
  text-align: center;
  font-size: 0.75rem;
}

.line-contact-panel {
  grid-template-columns: 1fr 380px;
}

.line-contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 34px 32px;
  color: #203027;
  background: #fbfaf5;
  text-align: center;
}
.line-contact-card > p {
  margin: 15px 0 0;
  color: #66736a;
  font-size: 0.78rem;
}
.line-contact-card > strong {
  color: #284d34;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
}
.line-contact-card > small {
  margin-top: 12px;
  color: #66736a;
  font-size: 0.68rem;
}

.line-bubble {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  color: #fff;
  background: #3e7048;
  border-radius: 50%;
  font-size: 0.67rem;
  font-weight: 700;
}

.line-qr,
.qr-pending {
  width: 132px;
  height: 132px;
  margin: 20px 0;
}

.line-qr {
  object-fit: contain;
}

.qr-pending {
  display: grid;
  place-items: center;
  align-content: center;
  color: #89928b;
  background: repeating-linear-gradient(45deg, #f0f1ec 0 7px, #e6e9e2 7px 14px);
  border: 1px dashed #aeb6ae;
}
.qr-pending span {
  font-size: 1.25rem;
  font-weight: 700;
}
.qr-pending small {
  padding: 3px 8px;
  background: rgba(251, 250, 245, 0.88);
  font-size: 0.62rem;
}

.line-button-card {
  width: 100%;
  justify-content: center;
  margin: 0;
  color: #fff;
  background: #3e7048;
}

.text-button,
.faq-contact-link {
  padding: 5px 0;
  color: #3e7048;
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 600;
}

.text-button {
  margin-top: 10px;
}

.guide-section {
  background: #f5f1e6;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 920px;
  margin-inline: auto;
}
.guide-grid article {
  padding: 28px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(40, 77, 52, 0.1);
}
.guide-grid article > span {
  color: #3e7048;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.guide-grid article h3 {
  font-family: "Noto Serif TC", serif;
  margin: 5px 0 10px;
  font-size: 1.15rem;
}
.guide-grid article p {
  margin: 0;
  color: #66736a;
  font-size: 0.82rem;
}
.guide-grid .guide-wide {
  grid-column: 1/-1;
}

.toast-message {
  position: fixed;
  z-index: 400;
  right: 22px;
  bottom: 22px;
  max-width: min(360px, 100% - 32px);
  padding: 13px 18px;
  color: #fff;
  background: #284d34;
  box-shadow: 0 12px 36px rgba(11, 30, 18, 0.25);
  font-size: 0.82rem;
}

.toast-enter-active,
.toast-leave-active {
  transition: opacity 0.2s, transform 0.2s;
}

.toast-enter-from,
.toast-leave-to {
  opacity: 0;
  transform: translateY(8px);
}

@media (max-width: 900px) {
  .main-nav .nav-order {
    margin: 10px 18px 18px;
    padding: 13px 25px;
    text-align: center;
  }
  .product-grid-two {
    grid-template-columns: 1fr;
  }
  .line-contact-panel {
    grid-template-columns: 1fr;
  }
  .line-contact-card {
    width: min(100%, 520px);
  }
}
@media (max-width: 600px) {
  .sales-status {
    margin-top: 7px;
  }
  .status-banner {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    margin-top: -14px;
  }
  .product-order-row {
    flex-direction: column;
  }
  .quantity-control {
    grid-template-columns: 44px 1fr 44px;
  }
  .line-contact-card {
    padding: 32px 22px 27px;
  }
  .guide-grid {
    grid-template-columns: 1fr;
  }
  .guide-grid .guide-wide {
    grid-column: auto;
  }
  .toast-message {
    right: 16px;
    bottom: 16px;
    left: 16px;
    max-width: none;
  }
}
