/******* Do not edit this file *******
Code Snippets Manager
Saved: Nov 28 2025 | 11:59:20 */
@charset "UTF-8";
/* 1. Ocultar el texto original "Related products" */
section.related.products > h2 {
  font-size: 0 !important;
  /* Hace invisible el texto original */
  line-height: 0 !important;
  /* Elimina la altura extra */
  color: transparent !important;
}
/* 2. Insertar el nuevo título en Español */
section.related.products > h2::before {
  content: "Productos relacionados";
  /* TU TEXTO AQUÍ */
  /* Recuperar el tamaño y estilo visible */
  font-size: 26px !important;
  /* Ajusta el tamaño si lo ves muy grande o pequeño */
  line-height: 1.5 !important;
  color: #000000 !important;
  /* Color del texto (negro) */
  /* Tu fuente preferida */
  font-family: "DM Sans", sans-serif !important;
  font-weight: 400 !important;
  display: block !important;
}
/* ======================================================
   TRADUCCIÓN META PRODUCTO (SKU Y CATEGORÍA)
   ====================================================== */
/* 1. Ocultar el texto original (SKU: y Category:) */
.product_meta > span.sku_wrapper, .product_meta > span.posted_in {
  font-size: 0 !important;
}
/* 2. Reemplazar "SKU:" por "Referencia:" (o lo que quieras) */
.product_meta > span.sku_wrapper::before {
  content: "Referencia: ";
  /* CAMBIA ESTO si prefieres poner "SKU:" */
  font-size: 14px !important;
  /* Tamaño del texto */
  font-family: "DM Sans", sans-serif !important;
  color: #000000 !important;
  margin-right: 5px;
  /* Espacio antes del código */
}
/* 3. Reemplazar "Category:" por "Categoría:" */
.product_meta > span.posted_in::before {
  content: "Categoría: ";
  font-size: 14px !important;
  font-family: "DM Sans", sans-serif !important;
  color: #000000 !important;
  margin-right: 5px;
}
/* 4. "Revivir" los elementos internos (el código N/A y el enlace 'Cinturones') */
.product_meta > span.sku_wrapper span.sku, .product_meta > span.posted_in a {
  font-size: 14px !important;
  /* Debe ser igual al tamaño de arriba */
  font-family: "DM Sans", sans-serif !important;
  /* color: #000000 !important;  <-- Descomenta si quieres forzar color negro en el enlace */
  display: inline-block !important;
}
/* 1. Ocultar el texto original "Showing all X results" */
p.woocommerce-result-count {
  font-size: 0 !important;
  /* Hace invisible el texto original */
  color: transparent !important;
  line-height: 0 !important;
}
/* 2. Mostrar el nuevo texto en Español (GENÉRICO) */
p.woocommerce-result-count::before {
  content: "Mostrando los productos";
  /* Puedes poner: "Resultados de búsqueda" o similar */
  /* Recuperar el estilo visible */
  font-size: 16px !important;
  /* Tamaño de letra */
  line-height: 1.5 !important;
  color: #000000 !important;
  /* Color negro */
  font-family: "DM Sans", sans-serif !important;
  /* Tu fuente */
  font-weight: 400 !important;
  display: block !important;
}
/* 1. Ocultar el texto "Sale!" en inglés */
span.onsale {
  font-size: 0 !important;
  padding: 0 !important;
  /* Reseteamos padding para recalcularlo abajo */
}
/* 2. Insertar el texto "¡Oferta!" en español */
span.onsale::before {
  content: "¡Oferta!";
  font-size: 14px !important;
  /* Tamaño del texto visible */
  font-family: "DM Sans", sans-serif !important;
  font-weight: 400 !important;
  /* Ajustes para que el círculo/cuadrado se vea bien */
  display: block !important;
  padding: 10px !important;
  /* Da espacio alrededor del texto */
  line-height: 1 !important;
}
/* 1. Ocultar el texto original en inglés */
p.stock.in-stock {
  font-size: 0 !important;
  /* Hace el texto original invisible */
  color: transparent !important;
}
/* 2. Insertar el nuevo texto en español */
p.stock.in-stock::after {
  content: "Hay existencias (se puede reservar)";
  /* Tu nuevo texto */
  font-size: 15px !important;
  /* Tamaño de letra visible (ajústalo si quieres) */
  color: #666666 !important;
  /* Color del texto (gris oscuro o negro #000) */
  display: block;
  /* Asegura que ocupe su propio espacio */
  visibility: visible;
  /* Asegura que sea visible aunque el padre sea font-size: 0 */
}
