/* Safetop Repuestos — diseño del bloque de repuestos */

.safetop-spareparts {
  width: 100%;
  max-width: 1000px;
}

.safetop-spareparts .stsp-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border: 1px solid #e0e0e0;
  background: #fff;
  margin-bottom: 6px;
}

.safetop-spareparts .stsp-row:last-child {
  margin-bottom: 0;
}

.safetop-spareparts .stsp-thumb {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  display: block;
}

.safetop-spareparts .stsp-thumb img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}

.safetop-spareparts .stsp-ref {
  flex: 0 0 auto;
  min-width: 80px;
  font-size: 12px;
  color: #555;
}

.safetop-spareparts .stsp-name {
  flex: 1 1 auto;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  color: #222;
  line-height: 1.3;
}

.safetop-spareparts .stsp-name:hover {
  text-decoration: underline;
}

.safetop-spareparts .stsp-action {
  flex: 0 0 auto;
  margin-left: auto;
  text-align: right;
}

.safetop-spareparts .stsp-btn {
  background: #222;
  color: #fff;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

.safetop-spareparts .stsp-btn:hover {
  background: #000;
  color: #fff;
}

/* --- RTL (árabe / hebreo) --- */
.safetop-spareparts.stsp-rtl .stsp-action {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

/* --- Responsive: apila en móvil --- */
@media (max-width: 575px) {
  .safetop-spareparts .stsp-row {
    flex-wrap: wrap;
  }
  .safetop-spareparts .stsp-name {
    flex: 1 1 100%;
    order: 3;
  }
  .safetop-spareparts .stsp-action {
    order: 4;
  }
}
