/* =========================================================================
   THE HARDWOOD GUYS -- PRODUCT CATALOG EXTRAS
   Generated/maintained by build-products.py. Loaded after /service-page.css
   and before /design/header-final.css (which must stay last on every page).
   Every rule below references only the semantic tokens already defined in
   design/tokens.css -- no raw hex values are introduced here.
   ========================================================================= */

.product-overview {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: start;
}
@media (min-width: 768px) {
  .product-overview { grid-template-columns: minmax(260px, 380px) 1fr; }
}
.product-overview__media .photo-placeholder,
.product-overview__media .product-gallery__main {
  width: 100%;
  border-radius: var(--radius-base);
}
.product-gallery { display: flex; flex-direction: column; gap: var(--space-3); }
.product-gallery__main {
  width: 100%;
  height: auto;
  border-radius: var(--radius-base);
  border: 1px solid var(--color-border-default);
}
.product-gallery__thumb {
  width: 100%;
  max-width: 160px;
  height: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-default);
}
.product-call-note {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-5);
  padding: var(--space-4);
  background: var(--color-bg-page-alt);
  border-left: 4px solid var(--color-cta-bg);
  border-radius: var(--radius-base);
}
.product-call-note svg { width: 20px; height: 20px; flex: none; color: var(--color-cta-bg); }
.product-call-note a { color: var(--color-text-link); font-weight: var(--weight-semibold); }
.product-call-note a:hover,
.product-call-note a:focus-visible { color: var(--color-text-link-hover); }

.product-specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}
@media (min-width: 768px) {
  .product-specs { grid-template-columns: 1fr 1fr; }
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-bg-card);
  border-radius: var(--radius-base);
  overflow: hidden;
  border: 1px solid var(--color-border-default);
}
.spec-table th,
.spec-table td {
  text-align: left;
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--color-border-default);
  font-size: var(--text-sm);
}
.spec-table tr:last-child th,
.spec-table tr:last-child td { border-bottom: none; }
.spec-table th {
  width: 40%;
  color: var(--color-text-muted);
  font-weight: var(--weight-medium);
}
.spec-table td { color: var(--color-text-body); font-weight: var(--weight-semibold); }
