
/* ----------------------------------------*/
/* 🔹 Estilo general de la página         */
/* ----------------------------------------*/

body {
  font-family: Lato, sans-serif;
  background-color: #fafafa;
  color: #333;
}

/* 🔹 Texto de bienvenida */
#welcome-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

#welcome-text h2 {
  font-size: 2rem;
  color: #2c3e50;
}

#welcome-text p {
  font-size: 1.1rem;
  line-height: 1.6;
}


/* --------------------------------------- */
/* 🔹 Estilos para la cuadrícula catalogo */
/* --------------------------------------- */
/* 🔹 Contenedor de la cuadrícula */

#category-grid .ec-store {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* 🔹 Cada tarjeta de categoría */
#category-grid .grid-category__wrap {
  flex: 0 1 calc(33.333% - 20px); /* 3 por fila */
  box-sizing: border-box;
}

#category-grid .grid-category__card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

#category-grid .grid-category__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* 🔹 Fondo de la imagen de la categoría */
#category-grid .grid-category__bg-color {
  width: 100%;
  height: 120px;
  display: block;
  background-color: #dcdcdc; /* puedes personalizar colores */
}

/* 🔹 Nombre de la categoría */
#category-grid .grid-category__title-inner {
  font-weight: 600;
  font-size: 1.1rem;
  color: #2c3e50;
  padding: 10px;
  text-decoration: none;
}

/* 🔹 Enlaces de categoría */
#category-grid .grid-category__title a {
  text-decoration: none;
  color: inherit;
}

/* 🔹 Responsivo */
@media screen and (max-width: 900px) {
  #category-grid .grid-category__wrap {
    flex: 0 1 calc(50% - 20px); /* 2 por fila */
  }
}

@media screen and (max-width: 600px) {
  #category-grid .grid-category__wrap {
    flex: 0 1 100%; /* 1 por fila */
  }
}

#ec-instantsite-website {
  position: relative;
  min-height: 100vh;
  }

  /*
  #ec-instantsite {
  padding-bottom: 2.5rem;    /* altura de pie de página 
}*/

#footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2.5rem;            /* altura de pie de página */
}

hr {
  border: none; 
  background-color: #4e412a; 
  height: 2px;
}