/** Shopify CDN: Minification failed

Line 993:10 Expected identifier but found whitespace
Line 993:11 Unexpected "var("
Line 1826:4 "magint" is not a known CSS property
Line 2423:4 Expected "}" to go with "{"

**/


/* 折叠面板容器 */
.checkout-accordion {
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  margin-top: 20px;
  background: #fff;
}

/* 面板标题 */
.accordion-header {
  padding: 10px 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fa;
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background: #f1f3f5;
}

.accordion-title {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  color: #2d3436;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  color: #4267b2;
}

/* 展开指示器 */
.accordion-indicator {
  transition: transform 0.3s ease;
}

.accordion-indicator.open {
  transform: rotate(180deg);
}

/* 面板内容 */
.accordion-content {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  border-top: 1px solid #eee;
}

/* 支付方式 */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
  gap: 12px;
  padding: 20px 0;
}

.payment-list__item {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 4px;
  background: white;
}

/* 信任标志 */
.trust-badges {
  display: grid;
  gap: 16px;
  padding: 20px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 6px;
  background: #f8f9fa;
}

.trust-icon {
  width: 32px;
  height: 32px;
  color: #4267b2;
}

/* 本地仓库 */
.local-warehouse {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 8px;
  margin: 16px 0;
}

.delivery-progress {
  width: 100%;
  height: 6px;
  background: #e9ecef;
  border-radius: 3px;
}

.progress-bar {
  height: 100%;
  background: #4267b2;
  border-radius: 3px;
  width: 88.4%;
}

/* 颜色方案 */
.checkout-accordion:root {
  --primary-color: #4267b2;  /* 信任蓝色 */
  --secondary-color: #4CAF50; /* 确认绿色 */
  --text-dark: #2d3436;
  --text-light: #636e72;
}







/* 本地仓库模块 - 折叠式 */

.local-accordion-wgs {
  margin: 20px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 12px;
  background: #f8fff8;
  border: 2px solid #0d9400;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;

}

