:root {
    --azul: #2A3146;
    --celeste: #1970D7;
    --amarillo: #F2D850;
    --verde:#C1E376;
}

html{

}

.main-productos{
    /* padding: 10vh 0; */
    background: linear-gradient(to right, var(--azul) 30%, white 30%, white 100%);

    @media (max-width:1200px) {
        background: linear-gradient(white,white);
    }
}

.titulo-productos{
    font-family: 'Bebas Neue', 'sans-seriff';
    text-align: center;
    margin-top: 5vh;
    color: var(--azul);
    font-size: 5vh;
}

.columna{
    display: flex;
    flex-direction: column;
    justify-content: center;

    width: fit-content;


    @media (max-width:1200px) {
        flex-direction: row;
        gap: 2vh;
        align-items: center;
    }

    @media (max-width:900px) {
        flex-direction: column;
        align-items: start;
        width: 100%;
        select{
            width: 100%;
        }
    }

}

.hidden {
    display: none;
}

.div-filtros-productos{
    display: flex;
    padding: 2vh;
    /* background-color: rgb(255, 255, 255); */

    @media (max-width:1200px) {
        flex-direction: column;
        gap: 5vh;
        align-items: center;
    }

}

.titulo-filtros{
    text-align: center;
    font-size: 5vh;
    font-family: 'Bebas Neue', 'sans-seriff';
    letter-spacing: .1vh;
    color: var(--amarillo);
    margin: 0;

}

.div-filtros{
    /* background-color: var(--azul); */
    height: fit-content;
    width: 15vw;
    padding: 1vh;
    color: white;
    border-radius: .5cap;
    box-shadow: 1px 1px 10px var(--azul);

    @media (max-width:1200px) {
        display: flex;
        flex-direction: column;
        background-color: var(--azul);
        width: 100%;
        align-items: center;
        justify-content: space-evenly;

    }

    @media (max-width:900px) {
        /* width: fit-content; */
    }


}

.filtros{
    padding: 2vh 0 ;

    @media (max-width:1200px) {
        display: flex;
        width: 100%;
        justify-content: center;
        gap: 2.5vh;
            
    }

    @media (max-width:900px) {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    
}

.div-radio{


    @media (max-width:1200px) {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1vh;
    }

    @media (max-width:900px) {
        flex-direction: column;
        gap: 0;
        align-items: start;
        width: fit-content;
    }
}

label{
    font-size: 2.5vh;

    @media (max-width:1200px) {
        /* font-size: 2vh; */
    }
}


select{
    margin-top: .5vh;
    border-radius: .5cap;
    font-size: 2.5vh;
    padding: .5vh;
    width: 10vw;
}

.boton-buscar{
    padding: 1vh;
    background-color: var(--amarillo);
    border: none;
    border-radius: .5cap;
    font-size: 2.5vh;
    font-family: 'Bebas Neue', 'sans-seriff';
    width:100%;

    &:hover{
        cursor: pointer;
        scale: 1.01;
        box-shadow: 1px 1px 10px black;
    }

    @media (max-width:1200px) {
        width: fit-content;
    }

    @media (max-width:900px) {
        width: 100%;
    }
}

.productos{
    /* border: solid 5px var(--verde); */
    width: 70vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5vh;

    @media (max-width:1200px) {
        width: 100%;
    }

}



.img-producto{
    width: 100%;
    height: 35vh;
    border-radius: .3cap .3cap 0 0;
    background-color: white;
}

.div-producto{
    margin-bottom: 2vh;
    background-color: #1c2130;
    width: 45vh;
    height: 50vh;
    border-radius: .5cap;
    display: flex;
    flex-direction: column;
    gap: 1vh;
    box-shadow: 1px 1px 10px var(--azul);
    padding: .3vh;

    &:hover{
        background-color: #151925;
        scale: 1.01;
    }

    @media (max-width:590px) {
        width: 80vw;
    }

}

.div-texto-producto{
    display: flex;
    flex-direction: column;
    gap: 1vh;
    color: white;
    width: 100%;
    height: 15vh;
    padding: .5vh;
    margin: 0 .5vh;
    border-top: 2px solid var(--amarillo);
}

.a-producto{
    text-decoration: none;
}

.nombre-producto, .marca-producto, .categoria-producto{
    font-size: 2vh;
    font-weight: 400;
}

.nombre-producto{
    font-family: 'Bebas Neue', 'sans-seriff';
    letter-spacing: .1vh;
    font-size: 3vh;
    color: var(--amarillo);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}


/* septimo div */
.septimo-div{
    background: url(imagenes/generica2.jpeg);
    filter: brightness(0.3);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 50vh;
    box-shadow: 1px 1px 10px black;
    /* margin-top: 10vh; */
  }