* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Eliminar cualquier desbordamiento horizontal inesperado */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: sans-serif;
}

/* Barra amarilla */
.barra-top {
  background-color: #ffd33d;
  color: #002855;
  padding: 6px 15px;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  justify-content: space-between; /* Cambié a 'space-between' para separar el título y los mensajes */
  align-items: center;
  flex-wrap: wrap; /* Para que los elementos se acomoden bien */
}

/* Título dentro de la barra */
.barra-top h1 {
  font-size: 18px;  /* Ajuste el tamaño del texto */
  font-weight: bold;
  color: #000;
  margin: 0; /* Elimina margen para ajustarlo bien en el espacio */
}

/* Mensajes dentro de barra amarilla */
.barra-top .mensaje-rotativo span {
  margin: 0 30px;  /* Aumenté el margen entre las frases */
  font-size: 14px;  /* Asegúrate de que los textos de los mensajes sean de un tamaño adecuado */
}

/* Mensaje rotativo animado en la barra amarilla */
.mensaje-rotativo {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-mensaje 20s linear infinite;
}

.mensaje-rotativo span {
  display: inline-block;
  padding: 0 80px;  /* Aumenté el espacio entre las frases */
}

/* Animación de desplazamiento horizontal */
@keyframes scroll-mensaje {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Barra azul fija */
.navbar {
  background-color: #002855;
  color: white;
  padding: 10px 15px;
  position: sticky;      /* Se fija al hacer scroll */
  top: 0;                /* Se adhiere arriba */
  z-index: 9999;          /* Se muestra por encima del contenido */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Contenido dentro de la navbar */
.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Íconos de redes sociales */
.redes-sociales {
  display: flex;
  flex-direction: row;   /* Asegura que estén en fila */
  gap: 10px;             /* Espaciado entre íconos */
  align-items: center;
}

.icono-red {
  background-color: white;
  color: #002855;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

/* Efecto de zoom y color por red social al pasar el mouse */
.icono-red:hover {
  transform: scale(1.15);
}

/* Facebook */
.icono-red.facebook:hover {
  background-color: #1877f2;
  color: white;
}

/* Instagram */
.icono-red.instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: white;
}

/* TikTok */
.icono-red.tiktok:hover {
  background-color: #000000;
  color: #69C9D0; /* color azul tiktok */
}


/* Buscador */
.search-container {
  flex: 1;
  display: flex;
  justify-content: center;
  margin: 10px 0;
}

.search-box {
  background-color: white;
  border-radius: 30px;
  display: flex;
  align-items: center;
  padding: 8px 15px;
  width: 100%;
  max-width: 600px;
}

.search-box input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 16px;
}

.search-icon {
  margin-right: 10px;
  color: gray;
}

/* Contador de visitas */
.visitas {
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}

.visitas strong {
  background-color: limegreen;
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
}

/* barra 3 */
.barra-categorias {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center; /* Cambiado de space-between a center */
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
  position: relative;
  z-index: 1000;
}

/* Logo más pegado a la izquierda */
.barra-categorias .contenedor-logo {
  position: absolute;
  left: 20px;
}

.contenedor-logo img {
  height: 34px;
}

.menu-categorias {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.menu-categorias li a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  font-size: 15px;
  font-family: 'Segoe UI', sans-serif;
  transition: color 0.2s ease;
}

.menu-categorias li a:hover {
  color: #e60023;
}
html {
  scroll-behavior: smooth;
}

/* Íconos de login y registro a la derecha */
.iconos-usuario {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 15px;
  border-left: 1px solid #ccc;
  padding-left: 15px;
  height: 34px;
}

/* Estilos de los íconos con tooltip */
.icono-tooltip {
  position: relative;
  font-size: 20px;
  color: #000;
  cursor: pointer;
}

.icono-tooltip i {
  font-size: 20px;
}

.icono-tooltip .tooltip-text {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 120%; /* debajo del ícono */
  right: 0; /* ⬅️ ALINEADO HACIA LA IZQUIERDA si está pegado al borde derecho */
  transform: translateX(0); /* elimina el centrado anterior */
  background-color: #333;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 999;
  transition: opacity 0.2s ease;
}


.icono-tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;

}
.usuario-logueado {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 15px;
  border-left: 1px solid #ccc;
  padding-left: 15px;
  height: 34px;
}

.contenedor-usuario {
  position: relative;
  cursor: pointer;
}

.cerrar-sesion {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #333;
  padding: 8px;
  border-radius: 4px;
  z-index: 1000;
}

.contenedor-usuario:hover .cerrar-sesion {
  display: block;
}

.cerrar-sesion form {
  margin: 0;
}

.cerrar-sesion button {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-weight: bold;
}

/* formularios */
.oculto {
  display: none;
}
/* Estilo general de los formularios */
.formulario-usuario {
  max-width: 400px;
  margin: 50px auto;
  padding: 30px;
  background-color: #f7f7f7;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  font-family: sans-serif;
}

/* Título */
.formulario-usuario h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
  text-align: center;
}

