/** Shopify CDN: Minification failed

Line 2216:1 Expected "}" to go with "{"

**/


/* CSS from section stylesheet tags */
.how-it-works-section {
  background: #FFFFFF;
  margin-top: -80px;
}

.how-it-works-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.how-it-works-layout {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.how-it-works-image {
  flex: 0 0 45%;
  border-radius: 16px;
  overflow: hidden;
  min-height: 400px;
  height: 550px;
}

.how-it-works-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 16px;
}

.how-it-works-content {
  flex: 1;
  padding-left: 2rem;
}

.how-it-works-title {
  font-family: 'DINPro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif !important;
  font-size: 48px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  color: #1D1D1F !important;
  margin: 0 0 2rem 0 !important;
}

.how-it-works-steps {
  margin-bottom: 2.5rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.step-number {
  font-family: 'DINPro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #1D1D1F !important;
  flex-shrink: 0;
  min-width: 30px;
}

.step-text {
  font-family: 'DINPro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
  color: #1D1D1F !important;
  margin: 0 !important;
  flex: 1;
}

.step-text a {
  color: #1D1D1F;
  text-decoration: underline;
}

.step-text a:hover {
  color: #666;
}


.join-now-btn {
  background: #4A5D23;
  color: #FFFFFF;
  font-family: 'DINPro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 2rem;
  text-decoration: none;
  display: inline-block;
}

.join-now-btn:hover {
  background: #3A4D1A;
  transform: translateY(-2px);
  color: #FFFFFF;
  text-decoration: none;
}

.affiliate-info-text {
  margin: 2rem 0 3rem 0;
  text-align: left;
}

.affiliate-info-text p {
  font-family: 'DINPro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
  color: #666666 !important;
  margin: 0 !important;
  max-width: 800px;
}

.affiliate-info-text a {
  color: #1D1D1F;
  text-decoration: underline;
}

.affiliate-partners {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.partner-logo {
  width: 180px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 180px;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  background: #FFFFFF;
  overflow: hidden;
}

.partner-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  padding: 8px;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.partner-logo a:hover img {
  transform: scale(1.05);
}

.partner-placeholder {
  border: 2px solid #FF6B6B;
  border-radius: 8px;
  padding: 8px 16px;
  background: transparent;
  font-family: 'DINPro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #FF6B6B !important;
  text-align: center;
  transition: all 0.2s ease;
  width: 200px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo a .partner-placeholder:hover {
  background: #FF6B6B;
  color: #FFFFFF;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .how-it-works-layout {
    flex-direction: column;
    gap: 2.5rem;
  }
  
  .how-it-works-image {
    flex: none;
    width: 100%;
    height: 450px;
  }
  
  .how-it-works-content {
    padding-left: 0;
  }
  
  .how-it-works-title {
    font-size: 42px !important;
  }
}

@media (max-width: 768px) {
  .how-it-works-section {
    padding: 3rem 0;
  }
  
  .how-it-works-container {
    padding: 0 1rem;
  }
  
  .how-it-works-image {
    height: 350px;
  }
  
  .how-it-works-title {
    font-size: 36px !important;
    text-align: center;
  }
  
  .step-item {
    margin-bottom: 1.25rem;
  }
  
  .step-text {
    font-size: 15px !important;
  }
  
  .join-now-btn {
    width: 100%;
    max-width: 200px;
    display: block;
    margin: 0 auto 2rem auto;
    text-align: center;
  }
  
  .affiliate-partners {
    justify-content: center;
    gap: 1rem;
  }
  
  .partner-logo {
    width: 140px;
    height: 60px;
    flex: 0 0 140px;
  }
  
  .partner-placeholder {
    padding: 6px 12px;
    font-size: 12px !important;
  }
}

@media (max-width: 480px) {
  .how-it-works-image {
    height: 300px;
  }
  
  .how-it-works-title {
    font-size: 28px !important;
  }
  
  .step-number {
    font-size: 16px !important;
    min-width: 25px;
  }
  
  .step-text {
    font-size: 14px !important;
  }
  
  .affiliate-info-text p {
    font-size: 12px !important;
  }
  
  .affiliate-partners {
    gap: 0.5rem;
  }
  
  .partner-logo {
    width: 120px;
    height: 50px;
    flex: 0 0 120px;
  }
  
  .partner-placeholder {
    padding: 4px 8px;
  }
}
.amazon-recommendations {
    width: 100%;
    padding: 80px 0;
    background: #ffffff;
  }

  .amazon-recommendations__container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .amazon-recommendations__header {
    text-align: center;
    margin-bottom: 4rem;
  }

  .amazon-recommendations__title {
    font-family: 'DINPro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif !important;
    font-size: 4rem !important;
    font-weight: 500 !important;
    line-height: 1.288 !important;
    color: #1D1D1F !important;
    margin: 0 !important;
  }

  .amazon-recommendations__subheading {
    font-family: 'DINPro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif !important;
    font-size: 1.25rem !important;
    font-weight: 400 !important;
    line-height: 1.288 !important;
    color: #777777 !important;
    margin: 1rem 0 0 0 !important;
  }

  .amazon-recommendations__grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
  }

  .amazon-recommendations__product-item {
    width: 100%;
  }

  /* Responsive */
  @media (max-width: 1400px) {
    .amazon-recommendations__grid {
      grid-template-columns: repeat(3, 1fr) !important;
    }
  }

  @media (max-width: 991px) {
    .amazon-recommendations__title {
      font-size: 3rem !important;
    }
    
    .amazon-recommendations__grid {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 16px !important;
    }
  }

  @media (max-width: 768px) {
    .amazon-recommendations {
      padding: 60px 0;
    }

    .amazon-recommendations__container {
      padding: 0 1rem;
    }

    .amazon-recommendations__title {
      font-size: 2.5rem !important;
    }
    
    .amazon-recommendations__header {
      margin-bottom: 2rem;
    }
    
    /* 确保移动端始终保持2列布局 */
    .amazon-recommendations__grid {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 12px !important;
    }
  }

  @media (max-width: 480px) {
    .amazon-recommendations__container {
      padding: 0 0.5rem;
    }
    
    /* 移动端保持2列，但间距更小 */
    .amazon-recommendations__grid {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 8px !important;
    }
  }
/* FAQ Section Styles */
.faq-section {
  width: 100%;
  background: #ffffff;
}

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

.faq-section-title {
  font-family: 'DINPro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif !important;
  font-size: 2.5rem !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  color: #1D1D1F !important;
  margin: 0 0 3rem 0 !important;
  text-align: center;
}

.faq-items {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #E5E5E5;
  margin-bottom: 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
}

.faq-question:hover {
  color: #666;
}

.faq-question span:first-child {
  font-family: 'DINPro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif !important;
  font-size: 1.25rem !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
  color: #1D1D1F !important;
  flex: 1;
  padding-right: 2rem;
}

.faq-plus {
  font-family: 'DINPro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif !important;
  font-size: 1.2rem !important;
  font-weight: 400 !important;
  color: #1D1D1F !important;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-answer {
  padding: 0 0 2rem 0;
  display: none;
  animation: fadeIn 0.3s ease;
}

.faq-answer p {
  font-family: 'DINPro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  color: #666666 !important;
  margin: 0 !important;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-plus {
  transform: rotate(90deg);
}

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

@media (max-width: 991px) {
  .faq-section-title {
    font-size: 2rem !important;
    margin-bottom: 2.5rem !important;
  }
  
  .faq-question span:first-child {
    font-size: 1.125rem !important;
    padding-right: 1.5rem;
  }
  
  .faq-plus {
    font-size: 1.1rem !important;
  }
  
  .faq-answer p {
    font-size: 0.9375rem !important;
  }
}

@media (max-width: 768px) {
  .faq-container {
    padding: 0 1rem;
  }
  
  .faq-section-title {
    font-size: 1.75rem !important;
    margin-bottom: 2rem !important;
  }
  
  .faq-question {
    padding: 1.5rem 0;
  }
  
  .faq-question span:first-child {
    font-size: 1rem !important;
    padding-right: 1rem;
  }
  
  .faq-plus {
    font-size: 1rem !important;
    width: 20px;
    height: 20px;
  }
  
  .faq-answer {
    padding-bottom: 1.5rem;
  }
  
  .faq-answer p {
    font-size: 0.875rem !important;
  }
}
.featured-products-three-columns {
    --gap: 12px;
  }

  .featured-products-three-columns__inner {
    max-width: var(--max-site-width);
    margin: 0 auto;
  }

  .featured-products-three-columns__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
    margin-top: 32px;
  }

  @media (max-width: 720px) {
    .featured-products-three-columns__grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .featured-products-three-columns__item:last-child {
      grid-column: 1 / -1;
    }

    @media (max-width: 480px) {
      .featured-products-three-columns__grid {
        grid-template-columns: 1fr;
      }

      .featured-products-three-columns__item:last-child {
        grid-column: auto;
      }
    }
  }

  .featured-products-three-columns__cta {
    margin-top: 48px;
  }

  .section__header {
    margin-bottom: 16px;
  }

  .section__subheading {
    margin-top: 8px;
    color: var(--color-text-secondary);
  }
/* Override parent section container constraints */
#shopify-section-template--25586185175221__gift_promotion,
.shopify-section:has(.gift-promotion),
.collection__main-area:has(.gift-promotion),
.collection__main-area .gift-promotion,
*:has(.gift-promotion) {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Override specific max-width calculations */
.gift-promotion,
.gift-promotion * {
  max-width: none !important;
}

/* Gift Promotion Section - Full Width */
.gift-promotion {
  background: #FFFC41;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
}

.gift-promotion__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.gift-promotion__content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.gift-promotion__text-area {
  width: 40%;
  max-width: 600px;
  margin-left: 10%;
  margin-right: 5%;
  text-align: left;
}

.gift-promotion__title {
  font-family: 'DINPro', sans-serif;
  font-weight: 500;
  font-size: 51px;
  line-height: 1.2;
  color: #1D1D1F;
  margin-bottom: 16px;
}



.gift-promotion__description {
  font-family: 'DINPro', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  color: #3D3D3D;
  margin-bottom: 40px;
}

/* PC端显示完整文本，隐藏移动端文本 */
.gift-promotion__description-desktop {
  display: block;
}

.gift-promotion__description-mobile {
  display: none;
}

.gift-promotion__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #FFFC41;
  color: #1D1D1F;
  padding: 14px 29px; /* 高度减4px (16px->14px), 宽度减6px (32px->29px) */
  border-radius: 12px;
  font-family: 'DINPro', sans-serif;
  font-weight: 500;
  font-size: 16px; /* 从18px减小到16px */
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(29, 29, 31, 0.2);
}

.gift-promotion__button:hover {
  background: #F5F515;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29, 29, 31, 0.3);
  color: #1D1D1F;
}





/* Responsive Design */
@media (max-width: 768px) {
  .gift-promotion {
    padding: 60px 0; /* 恢复正常padding */
  }
  
  /* 移动端专用背景图片类 - 只在移动端生效 */
  .gift-promotion--mobile-bg {
    background-image: var(--mobile-bg-url) !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
  }
  
  .gift-promotion__inner {
    padding: 0 16px;
    margin-top: 15rem;
  }
  
  .gift-promotion__content {
    justify-content: center;
  }
  
  .gift-promotion__text-area {
    width: 80%;
    max-width: 500px;
    text-align: center;
  }
  
  .gift-promotion__title {
    font-size: 37px; /* 从39px减小2px */
  }
  
  .gift-promotion__description {
    font-size: 18px; /* 从20px减小2px */
  }
  
  /* 移动端隐藏完整文本，显示简短文本 */
  .gift-promotion__description-desktop {
    display: none;
  }
  
  .gift-promotion__description-mobile {
    display: block;
  }
  
  .gift-promotion__button {
    font-size: 16px; /* 从18px减小2px */
  }
  

}

@media (max-width: 480px) {
  .gift-promotion {
    padding: 60px 0; /* 恢复正常padding */
  }
  
  .gift-promotion__title {
    font-size: 29px; /* 从31px减小2px */
  }
  
  .gift-promotion__description {
    font-size: 16px; /* 进一步减小描述文字，减小2px */
  }
  
  /* 移动端隐藏完整文本，显示简短文本 */
  .gift-promotion__description-desktop {
    display: none;
  }
  
  .gift-promotion__description-mobile {
    display: block;
  }
  
  .gift-promotion__button {
    font-size: 14px; /* 进一步减小按钮文字，减小2px */
  }
  
  .gift-promotion__text-area {
    width: 100%;
    max-width: 100%;
}
}
/* PC端产品标题样式 - 22px粗体，上下间距15px */
@media (min-width: 768px) {
  .product__title {
    font-size: 22px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    margin: 15px 0 !important;
  }
}

/* PC端隐藏划线原价 */
@media (min-width: 768px) {
  .product__price-niidor s[data-compare-price] {
    display: none !important;
  }
}

/* PC端去掉产品header的下划线边框 */
@media (min-width: 768px) {
  .product__block--product-header.product__block--with-divider {
    border-bottom: none !important;
  }
}

/* PC端隐藏购买数量选择区域 */
@media (min-width: 768px) {
  .product__controls-group.product__controls-group-quantity.product__block.product__block--medium {
    display: none !important;
  }
}

/* 1. PC端折扣显示红色样式 */
@media (min-width: 768px) {
  .product__price-discount-niidor {
    color: #FF1B1F !important;
    font-weight: 500 !important;
  }
}

/* 2. PC端面包屑导航字体大小16px */
@media (min-width: 768px) {
  .product__breadcrumbs-inline .breadcrumbs {
    font-size: 16px !important;
  }
  .product__breadcrumbs-inline .breadcrumbs__link,
  .product__breadcrumbs-inline .breadcrumbs__separator,
  .product__breadcrumbs-inline .breadcrumbs__current {
    font-size: 16px !important;
  }
}

/* 4. PC端评分布局优化 - 参考Figma设计 */
@media (min-width: 768px) {
  .product-rating.niidor-design {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 15px 0;
  }
  
  .product-rating.niidor-design .product-rating__stars {
    display: flex;
    align-items: center;
    gap: 2px;
  }
  
  .product-rating.niidor-design .product-rating__count--niidor {
    font-family: 'DINPro', sans-serif !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    color: #1D1D1F !important;
    line-height: 1.2 !important;
  }
}

/* 5. PC端选择器样式优化 - 参考Figma设计 */
@media (min-width: 768px) {
  /* 颜色选择器标题样式 */
  .product__option .product__label {
    font-family: 'DINPro', sans-serif !important;
    font-weight: 500 !important;
    font-size: 20px !important;
    color: #1D1D1F !important;
    line-height: 1.3 !important;
    margin-bottom: 16px !important;
  }
  
  /* 尺寸选择器芯片样式 */
  .product__chip {
    background: transparent !important;
    border: 1px solid #BABABA !important;
    color: #1D1D1F !important;
    font-family: 'DINPro', sans-serif !important;
    font-weight: 500 !important;
    font-size: 24px !important;
    line-height: 1.3 !important;
    border-radius: 4px !important;
    padding: 8px 16px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
  }
  
  /* 尺寸选择器选中状态 - 黑色背景白色文字 */
  .product__chip.selected {
    background: #1D1D1F !important;
    color: #FFFFFF !important;
    border-color: #1D1D1F !important;
  }
  
  /* 颜色选择器容器间距 */
  .product__color-swatches {
    margin-top: 15px;
  }
  
  /* 芯片选择器容器间距 */
  .product__color-chips {
    margin-top: 15px;
    gap: 8px !important;
  }
}

/* 6. PC端统一产品信息区域各项间距 - 15px */
@media (min-width: 768px) {
  /* 统一所有产品block的底部间距为15px */
  .product__details .product__block,
  .product__details .product__block--medium,
  .product__details .product__block--product-header,
  .product__details .product__controls-group,
  .product__details .product__variants-wrapper {
    margin-bottom: 15px !important;
  }
  
  /* 产品header区域保持特殊的padding-bottom，但统一margin-bottom */
  .product__details .product__block--product-header.product__block--with-divider {
    padding-bottom: 15px !important;
    margin-bottom: 15px !important;
  }
  
  /* 购买按钮组的间距 */
  .product__details .product-form__controls-group,
  .product__details .product-form__controls-group--submit {
    margin-bottom: 15px !important;
  }
  
  /* 最后一个元素不需要底部间距 */
  .product__details .product__meta > *:last-child {
    margin-bottom: 0 !important;
  }
}

/* 产品页面 Sticky Cart Button - 常规状态黄色，hover状态青蓝色 */
.template-product .sticky-atc-bar .product-form__cart-submit.btn.btn--primary {
  background: #FFFC41 !important;
}

.template-product .sticky-atc-bar .product-form__cart-submit.btn.btn--primary::before {
  background: #FFFC41 !important;
}

.template-product .sticky-atc-bar .product-form__cart-submit.btn.btn--primary::after {
  background-color: #5B9FAD !important;
}

.template-product .sticky-atc-bar .product-form__cart-submit.btn.btn--primary:hover:not([disabled])::before {
  background: #5B9FAD !important;
}

.template-product .sticky-atc-bar .product-form__cart-submit.btn.btn--primary:hover:not([disabled]) {
  background: #5B9FAD !important;
}

/* 移动端产品页搜索框样式 - 只在移动端显示 */
.mobile-product-search-bar {
  padding: 12px 0;
  display: none; /* 默认隐藏，媒体查询中显示 */
}

.mobile-product-search-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 20px;
}

