
/* 深度导购模块样式 v1.0 */
.deep-product-guide {
  max-width: 100%;
  box-sizing: border-box;
}

.dip-product-card {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: white;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.dip-product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.dip-product-image {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dip-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dip-fallback {
  font-size: 48px;
}

.dip-product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dip-product-title {
  font-size: 14px;
  color: #1f2937;
  margin: 0 0 8px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dip-product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.dip-current-price {
  font-size: 20px;
  font-weight: 700;
  color: #dc3545;
}

.dip-original-price {
  font-size: 12px;
  color: #868e96;
  text-decoration: line-through;
}

.dip-discount {
  font-size: 11px;
  color: white;
  background: #dc3545;
  padding: 2px 6px;
  border-radius: 4px;
}

.dip-commission {
  font-size: 11px;
  color: #28a745;
  margin-bottom: 8px;
}

.dip-product-cta {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  transition: opacity 0.2s;
}

.dip-product-cta:hover {
  opacity: 0.9;
  color: white;
}

@media (max-width: 640px) {
  .dip-product-grid {
    grid-template-columns: 1fr !important;
  }
  
  .dip-product-card {
    flex-direction: column;
  }
  
  .dip-product-image {
    width: 100%;
    height: 150px;
  }
}
