/* ===== Product Detail Page ===== */
.prod-detail-card {
  background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid rgba(var(--primary-rgb), 0.08);
  box-shadow: 0 4px 24px rgba(var(--primary-rgb), 0.06);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.prod-detail-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
}
.prod-detail-brand {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: inline-block;
  margin-bottom: 6px;
}
.prod-detail-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}
.prod-detail-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 12px;
}
.prod-detail-card p {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 16px;
}
.prod-detail-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.prod-detail-meta span {
  font-size: 0.78rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 6px;
}
.prod-detail-meta i {
  color: var(--primary);
  font-size: 0.75rem;
}

/* Related Products Thumb */
.prod-related-thumb {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-radius: 10px;
  flex-shrink: 0;
  overflow: hidden;
}
.prod-related-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.prod-related-thumb i {
  font-size: 0.85rem;
  color: var(--primary);
}
