/* ========================================
   Product Detail Page
   ======================================== */
.product-detail-section {
  padding: 80px 0;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.product-detail-image {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border-radius: 20px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.product-detail-image i {
  font-size: 120px;
  color: #7c3aed;
  opacity: 0.6;
}

.product-detail-info h1 {
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
}

.product-detail-category {
  display: inline-block;
  padding: 8px 16px;
  background: #ede9fe;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #7c3aed;
  margin-bottom: 24px;
}

.product-detail-desc {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 32px;
}

.product-features-list {
  margin-bottom: 32px;
}

.product-features-list h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 16px;
}

.product-features-list ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #4b5563;
}

.product-features-list i {
  color: #7c3aed;
  margin-top: 4px;
}

.product-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}

.product-specs-table th,
.product-specs-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.product-specs-table th {
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  background: #f9fafb;
  width: 40%;
}

.product-specs-table td {
  font-size: 15px;
  color: #1f2937;
}

.product-detail-actions {
  display: flex;
  gap: 16px;
}

.product-detail-actions .btn {
  flex: 1;
}

.product-related {
  padding: 80px 0;
  background: #f9fafb;
}

/* ========================================
   News Detail Page
   ======================================== */
.news-detail-section {
  padding: 60px 0;
}

.news-detail-container {
  max-width: 900px;
  margin: 0 auto;
}

.news-detail-header {
  margin-bottom: 40px;
}

.news-detail-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.news-detail-date {
  font-size: 14px;
  color: #9ca3af;
}

.news-detail-category {
  padding: 6px 14px;
  background: #ede9fe;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #7c3aed;
}

.news-detail-category a {
  color: #7c3aed !important;
}
.news-detail-category a:hover {
  color: #0c0e7e !important;
}


.news-detail-title {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.3;
}

.news-detail-image {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border-radius: 16px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.news-detail-image i {
  font-size: 80px;
  color: #7c3aed;
  opacity: 0.5;
}

.news-detail-content {
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
}

.news-detail-content p {
  margin-bottom: 20px;
}

.news-detail-content h2 {
  font-size: 24px;
  font-weight: 600;
  color: #1f2937;
  margin: 40px 0 20px;
}

.news-detail-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin: 32px 0 16px;
}

.news-detail-content ul {
  margin-bottom: 20px;
  padding-left: 24px;
}

.news-detail-content li {
  margin-bottom: 8px;
}

.news-detail-tags {
  display: flex;
  gap: 10px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #e5e7eb;
}

.news-detail-tag {
  padding: 8px 16px;
  background: #f3f4f6;
  border-radius: 20px;
  font-size: 14px;
  color: #4b5563;
}

.news-detail-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #e5e7eb;
}

.news-nav-link {
  display: flex;
  flex-direction: column;
  max-width: 45%;
}

.news-nav-link span {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 8px;
}

.news-nav-link strong {
  font-size: 15px;
  color: #1f2937;
  font-weight: 600;
}

.news-nav-link:hover strong {
  color: #7c3aed;
}

.news-nav-prev {
  text-align: left;
}

.news-nav-next {
  text-align: right;
}
