/* 产品页面特定样式 */

/* 产品列表容器 */
.products-list-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* 产品卡片布局 */
.product-detail-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.product-detail-card.reverse {
  grid-template-columns: 1fr 300px;
}

.product-detail-image {
  width: 300px;
  height: 300px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  box-shadow: var(--shadow-lg);
}

.product-detail-image-gradient-1 {
  background: var(--gradient-1);
}

.product-detail-image-gradient-2 {
  background: var(--gradient-2);
}

.product-detail-image-gradient-3 {
  background: var(--gradient-3);
}

.product-detail-image-gradient-4 {
  background: var(--gradient-4);
}

.product-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.product-tag-purple {
  background: var(--bg-gradient-1-10);
  color: var(--primary-purple);
}

.product-tag-blue {
  background: var(--bg-gradient-3-10);
  color: var(--primary-blue);
}

.product-tag-pink {
  background: var(--bg-gradient-2-10);
  color: var(--primary-pink);
}

.product-tag-green {
  background: var(--bg-gradient-4-10);
  color: var(--primary-green);
}

.product-detail-title {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
}

.product-detail-title-gradient-1 {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-detail-title-gradient-2 {
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-detail-title-gradient-3 {
  background: var(--gradient-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-detail-title-gradient-4 {
  background: var(--gradient-4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-detail-desc {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.product-feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: var(--spacing-md);
}

.product-feature-item {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.product-feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.product-feature-dot-gradient-1 {
  background: var(--gradient-1);
}

.product-feature-dot-gradient-2 {
  background: var(--gradient-2);
}

.product-feature-dot-gradient-3 {
  background: var(--gradient-3);
}

.product-feature-dot-gradient-4 {
  background: var(--gradient-4);
}

.product-feature-text {
  color: var(--text-secondary);
}

/* 产品页面移动端适配 */
@media (max-width: 768px) {
  .product-detail-card,
  .product-detail-card.reverse {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  .product-detail-image {
    width: 100% !important;
    height: auto !important;
    min-height: 250px !important;
    aspect-ratio: 1 / 1 !important;
    font-size: 5rem !important;
  }
  
  .product-detail-title {
    font-size: 1.75rem !important;
  }
  
  .product-tag {
    font-size: 0.75rem !important;
    padding: 0.4rem 0.8rem !important;
  }
  
  .product-feature-list li {
    padding: 0.5rem 0 !important;
  }
}

