/*** WooCommerce 产品网格 ***/

/* 隐藏重复的产品列表（page-description内的） */
.woocommerce-products-header .page-description ul.products {
  display: none !important;
}

/* 产品分类筛选 */
.product-filter-wrapper {
  margin-bottom: 1.5rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
}

.product-filter {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.5rem !important;
  padding: 1rem !important;
  background: #f9fafb !important;
  border-radius: 1rem !important;
}

.product-filter a {
  padding: 0.5rem 1rem !important;
  border-radius: 9999px !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  color: #374151 !important;
  background: #fff !important;
  border: 1px solid #e5e7eb !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.product-filter a:hover {
  border-color: #10b981 !important;
  color: #10b981 !important;
}

.product-filter a.active {
  background: #10b981 !important;
  color: #fff !important;
  border-color: #10b981 !important;
}

/* 价格筛选 */
.price-filter {
  background: #f9fafb !important;
  border-radius: 1rem !important;
}

.price-filter .filter-label {
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  color: #374151 !important;
  margin-right: 0.5rem !important;
  padding: 0.5rem 0 !important;
}

.woocommerce ul.products,
ul.products {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 1rem !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* 桌面3列 */
@media (min-width: 1024px) {
  .woocommerce ul.products,
  ul.products {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
  }
}

/* 手机2列 */
@media (max-width: 767px) {
  .woocommerce ul.products,
  ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }
}

/* 产品卡片 */
ul.products li.product {
  background: #fff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 1rem !important;
  padding: 0 !important;
  margin: 0 !important;
  text-align: left !important;
  overflow: hidden !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
  display: flex !important;
  flex-direction: column !important;
}

ul.products li.product:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1) !important;
}

/* 产品图片 - 16:9比例 */
ul.products li.product img {
  width: 100% !important;
  aspect-ratio: 16/9 !important;
  object-fit: cover !important;
  display: block !important;
}

/* 产品标题 */
ul.products li.product h2 {
  padding: 1rem 1rem 0.5rem !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  color: #111827 !important;
  line-height: 1.4 !important;
  min-height: auto !important;
}

/* 产品分类标签 */
ul.products li.product .product-categories {
  padding: 0 1rem !important;
  margin-bottom: 0.25rem !important;
}

ul.products li.product .product-category {
  font-size: 0.75rem !important;
  color: #6b7280 !important;
  background: #f3f4f6 !important;
  padding: 0.25rem 0.5rem !important;
  border-radius: 0.25rem !important;
  display: inline-block !important;
}

/* 价格 */
ul.products li.product .price {
  padding: 0.5rem 1rem !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: #10b981 !important;
  margin-top: auto !important;
}

/* 按钮 */
ul.products li.product a.button {
  margin: 0.5rem 1rem 1rem !important;
  padding: 0.5rem 1rem !important;
  background: #10b981 !important;
  color: #fff !important;
  border-radius: 0.5rem !important;
  font-size: 0.875rem !important;
  align-self: flex-end !important;
}

/* 促销标签 */
ul.products span.onsale {
  background: #10b981 !important;
  color: #fff !important;
  padding: 0.25rem 0.75rem !important;
  font-size: 0.75rem !important;
  border-radius: 0.5rem !important;
  top: 0.75rem !important;
  left: 0.75rem !important;
  min-width: auto !important;
  min-height: auto !important;
  position: absolute !important;
}

/* ==================== 产品详情页 ==================== */
.woocommerce div.product {
  max-width: 1200px !important;
  margin: 2rem auto !important;
  padding: 0 1rem !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 2rem !important;
}

@media (min-width: 768px) {
  .woocommerce div.product {
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
  }
}

/* 产品图片画廊 */
.woocommerce div.product div.images {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  float: none !important;
}

.woocommerce div.product div.images img {
  width: 100% !important;
  height: auto !important;
  border-radius: 1rem !important;
  border: 1px solid #e5e7eb !important;
}

/* 产品摘要区域 */
.woocommerce div.product div.summary {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  float: none !important;
}

/* 产品标题 */
.woocommerce div.product .product_title {
  font-size: 2rem !important;
  font-weight: 800 !important;
  color: #111827 !important;
  margin-bottom: 1rem !important;
  line-height: 1.2 !important;
}

/* 产品价格 */
.woocommerce div.product p.price {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  color: #10b981 !important;
  margin-bottom: 1.5rem !important;
  padding: 0 !important;
}

.woocommerce div.product p.price .woocommerce-Price-currencySymbol {
  font-size: 1.5rem !important;
}

/* 产品描述 */
.woocommerce div.product .woocommerce-product-details__short-description {
  font-size: 1rem !important;
  color: #374151 !important;
  line-height: 1.8 !important;
  margin-bottom: 1.5rem !important;
}

/* 数量输入框 */
.woocommerce .quantity .qty {
  width: 80px !important;
  height: 48px !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 0.5rem !important;
  padding: 0 0.5rem !important;
  font-size: 1rem !important;
  text-align: center !important;
  margin-right: 1rem !important;
}

