*, *::before, *::after { box-sizing: border-box; }
html { background: var(--canvas); font-size: 17px; }
body {
  font-family: var(--font-sans);
  background: var(--canvas);
  color: var(--body);
  overflow-x: hidden;
  margin: 0; padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.product-img-wrap {
  position: relative;
  border-radius: 1.125rem;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 0 60px rgba(30,78,216,0.18), 0 24px 48px rgba(0,0,0,0.5);
}
.product-img-wrap img { display: block; width: 100%; height: 100%; object-fit: cover; }
.product-img-wrap-2 {
  position: relative;
  border-radius: 0.875rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  margin-top: 0.875rem;
  background: var(--canvas-2);
  height: 300px;
}
.product-img-wrap-2 img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.gallery-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent); text-decoration: none;
  margin-top: 0.75rem;
  transition: opacity 150ms;
}
.gallery-link:hover { opacity: 0.75; }

/* Approved aircraft — 2 OEM columns in hero */
.approvals-block { margin-top: 0.35rem; }
.approvals-heading,
.approvals-oem-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(148, 163, 184, 0.4);
  margin: 0;
}
.approvals-heading { margin-bottom: 0.55rem; }
.approvals-oem-label { margin-bottom: 0.3rem; }
.approvals-oem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1.25rem;
  max-width: 28rem;
}
.approvals-oem-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
@media (max-width: 380px) {
  .approvals-oem-grid { grid-template-columns: 1fr; }
}

/* Aircraft reference table */

@media (max-width: 1023px) {
  .hero-grid { grid-template-columns: 1fr !important; gap: 0 !important; }
  .hero-media { max-width: 100%; margin: 1.5rem 0 0; }
  .product-img-wrap { flex: none !important; height: 380px !important; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .cta-row { flex-wrap: wrap; margin-bottom: 0; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}
@media (max-width: 767px) {
  .specs-grid { grid-template-columns: 1fr !important; }
  .related-grid { grid-template-columns: 1fr !important; }
  .product-img-wrap-2 { display: none; }
}
@media (max-width: 639px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-cell { padding: 1.125rem 1rem; }}
