.banner-wrapper {
  width: 100%;
  /* padding: 0 3%; */
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.banner-wrapper .long-banner {
  width: 100%;
  height: 400px;
  position: relative;
}

.banner-wrapper .long-banner::before {
  content: '';
  position: absolute;
  background: #000;
  opacity: 0.2;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.banner-wrapper .long-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-wrapper .long-banner .long-banner-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.banner-wrapper .long-banner .long-banner-content .long-banner-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 50px;
  font-weight: 600;
  text-align: center;
  z-index: 2;
  line-height: 1.2;
}

.banner-wrapper .one-banner {
  padding: 0 5%;
  width: 100%;
  height: 300px;
  position: relative;
}

.banner-wrapper .one-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-wrapper .two-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 5%;
}

.banner-wrapper .two-banner .two-banner-item {
  width: 50%;
  height: 100%;
}

.banner-wrapper .two-banner .two-banner-item a {
  display: inline-block;
  overflow: hidden;
  width: 100%;
}

.banner-wrapper .two-banner .two-banner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s ease-in-out;
}

.banner-wrapper .two-banner .two-banner-item a:hover img {
  transform: scale(1.05);
}


.qodef-page-title {
  height: 100px;
}

.qodef-page-title .qodef-m-content,
.qodef-page-title .qodef-m-content.qodef-content-full-width {
  padding-top: 0;
  padding-left: 5%;
  padding-right: 5%;
}

@media only screen and (max-width: 1024px) {

  .qodef-page-title .qodef-m-content,
  .qodef-page-title .qodef-m-content.qodef-content-full-width {
    padding-top: 0px;
    padding-left: 3%;
    padding-right: 3%;
  }
}


.product-container {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  padding: 0 5%;
  margin-bottom: 50px;
}

.product-container .product-filter {
  width: 20%;
}


.filter-section {
  margin-bottom: 32px;
}

.filter-title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 12px;
  padding-bottom: 4px;
  position: relative;
}

.filter-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 15%;
  height: 2px;
  background: #222;
}

.filter-list {
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: 8px;
}

.filter-list label {
  display: flex;
  align-items: center;
  font-size: 15px;
  margin-bottom: 8px;
  cursor: pointer;
  user-select: none;
}

.filter-list input[type="checkbox"] {
  margin-right: 8px;
  accent-color: #162d56;
  width: 16px;
  height: 16px;
}


.filter-list .checked {
  color: #162d56;
  font-weight: bold;
}

.filter-section:not(:last-child) {
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.pro-discount {
  background-color: #abccd8 !important;
  color: #162d56 !important;
}

.pro-discount-top {
  top: 50px !important;
}

.original-price {
  text-decoration: line-through;
  color: #999;
  margin-left: 10px;
  font-size: 15px;
}

.pro-star {
  display: flex;
  align-items: center;
  font-size: 28px;
  gap: 2px;
}

.pro-star .star {
  color: #cfd3dc;
  transition: color 0.2s;
  font-size: 20px;
}

.pro-star .star.active {
  color: #ffb800;
}

.pro-star .star-count {
  color: #b0b5c3;
  font-size: 17px;
  margin-left: 8px;
}

.selected-filters {
  margin: 10px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-tag {
  background: #f5f5f5;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
}

.filter-tag .remove {
  cursor: pointer;
  color: #999;
  font-size: 16px;
  line-height: 1;
}

.filter-tag .remove:hover {
  color: #333;
}

.price .pp-amount {
  color: #162d56;
  font-weight: 500;
  font-size: 26px;
  margin: 5px 0 0 0;
}

.blog-swiper {
  overflow: hidden;
  position: relative;
  min-height: 300px;
}

.swiper-pagination {
  bottom: 0;
}

.blog-swiper .swiper-slide {
  height: 100%;
}

/* blog */
.blog-section {
  padding: 50px 0;
}

.blog-container {
  margin: 0 5%;
  overflow: hidden;
}


.blog-card {
  overflow: hidden;
  width: 100%;
  /* 三欄 */
  display: flex;
  flex-direction: column;
  height: 100%;
  /* box-shadow: 0 2px 12px rgba(0,0,0,0.08); */

}

.blog-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  /* width: calc(33.333% - 16px); */
}

.blog-card-link:hover .qodef-m-text {
  transform: translateX(-13px);
  color: #162d56;
}

.blog-card-link:hover .qodef-m-text:after {
  opacity: 1;
  transform: translateX(0);
  transition-delay: .1s, .1s
}

.blog-card-link:hover .qodef-button.qodef-html--link:before {
  opacity: 0;
  transform: translateX(-12px)
}


.blog-card .qodef-button.qodef-layout--outlined {
  border: none;
}

.blog-card .img-box {
  position: relative;
  overflow: hidden;
}

.blog-card .img-box::before {
  position: absolute;
  border-radius: 50%;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  background-color: rgba(255, 255, 255, .3);
  content: "";
  z-index: 2;
}

.blog-card .img-box:hover::before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: .6s;
}

