/* Product Detail Page Specific Styles */

.product-gallery {
  margin-bottom: 20px;
}
.thumb-list {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
}
.thumb-list img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}
.thumb-list img:hover,
.thumb-list img.active {
  border-color: var(--primary);
}

.related-products {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}
.related-products h2 {
  font-size: 20px;
  margin-bottom: 20px;
}

.product-description {
  margin-top: 40px;
  padding: 30px;
  background: #f9f9f9;
  border-radius: 8px;
}
.product-description h2 {
  font-size: 20px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
}
.desc-content {
  line-height: 1.8;
  color: #555;
}
.desc-content p {
  margin-bottom: 12px;
}
