button:focus {
  outline: none;
}
.text-008C95 {
  color: #008c95;
}

.border-888B8D {
  border-color: #888b8d;
}

.bg-008C95 {
  background-color: #008c95;
}

.bg-ADADAD {
  background-color: #adadad;
}

.text-BF004A {
  color: #bf004a;
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0 !important;
  }
}

/* 手機版購物車陰影效果 */
.shadow-top {
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

/* Tailwind CSS 自定義顏色 */
.text-onyx {
  color: #333133;
}

.bg-onyx {
  background-color: #333133;
}

/* 過渡動畫 */
.transition-transform {
  transition: transform 0.2s ease-in-out;
}

.rotate-180 {
  transform: rotate(180deg);
}

.translate-y-full {
  --tw-translate-x: 0px;
  --tw-translate-y: 100%;
  --tw-rotate: 0deg;
  --tw-skew-x: 0deg;
  --tw-skew-y: 0deg;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y))
    rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
    scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

/* Grid 系統 */
.grid {
  display: grid;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Flexbox */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

/* Gap */
.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

@media (min-width: 768px) {
  .md\:gap-6 {
    gap: 1.5rem;
  }

  .md\:gap-12 {
    gap: 3rem;
  }
}

/* Spacing */
.p-1 {
  padding: 0.25rem;
}

.p-4 {
  padding: 1rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}

@media (min-width: 768px) {
  .md\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }
}

.my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .mb-12 {
    margin-bottom: 1.5rem;
  }
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.ml-6 {
  margin-left: 1.5rem;
}