/* Inputs */
.formulario-usuario input,
.formulario-usuario select {
  width: 100%;
  padding: 10px 15px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

/* Botón */
.formulario-usuario button {
  width: 100%;
  padding: 12px;
  background-color: #007BFF;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 15px;
  transition: background-color 0.3s;
}

.formulario-usuario button:hover {
  background-color: #0056b3;
}
 
.contenedor-productos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* <-- centrado */
  gap: 20px; /* espacio entre tarjetas */
  padding: 20px;
  background-color: #f2f2f2;
}

/* Tarjeta individual */
.producto-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  overflow: hidden;
  max-width: 300px; /* ya no es width fijo */
  flex: 1 1 300px; /* tamaño base en escritorio */
  transition: transform 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;  
}

.producto-card:hover {
  transform: translateY(-5px);
}

/* Enlace general */
.producto-enlace {
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Imagen */
.producto-imagen img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.producto-imagen {
  position: relative;
}
.sello-vendido {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #d62828;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  z-index: 2;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}
.sello-stock {
  display: block;              /* aparece debajo de la imagen */
  background-color: #28a745;   /* verde */
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  margin-top: 5px;             /* separación de la imagen o del sello vendido */
  text-align: center;
}

/* Detalles del producto */
.producto-detalles {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;   
}

/* Título */
.producto-titulo {
  font-size: 18px;
  font-weight: 600;
  color: #002855;
  margin: 0;
}

/* Referencia */
.producto-referencia {
  font-size: 13px;
  color: #666;
  margin: 0;
}

/* Lista de especificaciones */
.producto-especificaciones {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: #444;
}

/* Precio */
.producto-precio {
  font-size: 15px;
  font-weight: bold;
  color: #002855;
  margin-top: 5px;
}

/* Condición */
.producto-condicion {
  font-size: 13px;
  color: #777;
}

/* Botón de detalles */
.ver-detalles {
  margin-top: auto;
  background-color: #002855;
  color: white;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.ver-detalles:hover {
  background-color: #001c3d;
  cursor: pointer;
}


.footer {
  background-color: #001a3a;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  padding: 40px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 220px;
  margin: 10px 15px;
}

.footer-column h4 {
  color: #ffc107;
  font-size: 18px;
  margin-bottom: 15px;
  border-bottom: 1px solid #444;
  padding-bottom: 5px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-column ul li a:hover {
  color: #ffc107;
}

.footer-column p {
  font-size: 14px;
  margin: 6px 0;
}

.footer-column a {
  color: #ccc;
  text-decoration: none;
}

.footer-column a:hover {
  color: #ffc107;
}
/* Estilos para las categorías */
.footer-categories {
  display: flex;
  justify-content: space-between;
}

.footer-categories-column {
  width: 48%; /* Cada columna de categorías ocupa el 48% del ancho */
}

.footer-categories li {
  list-style: none;
}

.footer-categories a {
  color: #333;
  text-decoration: none;
}

.footer-categories a:hover {
  color: #4CAF50;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  color: white;
  margin-right: 12px;
  font-size: 20px;
  transition: transform 0.3s ease, color 0.3s;
}

.social-icons a:hover {
  color: #ffc107;
  transform: scale(1.2);
}


.social-icons img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #aaa;
}


/* ===== Responsive Mejorado ===== */

/* Tablets y móviles grandes */
@media screen and (max-width: 992px) {
  /* Banner promocional */
  .banner-promocional {
    height: 300px;
  }

  /* Títulos de categorías */
  .categorias-titulo {
    font-size: 1.6rem;
    text-align: center;
  }

  /* Items de categorías */
  .categoria-item {
    flex: 0 1 200px;
    padding: 15px;
    font-size: 1em;
    text-align: center;
  }

  .categoria-item i {
    font-size: 1.8em;
  }

  /* Grid de categorías */
  .categorias-grid {
    gap: 20px;
    padding: 20px 15px;
    justify-content: center;
  }
}

/* Móviles medianos y pequeños */
@media screen and (max-width: 768px) {
  /* Barra superior */
  .barra-top {
    flex-direction: column;
    text-align: center;
    padding: 10px;
  }

  .barra-top h1 {
    font-size: 16px;
    margin-bottom: 5px;
  }

  /* Barra azul / navbar */
  .navbar-content {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .redes-sociales {
    justify-content: center;
  }

  /* Buscador */
  .search-container {
    width: 100%;
    margin: 8px 0;
    display: flex;
    justify-content: center;
  }

  .search-box {
    max-width: 90%;
  }

  /* Menú de categorías */
  .barra-categorias {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .menu-categorias {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .menu-categorias li a {
    font-size: 14px;
    padding: 6px 10px;
  }

  /* Íconos de usuario */
  .iconos-usuario,
  .usuario-logueado {
    position: static;
    transform: none;
    border-left: none;
    padding-left: 0;
    justify-content: center;
    margin-top: 8px;
  }
 }
/* Tablets y móviles medianos: 2 por fila */
@media screen and (max-width: 1024px) {
  .producto-card {
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

/* Móviles pequeños: 2 por fila */
@media screen and (max-width: 768px) {
  .producto-card {
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

/* Móviles muy pequeños: 1 por fila */
@media screen and (max-width: 480px) {
  .producto-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
