/* ============================================
   MODEL DETAIL PAGE - SHARED STYLES
   ============================================ */

.model-detail-hero {
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: 8rem 2rem 4rem;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.model-detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21,39,64,1) 0%, rgba(21,39,64,0.5) 60%, rgba(21,39,64,0.1) 100%);
  z-index: 1;
}

.model-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.model-hero-badge {
  display: inline-block;
  background: rgba(0, 132, 209, 0.3);
  border: 1px solid rgba(0, 132, 209, 0.6);
  color: #a5c3e6;
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.model-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.model-hero-subtitle {
  font-size: 1.3rem;
  color: #cbd5e1;
  max-width: 700px;
  line-height: 1.7;
}

/* Specs Grid */
.specs-section {
  padding: 5rem 2rem;
  background: #fff;
}

.specs-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 768px) {
  .specs-grid { grid-template-columns: 1fr; gap: 2rem; }
  .model-hero-title { font-size: 2.5rem; }
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

.spec-table tr {
  border-bottom: 1px solid #e2e8f0;
}

.spec-table td {
  padding: 1rem 0.5rem;
  font-size: 1rem;
}

.spec-table td:first-child {
  color: #64748b;
  font-weight: 500;
  width: 50%;
}

.spec-table td:last-child {
  font-weight: 700;
  color: var(--c-navy, #152740);
  text-align: right;
}

/* Features list */
.features-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.features-list li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
  font-size: 1rem;
  line-height: 1.5;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0084d1;
  font-weight: 800;
  font-size: 1.1rem;
}

/* Section headings inside detail pages */
.detail-section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0084d1;
  margin-bottom: 0.6rem;
}

.detail-section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-navy, #152740);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.detail-section-desc {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Model image detail close-up */
.model-closeup-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  object-fit: cover;
  max-height: 420px;
}

/* CTA Strip */
.detail-cta-strip {
  background: var(--c-navy, #152740);
  padding: 4rem 2rem;
  text-align: center;
}

.detail-cta-strip h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.detail-cta-strip p {
  color: #94a3b8;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Back link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #0084d1;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 1rem 2rem;
  letter-spacing: 0.3px;
}

.back-link:hover { opacity: 0.8; }