/* 加入购物车按钮 */
.woocommerce div.product form.cart .single_add_to_cart_button {
  background: #10b981 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 0.5rem !important;
  padding: 0.875rem 2rem !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  height: 48px !important;
  transition: all 0.2s ease !important;
}

.woocommerce div.product form.cart .single_add_to_cart_button:hover {
  background: #059669 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3) !important;
}

/* 产品Meta信息 */
.woocommerce div.product .product_meta {
  margin-top: 2rem !important;
  padding-top: 1.5rem !important;
  border-top: 1px solid #e5e7eb !important;
  font-size: 0.875rem !important;
  color: #6b7280 !important;
}

.woocommerce div.product .product_meta span {
  display: block !important;
  margin-bottom: 0.5rem !important;
}

.woocommerce div.product .product_meta a {
  color: #10b981 !important;
}

/* 产品标签页 */
.woocommerce div.product .woocommerce-tabs {
  grid-column: 1 / -1 !important;
  margin-top: 2rem !important;
}

.woocommerce div.product ul.tabs {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 1.5rem 0 !important;
  border-bottom: 2px solid #e5e7eb !important;
  display: flex !important;
  gap: 0 !important;
}

.woocommerce div.product ul.tabs li {
  margin: 0 !important;
  padding: 0 !important;
}

.woocommerce div.product ul.tabs li a {
  display: block !important;
  padding: 1rem 1.5rem !important;
  color: #6b7280 !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  border-bottom: 2px solid transparent !important;
  margin-bottom: -2px !important;
  transition: all 0.2s !important;
}

.woocommerce div.product ul.tabs li.active a,
.woocommerce div.product ul.tabs li a:hover {
  color: #10b981 !important;
  border-bottom-color: #10b981 !important;
}

.woocommerce div.product .woocommerce-Tabs-panel {
  padding: 1.5rem 0 !important;
  font-size: 1rem !important;
  line-height: 1.8 !important;
  color: #374151 !important;
}

.woocommerce div.product .woocommerce-Tabs-panel h2 {
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  color: #111827 !important;
  margin-bottom: 1rem !important;
}

/* 评价区域 */
.woocommerce #reviews #comments {
  margin-bottom: 1.5rem !important;
}

.woocommerce #reviews .commentlist {
  list-style: none !important;
  padding: 0 !important;
}

.woocommerce #reviews .comment {
  padding: 1.5rem !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 0.5rem !important;
  margin-bottom: 1rem !important;
}

/* 相关产品 */
.woocommerce div.product section.related {
  grid-column: 1 / -1 !important;
  margin-top: 3rem !important;
  padding-top: 2rem !important;
  border-top: 1px solid #e5e7eb !important;
}

.woocommerce div.product section.related h2 {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: #111827 !important;
  margin-bottom: 1.5rem !important;
}

/* 面包屑导航 */
.woocommerce .woocommerce-breadcrumb {
  font-size: 0.875rem !important;
  color: #6b7280 !important;
  margin-bottom: 1rem !important;
}

.woocommerce .woocommerce-breadcrumb a {
  color: #10b981 !important;
  text-decoration: none !important;
}

.woocommerce .woocommerce-breadcrumb a:hover {
  text-decoration: underline !important;
}

/* 加入购物车后的提示消息 */
.woocommerce-message {
  background: #ecfdf5 !important;
  border: 1px solid #10b981 !important;
  border-radius: 0.5rem !important;
  padding: 1rem 1.5rem !important;
  margin-bottom: 1.5rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 0.5rem !important;
}

.woocommerce-message::before {
  display: none !important;
}

.woocommerce-message .button {
  background: #10b981 !important;
  color: #fff !important;
  border-radius: 0.5rem !important;
  padding: 0.5rem 1rem !important;
  font-weight: 500 !important;
}

.woocommerce-message .button:hover {
  background: #059669 !important;
}

.woocommerce-message .wc-forward {
  background: #10b981 !important;
  color: #fff !important;
  border-radius: 0.5rem !important;
  padding: 0.5rem 1rem !important;
  font-weight: 500 !important;
  text-decoration: none !important;
}

.woocommerce-message .wc-forward:hover {
  background: #059669 !important;
}

/* 错误提示 */
.woocommerce-error {
  background: #fef2f2 !important;
  border: 1px solid #ef4444 !important;
  border-radius: 0.5rem !important;
  padding: 1rem 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

/* 产品卡片加入购物车提示 */
ul.products li.product .added_to_cart {
  display: inline-block !important;
  margin: 0.5rem 1rem 1rem !important;
  padding: 0.5rem 1rem !important;
  background: #10b981 !important;
  color: #fff !important;
  border-radius: 0.5rem !important;
  font-size: 0.875rem !important;
  text-decoration: none !important;
}
