/* product-detail.css */

.product-detail-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Inter', sans-serif;
  color: #111827;
}

/* Back Link */
.back-link-wrapper {
  margin-bottom: 40px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 20px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4b5563;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: #111827;
}

/* Hero Section */
.pd-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.pd-hero-image {
  background: #f9fafb;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px;
}

.pd-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.pd-hero-content {
  display: flex;
  flex-direction: column;
}



.pd-title {
  font-size: 40px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.pd-description {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 32px 0;
}

.pd-badges {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}

.pd-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.pd-badge svg {
  width: 18px;
  height: 18px;
  color: #ea580c;
}

.pd-actions {
  display: flex;
  gap: 16px;
}

.btn-primary-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #ea580c;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary-orange:hover {
  background-color: #c2410c;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: white;
  color: #111827;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  border-color: #d1d5db;
  background-color: #f9fafb;
}

/* Sections General */
.pd-section {
  margin-bottom: 80px;
}

.pd-section-header {
  margin-bottom: 32px;
  position: relative;
}

.pd-section-title {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin: 0;
  padding-bottom: 12px;
  display: inline-block;
  border-bottom: 3px solid #ea580c;
}

/* Technical Specifications */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.spec-card {
  background: #fafafa;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.2s ease;
}

.spec-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  background-color: #ea580c;
  border-color: #ea580c;
}

.spec-label {
  font-size: 11px;
  text-transform: uppercase;
  color: #9ca3af;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.spec-value {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  transition: color 0.2s ease;
}

.spec-card:hover .spec-label,
.spec-card:hover .spec-value {
  color: white;
}

/* Key Product Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: white;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  transition: all 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  border-color: #ea580c;
}

.feature-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #fff7ed;
  color: #ea580c;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.2s ease;
}

.feature-card:hover .feature-icon-wrapper {
  background-color: #ea580c;
  color: white;
}

.feature-title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px 0;
}

.feature-desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* Related Identification Hardware */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.related-card {
  background: white;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  transition: all 0.2s ease;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  border-color: #ea580c;
}

.related-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #f3f4f6;
}

.related-content {
  padding: 24px;
}

.related-badge {
  font-size: 11px;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.related-badge .dot {
  width: 6px;
  height: 6px;
  background-color: #ea580c;
  border-radius: 50%;
  display: inline-block;
}

.related-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px 0;
}

.related-desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 24px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-link {
  font-size: 14px;
  font-weight: 600;
  color: #ea580c;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.related-link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
  .specs-grid, .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pd-hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
}