.blog-card .img-box::after {
  position: absolute;
  border-radius: 50%;
  width: 0;
  height: 0;
  top: 80%;
  left: 50%;
  background-color: rgba(255, 255, 255, .3);
  content: "";
  z-index: 2;
}

.blog-card .img-box:hover::after {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: .6s;
}

.blog-card img {
  max-height: 279px;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 278px;
  object-fit: cover;
  transition: opacity .5s, transform 2s cubic-bezier(0, 0, .44, 1.18), -webkit-transform 2s cubic-bezier(0, 0, .44, 1.18);
}

.blog-card-link:hover img {
  transform: scale(1.09);
}


.blog-content {
  padding: 15px 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.qodef-e-bottom-holder {
  margin-top: auto;
  /* 讓查看更多自動吸底 */
}

.blog-content h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
  line-height: 1.5;
}

.blog-date {
  font-size: 13px;
  color: #333;
  font-weight: 400;
}

.blog-content p {
  flex: 1;
  font-size: 15px;
  color: #4a4a4a;
  line-height: 23px;
}

.reset-title {
  text-align: center;
  font-size: 50px !important;
  font-weight: 800;
  letter-spacing: 5px;
}

@media (max-width: 900px) {
  .blog-card-link {
    width: 100%;
    margin-bottom: 24px;
  }

  .blog-container {
    flex-direction: column;
    gap: 0;
  }
}




/* 商品詳情 */
.product-detail-container {
  width: 100% !important;
  padding: 0 5%;
}

.pro-des-box {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
}

.pro-des-box ul {
  margin-bottom: 0;
}

.goPay-btn {
  margin-left: 15px !important;
}

.assemble-service {
  margin-top: 20px;
  margin-bottom: 30px;
}

.assemble-title {
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
  font-size: 15px;
}

.assemble-title .selected-label {
  color: #333;
  font-weight: 600;
}

.assemble-options {
  display: flex;
  gap: 8px;
}

.assemble-option {
  padding: 8px 18px;
  border: none;
  background: #f5f5f5;
  color: #222;
  font-size: 14px;
  border-radius: 2px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.2s, color 0.2s;
}

.assemble-option.active {
  background: #162d56;
  color: #fff;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.qodef-svg--eyes {
  animation: blink 1.3s infinite;
}

.pay-img {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 20px;
}

.pay-img div {
  width: 38px;
  height: 24px;
}

.pay-img div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-card {
  position: relative;
  padding: 20px 25px 20px 70px;
  border-radius: 10px;
  margin: 25px 0;
  background: white;
  box-shadow: 0 3px 20px rgba(22, 45, 86, 0.08);
  border-left: 4px solid transparent;
  transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 25px rgba(22, 45, 86, 0.12);
}

