/*new*/
  .row-container {
    display: flex;
    align-items: center;
  }

.left-container {
  width: 100px;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
}

  .right-container {
   display: flex;
  }

  .wide-spacing {
  letter-spacing: 2em;
}

/* 基础重置和容器 */
.custom-single-product-container {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

/*专属样式*/
body.single-product .card-content.description-content li {
  padding: 10px 15px;
  background-color: #ffffff;
  color: #444;
  border: 1px solid #ccc;
  margin-bottom: 8px;
  border-radius: 3px;
}

body.single-product .card-content.description-content h2 {
  font-size: 28px;
  font-weight: 600;
  color: #3a3a3a;
  margin: 30px 0 20px;
  padding-left: 8px;
  border-left: 5px solid #43e97b;
  letter-spacing: 0.03em;
  text-transform: none;
  line-height: 1.2;
  transition: color 0.3s ease;
}

body.single-product .card-content.description-content h2:hover {
  color: #27ae60;
}

/* 面包屑导航 */
.woocommerce-breadcrumb-wrap {
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}
.woocommerce-breadcrumb-wrap a {
  color: #0073aa;
  text-decoration: none;
}
.woocommerce-breadcrumb-wrap a:hover {
  text-decoration: underline;
}

/* 商品主区域：图文两栏 */
.product-main {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

/* 商品图片 */
.product-gallery {
  flex: 1 1 400px;
  max-width: 500px;
}
.custom-product-image {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
  object-fit: contain;
}

/* 商品信息 */
.product-info {
  flex: 1 1 400px;
  max-width: 600px;
}

/* 标题和自动发货标签 */
.product-title {
  font-size: 25px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 1px;
  margin-bottom: 0px;
  margin-top: 0px;
}
.auto-deliver-tag {
  all: unset; 
  display: inline-block;
  margin: 0 !important;
  padding: 2px 6px;
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  color: #2d2626;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  user-select: none;
}

/* 价格区域 */
.product-price-block {
  font-family: Arial, sans-serif;
  font-size: 18px;
  color: #333;
  align-items: center;
}


.product-price-block .current-price {
  color: #e60023;
  font-weight: bold;
  margin-right: 10px;
  font-size: 28px;
}

.product-price-block .original-price {
  color: #888;
  font-size: 20px;
  text-decoration: line-through;
}

.product-price-block .woocommerce-Price-currencySymbol {
  font-size: 0.65em; 
  margin-right: 3px; 
}

/* 简短描述 */
.product-short-description p {
  font-size: 16px;     
  line-height: 1.5;    
  color: #333333;     
  margin: 0 0 0.2em 0;   
}

/* 产品元信息（SKU, 库存等） */
.product-meta {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}
.sku {
  display: inline-block;
  margin-right: 15px;
}
.product-stock-info {
  color: #27ae60;
  font-weight: 600;
}

/* 数量选择 */
.product-quantity-block {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-size: 14px;
}


/* 容器 */
.quantity-control {
  display: flex;
  align-items: center;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  background-color: #fff;
}

/* 输入框 */
.quantity-control input.qty {
  border: none;
  text-align: center;
  width: 50px;
  font-size: 16px;
  padding: 8px 0;
  background-color: transparent;
  outline: none;
  appearance: none;
  -moz-appearance: textfield;
}

/* 去掉上下箭头 */
.quantity-control input.qty::-webkit-outer-spin-button,
.quantity-control input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* 按钮 */
.quantity-control .qty-btn {
  background-color: #f5f5f5;
  border: none;
  width: 35px;
  height: 35px;
  padding: 0 16px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
  transition: background-color 0.2s ease, color 0.2s ease;
  user-select: none;
}


.quantity-control .qty-btn:hover {
  background-color: #e0e0e0;
  color: #000;
}

.quantity-control .qty-btn:active {
  background-color: #d0d0d0;
}



/* 按钮区域 */
.product-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.product-buttons form {
  margin: 0;
}

/* 加入购物车按钮 */
.single_add_to_cart_button {
  background-color: #0073aa; /* 蓝色 */
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 700;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}
.single_add_to_cart_button:hover {
  background-color: #005f87;
}

/* 立即购买按钮 */
.buy-now-button {
  background-color: #e67e22; /* 橙色 */
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 700;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}
.buy-now-button:hover {
  background-color: #cf6c17;
}

/* 卡片式描述区域 */
.custom-product-description {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 60px;
}

/* 通用卡片 */
.card {
  background-color: #fff;
  box-shadow: 0 4px 10px rgb(0 0 0 / 0.08);
  border-radius: 10px;
  padding: 10px 10px;
}
.card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  border-bottom: 2px solid #0073aa;
  padding-bottom: 6px;
  color: #0073aa;
}

/* 描述内容 */
.description-content,
.additional-info-content,
.reviews-content {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
}

/* 附加信息表格样式 */
.additional-info-content table {
  width: 100%;
  border-collapse: collapse;
}
.additional-info-content th,
.additional-info-content td {
  padding: 8px 12px;
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
}
.additional-info-content th {
  background-color: #f9f9f9;
  font-weight: 600;
}

/* 固定价格和购买数量文字大小 */
.product-price-block .label,
.product-quantity-block label {
  font-size: 16px !important;
  font-weight: 600;
  color: #444;
}

/* 响应式 */
@media (max-width: 900px) {
  .product-main {
    flex-direction: column;
  }
  .product-gallery,
  .product-info {
    max-width: 100%;
  }
  .product-buttons {
    flex-direction: column;
  }
  .product-buttons button {
    width: 100%;
  }
}

  .payment-support {
      margin-top: 8px;
    }

    .payment-icon {
      max-height: 33px;
    }
    .payment-icon:first-child {
      margin-right: 15px;
    }