/* ----------------------------------------
   Estilos generales del sitio
----------------------------------------- */
body {
  font-family: 'Inter', sans-serif; /* Aplicamos la fuente Inter a todo el body */
  font-weight: 200;
  margin: 0;
  padding: 0;
  background: #f8f8f8;
  color: #333;
}
.imagen-principal-producto,
.video-producto {
  width: 100%;
  max-width: 500px;
  height: 500px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
}

.miniaturas-producto img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.imagen-principal-producto,
.video-producto {
  height: 500px !important;
  object-fit: contain !important;
}
/* ----------------------------------------
   Header y Footer generales (si estuvieran en el index)
----------------------------------------- */
header, footer {
  background: #222;
  color: #fff;
  padding: 1rem;
  text-align: center;
  font-family: 'Inter', sans-serif; /* Aseguramos que la fuente también se aplique al header */
}
.descripcion {
  white-space: pre-line;   /* respeta los saltos de línea del JSON */
  line-height: 1.6;        /* aire entre líneas */
}

nav a {
  margin: 0 10px;
  color: #fff;
  text-decoration: none;
  font-family: 'Inter', sans-serif; /* Aseguramos que el texto del menú use la fuente Inter */
}

/* ----------------------------------------
   Contenido principal
----------------------------------------- */
main {
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 4rem;
  font-family: 'Inter', sans-serif; /* Aplicamos la fuente a todo el contenido principal */
}

/* ----------------------------------------
   Grilla de productos
----------------------------------------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

/* ----------------------------------------
   Tarjeta individual de producto
----------------------------------------- */
.producto {
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px #00000022;
  text-align: center;
  transition: transform 0.2s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  font-family: 'Inter', sans-serif; /* Aplicamos la fuente a los productos */
}

.producto:hover {
  transform: scale(1.02);
}

.producto img {
  max-width: 100%;
  max-height: 220px;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  transition: opacity 0.3s ease-in-out;
  display: block;
  margin: 0 auto;
}

.producto img.secundaria {
  position: absolute;
  top: 1rem;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0;
  z-index: 2;
}

.producto:hover img.secundaria {
  opacity: 1;
}

.precio {
  font-weight: 700;
  color: #222;
  margin-top: 0.5rem;
}

.etiqueta {
  display: inline-block;
  margin-top: 0.5rem;
  margin-right: 0.3rem;
  padding: 0.2rem 0.5rem;
  border-radius: 5px;
  font-size: 0.75rem;
  color: #fff;
}

