.productos-contenedor {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.titulo-productos {
    text-align: center;
    margin: 2rem 0;
    width: 100%;
}

.intro-productos {
    width: 60%;
    text-align: center;
    margin-bottom: 2rem;
}

/*BUSCADOR*/
.buscador {
    width: 60%;
    
}

.formulario-buscar {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.input-buscador {
    flex-grow: 1;
    margin-right: 2rem;
    margin-bottom: 2rem;
}

h2 {
    font: 1.5rem "Rubik","sans-serif";
    width: 100%;
}

.noResults {
    text-align: center;
}

/*PRODUCTO*/
.contenedor-productos {
    /* display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around; */
    width: 80%;
    display: grid;
    gap: 0;
    grid-auto-flow: dense;
    grid-auto-rows: auto;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 24rem), 1fr));
}

.un-producto {
    background: var(--grisclarisimo);
    border-radius: .5rem;
    padding: 1rem;
    max-width: 400px;
    margin: 1rem;
}

.im-titulo-precio {
    display: flex;
    flex-direction: row;
}

.nombre-precio {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-left: 1rem;
    width: fit-content;
}

.nombre-precio h2 {
    font: 450 1.5rem "Rubik","sans-serif";
    color: var(--azul);
}

.nombre-precio p {
    color: var(--negro);
    font: 400 1.3rem "Rubik","sans-serif";
    width: fit-content;
}

.producto-descripcion {
    margin-top: 1rem;
}

.producto-img {
    width: 200px;
    height: 200px;
}


/*Paginacion*/
.pag-contenedor {
    width: 100%;
    margin-top: 2rem;
}

.paginacion {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}

.paginacion li {
    list-style: none;
}

.paginacion li a {
    font: 1rem "Rubik", "sans-serif";
    color: var(--darkgris);
    text-decoration: none;
    padding: 0 .5rem;
}

.paginacion li a:hover {
    color: var(--negro);
    text-decoration: underline;
}

.active > .page-link {
    color: var(--negro);
    text-decoration: underline;
}

.visible-botones {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.visible-botones .botones-form {
    margin-top: 3rem;
}

@media only screen and (max-width: 550px) {
    .buscador {
        width: 85%;
    }

    .im-titulo-precio {
        flex-direction: column;
    }

    .input-buscador {
        margin-right: .5rem;
        width: auto;
        margin-bottom: 1rem;
    }

    .nombre-precio {
        margin-left: 0;
    }

    .intro-productos {
        width: 90%;
    }

    .formulario-buscar {
        flex-direction: column;
    }

    .un-producto {
        margin: .5rem;
    }

    .buscador {
        margin-bottom: 1rem;
    }

    .contenedor-productos {
        width: 95%;
    }
}