/* Product Detail View */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.main-image-frame {
  aspect-ratio: 1 / 1;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
}

.main-image-frame img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.gallery-thumbs {
  display: flex;
  gap: 0.75rem;
}

.thumb-frame {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--border);
  padding: 0.25rem;
  cursor: pointer;
  background-color: var(--surface);
}

.thumb-frame.active {
  border-color: var(--accent);
}

.cta-box {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.specs-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

.specs-table td:first-child {
  font-weight: 600;
  color: var(--primary-700);
  width: 35%;
  background-color: var(--surface);
}
