/* Product detail body (matches Next.js ProductDetailClient prose-invert) */
.product-prose {
  color: #cbd5e1;
  font-size: 1.125rem;
  line-height: 1.75;
}
.product-prose h1,
.product-prose h2,
.product-prose h3,
.product-prose h4 {
  color: #fff;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.product-prose h2 {
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #0d9488;
}
.product-prose h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
}
.product-prose p {
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.product-prose strong,
.product-prose b {
  color: #fff;
  font-weight: 700;
}
.product-prose li {
  color: #cbd5e1;
  margin-bottom: 0.5rem;
}
.product-prose ul,
.product-prose ol {
  padding-left: 1.5rem;
  margin: 1rem 0 1.5rem;
}
.product-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.product-prose th {
  background: #0d9488;
  color: #fff;
  padding: 0.75rem;
  text-align: left;
}
.product-prose td {
  padding: 0.75rem;
  border-bottom: 1px solid #334155;
  color: #cbd5e1;
}
.product-prose img,
.product-prose .product-content-img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}
.product-prose hr {
  border: 0;
  border-top: 1px solid #334155;
  margin: 2rem 0;
}
.product-prose a {
  color: #2dd4bf;
  text-decoration: none;
}
.product-prose a:hover {
  color: #5eead4;
}

/* Product detail — categories & tags */
.product-meta-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-meta-card {
  border-radius: 1rem;
  border: 1px solid rgba(45, 212, 191, 0.2);
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.85) 100%);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.product-meta-card--tags {
  border-color: rgba(192, 132, 252, 0.25);
}

.product-meta-card__header {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.product-meta-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(20, 184, 166, 0.15);
  border: 1px solid rgba(45, 212, 191, 0.35);
  font-size: 1.125rem;
  flex-shrink: 0;
}

.product-meta-card--tags .product-meta-card__icon {
  background: rgba(168, 85, 247, 0.15);
  border-color: rgba(192, 132, 252, 0.35);
}

.product-meta-card__title {
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.product-meta-card__subtitle {
  color: #94a3b8;
  font-size: 0.8125rem;
  margin: 0.2rem 0 0;
}

.product-category-list,
.product-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.product-category-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.product-category-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
}

.product-category-chip__icon {
  font-size: 0.95rem;
  line-height: 1;
}

.product-category-chip--teal {
  color: #5eead4;
  background: rgba(20, 184, 166, 0.14);
  border-color: rgba(45, 212, 191, 0.35);
}
.product-category-chip--teal:hover {
  background: rgba(20, 184, 166, 0.24);
  border-color: rgba(45, 212, 191, 0.55);
}

.product-category-chip--cyan {
  color: #67e8f9;
  background: rgba(6, 182, 212, 0.14);
  border-color: rgba(34, 211, 238, 0.35);
}
.product-category-chip--cyan:hover {
  background: rgba(6, 182, 212, 0.24);
}

.product-category-chip--purple {
  color: #d8b4fe;
  background: rgba(168, 85, 247, 0.14);
  border-color: rgba(192, 132, 252, 0.35);
}
.product-category-chip--purple:hover {
  background: rgba(168, 85, 247, 0.24);
}

.product-category-chip--pink {
  color: #f9a8d4;
  background: rgba(236, 72, 153, 0.14);
  border-color: rgba(244, 114, 182, 0.35);
}
.product-category-chip--pink:hover {
  background: rgba(236, 72, 153, 0.24);
}

.product-category-chip--amber {
  color: #fcd34d;
  background: rgba(245, 158, 11, 0.14);
  border-color: rgba(251, 191, 36, 0.35);
}
.product-category-chip--amber:hover {
  background: rgba(245, 158, 11, 0.24);
}

.product-category-chip--rose {
  color: #fda4af;
  background: rgba(244, 63, 94, 0.14);
  border-color: rgba(251, 113, 133, 0.35);
}
.product-category-chip--rose:hover {
  background: rgba(244, 63, 94, 0.24);
}

.product-category-chip--orange {
  color: #fdba74;
  background: rgba(249, 115, 22, 0.14);
  border-color: rgba(251, 146, 60, 0.35);
}
.product-category-chip--orange:hover {
  background: rgba(249, 115, 22, 0.24);
}

.product-category-chip--indigo {
  color: #a5b4fc;
  background: rgba(99, 102, 241, 0.14);
  border-color: rgba(129, 140, 248, 0.35);
}
.product-category-chip--indigo:hover {
  background: rgba(99, 102, 241, 0.24);
}

.product-category-chip--lime {
  color: #bef264;
  background: rgba(132, 204, 22, 0.14);
  border-color: rgba(163, 230, 53, 0.35);
}
.product-category-chip--lime:hover {
  background: rgba(132, 204, 22, 0.24);
}

.product-category-chip--yellow {
  color: #fde047;
  background: rgba(234, 179, 8, 0.14);
  border-color: rgba(250, 204, 21, 0.35);
}

.product-category-chip--violet {
  color: #c4b5fd;
  background: rgba(139, 92, 246, 0.14);
  border-color: rgba(167, 139, 250, 0.35);
}

.product-category-chip--sky {
  color: #7dd3fc;
  background: rgba(14, 165, 233, 0.14);
  border-color: rgba(56, 189, 248, 0.35);
}

.product-category-chip--slate {
  color: #cbd5e1;
  background: rgba(71, 85, 105, 0.35);
  border-color: rgba(100, 116, 139, 0.45);
}
.product-category-chip--slate:hover {
  background: rgba(71, 85, 105, 0.5);
}

.product-tag-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #d8b4fe;
  background: rgba(88, 28, 135, 0.2);
  border: 1px solid rgba(192, 132, 252, 0.25);
}