.mobile-product-search-form {
  display: flex;
  width: 100%;
}

.mobile-product-search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  background: #FFFFFF;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.mobile-product-search-input {
  flex: 1;
  height: 40px;
  border: none;
  background: transparent;
  padding: 0 16px 0 48px;
  font-family: var(--font-din, -apple-system, BlinkMacSystemFont, sans-serif);
  font-size: 16px;
  font-weight: 400;
  color: #1D1D1F;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.mobile-product-search-input::placeholder {
  color: #9E9E9E;
  font-size: 16px;
}

.mobile-product-search-button {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.mobile-product-search-button:hover {
  color: #1D1D1F;
}

.mobile-product-search-button:focus {
  outline: 2px solid #007ACC;
  outline-offset: 2px;
}

/* 移动端面包屑导航和标题样式 */
.mobile-product-navigation {
  padding: 20px 0;
  display: none; /* 默认隐藏，媒体查询中显示 */
}

.mobile-product-navigation-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 20px;
}

.mobile-product-breadcrumbs {
  margin-bottom: 16px;
}

.mobile-product-breadcrumbs .breadcrumbs {
  font-family: var(--font-din, -apple-system, BlinkMacSystemFont, sans-serif);
}

.mobile-product-breadcrumbs .breadcrumbs__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-product-breadcrumbs .breadcrumbs__item {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.mobile-product-breadcrumbs .breadcrumbs__link {
  color: #1D1D1F;
  text-decoration: none;
  font-family: var(--font-din, -apple-system, BlinkMacSystemFont, sans-serif);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
}

.mobile-product-breadcrumbs .breadcrumbs__link:hover {
  text-decoration: underline;
}

.mobile-product-breadcrumbs .breadcrumbs__separator {
  margin: 0 8px;
  color: #1D1D1F;
  font-family: var(--font-din, -apple-system, BlinkMacSystemFont, sans-serif);
  font-weight: 400;
  font-size: 14px;
}

.mobile-product-breadcrumbs .breadcrumbs__current {
  color: #1D1D1F;
  font-family: var(--font-din, -apple-system, BlinkMacSystemFont, sans-serif);
  font-weight: 400;
  font-size: 14px;
}

.mobile-product-title .product__title {
  font-family: var(--font-din, -apple-system, BlinkMacSystemFont, sans-serif) !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  line-height: 1.21 !important;
  color: #1D1D1F !important;
  margin: 0 0 8px 0 !important;
  text-transform: none !important;
}

.mobile-product-title .product__subtitle {
  font-family: var(--font-din, -apple-system, BlinkMacSystemFont, sans-serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #666;
  margin: 0;
}

/* 移动端产品图片展示样式 */
.mobile-product-gallery {
  padding: 20px 0;
  display: none; /* 默认隐藏，媒体查询中显示 */
}

.mobile-product-gallery-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 20px;
}

.mobile-gallery-main-image {
  margin-bottom: 16px;
}

.mobile-gallery-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: #f8f8f8;
  border-radius: 8px;
  overflow: hidden;
}

