/* Blackhawk Off-Road — Product Detail Page Styles */
/* Extends styles.css — PDP-specific overrides */

.bh-pdp-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.bh-pdp-thumb {
  width: 64px;
  height: 64px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bh-pdp-thumb:hover,
.bh-pdp-thumb.active {
  border-color: var(--primary);
}

.bh-pdp-thumb img {
  max-height: 56px;
  object-fit: contain;
}

.bh-reviews-section {
  margin-top: 32px;
}

.bh-review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
}

.bh-review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.bh-review-author {
  font-weight: 600;
  color: var(--text, #1a1a1a);
  font-size: 14px;
}

.bh-review-date {
  font-size: 12px;
  color: var(--text-muted);
}

.bh-review-stars {
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 8px;
}

.bh-review-body {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.bh-review-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--success);
  font-weight: 600;
  margin-top: 8px;
}

.bh-similar-products {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.bh-similar-products h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--text, #1a1a1a);
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* Suggested products grid */
.bh-suggested-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .bh-suggested-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
