/* ── Repuestos page ─────────────────────────────────────── */
.repuestos-section { padding: 0 0 80px; overflow-x: hidden; }

.repuestos-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  width: 100%;
  overflow-x: hidden;
}

/* Hero */
.repuestos-hero {
  padding: 48px 0 32px;
}
.repuestos-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: #003A8F;
  margin: 0 0 10px;
}
.repuestos-sub {
  font-size: 15px;
  color: #6b5e4e;
  margin: 0 0 18px;
}
.repuestos-intro {
  margin: 0 0 24px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #5a4e40;
}

/* Search bar */
.repuestos-search {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  flex-wrap: wrap;
}
.repuestos-input {
  flex: 1;
  min-width: 200px;
  height: 46px;
  padding: 0 16px;
  border: 2px solid #c9b89a;
  border-radius: 8px;
  background: #faf8f5;
  font-size: 15px;
  color: #1a1410;
  outline: none;
  transition: border-color .15s;
}
.repuestos-input:focus { border-color: #003A8F; background: #fff; }
.repuestos-btn {
  height: 46px;
  padding: 0 22px;
  background: #003A8F;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
}
.repuestos-btn:hover { background: #0050c8; }
.repuestos-clear {
  height: 46px;
  line-height: 46px;
  padding: 0 14px;
  border: 2px solid #c9b89a;
  border-radius: 8px;
  color: #6b5e4e;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
}
.repuestos-clear:hover { border-color: #6b5e4e; color: #1a1410; }

/* Layout */
.repuestos-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 768px) {
  .repuestos-layout { grid-template-columns: 1fr; }
}

/* Sidebar */
.repuestos-sidebar {
  position: sticky;
  top: 80px;
  background: #faf8f5;
  border: 1px solid #e0d5c4;
  border-radius: 10px;
  padding: 16px 12px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}
.repuestos-sidebar-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #9b8a78;
  margin: 0 0 10px 8px;
}
.repuestos-group-link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 13px;
  color: #1a1410;
  text-decoration: none;
  line-height: 1.35;
}
.repuestos-group-link:hover { background: #efe8dc; }
.repuestos-group-link.active { background: #dde8f7; color: #003A8F; font-weight: 600; }
.repuestos-cnt {
  flex-shrink: 0;
  font-size: 11px;
  color: #9b8a78;
  background: #e8dfce;
  border-radius: 10px;
  padding: 1px 7px;
}

/* Mobile: sidebar becomes a horizontal scrollable pill strip */
@media (max-width: 768px) {
  .repuestos-sidebar {
    position: static;
    max-height: none;
    overflow-y: visible;
    overflow-x: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 6px;
    padding: 10px 0;
    background: transparent;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #e0d5c4;
    margin-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .repuestos-sidebar::-webkit-scrollbar { display: none; }
  .repuestos-sidebar-title { display: none; }
  .repuestos-group-link {
    flex-shrink: 0;
    padding: 6px 14px;
    border: 1.5px solid #e0d5c4;
    border-radius: 20px;
    background: #faf8f5;
    font-size: 13px;
    white-space: nowrap;
  }
  .repuestos-group-link.active {
    border-color: #003A8F;
    background: #dde8f7;
  }
  .repuestos-cnt { display: none; }
}
.repuestos-group-link.active .repuestos-cnt { background: #bed0ef; color: #003A8F; }

/* Main */
.repuestos-count {
  font-size: 14px;
  color: #6b5e4e;
  margin: 0 0 20px;
}
.repuestos-empty {
  padding: 40px 0;
  text-align: center;
  color: #6b5e4e;
}
.repuestos-empty code {
  background: #e8dfce;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: .9em;
}

/* Group */
.repuestos-group { margin-bottom: 36px; }
.repuestos-group-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  color: #1a1410;
  margin: 0 0 12px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.repuestos-group-code {
  display: inline-block;
  background: #003A8F;
  color: #fff;
  font-family: 'Barlow Condensed', monospace;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  border-radius: 4px;
  padding: 2px 8px;
  line-height: 1.5;
  letter-spacing: .04em;
}

/* Table */
.repuestos-table-wrap {
  overflow-x: auto;
  border: 1px solid #e0d5c4;
  border-radius: 8px;
}
.repuestos-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.repuestos-table thead {
  background: #f2ece2;
  position: sticky;
  top: 0;
  z-index: 1;
}
.repuestos-table th {
  text-align: left;
  padding: 10px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #6b5e4e;
  white-space: nowrap;
  border-bottom: 1px solid #e0d5c4;
}
.repuestos-table td {
  padding: 8px 12px;
  border-bottom: 1px solid #ece6da;
  vertical-align: top;
  color: #1a1410;
}
.repuestos-table tr:last-child td { border-bottom: none; }
.repuestos-table tr:hover td { background: #faf6ef; }
.repuestos-table tr:target td { background: #dde8f7; }

/* Column widths */
.col-ref   { width: 48px; white-space: nowrap; color: #9b8a78; font-variant-numeric: tabular-nums; }
.col-pn    { width: 180px; white-space: nowrap; font-variant-numeric: tabular-nums; }
.col-desc  { }
.col-qty   { width: 52px; text-align: center; white-space: nowrap; }
.col-notes { width: 160px; color: #6b5e4e; font-size: 12px; }

.pn-link {
  font-family: 'Courier New', monospace;
  font-size: 12.5px;
  color: #003A8F;
  text-decoration: none;
  font-weight: 600;
}
.pn-link:hover { text-decoration: underline; }

/* Sub-part indentation */
.col-desc.depth-1 { padding-left: 20px; }
.col-desc.depth-2 { padding-left: 36px; }
.col-desc.depth-3 { padding-left: 52px; }
.pn-sub { color: #c9b89a; font-size: 12px; margin-right: 4px; }

/* Diagram badge next to group title */
.repuestos-diag-badge {
  display: inline-block;
  padding: 3px 10px;
  border: 1.5px solid #003A8F;
  border-radius: 20px;
  font-family: system-ui, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  color: #003A8F;
  text-decoration: none;
  white-space: nowrap;
  vertical-align: middle;
  transition: background .12s, color .12s;
}
.repuestos-diag-badge:hover { background: #003A8F; color: #fff; }

/* Diagram column */
.col-diag { width: 44px; text-align: center; white-space: nowrap; }
.diag-link {
  font-size: 15px;
  color: #003A8F;
  text-decoration: none;
  line-height: 1;
}
.diag-link:hover { color: #0050c8; }

/* Despiece promo banner — full width, yellow bg, blue text */
.repuestos-despiece-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
  padding: 28px 36px;
  background: #FFD100;
  border-radius: 12px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(255,209,0,.35);
  transition: box-shadow .2s, transform .15s;
}
.repuestos-despiece-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 22px,
    rgba(0,58,143,.05) 22px,
    rgba(0,58,143,.05) 23px
  );
  pointer-events: none;
}
.repuestos-despiece-banner:hover {
  box-shadow: 0 8px 36px rgba(255,209,0,.5);
  transform: translateY(-2px);
}
.repuestos-despiece-banner-body {
  position: relative;
  text-align: left;
}
.repuestos-despiece-banner-eye {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(0,58,143,.6);
  margin: 0 0 6px;
}
.repuestos-despiece-banner-title {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(22px, 3.5vw, 34px);
  color: #003A8F;
  line-height: 1.1;
  margin: 0 0 6px;
}
.repuestos-despiece-banner-desc {
  font-size: 13.5px;
  color: rgba(0,40,100,.75);
  margin: 0;
  line-height: 1.5;
  max-width: 52ch;
}
.repuestos-despiece-banner-cta {
  position: relative;
  flex-shrink: 0;
  display: inline-block;
  padding: 11px 22px;
  background: #003A8F;
  color: #FFD100;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: background .15s;
}
.repuestos-despiece-banner:hover .repuestos-despiece-banner-cta { background: #002a6e; }
@media (max-width: 600px) {
  .repuestos-despiece-banner { flex-direction: column; align-items: flex-start; padding: 22px 20px; }
  .repuestos-despiece-banner-cta { align-self: stretch; text-align: center; }
}

/* Despiece nav link in sidebar */
.repuestos-despiece-nav {
  font-weight: 600;
  color: #003A8F;
  border: 1px solid #bed0ef;
  background: #f0f5fc;
  border-radius: 6px;
}
.repuestos-despiece-nav:hover { background: #dde8f7; }

/* Mobile: collapse notes and diagram columns */
@media (max-width: 600px) {
  .col-notes { display: none; }
  .repuestos-table th.col-notes { display: none; }
  .col-diag  { display: none; }
  .repuestos-table th.col-diag  { display: none; }
  .col-pn { width: 110px; }
  .repuestos-input { min-width: 0; }
  .repuestos-group-title { flex-wrap: wrap; font-size: 18px; }
  .repuestos-table { font-size: 12px; }
  .repuestos-table td, .repuestos-table th { padding: 6px 8px; }
}