/* 图标容器 */
.card-icon {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* 特定卡片样式 */
.guide-card {
  border-left-color: #4CAF50;
  background: linear-gradient(to right, #f1f8e9 0%, white 15%);
}

.guide-card .card-icon {
  background-color: #E8F5E9;
}

.guide-card svg {
  fill: #2E7D32;
}

.terms-card {
  border-left-color: #162d56;
  background: linear-gradient(to right, #e3f2fd 0%, white 15%);
}

.terms-card .card-icon {
  background-color: #deecf7;
  top: 10px;
}

.terms-card svg {
  fill: #162d56;
}

/* 内容样式 */
.card-content {
  color: #455A64;
}

.guide-link {
  font-size: 16px;
  font-weight: 600;
  color: #2E7D32;
  text-decoration: none;
  display: inline-block;
  padding: 8px 0;
}

.guide-link:hover {
  text-decoration: underline;
}

.terms-card h3 {
  color: #162d56;
  margin: 0 0 8px 0;
  font-size: 18px;
}

.terms-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.terms-card p a {
  text-decoration: underline;
  font-weight: 600;
}

/* 清潔提示卡片專用樣式 */
.cleaning-card {
  border-left-color: #7CB342;
  background: linear-gradient(to right, #F1F8E9 0%, white 15%);
}

.cleaning-card .card-icon {
  background-color: #DCEDC8;
}

.cleaning-card svg {
  fill: #689F38;
}

.cleaning-card h3 {
  color: #558B2F;
  margin: 0 0 8px 0;
  font-size: 18px;
}

.highlight-text {
  color: #2E7D32;
  font-weight: 600;
  border-bottom: 2px dotted #81C784;
  padding-bottom: 1px;
}



.pro-des-content {
  padding: 20px 0;
}

.con-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #162d56;
}

.con-p {
  font-size: 15px;
  font-weight: 400;

}

.content-item {
  margin-bottom: 30px;
}

.pro-table {
  border: 1px solid #162d56 !important;
  width: 100% !important;
}

.pro-table th {
  border: 1px solid #162d56 !important;
  width: 50%;
  padding: 10px;
}

.pro-table td {
  padding-left: 10px !important;
  border: 1px solid #162d56 !important;
  width: 50%;
}

.pro-after-sales li {
  font-size: 15px;
}

.mar-sales-item {
  margin-bottom: 30px;
}

.pro-after-sales ol li {
  margin-bottom: 3px;
}

.pro-after-sales strong {
  font-weight: 600;
}

.pro-after-sales p {
  font-size: 15px;
  font-weight: 400;
}

.pro-after-sales a:hover {
  text-decoration: underline;
  color: #162d56;
}

.clean-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 15px;
}

.tips {
  margin-bottom: 30px;
}

.clean-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  margin: 0 auto;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.clean-table tr {
  border: none;
}

.clean-table caption {
  font-size: 18px;
  font-weight: bold;
  background-color: #162d56;
  color: #fff;
  padding: 12px;
  border-radius: 8px 8px 0 0;
  border: 1px solid;
  border-bottom: none;
}


.clean-table th {
  background-color: #162d56;
  color: #fff;
  border: 1px solid #c3d4de;
  padding: 10px;
  font-weight: 600;
}


.clean-table td {
  border: 1px solid #c3d4de;
  padding: 10px;
  color: #333;
}

.clean-table tbody tr:nth-child(odd) {
  background-color: #f8fafc;
}

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

.clean-table tbody tr:hover {
  background-color: #f5f5f5;
}

/* 會員積分 */
/* 會員積分 */
.join-background {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url('/static/picture/dollars-pic-1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 550px;
}

.join-background h2 {
  font-size: 40px;
  font-weight: 600;
  text-transform: unset;
  margin: 10px 0;
  color: #162d56;
}

.join-background p {
  font-size: 20px;
  font-weight: 400;
  padding-right: 0 !important;
  margin-bottom: 20px !important;
}

.join-btn-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.join-btn-box .pro-btn .qodef-html--link {
  padding: 8px 40px 8px 50px;
}



.petdollars-usage {
  text-align: center;
  margin: 40px 0 0 0;
}

.usage-title {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  margin-top: 150px;
  color: #162d56;
  margin-bottom: 30px;
  text-transform: unset;
}

.usage-desc {
  font-size: 18px;
  color: #162d56;
  margin-bottom: 18px;
  margin: 0 auto 20px;
  max-width: 510px;
}

.usage-tip {
  font-size: 18px;
  color: #162d56;
  font-weight: 600;
  border-bottom: 2px solid #abccd8;
  border-top: 2px solid #abccd8;
  padding: 14px 0;
  margin: 0 auto 30px auto;
  max-width: 320px;
}

.usage-list {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
  margin-top: 40px;
}

.usage-item {
  min-width: 250px;
}

.usage-item .amount {
  font-size: 26px;
  font-weight: bold;
  color: #162d56;
  margin-bottom: 8px;
}

.usage-item .points {
  font-size: 18px;
  color: #162d56;
}

.usage-btn {
  background: #7a4a0a;
  color: #fff;
  border: none;
  border-radius: 2px;
  padding: 12px 40px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.2s;
}

.usage-btn:hover {
  background: #a86c1a;
}

@media (max-width: 768px) {
  .usage-list {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}

.refer-bg {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 150px;
  background-image: url('/static/picture/refer-bg-1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  padding: 20px;
}

.refer-box {
  background: #fff;
  max-width: 600px;
  width: 100%;
  padding: 48px 40px 48px 40px;
  border-radius: 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  z-index: 2;
  position: relative;
  text-align: center;
}

.refer-title-small {
  font-size: 18px;
  color: #000;
  margin-bottom: 50px;
  font-weight: 600;
}

.refer-title-big {
  font-size: 36px;
  font-weight: 600;
  color: #162d56;
  margin-bottom: 20px;
}

.refer-desc {
  font-size: 18px;
  color: rgba(55, 51, 48);
  margin-bottom: 32px;
}

.refer-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.refer-form input {
  padding: 12px 16px;
  font-size: 15px;
  border-bottom: 1px solid #ccc;
  border-radius: 2px;
  outline: none;
}

@media (max-width: 900px) {
  .refer-box {
    max-width: 95vw;
    padding: 32px 10px;
  }
}

.pet-dollars-system {
  padding: 80px 20px;
  background: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #162d56;
  margin-bottom: 60px;
  position: relative;
  text-transform: unset;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #abccd8;
  margin: 20px auto 0;
}

.steps-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  background: white;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  width: 280px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
  font-size: 3rem;
  font-weight: 700;
  color: #abccd8;
  margin-bottom: 20px;
}

.step-title {
  font-size: 1.5rem;
  color: #162d56;
  margin-bottom: 15px;
}

.step-description {
  color: #666;
  line-height: 1.6;
  padding-right: 0 !important;
}

@media (max-width: 768px) {
  .steps-container {
    flex-direction: column;
    align-items: center;
  }
}

/* 賺取方法 */
.earn-points-section {
  padding: 80px 20px;
  background: white;
}

.earn-cards-container {
  display: flex;
  justify-content: center;
  /* flex-wrap: wrap; */
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.earn-card {
  width: 33%;
  height: auto;
  aspect-ratio: 1/1;
  background: #f5f9fc;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.earn-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #162d56 0%, #abccd8 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.earn-card:hover::before {
  opacity: 1;
}

.earn-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  z-index: 2;
  transition: all 0.3s ease;
}

.earn-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #162d56;
  margin-bottom: 10px;
  z-index: 2;
  transition: all 0.3s ease;
}

.earn-method {
  color: #666;
  z-index: 2;
  transition: all 0.3s ease;
  padding-right: 0 !important;
}

.earn-hover-content {
  position: absolute;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 16px;
}

.earn-hover-content a {
  color: #fff;
}

.earn-hover-content button {
  background: #fff;
  color: #162d56;
  border: none;
  padding: 8px 32px;
  font-size: 15px;
  border-radius: 2px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.earn-hover-content span {
  color: #fff;
  font-size: 15px;
}

.earn-card:hover .earn-icon,
.earn-card:hover .earn-amount,
.earn-card:hover .earn-method {
  opacity: 0;
  transform: translateY(-20px);
}

.earn-card:hover .earn-hover-content {
  opacity: 1;
  transform: translateY(0);
}




/* 底部固定 */
.product-action-bar {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 18px 5%;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  min-width: 0;
}

.product-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 10px;
}

.product-info {
  flex: 1 1 0;
  min-width: 0;
}

.product-title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 0px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-shipping {
  color: #162d56;
  font-size: 14px;
  text-decoration: underline;
}

.product-price {
  margin-right: 30px;
  text-align: right;
  min-width: 120px;
}

.old-price {
  color: #999;
  text-decoration: line-through;
  font-size: 15px;
  margin-right: 6px;
}

.new-price {
  color: #162d56;
  font-size: 18px;
  font-weight: bold;
}

.product-qty {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 2px;
  margin-right: 24px;
  background: #fff;
}

.qty-btn {
  background: none;
  border: none;
  font-size: 20px;
  width: 40px;
  height: 40px;
  color: #222;
  cursor: pointer;
  font-weight: bold;
}

.qty-input {
  width: 40px !important;
  height: 38px;
  border: 0 !important;
  margin-bottom: 0 !important;
  text-align: center;
  font-size: 16px;
  outline: none;
  background: transparent;
}

.add-cart-btn {
  background: #c89a53;
  color: #fff;
  border: none;
  border-radius: 2px;
  padding: 10px 40px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

.add-cart-btn:hover {
  background: #a87c3a;
}

.fixed-bottom-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(100%);
  justify-content: flex-end;
  z-index: 9;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;

}

.fixed-bottom-bar.show {
  transform: translateY(0);

}

.fixed-bottom-bar.hide {
  transform: translateY(100%);
}

@media (max-width: 900px) {
  .product-action-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .product-price,
  .product-qty {
    margin-right: 0;
  }
}


.filter-guide {
  background: #f8f8f8;
  padding: 15px;
  margin-bottom: 25px;
  border-radius: 8px;
}

.filter-guide-title {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 0;
  color: #333;
}

.guide-icon {
  padding-bottom: 3px;
}

.filter-guide h4 {
  margin-top: 0;
  color: #333;
  font-size: 18px;
}

.filter-guide p {
  margin-bottom: 10px;
}

.filter-guide a {
  color: #162d56;
  font-weight: 600;
  text-decoration: underline;
}


/* 移动端筛选按钮 */
.mobile-filter-btn {
  display: none;
  align-items: center;
  gap: 8px;
  z-index: 900;
  font-size: 16px;
}

.mobile-filter-btn svg {
  margin-bottom: 3px;
}

/* 筛选侧滑弹窗 */
.mobile-filter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-filter-sidebar {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #fff;
  z-index: 1002;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-filter-header {
  padding: 20px 15px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-filter-header h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.mobile-filter-content {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
}

.mobile-filter-footer {
  padding: 15px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 10px;
  /* margin-bottom: 73px; */
}

.mobile-filter-footer button {
  flex: 1;
  padding: 10px;
  border-radius: 4px;
}

.reset-filter {
  background: #f5f5f5;
  border: 1px solid #ddd;
}

.apply-filter {
  background: #162d56;
  color: #fff;
  border: none;
}

.close-filter {
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: #888;
  transition: all .3s ease;
}

.close-filter:hover {
  color: #162d56;
  transform: rotate(180deg);
}

/* 筛选内容调整 */
.mobile-filter-sidebar .product-filter {
  padding: 0;
}

.mobile-filter-sidebar .filter-section {
  margin-bottom: 20px;
}

.mobile-filter-sidebar .filter-title {
  font-weight: 600;
  margin-bottom: 15px;
}

.mobile-filter-sidebar .filter-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-filter-sidebar .filter-list label {
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background 0.2s;
  margin-bottom: 5px;
}

.mobile-filter-sidebar .filter-list label:active {
  background: #f5f5f5;
}

/* 只在移动端显示 */
@media (max-width: 991px) {
  .mobile-filter-btn {
    display: inline-flex;
    width: 40%;
  }

  /* 隐藏pc筛选 */
  .product-filter {
    display: none;
  }

  /* 显示弹窗时的状态 */
  .mobile-filter-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .mobile-filter-sidebar.active {
    right: 0;
  }
}

.reset-filter {
  color: #333333;
}

.qodef-woo-results .woocommerce-ordering {
  position: relative;
}

.qodef-woo-results .woocommerce-ordering::after {
  content: '';
  display: block;
  width: 12px;
  height: 13px;
  background-image: url('/static/picture/arrow-bottom.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /* background-color: #4a4a4a; */
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
}

[class*=morkie] .select2-container--default .select2-selection--single .select2-selection__arrow:before {
  display: none !important;
}


/* 評論-start */
.review-summary-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 25px 30px 25px 30px;
  margin: 20px 0;
  gap: 30px;
  position: relative;
}

.review-summary-left {
  display: flex;
  gap: 80px;
  align-items: center;
}

.review-average {
  text-align: center;
  min-width: 90px;
}

.review-score {
  font-size: 45px;
  font-weight: 700;
  color: #ffb400;
  display: block;
  margin-bottom: 20px;
}

.custom-review-card .review-stars {
  margin-bottom: 5px;
  width: 100%
}

.review-count {
  font-size: 17px;
  color: #888;
}

.review-breakdown {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 2px;
}

.review-bar-row {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background 0.15s;
  border-radius: 6px;
  padding: 2px 6px;
}

.review-bar-row:hover,
.review-bar-row.active {
  background: #f7f3e8;
}

.review-bar-label {
  width: 2.2em;
  font-size: 1rem;
  color: #666;
  margin-right: 4px;
}

.review-bar-bg {
  flex: 1;
  height: 10px;
  background: #eee;
  border-radius: 5px;
  margin-right: 8px;
  position: relative;
  overflow: hidden;
  width: 150px;
}

.review-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #ffb400 60%, #ffe7a0 100%);
  border-radius: 5px;
  transition: width 0.3s;
}

.review-bar-count {
  width: 2.5em;
  text-align: right;
  font-size: 1rem;
  color: #333;
}

.review-summary-right {
  position: relative;
  min-width: 120px;
}

.review-filter-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f7f3e8;
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: background 0.15s;
}

.review-filter-btn:hover {
  background: #ffe7a0;
}

.review-filter-dropdown {
  display: none;
  position: absolute;
  top: 44px;
  right: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
  min-width: 150px;
  z-index: 10;
  padding: 10px 0;
  animation: fadeIn 0.2s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

.review-filter-dropdown .review-filter-title {
  font-size: 1rem;
  color: #888;
  padding: 0 18px 6px 18px;
  font-weight: 600;
}

.review-filter-dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.review-filter-dropdown li {
  padding: 8px 18px;
  cursor: pointer;
  color: #333;
  border-left: 3px solid transparent;
  transition: background 0.15s, border-color 0.15s;
}

.review-filter-dropdown li.active,
.review-filter-dropdown li:hover {
  background: #f7f3e8;
  border-left: 3px solid #ffb400;
  color: #ffb400;
}

/* 評論-end */
/* 評論列表-start */
.custom-review-card {
  background: #fff;
  /* border-radius: 14px; */
  /* box-shadow: 0 2px 12px rgba(0,0,0,0.06); */
  padding: 10px 25px 20px 25px !important;
  margin-bottom: 24px;
  list-style: none;
  /* transition: box-shadow 0.2s; */
  border-bottom: 1px solid #eee;
  width: 100%;
}

/* .custom-review-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
} */
.woocommerce-review__dash,
.woocommerce-review__published-date {
  font-size: 13px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  row-gap: 3px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.review-stars {
  display: flex;
  gap: 2px;
}

.review-author {
  font-weight: 700;
  color: #222;
  margin-right: 4px;
  font-size: 20px;
}

.review-region {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #b88c00;
  gap: 2px;
}

.region-flag {
  width: 20px;
  margin-right: 2px;
}

.review-verified {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #162d56;
  margin-left: 8px;
  gap: 3px;
  font-weight: 500;
}

.review-content {
  font-size: 16px;
  color: #444;
  margin-bottom: 10px;
}

.review-images {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.review-images img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #eee;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: transform 0.15s;
  cursor: pointer;
}

.review-images img:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
}

/* 評論列表-end */

/* 上傳評論圖片 */
.review-upload-images {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.upload-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border: 1.5px dashed #bbb;
  border-radius: 10px;
  cursor: pointer;
  background: #fafafa;
  transition: border-color 0.2s;
  position: relative;
  font-size: 1em;
}

.upload-box:hover {
  border-color: #ffb400;
}

.upload-plus {
  font-size: 2.2em;
  color: #888;
  margin-bottom: 2px;
  line-height: 1;
}

.upload-text {
  color: #444;
  font-size: 1em;
  margin-bottom: 2px;
}

.upload-count {
  color: #888;
  font-size: 0.95em;
}

.upload-preview-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.upload-preview-item {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eee;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.upload-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.upload-remove-btn {
  position: absolute;
  top: 2px;
  right: 2px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.15s;
}

.upload-remove-btn:hover {
  background: #162d56;
}

.accordion-list {
  display: none;
}

#qodef-page-inner {
  padding: 0 !important;
}

@media screen and (max-width:768px) {



  #qodef-page-outer {
    margin-top: 110px;
  }

  .banner-wrapper .long-banner {
    height: 260px;
  }

  .banner-wrapper .long-banner .long-banner-content .long-banner-title {
    font-size: 28px;
    width: 95%;
    text-align: center;
  }

  .banner-wrapper .one-banner {
    height: 160px !important;
    padding: 0 3%;
  }

  .banner-wrapper .two-banner {
    padding: 0 3%;
    height: 100px;
  }

  .product-container {
    padding: 0 3%;
    flex-direction: column;
  }

  .select2-container--default .select2-results__options {
    font-size: 15px !important;
  }

  .qodef-woo-results .woocommerce-ordering .select2-container--default {
    width: 180px !important;
  }

  .qodef-woo-results {
    position: absolute;
    right: 0;
    top: -48px;
  }

  .selected-filters {
    display: none;
  }

  .qodef-woo-product-list {
    padding-top: 30px;
  }

  .qodef-woo-results .woocommerce-ordering .select2-container--default .select2-selection {
    border-width: 1px;
    font-size: 15px;
  }

  #qodef-woo-page .qodef-woo-product-mark {
    font-size: 11px;
    padding: 6px 10px 5px;
  }

  .pro-discount-top {
    top: 38px !important;
  }

  .pro-star {
    font-size: 15px;
  }

  .pro-star .star {
    font-size: 15px;
  }

  .pro-star .star-count {
    font-size: 15px;
    margin-left: 5px;
  }

  .qodef-woo-product-list .qodef-e-content {
    padding: 10px 0 0;
  }

  .original-price {
    margin-left: 5px;
    font-size: 14px;
  }

  #qodef-woo-page .price {
    font-size: 15px;
  }

  .qodef-page-title {
    height: 75px;
  }


  .elementor-23 .elementor-element.elementor-element-1c32ac0 {
    padding: 30px 0;
  }

  .blog-section {
    padding: 0 0 50px 0;
  }

  .blog-card img {
    min-height: 220px;
  }

  .reset-title {
    font-size: 28px !important;
  }

  .swiper-pagination {
    margin-top: 0 !important;
  }


  /* 詳情頁 */
  .fixed-bottom-bar {
    display: none !important;
  }

  .product-detail-container {
    padding: 0 3%;
  }

  .product-detail-container .qodef-woo-single-inner {
    display: block !important;
  }

  #qodef-woo-page.qodef--single .entry-summary .qodef-woo-product-title {
    font-size: 23px;
  }

  .price .pp-amount {
    font-size: 21px;
  }

  #qodef-woo-page .qodef-woo-ratings .qodef-m-star svg {
    width: 15px;
  }

  #qodef-woo-page.qodef--single .entry-summary .woocommerce-product-details__short-description {
    margin-top: 15px;
  }

  #qodef-woo-page.qodef--single .entry-summary .qodef-sale-boosters .qodef-woo-live-viewing-message {
    font-size: 15px;
  }

  #qodef-woo-page.qodef--single .product_meta .qodef-woo-meta-label {
    font-size: 16px;
  }

  .pay-img {
    flex-wrap: wrap;
    gap: 10px;
  }

  .pay-img div {
    width: 40px;
    height: 25px;
  }

  #qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs {
    flex-direction: row;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    gap: 16px;
  }

  #qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs::after {
    display: none;
  }

  #qodef-woo-page.qodef--single .woocommerce-tabs .qodef-following-border {
    display: none !important;
  }

  #qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li {
    position: relative;
  }

  #qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #162d56;
    z-index: 3;
    transition: all 0.3s ease;
  }

  #qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li a {
    font-size: 17px;
  }

  #qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li.active a {
    color: #162d56;
  }

  /* #qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs::-webkit-scrollbar {

  } */

  .info-card {
    margin: 25px 0;
    padding: 13px 20px 13px 50px;
  }

  .card-icon {
    width: 25px;
    height: 25px;
    left: 15px;
  }

  .card-content p {
    font-size: 15px;
  }

  .content-item {
    margin-bottom: 15px;
  }

  #qodef-woo-page.qodef--single .woocommerce-Reviews .comment_container>img {
    margin-right: 10px;
    /* width: 60px !important; */
  }

  #qodef-woo-page.qodef--single .woocommerce-Reviews .meta {
    margin: 0;
  }

  #qodef-woo-page.qodef--single .woocommerce-Reviews .woocommerce-review__author {
    font-size: 16px;
  }

  #qodef-woo-page.qodef--single .woocommerce-Reviews .woocommerce-review__published-date {
    font-size: 15px;
  }

  .description p {
    margin: 0 !important;
    font-size: 15px;
  }

  #respond .qodef-comment-form .comment-notes {
    margin: 5px 0 10px 0;
    font-size: 16px;
  }

  #qodef-woo-page.qodef--single #review_form .comment-notes~.comment-form-rating {
    margin-top: -10px;
  }

  input[type="text"],
  input[type="email"],
  textarea {
    font-size: 15px;
  }

  #respond .qodef-comment-form .comment-form-cookies-consent {
    font-size: 17px;
  }

  #qodef-woo-page.qodef--single .related>h2 {
    margin: 0;
  }

  /* 積分 */
  .join-background {
    background-image: url('/static/image/landing-row-12-img-01.jpeg');
    /* background-image: none; */
    background-color: #abccd8;
    min-height: 280px;
    margin-bottom: 10px;
  }

  .join-background h2 {
    font-size: 28px;
  }

  .join-background p {
    font-size: 15px;
  }

  .pet-dollars-system {
    padding: 30px 20px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .step-card {
    width: 100%;
  }

  .earn-points-section {
    padding: 30px 0;
  }

  .earn-cards-container {
    flex-direction: column;
    gap: 10px;
  }

  .earn-card {
    width: 100%;
    height: 350px;
  }

  .usage-title {
    margin-top: 0;
    font-size: 28px;
  }

  .usage-desc {
    font-size: 15px;
  }

  .usage-tip {
    font-size: 17px;
    padding: 10px 0;
    margin-bottom: 20px;
  }

  .refer-bg {
    margin-top: 50px;
    height: 450px;
  }

  .refer-box {
    padding: 20px;
  }

  .refer-title-small {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .refer-title-big {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .refer-desc {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .refer-form input {
    margin-bottom: 10px;
  }

  .promotion-container {
    padding: 0;
  }

  .promotion-section {
    padding: 0;
  }

  .mar-sales-item {
    margin-bottom: 20px;
  }

  .clean-title {
    font-size: 22px;
  }

  .clean-table th:first-child {
    min-width: 100px;
    font-size: 16px;
  }

  .clean-table td {
    font-size: 15px;
  }

  .banner-wrapper .two-banner .two-banner-item a {
    height: 100%;
  }


  .review-summary-left {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .review-score {
    font-size: 40px;
    margin-bottom: 10px;
  }

  .review-count {
    font-size: 15px;
    margin-top: 5px;
  }

  .review-bar-bg {
    width: 200px;
  }

  .review-summary-right {
    position: absolute;
    right: 10px;
    top: 15px;
    min-width: 95px;
  }

  .review-filter-btn {
    font-size: 14px;
  }

  .custom-review-card {
    padding: 10px 10px 10px 10px !important;
  }

  .review-content {
    font-size: 15px;

  }

  #qodef-woo-page.qodef--single .shop_attributes th{
    font-size: 16px;
  }
  #qodef-woo-page.qodef--single .shop_attributes td{
    font-size: 15px;
  }


  /* tab */
  .detail-wrapper-pc{
    display: none !important;
  }
  .accordion-list {
    width: 100%;
    margin: 0 auto;
    display: block;
    margin-top: 20px;
  }

  .accordion-item {
    border-bottom: 1px solid #eee;
    background: #fafafa;
  }

  .accordion-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px;
    font-size: 16px;
    font-weight: 500;
    color: #222;
    cursor: pointer;
    background: #f5f5f5;
    transition: background 0.2s;
  }

  .accordion-title.active {
    background: #fffbe6;
    color: #162d56;
  }

  .accordion-icon {
    display: inline-block;
    width: 25px;
    height: 25px;
    background: #162d56;
    color: #fff;
    border-radius: 4px;
    text-align: center;
    line-height: 24px;
    font-size: 18px;
    font-weight: bold;
    transition: background 0.2s, transform 0.2s;
  }

  .accordion-title.active .accordion-icon {
    background: #abccd8;
    color: #222;
    transform: rotate(45deg);
  }

  .accordion-content {
    display: none;
    padding: 0px 16px 30px 16px;
    background: #fff;
    font-size: 1em;
    color: #444;
    animation: fadeInAccordion 0.3s;
  }
  .accordion-content  h2{
    display: none;
  }

  .accordion-item.open .accordion-content {
    display: block;
    padding-top: 10px;
  }

  @keyframes fadeInAccordion {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }

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

