.etiqueta.nuevo  { background: #28a745; }
.etiqueta.oferta { background: #dc3545; }
.etiqueta.vendido { background: #007bff; }
.etiqueta.video  { background: #e0e0e0; color: #000; }

.buscador, .ordenamiento {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem;
  margin: 1rem auto;
  max-width: 1200px;
  background: #fff;
  box-shadow: 0 2px 5px #ccc;
}

.buscador input {
  padding: 0.5rem;
  width: 200px;
}

.carrito-flotante {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #000;
  color: #fff;
  font-size: 24px;
  padding: 10px 14px;
  border-radius: 50%;
  display: none;
  text-decoration: none;
  z-index: 999;
}

@media (max-width: 768px) {
  .carrito-flotante {
    display: block;
  }
}

.imagen-producto {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.img-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  width: 100%;
  height: auto;
}

.imagen-producto:hover .img-hover {
  opacity: 1;
}

.img-principal {
  display: block;
  width: 100%;
  height: auto;
}
/* Estilo para los productos */
.producto, .producto button, .producto .precio, .producto .etiqueta {
  font-family: 'Inter', sans-serif;   /* Asegurándonos de que la fuente Inter esté aplicada */
  font-weight: 200;                   /* Hacemos que sea ligera con el peso 200 */
}

/* Asegurando que el título del producto use la fuente correcta */
.producto h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
}

/* También aseguramos que el texto en los botones tenga la fuente correcta */
.producto button {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
}
.seo-heading {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.producto button {
  margin-top: auto;
  padding: 0.5rem 1rem;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  cursor: pointer;
  transition: background 0.3s ease;
}

.producto button:hover {
  background: #555;
}

footer.footer {
  background-color: #3fd2e0;
  padding: 0.8rem 0;
  color: white;
  text-align: center;
}

.footer-contenido {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-contacto {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.footer-contacto .red svg {
  vertical-align: middle;
  transition: transform 0.3s;
  fill: #333; /* gris oscuro por defecto */
}

.footer-contacto .red:hover svg {
  transform: scale(1.1);
  fill: white;
}

.contacto-info {
  display: inline-block;
  margin: 0 0.6rem;
  color: #000;
  font-size: 0.9rem;
  font-weight: 300;
}

.footer-inferior {
  background-color: #111;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  color: #eee;
  text-align: center;
  margin-top: 0.5rem;
}

.footer-inferior p {
  margin: 0;
}
.producto h3,
.producto p,
.producto .etiquetas {
  font-weight: 200;
  font-family: 'Inter', sans-serif;
}
.texto-footer {
  color: #000;
  font-weight: 300;
  font-family: 'Inter', sans-serif;
}
.link-producto {
  text-decoration: none;
  color: inherit;
}

.link-producto:hover {
  text-decoration: none;
  color: inherit;
}
.boton-secundario {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s ease-in-out;
}

.boton-secundario:hover {
  background-color: #f0f0f0;
  text-decoration: none;
  color: #000;
}

body {
  overflow-x: hidden;
}
.btn-agregar {
  font-size: 14px;
  padding: 8px 12px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  max-width: 180px; /* evita que se haga demasiado ancho en PC */
  margin: 10px auto 0;
  display: block;
}


@media (max-width: 768px) {
  main {
    padding: 1.2rem !important;
    margin: 0 auto !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .tabla-carrito {
    overflow-x: auto;
    display: block;
  }

  .tabla-carrito table {
    min-width: 600px; /* Podés ajustar este número según lo que necesite tu tabla */
  }
}
.footer-inferior {
  background-color: #111;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  color: #eee;
  text-align: center;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-inferior .texto-footer {
  margin-bottom: 0.5rem;
  text-align: center;
  max-width: 90%;
}

.footer-inferior .logo-afip {
  max-width: 90px;
  height: auto;
}

.menu-categorias {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem;
}

.menu-categorias a {
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  border-radius: 6px;
  border: 1px solid #eee;
  background-color: #f5f5f5;
  color: #333;
  text-decoration: none;
  flex: none;
  width: auto;
  min-width: unset;
  max-width: 100%;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .producto img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .producto {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  header {
    padding: 0.5rem 1rem;
  }

  .header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .logo-container {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
  }

  .logo-container img {
    max-width: 140px;
    height: auto;
  }

  nav.menu {
    flex: 1 1 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  nav.menu a {
    font-size: 0.9rem;
    padding: 0.3rem 0.6rem;
    white-space: nowrap;
  }

  #iconoCarrito {
    margin-left: auto;
  }
}


  .miniaturas-producto {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .miniaturas-producto img {
    width: 60px;
    height: auto;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 6px;
  }

  .imagen-principal-producto {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }
}


@media (max-width: 768px) {
  .galeria-detalle {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .area-imagen {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .miniaturas {
    order: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex: 1 1 auto;
  }

  .miniaturas img {
    width: 70px;
    height: auto;
  }

  .area-info {
    order: 3;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .galeria-detalle {
    flex-direction: column !important;
    align-items: center;
  }

  .galeria-detalle .columna.miniaturas {
    order: 2;
    display: flex !important;
    flex-direction: row !important;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1rem;
  }

  .galeria-detalle .columna.miniaturas img {
    width: 70px;
    height: auto;
  }

  .galeria-detalle .columna.area-imagen {
    order: 1;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .galeria-detalle .columna.area-info {
    order: 3;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .galeria-detalle {
    flex-direction: column !important;
    align-items: center;
  }

  .galeria-detalle .columna.miniaturas {
    order: 2;
    display: flex !important;
    flex-direction: row !important;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1rem;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .galeria-detalle .columna.miniaturas img {
    width: 70px;
    height: auto;
    flex: none;
  }

  .galeria-detalle .columna.area-imagen {
    order: 1;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .galeria-detalle .columna.area-info {
    order: 3;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .galeria-detalle {
    flex-direction: column !important;
    align-items: center;
  }

  .galeria-detalle .columna.miniaturas {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center;
    gap: 0.5rem;
    order: 2;
    width: 100% !important;
    margin: 0 auto 1rem auto !important;
    overflow-x: auto;
  }

  .galeria-detalle .columna.miniaturas img {
    width: 60px !important;
    height: auto !important;
    flex: 0 0 auto !important;
  }

  .galeria-detalle .columna.area-imagen {
    order: 1;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .galeria-detalle .columna.area-info {
    order: 3;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .galeria-detalle {
    flex-direction: column !important;
    align-items: center;
  }

  .galeria-detalle .columna.miniaturas {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center;
    gap: 0.5rem;
    order: 2;
    width: 100% !important;
    margin: 1rem 0 !important;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .galeria-detalle .columna.miniaturas img {
    width: 70px !important;
    height: auto !important;
    flex: none !important;
  }

  .galeria-detalle .columna.area-imagen {
    order: 1;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .galeria-detalle .columna.area-info {
    order: 3;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .galeria-detalle {
    flex-direction: column !important;
    align-items: center;
  }

  .galeria-detalle .columna.miniaturas {
    order: 2;
    display: flex !important;
    flex-direction: row !important;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1rem;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .galeria-detalle .columna.miniaturas img {
    width: 70px;
    height: auto;
    flex: none;
  }

  .galeria-detalle .columna.area-imagen {
    order: 1;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .galeria-detalle .columna.area-info {
    order: 3;
    width: 100%;
  }
}
@media (min-width: 769px) {
  .imagen-principal-producto {
    max-width: 600px;
  }
}
/* Arreglo del footer con línea negra innecesaria */
footer {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}

footer .footer-inferior {
  margin-top: 0;
  padding-top: 0;
  border: none;
  background: #000; /* Esto se mantiene para el fondo negro correcto */
}

/* Eliminar cualquier margen o padding adicional que agregue espacio */
footer hr, footer br {
  display: none;
  height: 0;
  margin: 0;
  padding: 0;
}
.footer-inferior {
  padding: 0.3rem 1rem; /* antes era 0.6rem */
  font-size: 0.75rem;    /* levemente más chico si querés */
  line-height: 1.2;
}

/* ----------------------------------------
   Estilos generales del sitio
----------------------------------------- */
body {
  font-family: 'Inter', sans-serif; /* Aplicamos la fuente Inter a todo el body */
  font-weight: 200;
  margin: 0;
  padding: 0;
  background: #f8f8f8;
  color: #333;
}

/* ... todo el contenido anterior del style.css ... */

.footer-inferior {
  background-color: #111;
  padding: 0.3rem 1rem;
  font-size: 0.75rem;
  line-height: 1.2;
  color: #eee;
  text-align: center;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-inferior .texto-footer {
  margin-bottom: 0.3rem;
  text-align: center;
  max-width: 90%;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-inferior .logo-afip {
  max-width: 90px;
  height: auto;
}

@media (max-width: 768px) {
  .footer-inferior .texto-footer br {
    display: initial;
  }
}
@media (max-width: 768px) {
  .footer-inferior {
    padding-top: 0.2rem !important;
    padding-bottom: 0.2rem !important;
    font-size: 0.7rem !important;
    line-height: 1.1 !important;
  }

  .footer-inferior .texto-footer {
    margin-bottom: 0.2rem !important;
  }
}
@media (max-width: 480px) {
  .footer .footer-contenido p {
    font-size: 0.85rem !important;
    white-space: nowrap !important;
  }
}
@media (max-width: 768px) {
  .menu-categorias a {
    padding: 0.3rem 0.8rem !important; /* Menos alto */
    font-size: 0.85rem !important;     /* Opcional, más compacto */
    margin-bottom: 0.3rem !important;  /* Menos espacio entre botones */
  }
}
@media (max-width: 768px) {
  .menu-categorias {
    margin-bottom: 0.5rem !important;
    row-gap: 0.3rem !important;
  }

  .menu-categorias a {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
    font-size: 0.82rem !important;
    margin-bottom: 0.2rem !important;
    line-height: 1 !important;
  }
}
@media (max-width: 768px) {
  .menu-categorias a,
  .menu-categorias button {
    padding-top: 0.2rem !important;
    padding-bottom: 0.2rem !important;
    font-size: 0.82rem !important;
    margin-bottom: 0.2rem !important;
    line-height: 1.1 !important;
  }

  .menu-categorias {
    margin-bottom: 0.5rem !important;
    row-gap: 0.3rem !important;
    gap: 0.3rem !important;
  }
}
@media (max-width: 768px) {
  .menu-categorias {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 0.2rem !important;
    padding: 0.3rem 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .menu-categorias a {
    padding: 0.25rem 0.5rem !important;
    font-size: 0.8rem !important;
    margin: 0 !important;
    line-height: 1 !important;
    width: auto !important;
  }
}
@media (max-width: 768px) {
  body .menu-categorias a {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
    font-size: 0.8rem !important;
    margin: 0 !important;
    line-height: 1 !important;
    width: auto !important;
    max-width: unset !important;
    min-width: unset !important;
  }

  body .menu-categorias {
    gap: 0.3rem !important;
    row-gap: 0.3rem !important;
    column-gap: 0.3rem !important;
    margin-bottom: 0.5rem !important;
    padding: 0.5rem !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }
}
@media (max-width: 768px) {
  .menu-categorias {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 0.2rem !important;
    padding: 0.5rem 1rem !important;
  }

  .menu-categorias a,
  .menu-categorias button {
    all: unset !important;
    display: inline-block !important;
    font-family: 'Inter', sans-serif !important;
    background-color: #f5f5f5 !important;
    color: #333 !important;
    padding: 0.25rem 0.6rem !important;
    font-size: 0.8rem !important;
    border-radius: 6px !important;
    border: 1px solid #eee !important;
    margin: 0.2rem !important;
    text-align: center !important;
    cursor: pointer;
    line-height: 1.1 !important;
    box-sizing: border-box;
  }
}
.categorias {
  background: #fff;
  padding: 0.5rem;
  box-shadow: 0 2px 5px #ccc;
  margin: 0 auto;
  max-width: 1200px;
  text-align: center;
}

.categorias ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem;
}

.categorias a {
  text-decoration: none;
  padding: 0.2rem 0.5rem;
  background: #f5f5f5;
  border: 1px solid #eeeeee;
  color: #000;
  border-radius: 5px;
  font-size: 0.8rem;
  transition: background 0.3s, border 0.3s;
  display: inline-block;          /* <-- ESTO es clave */
}

.categorias a:hover {
  background: #e0e0e0;
}
@media (max-width: 768px) {
  header {
    padding-bottom: 0.5rem !important;
  }

  .categorias {
    margin-top: 0 !important;
  }
}
@media (max-width: 768px) {
  header {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .logo-container {
    margin-bottom: 0 !important;
  }

  .logo-container img,
  .logo img {
    max-height: 60px !important; /* achicamos el logo un poco si hace falta */
  }

  nav.menu {
    margin-top: 0.3rem !important;
    margin-bottom: 0.3rem !important;
  }
}
@media (max-width: 768px) {
  header {
    padding-top: 0.2rem !important;
    padding-bottom: 0.2rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .logo-container {
    padding: 0 !important;
    margin: 0 !important;
  }

  .logo-container img {
    max-height: 60px !important;
    margin: 0 !important;
  }

  nav.menu {
    margin: 0 !important;
    padding: 0.3rem 0 !important;
    gap: 0.3rem !important;
  }

  #iconoCarrito {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}
/* Ajuste fino de espacios superiores */


nav.menu {
  gap: 0.2rem !important;
  padding: 0.2rem 0 !important;
}
@media (max-width: 768px) {
  .categorias {
    padding-top: 0.3rem !important;
    padding-bottom: 0.3rem !important;
    margin-bottom: 0.3rem !important;
  }

  .categorias ul {
    gap: 0.3rem !important;
  }

  header, .header-main, .logo-container, nav.menu {
    margin: 0 !important;
    padding: 0 !important;
    gap: 0.3rem !important;
  }

  nav.menu a {
    padding: 0.3rem 0.5rem !important;
  }


.icono-carrito {
  color: #000 !important;
  fill: #000 !important;
}
.icono-carrito.activo {
  color: red !important; /* o el color que prefieras */
}
.contenedor-alineado {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

select#ordenarSelect {
  padding: 0.45rem 2.5rem 0.45rem 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  background-color: white;
  color: #333;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20,50 70,100 120,50' fill='none' stroke='%23333' stroke-width='15'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 1rem;
}
.ordenamiento select#ordenarSelect {
  padding: 0.45rem 0.8rem;
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: white;
  color: #333;
  box-shadow: none;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
}

.logo-container img.logo-emv {
  max-height: none !important;
  width: 480px !important;
  height: auto !important;
  display: block !important;
  margin: 0 auto !important;
}
@media (max-width: 768px) {
  .logo-container img.logo-emv {
    width: 260px !important;
  }
}
.logo img.logo-emv,
.logo-container img.logo-emv,
header img.logo-emv {
  width: 500px !important;
  height: auto !important;
  max-height: none !important;
  max-width: none !important;
  display: block !important;
  margin: 0 auto !important;
}
@media (max-width: 768px) {
  .logo img.logo-emv,
  .logo-container img.logo-emv,
  header img.logo-emv {
    width: 280px !important;
  }
}
.etiqueta.vendido {
  /* Estilos similares a .etiqueta.nuevo/.oferta */
  background-color: #007bff; /* color de fondo distintivo */
  color: #fff;
  padding: 0.2em 0.4em;
  border-radius: 4px;
  font-size: 0.85em;
  /* ...otros estilos... */
}
@media screen and (max-width: 600px) {
  .btn-agregar {
    font-size: 13px;
    padding: 6px 10px;
    max-width: 140px;
  }
}
<style>
  .chatbot-float {
    width: 60px !important;
    height: 60px !important;
    background-color: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3) !important;
  }

  .chatbot-float img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    display: block !important;
  }
  
  /* --- Checkout Mejorado --- */
.form-group {
  margin-bottom: 18px;
}
input[type="text"], input[type="email"] {
  padding: 8px 12px;
  font-size: 1.05em;
  border: 1.1px solid #b6b6b6;
  border-radius: 6px;
  width: 100%;
  max-width: 350px;
  margin-bottom: 8px;
}
#resumenCompra {
  background: #f5f5f5;
  padding: 22px 30px;
  border-radius: 10px;
  margin: 20px auto 30px auto;
  box-shadow: 0 2px 9px rgba(80,90,100,0.07);
  max-width: 800px;
}
#resumenCompra table {
  width: 100%;
  margin-bottom: 18px;
}
#resumenCompra th, #resumenCompra td {
  text-align: left;
  padding: 8px 6px;
  border-bottom: 1px solid #ddd;
}
#resumenCompra th {
  background: #eee;
  font-weight: bold;
}
@media (max-width: 600px) {
  #resumenCompra { padding: 10px 3vw; }
  .form-group { margin-bottom: 12px; }
}
.form-checkout {
  max-width: 420px;
  margin: 28px 0 0 0;
  background: #fafbfc;
  border-radius: 10px;
  padding: 26px 24px 18px 24px;
  box-shadow: 0 2px 14px rgba(60,80,120,0.08);
  border: 1px solid #e8e8e8;
}

.form-checkout label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  color: #222;
  letter-spacing: 0.01em;
}

.form-checkout input[type="text"], 
.form-checkout input[type="email"] {
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 16px;
  font-size: 1.08em;
  border: 1.2px solid #bdbdbd;
  border-radius: 6px;
  background: #fff;
  transition: border 0.2s;
}

.form-checkout input[type="text"]:focus, 
.form-checkout input[type="email"]:focus {
  border-color: #20bca4;
  outline: none;
}

.form-checkout button {
  width: 100%;
  margin-top: 10px;
  background: #222;
  color: #fff;
  padding: 10px 0;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.09em;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: background 0.16s;
}

.form-checkout button:hover {
  background: #27ba90;
}
.checkout-form-box {
  max-width: 400px;
  margin: 40px auto 0 auto;
  padding: 24px 28px 28px 28px;
  background: #fafbfc;
  border-radius: 16px;
  box-shadow: 0 2px 12px #0001;
  font-size: 17px;
}
.checkout-form-box label {
  font-weight: 500;
  display: block;
  margin-top: 12px;
  margin-bottom: 2px;
}
.checkout-form-box input[type="text"] {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c2c8cc;
  margin-bottom: 10px;
  font-size: 16px;
  background: #fff;
  transition: border 0.2s;
}
.checkout-form-box input[type="text"]:focus {
  border: 1.5px solid #0096e6;
  outline: none;
  background: #f3fafe;
}
.checkout-form-box button {
  display: block;
  width: 100%;
  margin-top: 14px;
  background: #222;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px 0;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.18s;
  font-weight: 500;
}
.checkout-form-box button:hover {
  background: #26a1e5;
  color: #fff;
}
.form-checkout {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 18px rgba(0,0,0,0.05);
  padding: 36px 28px 28px 28px;
  max-width: 480px;
  margin: 30px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-checkout {
  display: block;
  margin-top: 2rem;
  width: 100%;
  max-width: 600px;
  padding: 0 1rem;
}

.form-checkout label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.form-checkout input[type="text"],
.form-checkout input[type="email"] {
  display: block;
  width: 100%;
  padding: 0.6rem 0.8rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 1.2rem;
  box-sizing: border-box;
}

.form-checkout input[type="text"]:focus,
.form-checkout input[type="email"]:focus {
  border-color: #19c6d8;
  outline: none;
}

.form-checkout button {
  display: block;
  width: 100%;
  padding: 0.8rem 1.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  background: black;
  color: white;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-top: 1rem;
}

.form-checkout button:hover {
  background: #19c6d8;
  color: #222;
}
.boton-secundario {
  display: inline-block;
  padding: 0.8rem 1.2rem;
  font-size: 1rem;
  font-weight: 500;
  border: 2px solid #ccc;
  border-radius: 6px;
  color: black;
  text-decoration: none;
  transition: all 0.2s;
}

.boton-secundario:hover {
  border-color: black;
  background: #f0f0f0;
}
@media (min-width: 768px) {
  .form-checkout {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
  }

  .form-checkout label {
    display: block;
    width: 100%;
    margin-bottom: 0.3rem;
  }

  .form-checkout input[type="text"],
  .form-checkout input[type="email"] {
    display: block;
    width: 100%;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    padding: 0.6rem;
    border: 1px solid #ccc;
    border-radius: 6px;
  }

  .form-checkout button {
    width: 100%;
    margin-top: 1.5rem;
  }
@media (max-width: 768px) {
  h1.seo-heading {
    display: none !important;
  }
  @media (max-width: 768px) {
  body .seo-heading {
    display: none !important;
  }
}


</style>



/* Fin del bloque ajustado del footer */
