body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fefefe;
  color: #222;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centra todo horizontalmente */
  min-height: 100vh;
  background: url('img/fondo-mascotas.png') no-repeat center center fixed;
  background-size: cover;
  background-attachment: fixed;
  background-color: #fefefe; /* color de respaldo */
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5); /* capa negra semiopaca */
  z-index: -1;
}


.menu {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white;
  background: linear-gradient(to right, #ffffff, #fff4eb);
  box-shadow: 0 4px 10px rgba(255, 107, 0, 0.2); /* sombra con color naranja tenue */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 30px;
  z-index: 1000;
  gap: 60px;
  font-family: 'Poppins', sans-serif;
}


.menu .logo {
  font-weight: 700;
  font-size: 20px;
  white-space: nowrap;
  height: 100px; /* 💡 asegura espacio vertical para el logo */
  display: flex;
  align-items: center;
}

.menu .nav {
  display: flex;
  gap: 25px;
}

.menu .nav a {
  color: #FF6B00;                /* Color naranja */
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  background-color: transparent; /* Fondo transparente */
}

.menu .nav a:hover {
  background-color: #FF6B00;     /* Fondo naranja al pasar cursor */
  color: white;                  /* Texto blanco al pasar cursor */
}

main {
  padding: 120px 30px 30px;
  max-width: 1200px;
  margin: auto;
}

.titulo {
  font-size: 2em;
  color: white !important;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  text-align: center;
  margin-bottom: 40px;
}

.productos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px; /* Antes era 10px. Ahora hay mucho más espacio entre productos */
  padding: 30px;
  max-width: 1200px;
  margin: 20px auto;
}


.producto {
  width: 240px;
  background-color: white;
  border: 2px solid #FF6B00;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 12px;
  box-sizing: border-box;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  will-change: transform, box-shadow;
}



.producto:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 28px rgba(255, 107, 0, 0.35);
}

.producto:hover button {
  transform: translateY(-2px);
  transition: transform 0.3s ease;
}


.producto img {
  border-radius: 10px;
  max-height: 140px;
  object-fit: contain;
  width: 100%;
}


.producto h2 {
  font-size: 1.1em;
  font-weight: bold;
  color: #FF6B00;
  line-height: 1.2em;
  max-height: 2.4em; /* dos líneas */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  margin: 6px 0;
}



.producto p {
  color: #e65100;
  font-weight: bold;
  font-size: 1em;
  margin: 4px 0 8px;
}


.producto button {
  background-color: #FF6B00;
  color: white;
  border: none;
  padding: 8px 12px;          /* botones más pequeños */
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  margin: 4px 0;
  font-size: 0.9em;           /* texto más pequeño */
  width: 100%;
  transition: background-color 0.3s ease;
}

.producto button:hover {
  background-color: #e65c00;
}

.producto button[style*="background-color:#007bff;"] {
  background-color: #FF6B00 !important;
}

.producto button[style*="background-color:#007bff;"]:hover {
  background-color: #e65c00 !important;
}


/* Ajuste para que la imagen tenga margen y se vea bien */
.producto img {
  border-radius: 10px;
  max-height: 180px;
  object-fit: contain;
  margin-bottom: 10px;
}

.resumen {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fff8f0;
  border-radius: 12px;
  text-align: center; /* 💡 centramos el contenido */
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center; /* 💡 centrado horizontal de hijos */
  gap: 20px;
}


.resumen h2 {
  font-size: 1.4rem;
  color: #FF6B00;
  margin-bottom: 10px;
}