/* Width & Height */
.w-4 {
  width: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.w-16 {
  width: 4rem;
}

.w-full {
  width: 100%;
}

.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-16 {
  height: 4rem;
}

.h-full {
  height: 100%;
}

.h-\[4\.2em\] {
  height: 4.2em;
}

/* Max width */
@media (min-width: 768px) {
  .md\:max-w-\[19\.5rem\] {
    max-width: 19.5rem;
  }

  .md\:max-w-\[55\.5rem\] {
    max-width: 55.5rem;
  }
}

/* Position */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.top-0 {
  top: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.-top-2 {
  top: -0.5rem;
}

.-right-2 {
  right: -0.5rem;
}

@media (min-width: 768px) {
  .md\:sticky {
    position: sticky;
  }

  .md\:top-4 {
    top: 1rem;
  }
}

/* Z-index */
.z-10 {
  z-index: 10;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

/* Display - 重要：響應式顯示控制 */
.block {
  display: block;
}

.hidden {
  display: none;
}

/* 手機版隱藏，桌面版顯示 */
@media (min-width: 768px) {
  .hidden.md\:block {
    display: block !important;
  }

  .md\:block {
    display: block;
  }

  .md\:flex-row {
    flex-direction: row;
  }
}

/* 桌面版隱藏，手機版顯示 */
@media (min-width: 768px) {
  .block.md\:hidden {
    display: none !important;
  }
}

/* Border */
.border {
  border-width: 1px;
}

.border-t {
  border-top-width: 1px;
}

.border-gray-200 {
  border-color: #e5e7eb;
}

.border-\[\#888B8D\] {
  border-color: #888b8d;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-\[0\.375rem\] {
  border-radius: 0.375rem;
}

/* Background */
.bg-white {
  background-color: #ffffff;
}

.bg-gray-200 {
  background-color: #e5e7eb;
}

.bg-\[\#008C95\] {
  background-color: #008c95;
}

.bg-\[\#ADADAD\] {
  background-color: #adadad;
}

/* Text */
.text-sm {
  font-size: 0.8rem;
  line-height: 1.25rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-\[12px\] {
  font-size: 12px;
}

.text-\[15px\] {
  font-size: 15px;
}

.text-\[1\.875rem\] {
  font-size: 1.875rem;
}

@media (max-width: 768px) {
  .text-\[1\.875rem\] {
    font-size: 24px;
  }
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-white {
  color: #ffffff;
}

.text-gray-400 {
  color: #9ca3af;
}

.text-gray-600 {
  color: #4b5563;
}

.text-\[\#BF004A\] {
  color: #bf004a;
}

.text-\[\#333133\] {
  color: #333133;
}

.font-medium {
  font-weight: 500;
}

.font-bold {
  font-weight: 700;
}

.font-700 {
  font-weight: 700;
}

.leading-\[2\.375rem\] {
  line-height: 2.375rem;
}

.line-through {
  text-decoration: line-through;
}

/* Cursor */
.cursor-pointer {
  cursor: pointer;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

/* Object fit */
.object-cover {
  object-fit: cover;
}

/* Overflow */
.overflow-x-auto {
  overflow-x: auto;
}

@media (min-width: 768px) {
  .md\:overflow-y-auto {
    overflow-y: auto;
  }

  .md\:max-h-\[calc\(100vh-2rem\)\] {
    max-height: calc(100vh - 2rem);
  }
}

/* Shadow */
.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-\[0px_1px_3px_0px_rgba\(166\,175\,195\,0\.40\)\] {
  box-shadow: 0px 1px 3px 0px rgba(166, 175, 195, 0.4);
}

/* Space */
.space-y-2 > * + * {
  margin-top: 0.5rem;
}

/* Min width */
.min-w-max {
  min-width: max-content;
}

/* Hover effects */
.hover\:text-gray-600:hover {
  color: #4b5563;
}

/* Disabled state */
button:disabled {
  opacity: 0.6;
}

/* Flex-1 */
.flex-1 {
  flex: 1 1 0%;
}

/* 自定義樣式 */
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.duration-200 {
  transition-duration: 200ms;
}

.bottom-52px {
  bottom: 52px;
}

/* 確保 transform 動畫正常運作 */
.mobile-cart-container {
  transition: transform 0.5s ease-in-out !important;
  transform: translateY(100%) !important;
}

.mobile-cart-container.translate-y-0 {
  transform: translateY(0) !important;
}

.mobile-cart-container.translate-y-full {
  transform: translateY(100%) !important;
}

/* 移除 Tailwind CSS 變數干擾 */
.mobile-cart-container.translate-y-0,
.mobile-cart-container.translate-y-full {
  --tw-translate-x: 0px !important;
  --tw-translate-y: 0px !important;
  --tw-rotate: 0deg !important;
  --tw-skew-x: 0deg !important;
  --tw-skew-y: 0deg !important;
  --tw-scale-x: 1 !important;
  --tw-scale-y: 1 !important;
}

/* 數量選擇器樣式 */
.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity-input[type="text"] {
  -moz-appearance: textfield;
}

.text-ADADAD {
  color: #adadad;
}

.border-gray-300 {
  border-color: #d1d5db;
}

.select-none {
  user-select: none;
}

.w-10 {
  width: 2.5rem;
}

.h-10 {
  height: 2.5rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.gap-1 {
  gap: 0.25rem;
}

.focus\:outline-none:focus {
  outline: none;
}

/* Bootstrap 相容樣式 */
.d-flex {
  display: flex;
}

.justify-content-sm-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

.pr-2 {
  padding-right: 0.5rem;
}

.mb-0 {
  margin-bottom: 0;
}

.nowrap {
  white-space: nowrap;
}
.hover\:bg-onyx:hover {
  background-color: #333133 !important;
  color: #fff !important;
}
.hover\:bg-onyx:disabled:hover {
  background-color: #fff !important;
  color: #333133 !important;
}
#app .sub_title {
  color: var(--Paulas-Choice-primary-Truthful-Teal-Dark, #008391);
  text-align: center;

  /* Heading 3 */
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 3rem; /* 120% */
}

@media (max-width: 768px) {
  #app .sub_title {
    text-align: center;

    /* Body Large/Bold */
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.625rem; /* 144.444% */
    /* 157.143% */
  }
}

#app .tag {
  color: #fff;
  text-align: center;
  font-family: "Noto Sans TC";
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5rem;
  /* 120% */
  display: flex;
  padding: 0.75rem 3.5rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;

  border-radius: 0.375rem;
  background: #333133;
}

.section3_tags {
  display: flex;
  align-items: center;
  gap: 3rem;
  align-self: stretch;
  justify-content: center;
}

.section4_title {
  color: var(--Paulas-Choice-basic-black, #333133);

  /* Heading 2 */
  font-family: "Noto Sans TC";
  font-size: 3rem;
  font-weight: 700;
  line-height: 3.625rem;
  /* 120.833% */
}

.section4_subtitle {
  color: var(--Paulas-Choice-basic-black, #333133);

  /* Body Large/Bold */
  font-family: "Noto Sans TC";
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.625rem;
  /* 144.444% */
}

.section4_day {
  display: flex;
  width: 30rem;
  padding: 0.5rem 1rem;
  align-items: flex-start;
  gap: 0.625rem;

  border-radius: 62.4375rem;
  background: var(
    --Paulas-Choice-secondary-Vitamin-C-70,
    linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.3) 0%,
      rgba(255, 255, 255, 0.3) 100%
    ),
    #ff9800
  );

  color: var(--Paulas-Choice-basic-white, #fff);

  /* Body Large/Bold */
  font-family: "Noto Sans TC";
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.625rem;
  align-items: center;
  /* 144.444% */
}

.section4_night {
  display: flex;
  width: 30rem;
  padding: 0.5rem 1rem;
  align-items: flex-start;
  gap: 0.625rem;

  border-radius: 62.4375rem;
  background: var(
    --Paulas-Choice-secondary-Clinical-70,
    linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.3) 0%,
      rgba(255, 255, 255, 0.3) 100%
    ),
    #671e75
  );

  color: var(--Paulas-Choice-basic-white, #fff);

  /* Body Large/Bold */
  font-family: "Noto Sans TC";
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.625rem;
  align-items: center;
  /* 144.444% */
}

.section4_text {
  color: #333133;

  /* Body Large/Regular */
  font-family: "Noto Sans TC";
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.625rem;
  /* 144.444% */
}

.section4_content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem 0;
}

.section4_day_night {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-left: 3rem;
}

.section6_title {
  color: var(--Paulas-Choice-basic-black, #333133);
  text-align: center;

  /* Heading 3 */
  font-family: "Noto Sans TC";
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 3rem;
  /* 120% */
  padding-bottom: 3rem;
  padding-top: 3rem;
}

.section6_subtitle {
  color: var(--Paulas-Choice-basic-black, #333133);

  /* Heading 6 */
  font-family: "Noto Sans TC";
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.875rem;
  /* 125% */
  display: flex;
  align-items: center;
  padding: 0 0 1.5rem 0.7rem;
}

.section6_text {
  color: var(--Paulas-Choice-basic-black, #333133);

  /* Body Large/Regular */
  font-family: "Noto Sans TC";
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.625rem;
  /* 144.444% */
}

.section7_title {
  color: var(--Paulas-Choice-basic-black, #333133);
  text-align: center;

  /* Heading 3 */
  font-family: "Noto Sans TC";
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 3rem;
  /* 120% */
  padding-bottom: 3rem;
  padding-top: 3rem;
}

.section8_title {
  color: var(--Paulas-Choice-basic-black, #333133);
  text-align: center;

  /* Heading 3 */
  font-family: "Noto Sans TC";
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 3rem;
  /* 120% */
  padding-bottom: 3rem;
  padding-top: 3rem;
}

.section11_title {
  color: var(--Paulas-Choice-basic-black, #333133);
  text-align: center;

  /* Heading 3 */
  font-family: "Noto Sans TC";
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 3rem;
  /* 120% */
  padding-bottom: 3rem;
  padding-top: 3rem;
}

.section11_qa {
  max-width: 780px;
  margin: auto;
}

.section11_item {
  display: flex;
  padding: 1rem 0rem 1rem 0rem;
  flex-direction: column;
  align-self: stretch;
  border-top: 1px solid var(--Gray-300, #dde0e5);
}

.section11_qq {
  cursor: pointer;
  align-items: center;
}

.section11_q {
  color: var(--Paulas-Choice-basic-black, #333133);
  font-family: "Proxima Nova";
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 150%;
  /* 1.6875rem */
  cursor: pointer;
}

.section11_a {
  color: var(--Paulas-Choice-basic-black, #333133);
  font-family: "Proxima Nova";
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 170%;
  /* 1.9125rem */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease-out;
}

.section11_item.active .section11_a {
  max-height: 200px;
}

.section11_item .fa-plus,
.section11_item .fa-minus {
  transition: transform 0.6s ease-in-out;
  display: none;
}

.section11_item .fa-plus {
  display: block;
}

.section11_item.active .fa-plus {
  display: none;
}

.section11_item.active .fa-minus {
  display: block;
}

.section12_title {
  color: var(--Paulas-Choice-basic-black, #333133);
  text-align: center;

  /* Heading 3 */
  font-family: "Noto Sans TC";
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 3rem;
  /* 120% */
  padding-bottom: 3rem;
  padding-top: 3rem;
}

@media (max-width: 768px) {
  #app .tag {
    color: var(--Paulas-Choice-basic-white, #fff);
    text-align: center;
    font-family: "Noto Sans TC";
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5rem;
    /* 171.429% */
    /* 120% */
    display: flex;
    padding: 0.75rem 1.5rem;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    flex: auto;
    width: 44%;
    border-radius: 0.375rem;
    background: #333133;
    color: var(--Paulas-Choice-basic-white, #fff);
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.5rem; /* 171.429% */
    width: 100%;
  }

  .section3_tags {
    gap: 0.5rem;
  }

  .section4_title {
    color: var(--Paulas-Choice-basic-black, #333133);

    /* Heading 5 */
    font-family: "Noto Sans TC";
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 2.5rem;
    /* 142.857% */
  }

  .section4_subtitle {
    color: var(--Paulas-Choice-basic-black, #333133);

    /* Body Medium/Medium */
    font-family: "Noto Sans TC";
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5rem;
    /* 150% */
  }

  .section4_day {
    display: flex;
    width: auto;
    padding: 0.5rem 2rem;
    gap: 0.625rem;

    border-radius: 62.4375rem;
    background: var(
      --Paulas-Choice-secondary-Vitamin-C-70,
      linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.3) 100%
      ),
      #ff9800
    );

    /* Body Large/Bold */
    color: var(--Paulas-Choice-basic-white, #fff);

    /* Body Small/Medium */
    font-family: "Noto Sans TC";
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.375rem;
    /* 157.143% */
    /* 144.444% */
  }

  .section4_night {
    display: flex;
    width: auto;
    padding: 0.5rem 2rem;
    gap: 0.625rem;

    border-radius: 62.4375rem;
    background: var(
      --Paulas-Choice-secondary-Clinical-70,
      linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.3) 100%
      ),
      #671e75
    );

    color: var(--Paulas-Choice-basic-white, #fff);

    /* Body Small/Medium */
    font-family: "Noto Sans TC";
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.375rem;
    /* 157.143% */
    /* 144.444% */
  }

  .section4_text {
    color: #333133;

    /* Body Large/Regular */
    font-family: "Noto Sans TC";
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.625rem;
    /* 144.444% */
  }

  .section4_content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .section4_day_night {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section6_title {
    color: var(--Paulas-Choice-basic-black, #333133);
    text-align: center;

    /* Heading 3 */
    font-family: "Noto Sans TC";
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 3rem;
    /* 120% */
    padding-bottom: 3rem;
    padding-top: 3rem;
  }

  .section6_subtitle {
    color: var(--Paulas-Choice-basic-black, #333133);

    /* Heading 6 */
    font-family: "Noto Sans TC";
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.875rem;
    /* 125% */
    display: flex;
    align-items: center;
    padding: 0 0 1.5rem 0.7rem;
  }

  .section6_text {
    color: var(--Paulas-Choice-basic-black, #333133);

    /* Body Large/Regular */
    font-family: "Noto Sans TC";
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.625rem;
    /* 144.444% */
  }

  .section7_title {
    color: var(--Paulas-Choice-basic-black, #333133);
    text-align: center;

    /* Heading 3 */
    font-family: "Noto Sans TC";
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 3rem;
    /* 120% */
    padding-bottom: 3rem;
    padding-top: 3rem;
  }

  .section8_title {
    color: var(--Paulas-Choice-basic-black, #333133);
    text-align: center;

    /* Heading 3 */
    font-family: "Noto Sans TC";
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 3rem;
    /* 120% */
    padding-bottom: 3rem;
    padding-top: 3rem;
  }

  .section11_title {
    color: var(--Paulas-Choice-basic-black, #333133);
    text-align: center;

    /* Heading 3 */
    font-family: "Noto Sans TC";
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 3rem;
    /* 120% */
    padding-bottom: 3rem;
    padding-top: 3rem;
  }

  .section11_qa {
    max-width: 780px;
    margin: auto;
  }

  .section11_item {
    display: flex;
    padding: 0.5rem 0rem;
    flex-direction: column;
    align-self: stretch;
    border-top: 1px solid var(--Gray-300, #dde0e5);
  }

  .section11_qq {
    cursor: pointer;
  }

  .section11_q {
    color: var(--Paulas-Choice-basic-black, #333133);
    font-family: "Proxima Nova";
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 150%;
    /* 1.6875rem */
    cursor: pointer;
  }

  .section11_a {
    color: var(--Paulas-Choice-basic-black, #333133);
    font-family: "Proxima Nova";
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 170%;
    /* 1.9125rem */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease-out;
  }

  .section11_item.active .section11_a {
    max-height: 200px;
  }

  .section11_item .fa-plus,
  .section11_item .fa-minus {
    transition: transform 0.6s ease-in-out;
    display: none;
  }

  .section11_item .fa-plus {
    display: block;
  }

  .section11_item.active .fa-plus {
    display: none;
  }

  .section11_item.active .fa-minus {
    display: block;
  }

  .section12_title {
    color: var(--Paulas-Choice-basic-black, #333133);
    text-align: center;

    /* Heading 3 */
    font-family: "Noto Sans TC";
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 3rem;
    /* 120% */
    padding-bottom: 3rem;
    padding-top: 3rem;
  }
}

.pName {
  color: var(--Paulas-Choice-basic-black, #333133);
  text-align: center;
  /* Body Medium/SemiBold */
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem; /* 150% */
  min-height: 3rem;
}

.price {
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem; /* 162.5% */

  height: 2.5rem;
}

.pLinks {
  gap: 0.5rem;
  margin: 0 0.5rem;
}

.psBox {
  gap: 1rem;
}

.section_click:hover {
  transform: translateY(-1rem);
  padding-bottom: 1rem;
}

@media (max-width: 768px) {
  .psBox {
    width: 100%;
    margin: auto;
  }

  .psItem {
    width: 40%;
    margin: 0 0.5rem;
  }

  .psItem2 {
    width: 40%;
    margin: 0 0.5rem;
  }
}

.psItem {
  width: 24%;
  background: white;
  padding-top: 5%;
  padding-bottom: 3%;
  flex-direction: column;
  display: flex;
}

.psItem3 {
  width: 25%;
}

.psItem a:hover {
  text-decoration: none;
}

@media (max-width: 768px) {
  .psItem {
    width: 44%;
    margin: 0;
  }
}

.psInner2 {
  max-width: 50%;
  margin: auto;
}

@media (max-width: 768px) {
  .psInner2 {
    max-width: 100%;
  }
}

.psItem2 {
  width: 48%;
  background: white;
  padding-top: 5%;
  padding-bottom: 3%;
  flex-direction: column;
  display: flex;
  position: relative;
}

.psItem2 a:hover {
  text-decoration: none;
}

@media (max-width: 768px) {
  .psItem2 {
    width: 40%;
  }
}

.section11_mask {
  font-size: 2rem;
}

@media (max-width: 768px) {
  .section11_mask {
    font-size: 1.5rem;
  }
}

.linkBox {
  margin-top: auto;
}

.section_add_cart {
  border-radius: 0.375rem;
  background: var(--Paulas-Choice-primary-Onyx-100, #333133);
  text-decoration: none !important;
  color: var(--Paulas-Choice-basic-white, #fff) !important;
  text-align: center;

  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5rem;
  /* 120% */
  padding: 0.75rem 1.5rem;
  display: inline-block;
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
}

@media (max-width: 768px) {
  .section_add_cart {
    border-radius: 0.375rem;
    background: var(--Paulas-Choice-primary-Onyx-100, #333133);
    text-decoration: none !important;
    color: var(--Paulas-Choice-basic-white, #fff) !important;
    text-align: center;

    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.5rem;
    /* 120% */
    padding: 0.75rem 1.5rem;
    display: inline-block;
    display: flex;
    align-items: center;
    cursor: pointer;

    width: 100%;
  }
}

.section_read_more {
  border-radius: 0.375rem;
  background: var(--Paulas-Choice-primary-Onyx-100, #fff);
  text-decoration: none !important;
  color: var(--Paulas-Choice-basic-white, #333133) !important;
  text-align: center;

  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5rem;
  /* 120% */
  padding: 0.75rem 1.5rem;
  display: inline-block;
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
  border-radius: 0.375rem;
  border: 1px solid var(--Paulas-Choice-primary-Onyx-100, #333133);
}

@media (max-width: 768px) {
  .section_read_more {
    border-radius: 0.375rem;
    background: var(--Paulas-Choice-primary-Onyx-100, #fff);
    text-decoration: none !important;
    color: var(--Paulas-Choice-basic-white, #333133) !important;
    text-align: center;

    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.5rem;
    /* 120% */
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
}

.hotlearn .slick-next {
  right: -20px;
}

.hotlearn .slick-prev {
  left: -20px;
}

.section1 {
  display: flex;
  align-items: start;
  gap: 1.5rem;
  padding: 1.5rem;
}

@media (max-width: 768px) {
  .section1 {
    flex-direction: column;
    padding: 0;
  }
}

.section1_img {
  width: 21.4375rem;
}

@media (max-width: 768px) {
  .section1_img {
    width: auto;
  }
}

.section1_tag_container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .section1_tag_container {
    grid-template-columns: repeat(4, 180px);
  }
}

.grid-col-1 {
  grid-column: span 1;
}
.grid-col-2 {
  grid-column: span 2;
}

.section1_product_tag {
  background: var(--Paulas-Choice-secondary-AHA-100, #888b8d);
  height: 2rem;
  color: var(--Paulas-Choice-basic-white, #fff);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.625rem; /* 144.444% */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
  margin-left: 13px;
}

.tag_head {
  margin-left: 0px;
}

.tag_tail {
  margin-right: 0px;
}

.section1_product_tag .arrow-head {
  position: absolute;
  right: -13px;
}

.section1_product_tag .arrow-tail {
  position: absolute;
  left: -13px;
}

.section1_product_container {
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .section1_product_container {
    grid-template-columns: repeat(4, 180px);
  }
}

.product_item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .product_item {
    width: 180px;
    flex-shrink: 0;
  }
}

.section_total_text {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.625rem; /* 144.444% */
}

.text-0097A9 {
  color: #0097a9;
}

.text-BF004A {
  color: #bf004a;
}

.section1_total {
  display: flex;
  flex: 1 1 0%;
  justify-content: center;
  align-items: center;
  gap: 1.81rem;
}

@media (max-width: 768px) {
  .section1_total {
    flex-direction: column;
    margin: 1rem 1.5rem 1.5rem;
  }
}

.section1_container {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .section1_container {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .section_scroll_container {
    overflow-x: auto;
    width: 100%;
    padding-left: 1.5rem;
  }

  .section_scroll_container::-webkit-scrollbar {
    height: 0px;
  }
}

.product_img_tag {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--Paulas-Choice-primary-Potency, #c7fd50);
  text-align: right;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  align-items: center;
  height: 40px;
}

.product_tag {
  position: absolute;
  top: 0px;
  left: -20px;
}

.section_title {
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;

  font-size: 2.5rem;
  font-weight: 700;
  line-height: 3rem; /* 120% */
  padding: 1.5rem 0;
}

@media (max-width: 768px) {
  .section_title {
    font-size: 1.8rem;
    line-height: 1.875rem; /* 125% */
  }
}

.section2_img {
  max-width: 22.875rem;
}

.section2 {
  padding: 2.5rem 1.5rem;
  background: var(--Paulas-Choice-primary-Moon-100, #f6f7f6);
  display: flex;
  gap: 3rem;
}

@media (max-width: 768px) {
  .section2 {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
  }
}

.section2:nth-child(odd) {
  background-color: #fff;
}

.section2_content {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
}

.section2_content_title {
  color: #333133;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 2.375rem; /* 126.667% */
}

@media (max-width: 768px) {
  .section2_content_title {
    font-size: 1.5rem;
    line-height: 1.875rem; /* 125% */
  }
}

.section2_content_title_price {
  font-size: 1.125rem;
  line-height: 1.625rem;
}

.section2_content_tags {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
}

@media (max-width: 768px) {
  .section2_content_tags {
    flex-wrap: wrap;
  }
}

.section2_content_tag {
  border-radius: 1.875rem;
  background: #99d5dd;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.25rem; /* 111.111% */
  padding: 0.5rem;
}

@media (max-width: 768px) {
  .section2_content_tag {
    font-size: 1.1rem;
  }
}

.section2_content_usage {
  padding: 0.5rem;
  background: var(--Paulas-Choice-primary-Onyx-100, #333133);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.section2_content_usage > div {
  color: var(--Paulas-Choice-basic-white, #fff);

  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.625rem; /* 144.444% */
}

.section2_content_comments {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .section2_content_comments {
    flex-direction: row;
    gap: 1.5rem;
    min-width: max-content;
  }
}

.section2_content_comment {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-radius: 0.5rem;
  background: var(--White-White, #fff);
  padding: 1rem 1.5rem;
  width: 442px;

  /* Shadow 1 */
  box-shadow: 0 1px 3px 0 rgba(166, 175, 195, 0.4);
}

@media (max-width: 768px) {
  .section2_content_comment {
    width: 280px;
    flex-shrink: 0;
  }
}

.section2_content_comment_header {
  display: flex;
  flex-direction: column;
  gap: 0.19rem;
}

.section2_content_comment_header_name {
  /* Body Medium/Medium */
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem; /* 150% */
}

.section2_content_comment_header_title {
  /* Body Large/Bold */
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.625rem; /* 144.444% */
}

.section2_content_comment_content {
  overflow: hidden;
  color: var(--Paulas-Choice-primary-Wish-Rock-100, #52565b);
  text-overflow: ellipsis;

  /* Body Medium/Medium */
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem; /* 150% */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  align-self: stretch;
}

.section2_content_footer {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0;
}

@media (max-width: 768px) {
  .section2_content_footer {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.section2_img_container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .section2_img_container {
    display: none;
  }
}

.section2_img_container2 {
  display: none;
}

@media (max-width: 768px) {
  .section2_img_container2 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}

.section3 {
  padding: 1.5rem 1.5rem 3rem;
}

.section3_products {
  display: flex;
  gap: 3rem;
}

@media (max-width: 768px) {
  .section3_products {
    gap: 1.5rem;
    min-width: max-content;
  }
}

.section3_product {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
}

@media (max-width: 768px) {
  .section3_product {
    width: 260px;
    flex-shrink: 0;
  }
}

.section3_product_tag {
  color: var(--Paulas-Choice-basic-white, #fff);
  /* Heading 6 */
  font-family: "Noto Sans TC";
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.875rem; /* 125% */
  background: var(--Paulas-Choice-primary-Truthful-Teal-100, #0097a9);
  padding: 0.5rem;
  display: flex;
  justify-content: center;
  width: 100%;
}

@media (max-width: 768px) {
  .section3_product_tag {
    font-size: 1.2rem;
  }
}

.section3_product_name {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2rem; /* 133.333% */
  padding: 0.5rem 2.7rem;
}

@media (max-width: 768px) {
  .section3_product_name {
    font-size: 1.2rem;
    padding: 0.5rem;
  }
}

.section3_product_price {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 2.375rem; /* 211.111% */
  display: flex;
  justify-content: center;
}

.section3_product_footer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.section3_footer {
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
}

.section_title_boder {
  border-top: 1px solid var(--Paulas-Choice-secondary-AHA-40, #cfd1d1);
}

.section4_1 {
  margin-bottom: 1.5rem;
}
.section4_1 > div:not(:first-child) {
  max-width: 860px;
  margin: auto;
}

@media (max-width: 768px) {
  .section4_1 > div:not(:first-child)::-webkit-scrollbar,
  .section4_2 > div:not(:first-child)::-webkit-scrollbar {
    height: 0px;
  }
}

.section4_2 {
  margin-bottom: 1.5rem;
}

/* @media (max-width: 768px) {
  .section4_2 > div:not(:first-child) {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
} */

.section4_1_tag_container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* @media (max-width: 768px) {
  .section4_1_tag_container {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    min-width: calc(100vw - 2rem);
    padding-bottom: 1rem;
  }
} */

.section4_2_tag_container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .section4_1_tag_container {
    grid-template-columns: repeat(4, 180px);
  }
  .section4_2_tag_container {
    grid-template-columns: repeat(6, 180px);
  }
}

/* @media (max-width: 768px) {
  .section4_2_tag_container {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    min-width: calc(100vw - 2rem);
    padding-bottom: 1rem;
  }
} */

/* 滾動控制元件樣式 */
.scroll_controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 1.5rem;
}

@media (min-width: 769px) {
  .scroll_controls {
    display: none;
  }
}

.scroll_progress_container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}

.scroll_progress_bar {
  height: 4px;
  background-color: #e5e5e5;
  border-radius: 2px;
  overflow: hidden;
  flex: 1;
  position: relative;
}

.scroll_progress_fill {
  height: 100%;
  background-color: #333133;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.scroll_percentage {
  font-size: 0.875rem;
  font-weight: 600;
  color: #333133;
  min-width: 3rem;
  text-align: right;
}

.scroll_buttons {
  display: flex;
  gap: 0.5rem;
}

.scroll_btn {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #333133;
  background-color: #fff;
  color: #333133;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll_btn:hover:not(:disabled) {
  background-color: #333133;
  color: #fff;
}

.scroll_btn:disabled {
  border-color: #e5e5e5;
  color: #e5e5e5;
  cursor: not-allowed;
}

.scroll_btn:disabled:hover {
  background-color: #fff;
  color: #e5e5e5;
}