/* 标题区域 */
.accordion-trigger-wgs {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.accordion-trigger-wgs:hover {
  background: #f3fff3;
}

.accordion-icon-wgs {
  width: 22px;
  height: 22px;
  color: #1a7f3c;
  flex-shrink: 0;
  /*align-self: center;  新增垂直居中 */
    vertical-align: middle; /* Helper */
  margin-right: 8px;
}

.accordion-title-wgs {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 650;
  color: #1a3d1c;
  font-size: 17px;
  line-height: 1.4;
  position: relative;
  top: 1px; /* 微调文字对齐 */
}

/* 提示图标样式 */
.alert-icon-wgs {
  width: 20px;
  height: 20px;
  color: #dc2626;
  margin-left: 12px;
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0% { opacity: 0.8; }
  50% { opacity: 0.4; }
  100% { opacity: 0.8; }
}


.delivery-badge-wgs {
  background: #1a7f3c;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease;
}

/* 内容区域 */
.accordion-content-wgs {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

/* 进度条样式 */
.delivery-progress-wgs {
  margin: 16px 0;
}

.progress-header-wgs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
  color: #4a5568;
}

.progress-bar {
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill-wgs {
  height: 100%;
  background: #4299e1;
  width: 88.4%;
  transition: width 0.5s ease;
}

/* 时间分布表 */
.timeline-grid-wgs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.timeline-item-wgs {
  background: #f8fafc;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
}

.time-label-wgs {
  font-size: 14px;
  color: #718096;
  margin-bottom: 4px;
}

.time-percent-wgs {
  font-weight: 600;
  color: #2b6cb0;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .timeline-grid-wgs {
    flex-direction: column;
  }
  
  .timeline-item-wgs {
    width: 100%;
    min-width: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .time-label-wgs {
    font-size: 14px !important;
  }
}

/* 数值样式 */
.time-percent-wgs {
  font-weight: 600;
  color: #2b6cb0;
  font-size: 14px;
}

.delivery-badge-wgs {
  background: #48bb78;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  margin-left: auto;
}


/* 新增天数样式 */
.delivery-badge-wgs span:last-child {
  font-size: 14px;
  margin-left: 8px;
  opacity: 0.9;
}




/* 新增激活状态指示 */
.accordion-trigger-wgs.active .accordion-icon-wgs {
  transform: rotate(180deg);
}

.accordion-trigger-wgs.active .delivery-badge-wgs {
  background: #4299e1;
}

/* 优化动效 */
.accordion-content-wgs {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}

.accordion-content-wgs.open {
  opacity: 1;
  max-height: 400px;
  padding: 0 20px 20px;
}



/* 新增进度条样式 */
.time-progress-wgs {
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
  margin-top: 8px;
}

.time-progress-bar-wgs {
  height: 100%;
  background: #4299e1;
  transition: width 0.5s ease;
}

/* 调整时间项布局 */
.timeline-item-wgs {
  padding: 12px;
  background: #f7fafc;
  border-radius: 6px;
  min-width: 120px;
}

.time-percent-wgs {
  font-size: 14px;
  margin-top: 4px;
  color: #2b6cb0;
}
/* 响应式调整 */
@media (max-width: 768px) {
  .accordion-trigger-wgs {
    padding: 12px 16px;
    gap: 12px;
  }
  
  .accordion-title-wgs {
    font-size: 15px;
  }
  
  .delivery-badge-wgs {
    padding: 5px 12px;
    font-size: 13px;
  }
  
  .alert-icon-wgs {
    display: none; /* 移动端隐藏提示图标 */
  }
}






/* 基础样式 */
.product-sidebar-wuguo {
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* 支付模块 */
.payment-module-wuguo {

  border-bottom: 1px solid #eee;
  padding-bottom: 1.5rem;
}

.section-header-wuguo {
  text-align: center;
  margin-bottom: 1.2rem;
}

.trust-badge-wuguo {
  display: block;
  color: #2ecc71;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.payment-grid-wuguo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 0.5rem;
}

.payment-card-wuguo {
  flex: 0 1 calc(20% - 1rem); /* 默认6个图标一行 */
  min-width: 80px;
  max-width: 100px;
  /* padding: 0.8rem; */
  background: #f8f9fa;
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.payment-icon-wuguo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* 物流模块 */








.benefit-list-wuguo {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #34495e;
  margin-bottom: 0.5rem;
}

.check-icon-wuguo {
  width: 16px;
  height: 16px;
  color: #27ae60;
}



/* 响应式适配 */
@media (max-width: 1200px) {
  .payment-card-wuguo {
    flex-basis: calc(20% - 1rem); /* 5个图标一行 */
  }
}

@media (max-width: 992px) {
  .payment-card-wuguo {
    flex-basis: calc(25% - 1rem); /* 4个图标一行 */
    min-width: 70px;
  }
}

@media (max-width: 768px) {
  .payment-card-wuguo {
    flex-basis: calc(33.33% - 1rem); /* 3个图标一行 */
  }
}

@media (max-width: 576px) {
  .payment-grid-wuguo {
    gap: 0.5rem;
  }
  .payment-card-wuguo {
    flex-basis: calc(50% - 0.5rem); /* 2个图标一行 */
    min-width: 60px;
    padding: 0.5rem;
  }
}

@media (hover: hover) {
  .payment-card-wuguo:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  }
}



.shipping-module-wuguo {

  border-radius: 12px;
  margin: 1rem 0;
}

.trust-banner-wuguo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.trust-title-wuguo {
  margin: 0;
  font-size: 1.4rem;
  color: #2c3e50;
  text-align: center;
  line-height: 1.3;
  order: 1; /* 标题在下 */
}

.trust-visual-wuguo {
  order: 2; /* 图片在上 */
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 280px; /* 控制最大图片宽度 */
}

.shipping-badge-wuguo {
  width: 100%;
  height: auto;
  max-width: 180px; /* 默认大小 */
  transition: transform 0.3s ease;
}

/* 响应式调整 */
@media (min-width: 768px) {
  .shipping-badge-wuguo {
    max-width: 220px; /* 桌面端放大图片 */
  }
  
  .trust-title-wuguo {
    font-size: 1.6rem;
  }
}

@media (min-width: 1200px) {
  .shipping-badge-wuguo {
    max-width: 260px;
  }
}

@media (hover: hover) {
  .shipping-badge-wuguo:hover {
    transform: scale(1.05);
  }
}






/* wu_design */
 


/* 核心容器 */
.price-module-pro {
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 10px 10px rgba(0,0,0,0.15);
    padding: 1rem;
    margin: 1rem 0 2rem 0;
    position: relative;
    overflow: hidden;
}

/* 紧急通知条 */
.urgency-banner {
    background: linear-gradient(135deg, #FF4444, #FF6B6B);
    color: white;
    padding: 1.2rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin: -1rem -1rem 1rem;
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

/* 强烈折扣标识 */
.impact-badge {
    background: linear-gradient(45deg, #FFA726, #FF7043);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    font-size: 1.8rem;
    box-shadow: 0 6px 15px rgba(255, 111, 0, 0.3);
    transform: rotate(-2deg);
}

.fire-icon {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

/* 增强价格显示 */
.price-display-pro {
    margin: 2.5rem 0;
}

.original-price-pro {
    background: #F8F9FA;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.price-was {
    color: #6C757D;
    font-size: 2rem;
    font-weight: 600;
    text-decoration: line-through;
    display: block;
    margin-bottom: 0.5rem;
}

.discount-percent-pro {
    color: #DC3545;
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
}

.current-price-pro {
    text-align: center;
}

.price-now {
    color: #28A745;
    font-size: 3.5rem;
    font-weight: 900;
    display: block;
    line-height: 1;
    margin: 1rem 0;
    text-shadow: 1px 2px 3px rgba(40, 167, 69, 0.1);
}

.shipping-pro {
    color: #0D6EFD;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1rem;
}

/* 库存显示 */
.inventory-alert-pro {
    background: #FFF3CD;
    border: 2px solid #FFC107;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.stock-progress-pro {
    height: 16px;
    background: #FFE69C;
    border-radius: 8px;
    overflow: hidden;
    margin: 1.5rem 0;
}

.progress-bar-pro {
    height: 100%;
    background: linear-gradient(90deg, #FFC107, #FF6B00);
    width: 70%;
    transition: width 0.5s ease;
}

.stock-text-pro {
    color: #DC3545;
    font-weight: 800;
    font-size: 1.8rem;
    text-align: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .price-now {
        font-size: 2.8rem;
    }

    .urgency-banner {
        font-size: 1.2rem;
        padding: 1rem;
    }

    .impact-badge {
        font-size: 1.4rem;
        padding: 0.8rem 1.5rem;
    }

    .shipping-pro {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .price-module-pro {
        padding: 1.5rem;
    }
    
    .price-now {
        font-size: 2.2rem;
    }
    
    .stock-text-pro {
        font-size: 1.4rem;
    }
}









/* 基础布局 */
.product-sidebar-module {
    position: relative;
    padding: 2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* 信息卡片动画 */
@keyframes slideIn {
    0% { transform: translateX(100%); opacity: 0 }
    100% { transform: translateX(0); opacity: 1 }
}

@keyframes popIn {
    0% { transform: scale(0.9); opacity: 0 }
    100% { transform: scale(1); opacity: 1 }
}

/* 本地仓库模块 */
.warehouse-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8fff8;
    border: 2px solid #0a8800;
    border-radius: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.warehouse-icon {
    width: 2.5rem;
    height: 2.5rem;
    filter: drop-shadow(0 2px 4px rgba(10,136,0,0.2));
}

.warehouse-text {
    font-size: 1.4rem;
    font-weight: 400;
    color: #0a8800;
}

/* 评分系统 */
.rating-card {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
    padding: 1.5rem;
    background: #fff9f0;
    border-radius: 12px;
}

.stars {
    display: flex;
    gap: 0.3rem;
}

.star {
    width: 2rem;
    height: 2rem;
    fill: #ddd;
    transition: transform 0.2s ease;
}

.star.active {
    fill: #ffb400;
}

.rating-count {
    font-size: 1.2rem;
    color: #666;
}

.review-link {
    grid-column: span 2;
    color: #0a8800;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

/* 购买徽章 */
.purchase-badge {
    position: relative;
    padding: 1rem;
    background: #fff0f5;
    border-radius: 8px;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.purchase-count {
    font-size: 1.4rem;
    font-weight: 700;
    color: #c4005d;
}

.purchase-time {
    color: #666;
    font-size: 1rem;
}

.purchase-graph {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff69b4 60%, transparent 40%);
    animation: wave 2s infinite linear;
}

/* 最佳销售商 */
.best-seller {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem;
    background: #0a8800;
    border-radius: 6px;
    color: white;
}

.seller-badge {
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.3rem 0.6rem;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
}

.seller-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* 动画效果 */
@keyframes wave {
    0% { background-position: 0 0 }
    100% { background-position: 200% 0 }
}

.animate-slide {
    animation: slideIn 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animate-pop {
    animation: popIn 0.4s ease-out;
}

@media (hover: hover) {
    .warehouse-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(10,136,0,0.15);
    }
    
    .star:hover {
        transform: scale(1.2);
    }
}

@media (max-width: 768px) {
    .product-sidebar-module {
        padding: 1.5rem;
    }
    
    .warehouse-text {
        font-size: 1.2rem;
    }
}














  .rating-module {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 15px 0;
  }

  .stars {
    display: flex;
    gap: 3px;
  }

  .star {
    width: 24px;
    height: 24px;
    fill: #e0e0e0;
    transition: fill 0.2s ease;
  }

  .star.active {
    fill: #ffc107;
  }

  .review-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-color);
    text-decoration: none;
  }

  .count {
    font-weight: 700;
    color: var(--primary-color)











  .rating-card {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .stars {
    display: flex;
    gap: 4px;
  }

  .star-container {
    position: relative;
    width: 24px;
    height: 24px;
  }

  .star-bg,
  .star-active {
    position: absolute;
    width: 100%;
    height: 100%;
    fill: #e0e0e0;
  }

  .star-partial {
    position: absolute;
    height: 100%;
    overflow: hidden;
    z-index: 1;
  }

  .star-active {
    fill: #ffc107;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .full-active {
    opacity: 1 !important;
  }






.product-title-wu {
    /* 基础样式 */
    font-size: 28px;
    line-height: 36px;
    font-weight: 400;
    margin: 0;
    position: relative;
    padding: 0;
    
}

/* 响应式调整 */
@media (max-width: 768px) {
    .product-title-wu {
    font-size: 24px;
    line-height: 32px;
        &::before,
        &::after {
            width: 30%;
        }
    }
}

@media (max-width: 480px) {
    .product-title-wu {
    font-size: 1.3rem !important;
    line-height: 1.4 !important;
        padding: 0.8rem 0;
    }
}















/* 基础样式 */
.yotpo-main-widget {
    margin: 40px 0;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

/* 调整评论卡片间距 */
.yotpo-review {
    padding: 20px 0;
    border-bottom: 1px solid #eee !important;
}

/* 优化移动端显示 */
@media (max-width: 767px) {
    .yotpo-main-widget {
        padding: 15px;
    }
    
    .yotpo-review .yotpo-header {
        flex-direction: column;
    }
}





/* 增强型图片画廊 */
.product-gallery-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.gallery-cell {
  width: 100%;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  &[data-media-type="model"] {
    position: relative;
    padding-top: 100%;
  }
}

/* 响应式变体选择 */
.variant-selector-advanced {
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--color-bg-secondary);
  border-radius: 8px;
}

.option-values-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
}

.color-swatch {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--swatch-color);
  
  &::after {
    content: "";
    position: absolute;
    inset: -2px;
    border: 2px solid transparent;
    border-radius: inherit;
    transition: border-color 0.2s ease;
  }
  
  &:hover::after {
    border-color: var(--color-text);
  }
}








/*  250324  */

.product-full-width {
    display: block;
    width: 100%;
    max-width: 1200px; /* 适当调整 */
    margin: 0 auto;
}
.product-full-width .wug60, 
.product-full-width .wug40 {
    width: 100%;
}





/* 新增样式 */
.price-module-pro {
    margin: 1.5rem 0;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.urgency-banner {
    padding: 12px;
    background: linear-gradient(135deg, #ff4444, #ff6b6b);
    color: white;
    text-align: center;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-core {
    padding: 1.5rem;
    background: var(--card-bg);
}

.price-display-pro {
    margin: 1rem 0;
}

.original-price-pro {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.current-price-pro {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--price-color);
}

.shipping-pro {
    font-size: 0.9em;
    color: var(--success-color);
    margin-top: 0.5rem;
}

.inventory-alert-pro {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--alert-bg);
    border-radius: 8px;
}

.stock-progress-pro {
    height: 8px;
    background: var(--progress-bg);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-pro {
    height: 100%;
    background: linear-gradient(90deg, #ff9f43, #ff6b6b);
    transition: width 0.5s ease;
}

.product-sidebar-module {
    margin: 2rem 0;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.social-proof {
    display: grid;
    gap: 1rem;
}

.badge-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-badge {
    padding: 8px 12px;
    background: var(--badge-bg);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}



/* 政策*/


/* 基础样式 */
:root {
  --primary-color: #0A8800;
  --text-dark: #333;
  --text-light: #666;
  --border-color: #e0e0e0;
}

.common-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* 支付方式 */
.payment-card .card-title {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.payment-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.payment-icon {
  width: 100%;
  height: 24px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.payment-icon:hover {
  filter: grayscale(0);
}

/* 本地仓库 */
.shipping-card .card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.icon-local {
  width: 24px;
  height: 24px;
  fill: var(--primary-color);
}

.progress-container {
  height: 6px;
  background: #f0f0f0;
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--primary-color);
  transition: width 0.5s ease;
}

.delivery-estimate {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

/* 信任徽章 */
.trust-badges {
  display: grid;
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f8f8;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-2px);
}

.trust-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.trust-content h5 {
  color: var(--primary-color);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.trust-content p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* 响应式 */
@media (max-width: 768px) {
  .payment-icons {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .trust-item {
    padding: 0.75rem;
  }
}








/* 政策 */



        .soon-container {
            height: auto;
            width:100%;
            margin: 0;
            padding: 0;
            margin-top: 20px;
        }
        .soon-upper-div {
            font-weight: 600;
            margin-bottom: 5px;
            align-items: center;
            cursor: pointer;
            display: flex;
            column-gap: 6px;
        }

        .soon-text-inline-flex {
            color: #fff;
            background-color: #333;
            border-radius: 9999px;
            justify-content: center;
            align-items: center;
            width: 18px;
            height: 18px;
            display: inline-flex;
        }
        .soon-countdown {
            font-weight: 600;
            line-height: 1.2;
            color: #000;
        }
        .soon-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.5);
        }
        .modal-content {
            background-color: #fff;
            margin: 15% auto;
            padding: 20px;
            border: 1px solid #888;
            width: 80%;
            max-width: 600px;
    max-height: 80vh; 
    overflow-y: auto;
    border-radius: 10px;
    position: relative;


        }
        .soon-close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
        }
        .soon-close:hover,
        .soon-close:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }
        .soon-lower-div {
            background-color: #fff2df;
            border-radius: 8px;
            display: flex;
            margin-top: 15px;
        }
        .soon-left-div {
            flex: 1 1;
            display: flex;
            flex-direction: column; /* Add this line */
            align-items: left;
            gap: 10px;
            padding: 10px 20px 10px 20px;
            border-right: 2px solid #fff;

        }

.font-bold-text {
font-weight: 700;
font-size: 24px;
margin-bottom:10px;
}
.font-text {
font-weight: 600;
font-size: 12px;
}
        .soon-left-div p {
            margin: 0;
            padding: 0;
        }
        .soon-right-div {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px 20px 10px 20px;
            position: relative;
        }
        .soon-copy-button {
            padding: 10px;
            color: #333;
            border: 2px solid #333;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.25rem;
            border-radius: 9999px;
            font-weight: 600;
            line-height: 1;
            transition: 0.1s cubic-bezier(0, 0, .2, 1);
            min-width: 100px;
        }
        .soon-copy-message {
            position: absolute;
            bottom: -20px;
            background-color: #4caf50;
            color: white;
            padding: 5px;
            border-radius: 5px;
            display: none;
        }


@media (max-width: 768px) {
    .soon-lower-div {
        flex-direction: row; /* Ensure content remains in a row */
        align-items: center;
        justify-content: space-between;
        padding: 10px;
    }
    .soon-left-div {
        flex: 1 1 auto; /* Allow left content to flexibly grow */
        border-right: 2px solid #fff; /* Reapply any necessary styling */
        padding: 10px;
        align-items: left;
    }
    .soon-right-div {
        padding: 10px; /* Adjust padding as needed */
    }
}

@media (max-width: 480px) {
    .soon-lower-div {
        flex-direction: row; /* Ensure content remains in a row */
        align-items: center;
        justify-content: space-between;
        padding: 10px;
    }
    .soon-left-div {
        flex: 1 1 auto; /* Allow left content to flexibly grow */
        padding: 10px;
        align-items: left;
    }
    .soon-right-div {
        padding: 10px; /* Adjust padding as needed */
    }
}
@media (max-width: 600px) {
    .modal-content {
        width: 80%; 
        max-width: 80%; 
        padding: 15px;
        max-height: 80vh; 

    }
}
@media (max-width: 480px) {
    .modal-content {
        width: 80%; 
        max-width: 80%;
        padding: 10px;
        max-height: 80vh; 

    }
}




.image-container-cover {
  width: 100%; 
  max-width: 400px;
  overflow: hidden;
  margin: 0 auto; 
}

.image-container-cover img {
  width: 100%; 
  height: auto; 
  display: block; 
}


.headerProductIconBar_design_wu {
    background-color: #f0f0f0;
    padding: 10px;
    display: flex;
    align-items: center;
}

.headerProductIconBar_design_wu h5 {
    margin: 0;
    font-size: 1.5em;
    margin-right: 10px;
}

.headerProductIconBar_design_wu p {
    margin: 0;
    padding: 0;
}

.modalProductIconBar_design_wu {
    margin-top: 10px;
    padding: 0;

}

.triggerProductIconBar_design_wu {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 3px 8px 3px 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-bottom: 2px;
}

.triggerProductIconBar_design_wu svg {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.triggerProductIconBar_design_wu span {
    font-size: 1em;
}

/* Modal styling */
.custom-modal-design-wu {
    
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; 
    background-color: rgba(0,0,0,0.4); 
}

.modal-content-design-wu {
    background-color: #fefefe;
    margin: 10% auto; 
    padding: 20px;
    border: 1px solid #888;
    width: 80%; 
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto; 
    border-radius: 10px;
    position: relative;
}

.modal-close-design-wu {
    color: #aaa;
    float: right;
    cursor: pointer;
}

.modal-close-design-wu:hover,
.modal-close-design-wu:focus {
    color: black;
    text-decoration: none;
     cursor: pointer;
}

.modal-text-body {
    line-height: 1.5;
}

.modal-textProductIconBar_design_wu h4 {
    margin-bottom: 10px;
}

.modal-textProductIconBar_design_wu p {
    margin-bottom: 10px;
}

@media (max-width: 600px) {
    .modal-content-design-wu {
        width: 80%; 
        max-width: 80%; 
        padding: 15px; 
        max-height: 80vh; 

    }
    
    .modal-textProductIconBar_design_wu h4 {
        font-size: 1.2em; 
    }

    .modal-textProductIconBar_design_wu p {
        font-size: 1em; 
    }
}
@media (max-width: 480px) {
    .modal-content-design-wu {
        width: 80%; 
        max-width: 80%; 
        padding: 10px;
        max-height: 80vh;

    }

    .modal-textProductIconBar_design_wu h4 {
        font-size: 1em; 
    }

    .modal-textProductIconBar_design_wu p {
        font-size: 0.9em; 
    }
}


/* Styling for the payment icons */
.payment-list__item {
  display: inline-block;
  margin-right: 10px; /* Adjust spacing between icons */
}

/* Styling for the payment method names */
.payment-list__item text {
  display: none; /* Hide the text content */
}

/* Styling for the payment method titles */
.ProductSidebar_infoTitle__zR_Aj {
  font-size: 18px; /* Example font size */
  margin-bottom: 10px; /* Example margin */
}

/* Styling for the payment method container */
.ProductSidebar_payWithEaseContent__WGfG3 {
  margin-top: 20px; /* Example margin */
}

.payment-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.payment-list__item {
  margin: 0 10px;
  width: 38px;
  height: 24px;
}

@media (max-width: 600px) {
  .payment-list {
    flex-direction: column;
  }
  .payment-list__item {
    margin: 10px 0;
  }
}








  .upper-layer-Pay-with-Ease  {
    text-align: center;
    padding: 0;
    magint: 0;
  }
  .lower-layer-Pay-with-Ease {
    padding: 10px;
  }
 .lower-layer-Pay-with-Ease-text {
  color: #333;
  margin-bottom: 10px;
}
  .icon-container-Pay-with-Ease  {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    flex-wrap: wrap; 
    flex-direction: row;
width: 100%;
     margin: 0;
     padding: 0;
  }

  .payment-list__item {
    width: 38px; 
    height: 24px; 
        display: flex;
         flex: 1;
         
  }


.product-info-container-payment {
  padding: 5px 10px 5px 10px;
  margin-top: 10px;
}

.product-title-payment {
  color: #333;
  margin-bottom: 10px;
}

.product-image-container-payment {
  display: flex;
  justify-content: left;
}

.product-image-payment {
  width: 100%;
  max-width: 200px;
}

.product-image-inner-payment {
  height: 24px;  
  width: auto;  
  max-width: 100%;  
}



        .product-info-CERTIFIED {
            display: flex;
            align-items: center;
            margin-top: 10px;
        }

        .sold-quantity-CERTIFIED {
            margin-right: 3px;
        }

        .separator-CERTIFIED {
            color: #ff9900;
            margin: 0 3px;
        }

        .certified-by-CERTIFIED {
            color: orange;
            margin-right: 3px;
            text-transform: uppercase;
        }

        .certification-image-CERTIFIED {
            width: auto;
            height: 30px;
        }

        .product-info-CERTIFIED img {
            max-width: 100%;
            border: 0;
            vertical-align: middle;
        }





        .main-container-local-warehouse {
            display: flex;
            align-items: center;
            cursor: pointer;
        }

        .icon-local-warehouse {
            margin-right: 10px;
        }

        .text-container-local-warehouse {
            flex-grow: 1;
        }

        .popup-local-warehouse {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
            z-index: 9999; 
        }

        .popup-content-local-warehouse {
    background-color: #fff;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80%; 
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: auto;
        }

        .popup-header-local-warehouse {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #ddd;
            padding-bottom: 10px;
        }

        .header-text-local-warehouse {
            font-size: 18px;
            font-weight: bold;
        }

        .close-icon-local-warehouse {
            cursor: pointer;
        }

        .popup-body-local-warehouse {
            margin-top: 20px;
        }

.body-text-local-warehouse {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 10px;
}

.body-text-local-warehouse span {
    display: inline;
    margin-right: 5px; /* Adjust this margin as needed */
}

.body-text-local-warehouse img {
    vertical-align: middle;
    margin-right: 5px; /* Adjust this margin as needed */
}

        .grid-container-local-warehouse {
            display: flex;
            justify-content: space-between;
            width: 100%;
            align-items: center; 
        }



        @media (max-width: 768px) {
            .popup-content-local-warehouse {
                width: 90%;
                max-width: 100%;
            }

            .grid-container-local-warehouse {
                flex-direction: row;
            }

        }

        .process-3gJ7U {
            width: auto;
            height: 8px;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            flex-direction: row;
        }

        .progress-2rcCF, .progressBar-3b-7i {
            height: 8px;
            border-radius: 5px;
        }

        .progress-2rcCF {
            position: relative;
            width: 100%;
            background-color: #ebebeb;
        }

        .progressBar-3b-7i {
            position: absolute;
            top: 0;
            left: 0;
            height: 8px;
            border-radius: 5px;
            background-color: #000;
        }

.localGoodsTagWrap-2NcsJ {

    background: #fff;
    border-radius: 3px;
    border: 1px solid #0a8800;
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    align-items: center;
    -webkit-align-items: center;
    flex-direction: row;
    padding: 10px 15px 15px 15px;;
    margin-top: 20px;
}
.localGoodsTag-zBhW1 {

    display: flex;
    flex-direction: column; /* 垂直排列 */
    border-radius: 4px;
    align-items: fleft; /* 左对齐 */
    overflow-x: hidden;

}
.localGoodsTag-zBhW1 .title-2ykfo {
    display: flex;
    align-items: center;
    font-weight: 600;
    margin-bottom: 5px; /* 上下间距控制 */
}
.localGoodsTag-zBhW1 .title-2ykfo .icon-2Nv87 {
    width: 16px;
    height: 16px;
    fill: #0a8800;
    margin-right: 8px;
}
.localGoodsTag-zBhW1 .text-1Pi2L {
    line-height: 18px;
    color: #0a8800;
    white-space: nowrap;
}


.localGoodsTag-zBhW1 .divide-DR2l9 {
    width: 1px;
    height: 14px;
    margin: 3px;
    -webkit-transform: scaleX(.5);
    transform: scaleX(.5);
    background-color: #0a8800;
    flex-shrink: 0;
}
.localGoodsTag-zBhW1 .desc-t1D1R {
    flex: 1;
    overflow: hidden;
}
.overflow-container-wrapper-IGe8j {
    height: 100%;
    width: 100%;
    display: flex;
    overflow: hidden;
    position: relative;
}
.scrollContent-1U-C8 {
    display: flex;
    flex-shrink: 0;
}
.localGoodsTag-zBhW1 .text-1Pi2L {
    line-height: 18px;
    color: #0a8800;
    white-space: nowrap;
}

.timeList-qh1Z1 {
    margin-top: 6px;
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    align-items: flex-start;
    -webkit-align-items: flex-start;
    flex-direction: row;
}
.nameWrap-AW0E9 {
    position: relative;
    top: -1px;
    margin-right: 10px;
}

.percentageWrap-3PV3n {
    flex: 1;
}
.percentageStrWrap-1de9S {
    margin-left: 10px;
}

.label-3sXSg {
    width: auto;
    height: 33px;
    display: -webkit-flex;
    -webkit-justify-content: flex-start;
    -webkit-align-items: center;
    flex-direction: row;
    font-size: 14px;
    color: #000;
    line-height: 15px;
    font-weight: 400;
    white-space: nowrap;
}


.processs-3AMWF {
    width: auto;
    height: 33px;
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    align-items: center;
    -webkit-align-items: center;
    flex-direction: row;
}

.progress-1Jr_o {
    height: 8px;
    border-radius: 5px;
    position: relative;
    width: 100%;
    background-color: #ebebeb;
}

.progressBar-3ZKvf {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    min-width: 8px;
    background-color: #000;
    height: 8px;
    border-radius: 5px;
}

.percentageStrWrap-1de9S {
    margin-left: 10px;
}

.num-nxeA3 {
    font-size: 13px;
    color: #000;
    line-height: 13px;
    font-weight: 400;
    width: auto;
    height: 33px;
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    align-items: center;
    -webkit-align-items: center;
    flex-direction: row;
}


    .products-full-image__image {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
    }

    .products-aplus__mobile, .products-aplus__pc {
      width: 100%;
    }

    .products-aplus__mobile img, .products-aplus__pc img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    /* Hide the PC image on mobile and tablet */
    .products-aplus__pc {
      display: none;
    }

    /* Show the mobile image on mobile and tablet */
    @media (max-width: 768px) {
      .products-aplus__mobile {
        display: block;
      }
      .products-aplus__pc {
        display: none;
      }
    }

    /* Show the PC image on desktop */
    @media (min-width: 769px) {
      .products-aplus__mobile {
        display: none;
      }
      .products-aplus__pc {
        display: block;
      }
    }


.slider-container {
  position: relative;
  width: 100%;
  margin: auto;
  overflow: hidden;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
}

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


.desktop-image, .tablet-image, .mobile-image {
  display: none;
}


@media (min-width: 1024px) {
  .desktop-image {
    display: block;
  }
}


@media (max-width: 767px) {
  .mobile-image {
    display: block;
  }
}

.a-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;

  width:34px;
  height: 52px;
  background-size: 68px 52px;
  background-image: url(https://cdn.shopify.com/s/files/1/0814/5882/3476/files/ydDD9hnRfziI_y7.png?v=1718596215);
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.2); 
  backdrop-filter: blur(5px); 
  border: 1px solid rgba(255, 255, 255, 0.5); 
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.a-icon:hover {
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);

}

.a-icon-previous-rounded {
  background-position: 0 0;
  left: 10px;
}

.a-icon-next-rounded {
  background-position: -34px 0;
  right: 10px;
}

.indicators {
  text-align: center;
  position: absolute;
  bottom: 10px;
  width: 100%;
}

.indicator {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 25px; 
  height: 25px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  font-size: 14px; 
  color: black; 
}

.indicator.active {
  background-color: white;
}

.a-icon-alt {
  position: absolute;
  left: -9999px;
  top: auto;
  display: block;
  width: 1px;
  height: 1px;
  line-height: 1px;
  font-size: 1px;
  overflow: hidden;
}


.container-bottom-img {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #e68a00; /* 大容器背景颜色 */
}

.left-div-bottom-img,
.right-div-bottom-img {
    flex: 1;
    padding: 20px;
}

.left-div-bottom-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-div-bottom-img img {
    display: block;
    max-width: 100%;
    height: auto;
}

.right-div-bottom-img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .container-bottom-img {
        flex-direction: column;
    }
}





/* 选项卡（Tabs）模块 */









    


    