.resumen button {
  background-color: #FF6B00;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}

.resumen button:hover {
  background-color: #e65c00;
}

.login-container {
  max-width: 400px;
  margin: 150px auto 50px;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.formulario {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center; /* centra los elementos dentro */
  gap: 15px;
}

.formulario label {
  align-self: flex-start;
  font-weight: 600;
  color: white !important;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.formulario input[type="text"],
.formulario input[type="email"] {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1em;
}


.formulario input {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1em;
}

.formulario button {
  padding: 10px 20px;
  font-size: 1em;
  border: none;
  border-radius: 8px;
  background-color: #FF6B00;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: auto; /* importante: no ocupará todo el ancho */
  min-width: 160px; /* o el valor que prefieras */
}

.formulario button:hover {
  background-color: #e65c00;
}

.checkout-container {
  max-width: 800px;
  margin: 150px auto 50px;
  padding: 20px;
}

.checkout-container .formulario {
  margin: 40px auto;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center; /* 👈 centra horizontalmente los campos */
  gap: 20px;
}


.formulario input,
.formulario select {
  width: 100%;
  max-width: 400px; /* 👈 límite para evitar que se estiren demasiado */
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1em;
}

.formulario button {
  width: auto; /* 👈 ya no ocupa todo */
  padding: 12px 20px;
  background-color: #FF6B00;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
}


.formulario button:hover {
  background-color: #e55d00;
}

.buscador {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 30px auto 50px;
  padding: 12px;
  font-size: 1em;
  border: 2px solid #FF6B00;
  border-radius: 8px;
}
.detalle-producto {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 120px;
  padding: 30px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.detalle-imagen img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.detalle-info {
  flex: 1;
  min-width: 280px;
}

.detalle-info h1 {
  font-size: 2em;
  color: #FF6B00;
}

.detalle-info .precio {
  font-size: 1.5em;
  margin: 10px 0;
  color: #333;
}

.detalle-info .descripcion {
  margin-bottom: 30px;
}

.detalle-info button {
  display: block;
  margin: 10px 0;
  padding: 12px 20px;
  font-size: 1em;
  border: none;
  background-color: #FF6B00;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.detalle-info button:hover {
  background-color: #e65c00;
}

.carrito-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.carrito-grid .producto {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.carrito-grid .producto img {
  width: 140px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

.columna-izquierda {
  flex-shrink: 0;
}

.columna-izquierda img {
  width: 120px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.columna-derecha {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.columna-derecha h2 {
  font-size: 1.1rem;
  color: #FF6B00;
  margin: 0;
}

.columna-derecha p {
  margin: 0;
  color: #333;
}

.columna-derecha label {
  font-weight: 600;
  color: #555;
}

.columna-derecha input[type="number"] {
  width: 60px;
  padding: 6px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-left: 8px;
}

.columna-derecha button {
  align-self: flex-start;
  background-color: #FF6B00;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.columna-derecha button:hover {
  background-color: #e65c00;
}

.columna-derecha .subtotal {
  align-self: flex-end;
  font-weight: bold;
  font-size: 1.1em;
}



.carrito-grid .producto h2 {
  font-size: 1.2em;
  margin: 0 0 6px 0;
  color: #FF6B00;
}

.carrito-grid .producto p {
  margin: 4px 0;
  color: #333;
}

.carrito-grid .producto label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #555;
  margin: 4px 0;
}

.carrito-grid .producto input[type="number"] {
  width: 60px;
  padding: 6px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.carrito-grid .producto button {
  margin-left: auto;
  background-color: #FF6B00;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.carrito-grid .producto button:hover {
  background-color: #e65c00;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  max-width: 400px;
  padding: 10px;
  margin: 8px 0 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

label {
  display: block;
  font-weight: 600;
  color: #444;
}

textarea {
  width: 100%;
  max-width: 400px;
  padding: 10px;
  height: 100px;
  margin: 10px 0 20px;
  border-radius: 6px;
  border: 1px solid #ccc;
  resize: vertical;
}

main, .main-container, .checkout-container, .login-container {
  width: 100%;
  max-width: 1200px; /* ancho máximo para buen diseño */
  padding: 120px 20px 40px; /* dejar espacio para el menú fijo */
  box-sizing: border-box;
  margin: 0 auto; /* centrar horizontalmente */
}

.producto .imagen-container {
  width: 100%;
  height: 140px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}



.producto .imagen-container img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}



/* Solo para PC: zoom suave al pasar el mouse */
@media (hover: hover) and (pointer: fine) {
  .producto .imagen-container:hover img {
    transform: scale(1.1);
  }
}

.producto .columna-izquierda img {
  width: 120px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

.producto .columna-izquierda {
  flex-shrink: 0;
}

.producto .columna-derecha {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.producto .columna-derecha h2 {
  font-size: 1.1rem;
  color: #FF6B00;
  margin: 0;
  word-wrap: break-word;
}

.producto .columna-derecha p {
  margin: 0;
  font-size: 0.95rem;
  color: #333;
}

.producto .columna-derecha label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
}

.producto .columna-derecha input[type="number"] {
  width: 60px;
  padding: 4px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.producto .columna-derecha .subtotal {
  align-self: flex-end;
  font-weight: bold;
  font-size: 1rem;
}

.producto .columna-derecha button {
  align-self: flex-start;
  background-color: #FF6B00;
  color: white;
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.producto .columna-derecha button:hover {
  background-color: #e65c00;
}

.contenedor-buscador {
  width: 100%;
  display: flex;
  justify-content: center;
}

.campo {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Centrado y limpieza visual del formulario de checkout */
.formulario-checkout {
  margin: 40px auto;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Inputs más limpios y centrados */
.formulario-checkout input,
.formulario-checkout select,
.formulario-checkout textarea {
  width: 100%;
  max-width: 400px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1em;
}

/* Botón de enviar más chico */
.formulario-checkout button {
  width: auto;
  padding: 12px 24px;
  background-color: #FF6B00;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.formulario-checkout button:hover {
  background-color: #e55d00;
}

.logo img {
  height: 90px;           /* Más alto */
  max-height: 100px;      /* Límite en pantallas grandes */
  object-fit: contain;
  vertical-align: middle;
}

@media (max-width: 600px) {
  .logo img {
    height: 60px;         /* Para que no se vea gigante en celular */
  }
}

.item-historial {
  background-color: #fff;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.carrito-link {
  position: relative;
}

.carrito-badge {
  display: none; /* Oculto por defecto */
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: #FF6B00;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 7px;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(0,0,0,0.2);
  z-index: 10;
}

.mensaje-vacio {
  color: white;
}

.producto .acciones {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.boton-registro {
  text-align: center;
  padding: 10px;
  font-size: 16px;
  background-color: #f90;
  color: white;
  text-decoration: none;
  display: block;
  max-width: 300px;
  margin: 10px auto;
  border-radius: 5px;
}

/* Estilos generales del header */
.menu {
  background-color: #fff;
  padding: 10px 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: relative;
  z-index: 10;
}

/* Navegación horizontal en escritorio */
.nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: #333;
  margin: 10px;
  font-weight: bold;
}

/* Badge del carrito */
.carrito-link {
  position: relative;
}

.carrito-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: red;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 12px;
}

/* Botón hamburguesa (oculto en desktop) */
.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Responsive para pantallas chicas */
@media screen and (max-width: 768px) {
  .nav {
    flex-direction: column;
    overflow: hidden;
    max-height: 0;
    background-color: #fff;
    transition: max-height 0.4s ease;
  }

  .nav.show {
    max-height: 500px; /* suficientemente grande para mostrar todos los links */
  }


  .menu-toggle {
    display: block;
    position: absolute;
    top: 15px;
    right: 20px;
  }
}

#email:disabled {
  color: white;
  background-color: transparent; /* opcional, para que el fondo no sea gris */
  border: 1px solid white; /* si querés el borde blanco también */
}

@media (max-width: 768px) {
  .carrito-grid .producto {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .carrito-grid .producto img {
    width: 100%;
    height: auto;
    max-width: 300px;
  }

  .columna-izquierda,
  .columna-derecha {
    width: 100%;
  }

  .columna-derecha {
    align-items: center;
  }

  .columna-derecha label,
  .columna-derecha p,
  .columna-derecha button,
  .columna-derecha h2 {
    width: 100%;
    text-align: center;
  }

  .columna-derecha input[type="number"] {
    margin: 10px 0;
    width: 60px;
  }
}

.subtitulo-buscador {
  max-width: 650px;
  margin: 15px auto 30px;
  padding: 15px 20px;
  background: rgba(255, 165, 0, 0.3); /* fondo naranja translúcido un poco más fuerte */
  border: 2px solid orange;
  border-radius: 12px;
  color: white; /* texto blanco */
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  box-shadow: 0 4px 8px rgba(255, 140, 0, 0.5);
  font-family: 'Poppins', sans-serif;
  line-height: 1.4;
  user-select: none;
  transition: background-color 0.3s ease;
}

.subtitulo-buscador:hover {
  background: rgba(255, 165, 0, 0.5);
  box-shadow: 0 6px 12px rgba(255, 140, 0, 0.7);
  cursor: default;
}

.banner-demo {
  background-color: #ffcc80;
  color: #333;
  text-align: center;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 2px solid #ff9800;
  z-index: 10000;
  position: sticky;
  top: 0;
}

.banner-demo a {
  color: #d84315;
  text-decoration: underline;
}

.main-container h1 {
  color: #ff6b00; /* Naranja fuerte, o podés usar #ffffff para blanco */
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.main-container p {
  color: #444; /* Gris oscuro o reemplazalo por blanco: #ffffff */
  font-size: 1rem;
  text-align: center;
  margin-top: 20px;
}

.main-container a {
  color: #ff6b00; /* Hace juego con el título */
  font-weight: bold;
  transition: color 0.3s;
}

.main-container a:hover {
  color: #ff944d; /* Un naranja más claro al pasar el mouse */
}

.banner-demo {
  background: linear-gradient(135deg, #ff914d, #ffcd74);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  margin: 1rem auto;
  max-width: 800px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.banner-demo a {
  color: #fff;
  font-weight: bold;
  text-decoration: underline dotted;
}

.subtitulo-buscador {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.6;
  padding: 1.2rem 1.5rem;
  border-left: 5px solid #ff914d;
  border-radius: 0.8rem;
  max-width: 800px;
  margin: 1rem auto;
  backdrop-filter: blur(4px);
  font-family: 'Poppins', sans-serif;
}

.promo-banner {
  background: url('https://cdn.pixabay.com/photo/2017/02/20/18/03/dog-2080995_1280.jpg') no-repeat center center/cover;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  border-radius: 20px;
  margin: 30px auto;
  max-width: 100%;
  box-shadow: 0 0 20px #ff6f61;
}

.promo-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 0;
  border-radius: 20px;
}

.promo-content {
  position: relative;
  z-index: 1;
}

.promo-banner h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffcc00;
  text-shadow: 2px 2px 10px #000;
}

.promo-banner p {
  font-size: 1.1rem;
  margin: 20px 0;
  line-height: 1.6;
}

.promo-btn {
  display: inline-block;
  background-color: #ff6f61;
  color: #fff;
  padding: 12px 25px;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 15px #ff6f61;
  transition: 0.3s ease;
}

.promo-btn:hover {
  background-color: #ff3b2f;
  box-shadow: 0 0 25px #ff3b2f;
}

@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
    text-shadow: 
      0 0 5px #fff,
      0 0 10px #ffcc00,
      0 0 20px #ffcc00,
      0 0 40px #ffcc00,
      0 0 60px #ffcc00;
  }
  20%, 24%, 55% {
    opacity: 0.4;
    text-shadow: none;
  }
}

.neon-title {
  font-size: 2.5rem;
  color: white;
  text-align: center;
  text-shadow:
    0 0 5px #fff,
    0 0 10px #ffcc00,
    0 0 20px #ffcc00,
    0 0 40px #ff9900,
    0 0 60px #ff9900;
  animation: flicker 3s infinite;
  font-weight: 700;
  margin-bottom: 20px;
}

@media (max-width: 480px) {
  .language-switcher {
    top: 5px;
    right: 5px;
    padding: 8px;
  }
}

/* Estilo del ícono de hamburguesa */

/* Mostrar solo en pantallas chicas (celulares) */
.menu-toggle {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  width: 45px;
  height: 45px;
  background-color: rgb(255, 187, 0);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 0 10px rgb(255, 255, 255);
}

/* Las líneas del menú */
.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 4px 0;
  transition: all 0.3s ease;
}

/* Ocultar el menú hamburguesa en pantallas grandes (computadoras) */
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}
.titulo-producto {
  display: block;          /* Asegura que sea un bloque */
  width: 100%;             /* Ocupa todo el ancho del contenedor */
  white-space: normal;     /* Permite que el texto se divida en varias líneas */
  word-wrap: break-word;   /* Rompe palabras largas si es necesario */
  overflow-wrap: break-word;
  text-align: center;      /* Centra el texto */
  font-size: 18px;         /* Ajustá el tamaño según lo necesites */
  line-height: 1.3;        /* Mejora la legibilidad */
}
.contenedor-producto {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.contenedor-producto img {
  width: 100%;
  transition: transform 0.3s ease;
}

.titulo-producto {
  font-size: 16px;
  font-weight: bold;
  margin: 10px 0;
  white-space: nowrap;        /* una sola línea */
  overflow: hidden;           /* oculta el exceso */
  text-overflow: ellipsis;    /* agrega ... */
  transition: transform 0.3s ease;
}

/* Al pasar el mouse */
.contenedor-producto:hover img,
.contenedor-producto:hover .titulo-producto {
  transform: scale(1.1); /* zoom */
  white-space: normal;   /* permite varias líneas */
  overflow: visible;     /* deja ver todo */
  text-overflow: unset;  /* quita los puntos suspensivos */
}