/* 移动端心形收藏图标样式 */
.mobile-wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.mobile-wishlist-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-wishlist-btn svg {
  width: 20px;
  height: 20px;
  color: #333;
  transition: color 0.3s ease;
}

.mobile-wishlist-btn:hover svg {
  color: #000;
}

.mobile-wishlist-btn:active {
  transform: scale(0.95);
}

/* 心形图标样式 */
.heart-icon {
  transition: all 0.3s ease;
}

.heart-outline {
  transition: all 0.3s ease;
}

.heart-filled {
  transition: all 0.3s ease;
}

/* 收藏状态样式 */
.mobile-wishlist-btn.is-favorited {
  background: rgba(255, 182, 193, 0.9);
}

.mobile-wishlist-btn.is-favorited:hover {
  background: rgba(255, 182, 193, 1);
}

.mobile-wishlist-btn.is-favorited .heart-outline {
  display: none;
}

.mobile-wishlist-btn.is-favorited .heart-filled {
  display: block !important;
  color: #ff1744;
}

.mobile-wishlist-btn.is-favorited svg {
  color: #ff1744;
}

/* 收藏动画效果 */
@keyframes heartBeat {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

.mobile-wishlist-btn.animate-heart {
  animation: heartBeat 0.6s ease-in-out;
}

/* 移动端搜索放大图标样式 */
.mobile-zoom-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.mobile-zoom-btn:hover {
  background: rgba(0, 123, 255, 0.1);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-zoom-btn svg {
  width: 20px;
  height: 20px;
  color: #333;
  transition: color 0.3s ease;
}

.mobile-zoom-btn:hover svg {
  color: #007bff;
}

.mobile-zoom-btn:active {
  transform: scale(0.95);
}

/* 确保PC端媒体项有定位上下文 */
.product__media-item {
  position: relative;
}

/* PC端心形收藏图标样式 */
.desktop-wishlist-btn {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  width: 40px !important;
  height: 40px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  z-index: 1000 !important;
}

.desktop-wishlist-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.desktop-wishlist-btn svg {
  width: 20px;
  height: 20px;
  color: #333;
  transition: color 0.3s ease;
}

.desktop-wishlist-btn:hover svg {
  color: #000;
}

.desktop-wishlist-btn:active {
  transform: scale(0.95);
}

/* PC端收藏状态样式 */
.desktop-wishlist-btn.is-favorited {
  background: rgba(255, 182, 193, 0.9);
}

.desktop-wishlist-btn.is-favorited:hover {
  background: rgba(255, 182, 193, 1);
}

.desktop-wishlist-btn.is-favorited .heart-outline {
  display: none;
}

.desktop-wishlist-btn.is-favorited .heart-filled {
  display: block !important;
  color: #ff1744;
}

.desktop-wishlist-btn.is-favorited svg {
  color: #ff1744;
}

.desktop-wishlist-btn.animate-heart {
  animation: heartBeat 0.6s ease-in-out;
}



/* 响应式控制 - 确保PC端和移动端图标分离 */
@media (max-width: 767px) {
  .desktop-wishlist-btn {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .mobile-wishlist-btn,
  .mobile-zoom-btn {
    display: none !important;
  }
}

.mobile-gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.mobile-gallery-thumbnails {
  width: 100%;
}

.mobile-gallery-thumbnails-wrapper {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mobile-gallery-thumbnails-wrapper::-webkit-scrollbar {
  display: none;
}

.mobile-thumbnail-item {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-thumbnail-item.active {
  border-color: #FFFC41;
}

.mobile-thumbnail-item:hover {
  border-color: #FFFC41;
  opacity: 0.9;
}

.mobile-thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* 移动端产品信息区域样式 */
.mobile-product-info {
  padding: 20px 0;
  display: none; /* 默认隐藏，媒体查询中显示 */
}

/* 移动端产品特性信息样式 */
.mobile-product-callouts {
  margin: 20px 0;
  padding: 0;
}

.mobile-product-callouts .product__callouts-items {
  border: none;
  padding: 0;
}

.mobile-product-callouts .product__callouts-item {
  display: flex;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid #E0E0E0;
}

.mobile-product-callouts .product__callouts-item:last-child {
  border-bottom: none;
}

.mobile-product-callouts .product__callouts-item-icon {
  margin-right: 12px;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.mobile-product-callouts .product__callouts-item-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.4;
  color: #1D1D1F;
}

.mobile-product-callouts .product__callouts-item-text p {
  margin: 0;
}

.mobile-product-info-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 横向分割线 */
.mobile-divider {
  width: 100%;
  height: 1px;
  background-color: #E0E0E0;
  margin: 0 0 20px 0;
}

/* 评分区域 */
.mobile-product-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.star-rating {
  display: flex;
  align-items: center;
  gap: 2px;
}

.star {
  font-size: 16px;
  color: #E0E0E0;
  transition: color 0.2s ease;
}

.star.filled {
  color: #FFFC41;
}

.review-count {
  font-family: var(--font-din, -apple-system, BlinkMacSystemFont, sans-serif);
  font-size: 14px;
  color: #666;
  font-weight: 400;
}

/* 价格区域 */
.mobile-product-pricing {
  margin-bottom: 20px;
}

.price-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* 移动端原价样式 - 划线显示 */
.mobile-product-pricing .original-price {
  font-family: var(--font-din, -apple-system, BlinkMacSystemFont, sans-serif);
  font-size: 16px;
  font-weight: 400;
  color: #999;
  text-decoration: line-through;
  margin-right: 8px;
}

.mobile-product-pricing .original-price:empty {
  display: none !important;
}

.mobile-product-pricing .original-price:not(:empty) {
  display: inline !important;
}

/* 移动端现价样式 */
.current-price {
  font-family: var(--font-din, -apple-system, BlinkMacSystemFont, sans-serif);
  font-size: 20px;
  font-weight: 500;
  color: #1D1D1F;
}

/* 移动端折扣标签样式 */
.discount-badge {
  font-family: var(--font-din, -apple-system, BlinkMacSystemFont, sans-serif);
  font-size: 16px;
  font-weight: 500;
  color: #FF1B1F;
}

/* 选项标签 */
.option-label {
  font-family: var(--font-din, -apple-system, BlinkMacSystemFont, sans-serif);
  font-size: 16px;
  font-weight: 500;
  color: #1D1D1F;
  margin: 0 0 12px 0;
}

/* 颜色选择区域 */
.mobile-product-colors {
  margin-bottom: 20px;
}

.color-options {
  display: flex;
  gap: 12px;
}

.color-option {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.color-option.selected {
  border-color: #1D1D1F;
}

.color-option:hover {
  transform: scale(1.1);
}

/* 尺寸选择区域 */
.mobile-product-sizes {
  margin-bottom: 30px;
}

.size-options {
  display: flex;
  gap: 12px;
}

.size-option {
  width: 40px;
  height: 40px;
  border: 2px solid #E0E0E0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-din, -apple-system, BlinkMacSystemFont, sans-serif);
  font-size: 16px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #FFFFFF;
}

.size-option.selected {
  background: #1D1D1F;
  color: #FFFFFF;
  border-color: #1D1D1F;
}

.size-option:hover {
  border-color: #1D1D1F;
  color: #1D1D1F;
}

.size-option.selected:hover {
  color: #FFFFFF;
}

/* 按钮区域 */
.mobile-product-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.mobile-add-to-cart-btn {
  width: 100%;
  height: 50px;
  background: #FFFC41;
  border: none;
  border-radius: 8px;
  font-family: var(--font-din, -apple-system, BlinkMacSystemFont, sans-serif);
  font-size: 18px;
  font-weight: 500;
  color: #1D1D1F;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: none;
}

.mobile-add-to-cart-btn:hover {
  background: #E6E338;
  transform: translateY(-1px);
}

.mobile-add-to-cart-btn:active {
  transform: translateY(0);
}

.mobile-paypal-btn {
  width: 100%;
  height: 50px;
  background: #1D1D1F;
  border: none;
  border-radius: 8px;
  font-family: var(--font-din, -apple-system, BlinkMacSystemFont, sans-serif);
  font-size: 18px;
  font-weight: 500;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: none;
}

.mobile-paypal-btn:hover {
  background: #333;
  transform: translateY(-1px);
}

.mobile-paypal-btn:active {
  transform: translateY(0);
}

/* 只在移动端显示搜索框和导航 */
@media screen and (max-width: 768px) {
  .mobile-product-search-bar {
    display: block !important;
  }
  
  .mobile-product-navigation {
    display: block !important;
  }
  
  .mobile-product-gallery {
    display: block !important;
  }
  
  .mobile-product-info {
    display: block !important;
  }
  
  /* 移动端完全隐藏PC端的产品展示区域 */
  .product__top.product__primary {
    display: none !important;
  }
  
}

/* 确保桌面端完全隐藏 */
@media screen and (min-width: 769px) {
  .mobile-product-search-bar {
    display: none !important;
    visibility: hidden !important;
  }
  
  .mobile-product-navigation {
    display: none !important;
    visibility: hidden !important;
  }
  
  .mobile-product-gallery {
    display: none !important;
    visibility: hidden !important;
  }
  
  .mobile-product-info {
    display: none !important;
    visibility: hidden !important;
  }
}

/* 小屏幕优化 */
@media screen and (max-width: 480px) {
  .mobile-product-search-container {
    padding: 0 16px;
  }
  
  .mobile-product-search-bar {
    padding: 10px 0;
  }
  
  .mobile-product-search-input {
    height: 36px;
    font-size: 14px;
    padding: 0 14px 0 44px;
  }
  
  .mobile-product-search-input::placeholder {
    font-size: 14px;
  }
  
  .mobile-product-search-button {
    width: 36px;
    height: 36px;
  }
  
  .mobile-product-search-button svg {
    width: 14px;
    height: 14px;
  }
  
  /* 小屏幕面包屑和标题优化 */
  .mobile-product-navigation-container {
    padding: 0 16px;
  }
  
  .mobile-product-navigation {
    padding: 16px 0;
  }
  
  .mobile-product-breadcrumbs {
    margin-bottom: 12px;
  }
  
  .mobile-product-breadcrumbs .breadcrumbs__link,
  .mobile-product-breadcrumbs .breadcrumbs__separator,
  .mobile-product-breadcrumbs .breadcrumbs__current {
    font-size: 12px;
  }
  
  .mobile-product-title .product__title {
    font-size: 18px !important;
    line-height: 1.25 !important;
    margin-bottom: 6px !important;
  }
  
  .mobile-product-title .product__subtitle {
    font-size: 14px;
    line-height: 1.4;
  }
  
  /* 小屏幕图片展示优化 */
  .mobile-product-gallery-container {
    padding: 0 16px;
  }
  
  .mobile-product-gallery {
    padding: 16px 0;
  }
  
  .mobile-gallery-main-image {
    margin-bottom: 12px;
  }
  
  .mobile-gallery-image-wrapper {
    border-radius: 6px;
  }
  
  .mobile-thumbnail-item {
    width: 50px;
    height: 50px;
    border-radius: 4px;
  }
  
  .mobile-gallery-thumbnails-wrapper {
    gap: 6px;
  }
  
  /* 小屏幕产品信息优化 */
  .mobile-product-info-container {
    padding: 0 16px;
  }
  
  .mobile-product-info {
    padding: 16px 0;
  }
  
  .mobile-product-rating {
    margin-bottom: 16px;
  }
  
  .mobile-product-pricing {
    margin-bottom: 16px;
  }
  
  .mobile-product-colors {
    margin-bottom: 16px;
  }
  
  .mobile-product-sizes {
    margin-bottom: 24px;
  }
  
  .color-option {
    width: 36px;
    height: 36px;
  }
  
  .size-option {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  
  .current-price {
    font-size: 18px;
    padding: 3px 6px;
  }
  
  .discount-badge {
    font-size: 14px;
  }
  
  .mobile-add-to-cart-btn,
  .mobile-paypal-btn {
    height: 46px;
    font-size: 16px;
  }
}
/* Custom styles for product categories buttons to match Figma design, now smaller */
  .multi-column .btn.btn--primary.btn--overlay {
    border-radius: 12px;
    min-height: 48px;
    font-family: 'DINPro', var(--font-heading);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.287;
    text-transform: none;
    letter-spacing: normal;
    justify-content: flex-start;
    padding-left: 32px;
    padding-right: 32px;
  }
  
  @media (max-width: 719px) {
    .multi-column .btn.btn--primary.btn--overlay {
      font-size: 16px;
      min-height: 40px;
      padding-left: 20px;
      padding-right: 20px;
    }
  }

  /* 占位符图片也严格按 585x758 比例显示 */
  .multi-column__grid-item-image-figure .placeholder-image,
  .multi-column__grid-item-image-figure .placeholder-image > svg {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
  }
/* Tab-specific styles only - FAQ item styles inherit from global */

/* Tab navigation styles */

.faq-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  border-bottom: 1px solid #E5E5E5;
  gap: 0;
}

.faq-tab {
  background: none;
  border: none;
  padding: 1.5rem 2rem;
  font-family: 'DINPro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif !important;
  font-size: 1.125rem !important;
  font-weight: 400 !important;
  color: #666666 !important;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.faq-tab:hover {
  color: #1D1D1F;
  background: rgba(0, 0, 0, 0.02);
}

.faq-tab.active {
  color: #1D1D1F !important;
  font-weight: 500 !important;
  border-bottom-color: #FFFC41;
}

.faq-content {
  position: relative;
}

.faq-tab-content {
  display: none;
  animation: fadeInTab 0.3s ease;
}

.faq-tab-content.active {
  display: block;
}

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

@media (max-width: 991px) {
  .faq-tabs {
    margin-bottom: 2rem;
    gap: 0;
  }
  
  .faq-tab {
    padding: 1.25rem 1.5rem;
    font-size: 1rem !important;
  }
}

@media (max-width: 768px) {
  .tabbed-faq-section {
    padding: 1rem 0;
  }
  
  .faq-tabs {
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 1.5rem;
  }
  
  .faq-tab {
    padding: 1rem 1rem;
    font-size: 0.9375rem !important;
    flex: 1;
    min-width: calc(50% - 0.25rem);
  }

/* CSS from block stylesheet tags */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }

/* CSS from snippet stylesheet tags */
/* DIN 字体系列 */
@font-face {
  font-family: 'DIN';
  src: url('{{ 'DIN-Regular.woff2' | asset_url }}') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DIN';
  src: url('{{ 'DIN-Bold.woff2' | asset_url }}') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DIN';
  src: url('{{ 'DIN-RegularItalicAlt.woff2' | asset_url }}') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* DINPro 字体系列 */
@font-face {
  font-family: 'DINPro';
  src: url('{{ 'DINPro-Light.woff2' | asset_url }}') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DINPro';
  src: url('{{ 'DINPro-Regular.woff2' | asset_url }}') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DINPro';
  src: url('{{ 'DINPro-Medium.woff2' | asset_url }}') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DINPro';
  src: url('{{ 'DINPro-Bold.woff2' | asset_url }}') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DINPro';
  src: url('{{ 'DINPro-Black.woff2' | asset_url }}') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* 全局字体覆盖 - 只使用 DINPro 作为主字体，无备用字体 */
:root {
  --font-din: 'DINPro';
  --font-din-classic: 'DIN';
}

/* 覆盖主要字体变量 */
body,
.ff-body {
  font-family: var(--font-din) !important;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6,
.ff-heading {
  font-family: var(--font-din) !important;
  font-weight: 700;
}

/* Logo 字体 */
.header__logo-text,
.logo-text {
  font-family: var(--font-din) !important;
  font-weight: 400;
}

/* 导航字体 */
.nav-link,
.header__links,
.navigation {
  font-family: var(--font-din) !important;
  font-weight: 400; /* Regular for default state */
}

/* 按钮字体 */
.btn,
button,
input[type="submit"],
input[type="button"] {
  font-family: var(--font-din) !important;
  font-weight: 500;
}

/* 表单字体 */
input,
textarea,
select {
  font-family: var(--font-din) !important;
  font-weight: 400;
}

/* 产品卡片字体 */
.product-item,
.product-card {
  font-family: var(--font-din) !important;
  font-weight: 400;
}

/* 其他重要元素 */
.cart,
.search,
.menu,
.footer {
  font-family: var(--font-din) !important;
  font-weight: 400;
}

/* 字体权重工具类 */
.font-light {
  font-weight: 300 !important;
}

.font-regular {
  font-weight: 400 !important;
}

.font-medium {
  font-weight: 500 !important;
}

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

.font-black {
  font-weight: 900 !important;
}

/* DIN 经典系列工具类 */
.font-din-classic {
  font-family: var(--font-din-classic) !important;
}

.font-din-italic {
  font-family: var(--font-din-classic) !important;
  font-style: italic;
  font-weight: 400;
}