/* homepage.css */

/* Contenedor principal */
.homepage-section {
  max-width: 1200px;
  margin: 0 auto 2em auto; /* top | right | bottom | left */
  padding: 1em;
}

/* Top bar que ahora solo contiene el buscador */
.top-bar {
  display: flex;
  justify-content: center;    /* centra el buscador */
  margin-bottom: 1.5em;
}

/* Barra de búsqueda ocupa 60% del ancho */
.search-bar {
  width: 60%;
  display: flex;
  align-items: center;
}

.search-bar input {
  width: 100%;                /* cubre todo el 60% */
  padding: 0.5em;
  border: 1px solid #ccc;
  border-radius: 0.25em 0 0 0.25em;
  font-size: 1em;
}

.search-bar button {
  padding: 0.5em 1em;
  border: 1px solid #ccc;
  border-left: none;
  border-radius: 0 0.25em 0.25em 0;
  cursor: pointer;
  font-size: 1em;
  background-color: #b71c1c;
  color: #fff;
  transition: background-color 0.3s;
}

.search-bar button:hover {
  background-color: #dd3131;
}


.scroll-to-top {
  position: fixed;
  bottom: 90px;   /* antes estaba en 20px, lo subimos para que quede encima del botón de WhatsApp */
  right: 20px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  z-index: 2000;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.scroll-to-top:hover {
  transform: scale(1.1);
}



/* Imagen flotante WhatsApp */
.floatingWhatsappIcon {
  position: fixed;
  bottom: 20px;
  right: 25px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: transform 0.3s;
  z-index: 1000;
}

.floatingWhatsappIcon:hover {
  transform: scale(1.1);
}







/* Categorías como enlaces */
.categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
  margin-bottom: 2em;

  position: sticky;   /* hace que se “pegue” */
  top: 0;             /* o ajusta si tienes un header encima */
  background: #fff;   /* para que no se superponga visualmente con los productos */
  padding: 0.5em 0;
  z-index: 1000;      /* para que quede encima de las tarjetas */
}

.category-item {
  cursor: pointer;
  font-size: 1em;
  color: #333;
  position: relative;
  padding-bottom: 0.25em;
  transition: color 0.3s;
  text-decoration: none;
}

.category-item.active,
.category-item:hover {
  color: #b71c1c;
}

.category-item.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #b71c1c;
}

/* Contenedor de todas las secciones de productos */
.products-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2em;
  padding-bottom: 2rem;
}

/* Cada sección de categoría */
.category-section {
  padding: 1rem 0;
}

/* Título de cada categoría */
.category-section > h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: #333;
}

/* Grid horizontal dentro de cada sección */
.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Tarjeta de producto */
.product-item {
  flex: 1 0 18%;   /* ajusta al número de columnas deseado */
  max-width: 18%;
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 0.5em;
  padding: 1em;
  text-align: center;
  background-color: #fff;
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.product-item:hover {
  transform: scale(1.05);
  background-color: #f9f9f9;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  cursor: pointer;
}

/* Imagen dentro de la tarjeta */
.product-image {
  width: 100%;
  padding-top: 100%;  /* ratio 1:1 */
  background-size: cover;
  background-position: center;
  margin-bottom: 0.5em;
  border-radius: 0.5em;
}

/* Título dentro de la tarjeta */
.product-item h3 {
  font-size: 1em;
  margin: 0.5em 0 0;
  color: #333;
}

/* Shimmer Skeleton Cards */
@keyframes shimmer {
  0% { background-position: -300px 0; }
  100% { background-position: 300px 0; }
}

.skel-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.5em;
  background-color: #f0f0f0;
  width: 100%;
  height: 250px;
}

.skel-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    to right,
    rgba(240,240,240,0) 0%,
    rgba(230,230,230,0.8) 50%,
    rgba(240,240,240,0) 100%
  );
  background-size: 600px 100%;
  animation: shimmer 1.2s infinite;
}

/* Estados vacío y error cubren toda la sección */
.empty-state,
.error-state {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  color: #b71c1c;
  text-align: center;
}

.empty-state img,
.error-state img {
  max-width: 150px;
  margin-bottom: 1em;
}

.empty-state p,
.error-state p {
  margin: 0;
  font-size: 1.2em;
}

/* Ajustes responsive */
@media (max-width: 900px) {
  .product-item {
    flex: 1 0 20%;
    max-width: 23%;
  }
  .search-bar {
    width: 100%;
  }
  .category-item {
    font-size: 0.9em;
  }
  .categories{
    gap: 0.8em;
  }
}

@media (max-width: 700px) {
  .product-item {
    flex: 1 0 30%;
    max-width: 30%;
  }
  .product-item h3 {
    font-size: 0.8em;
  }
  .category-item {
    font-size: 0.8em;
  }
  .categories{
    gap: 0.5em;
  }
}

@media (max-width: 470px) {
  .product-item {
    flex: 1 0 45%;
    max-width: 45%;
  }
  .categories{
    gap: 0.5em;
  }
}
