@media (max-width: 599px) { .product-title { font-size: 36px; } .product-subtitle { font-size: 19px !important; text-transform: none !important; letter-spacing: 0.02em !important; } .product-pn { font-size: 0.8rem !important; } }
.trust-card-icon svg { width: 15px; height: 15px; color: var(--accent); }
/* ── Meta row ─────── */
.meta-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 0.875rem; font-size: 0.75rem; color: rgba(148,163,184,0.75); }
.meta-row span { display: flex; align-items: center; gap: 5px; }
.meta-row svg { color: var(--accent); flex-shrink: 0; }

/* ── Product image column ───────────────── */
.product-variant-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.product-variant-figure { margin: 0; }
.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-variant-grid .product-img-wrap,
.hero-media--single .product-img-wrap {
  flex: none !important;
  height: 520px !important;
  min-height: 520px !important;
  max-height: 520px !important;
}
.product-variant-grid .product-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0;
  box-sizing: border-box;
}
.product-img-wrap--notched img {
  object-position: 50% 55%;
  transform: scale(1.35);
  transform-origin: 50% 55%;
}
.product-variant-grid .gallery-hero-link:hover .product-img-wrap--notched img {
  transform: scale(1.4);
}
.product-variant-grid .product-img-wrap--square img {
  object-position: 47% 50%;
  transform: scale(1.35);
  transform-origin: 47% 52%;
}
.product-variant-grid .gallery-hero-link:hover .product-img-wrap--square img {
  transform: scale(1.4);
}
.product-variant-caption {
  margin: 0.625rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.product-variant-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #e2e8f0;
  line-height: 1.35;
}
.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; }

/* ── Spec table ─────────────────────────── */
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--line); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td { padding: 0.625rem 0; font-size: 0.8125rem; vertical-align: top; }
.spec-table td:first-child { color: #aebbd0; width: auto; white-space: nowrap; font-weight: 400; padding-right: 1.5rem; }
.spec-table td:last-child { color: #e2e8f0; font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.04em; }
.spec-table .model-cell { white-space: nowrap; }
.ka-data-table .model-cell { white-space: nowrap; }

/* ── Part number pills ──────────────────── */
.pill-wrap { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.75rem; }
.sn-pill {
  display: inline-flex !important; align-items: center !important;
  font-family: var(--font-mono) !important;
  font-size: 0.6875rem !important;
  letter-spacing: 0.04em !important;
  color: #bdc8d8 !important;
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(148,163,184,0.15) !important;
  border-radius: 0.375rem !important;
  padding: 3px 10px !important;
    margin: 0.15rem;
}
.approvals-block .model-pill { font-size: 0.65rem; padding: 2px 9px; border-radius: 0.25rem; }

/* ── Related product cards ──────────────── */
.related-card {
  position: relative; overflow: hidden;
  border-radius: 0.875rem;
  border: 1px solid rgba(148,163,184,0.18);
  background: rgba(255,255,255,0.08);
  height: 280px;
  text-decoration: none;
  display: block;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.related-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.related-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 65%; transition: transform 400ms ease; }
.related-card:hover img { transform: scale(1.04); }
.related-card-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.875rem 1.125rem;
  background: #0d1f3d;
  border-top: 1px solid rgba(148,163,184,0.12);
  font-size: 0.8125rem; font-weight: 500; color: #e2e8f0;
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 1023px) {
  .hero-grid { grid-template-columns: 1fr !important; gap: 0 !important; }
  .hero-media { max-width: 100%; width: 100%; margin: 1.5rem 0 0; height: auto !important; align-self: auto !important; }
  .product-variant-grid .product-img-wrap,
  .hero-media--single .product-img-wrap {
    height: 380px !important;
    min-height: 380px !important;
    max-height: 380px !important;
  }
  .cta-row { flex-wrap: wrap; margin-bottom: 0; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}
@media (max-width: 767px) {
  .trust-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: 1fr !important; }
  .related-grid { grid-template-columns: 1fr !important; }
  .approved-aircraft-grid { grid-template-columns: 1fr !important; }
  main > section > div[style*="max-width:1280px"],
  main > div > div[style*="max-width:1280px"] { padding-left: 1rem !important; padding-right: 1rem !important; }
}

/* ── Dark reference table ── */
.ka-data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  font-family: var(--font-sans);
}
@media (min-width: 768px) {
  .ka-data-table tbody tr { border-bottom: none; }
  .ka-data-table tbody td { padding: 0.875rem 1.25rem; color: var(--body); vertical-align: top; line-height: 1.5; }
}

/* ── Note callout ── */
.note-callout {
  border-left: 3px solid var(--accent);
  background: rgba(96,165,250,0.06);
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 0.75rem 1rem;
  margin-top: 0.75rem;
}

@media (max-width: 767px) {
  .compat-card {
    padding: 1rem !important;
    border-radius: 0.75rem;
  }
  .compat-card > p:first-child {
    line-height: 1.45;
  }
  .compat-card > p:nth-child(2) {
    font-size: 0.72rem !important;
    line-height: 1.55;
  }
  .compat-card .ka-table-scroll {
    border: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
  }
  .compat-card .ka-data-table {
    font-size: 0.8rem;
    width: 100% !important;
    max-width: 100% !important;
    table-layout: fixed;
  }
  .compat-card .ka-data-table tbody tr {
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(148,163,184,0.16);
    border-radius: 0.65rem;
    margin-bottom: 0.5rem;
    padding: 0.7rem 0.85rem;
  }
  .compat-card .ka-data-table tbody td {
    font-size: 0.78rem;
    line-height: 1.45;
    padding: 0.3rem 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .compat-card .ka-data-table tbody td::before {
    font-size: 0.48rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.15rem;
  }
  .compat-card .ka-data-table .model-cell {
    font-size: 0.9rem;
    line-height: 1.35;
    white-space: normal;
  }
  .compat-card .ka-data-table .pn {
    font-size: 0.78rem !important;
    letter-spacing: 0.04em;
  }
  .compat-card .ka-data-table .sn-pill {
    font-size: 0.68rem !important;
    line-height: 1.35 !important;
    margin: 0.12rem 0.18rem 0.12rem 0 !important;
    padding: 3px 8px !important;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .compat-card .note-callout {
    border-left-width: 3px;
    border-radius: 0 0.5rem 0.5rem 0;
    margin-top: 0.75rem;
    padding: 0.75rem 0.85rem;
  }
  .compat-card .note-callout p {
    font-size: 0.78rem !important;
    line-height: 1.65 !important;
  }
}

/* ── CTA section ── */
.cta-section {
  background: linear-gradient(160deg, #0a1628 0%, #07101e 100%);
  border-top: 1px solid rgba(148,163,184,0.1);
}

/* ── Aircraft reference table mobile ── */
