/* Product detail pages use the shared site typography and components. */
.model-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 32px; align-items: start; margin-bottom: 48px; }
.model-photo { margin: 0; }
.model-photo__frame { position: relative; aspect-ratio: 4 / 3; width: 100%; max-width: 320px; margin: 0 auto 16px; padding: 16px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card); }
.model-photo img { position: absolute; inset: 16px; margin: auto; display: block; width: auto; height: auto; max-width: calc(100% - 32px); max-height: calc(100% - 32px); object-fit: contain; filter: grayscale(1) contrast(1.05); }
.model-photo figcaption { margin: 0 0 16px; font: 600 13px/1.4 var(--font); color: var(--ink-2); text-align: center; }
.model-specs { margin: 0; }
.model-specs div { padding: 12px 0; border-bottom: 1px solid var(--border); }
.model-specs dt { font-weight: 600; }
.model-specs dd { margin: 4px 0 0; }
.model-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-top: 24px; }
.model-actions .btn { white-space: normal; text-align: center; }
.model-copy { max-width: 840px; padding-bottom: 64px; }
.model-copy h2 { scroll-margin-top: 100px; }
.model-reading { margin: 0 0 48px; padding: 24px; }
.model-reading li + li { margin-top: 12px; }
@media (max-width: 720px) { .model-grid { grid-template-columns: minmax(0, 1fr); gap: 24px; } }
