



.main-inner{
    width: 100vw !important;
}




.select-box {
    position: relative;
    display: inline-block;
    width: 6.25vw;
    height: 2vw !important;
    background: transparent;
    overflow: hidden;
}

/* SELECT */
.select-box select{
    width: 100%;
    height: 100%;

    padding: 0 1.5vw 0 0;

    border: none;
    outline: none;
    background: transparent;
    color: black;

    font-size: 1.15vw;
    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* ICONO FLECHA */
.select-box::after{
    content: "⌄";
    position: absolute;

    right: 12px;
    top: 50%;
    transform: translateY(-50%);

    pointer-events: none;
    font-size: 14px;
    color: transparent;
}

/* HOVER */
.select-box:hover{
    border-color: #999;
}

/* FOCUS */
.select-box select:focus{
    background: rgba(0,0,0,0.02);
}

/* ACTIVO (opcional con JS) */
.select-box.active{
    border-color: #111;
}
.select-box{
    transition: all .2s ease;
}

select option {
    color: var(--qode-light-gray-color);
    /*text-align: center;*/
}


/*////////////////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////////////*/


*{
    font-family: 'Roboto';
}


/*////////////////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////////////*/

#grid{
    width: 85%;
    height: auto;
    padding-top: 0.5vw;
    margin-left: 15%;
    border: 1px solid red;
}


/*////////////////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////////////*/


#header{
    width: 100%;
    height: 2.5vw;
    background-color: white;
    display: none !important;
}

#header .headers{
    width: auto;
    height: 100%;
    padding-left: 2vw;
}
#header .headers span{
    font-size: 1vw;
}
#header .headers strong{
    padding: 0 0.75vw;
    font-weight: bold;
}

#header .headers #title{
    font-family: 'Roboto';
    font-weight: bold;
}
#header .headers #style{

}
#header .headers #category{


}


#header .filters{
    width: auto;
    height: 100%;
    float: right;
    padding-right: 3vw;
    font-size: 1vw;
}


/*////////////////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////////////*/


#toggle {
    width: 2vw;
    height: 2vw;
    padding: 0.5vw;
    bottom: 5%;
    left: 13.75vw;
    background-color: black;
    border: 0.1vw solid lightgrey;
    border-radius: 2vw;
    cursor: pointer;
    z-index: 1;
    display: none !important;
}
#toggle .icon{
    width: 100%;
    height: 100%;
    stroke: white;       
    stroke-width: 3.5;
    fill: none;
    transform: rotate(180deg);
}
#toggle img{
    width: 100%;
    display: none;
}
#toggle:hover{
    background-color: white;
    border: 0.15vw solid black;
    transform: scale(1.2);
}
#toggle:hover .icon{
    stroke: black;  
    stroke-width: 6;
    transform: rotate(-180deg);
}
#toggle:active{
    transform: scale(1.05);
}


/*////////////////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////////////*/

#sidebar{
    position: absolute;
    top: 3vw;
    width: 15%;
    height: 39vw;
    background-color: white;
    display: none !important;
}

#elements {
    position: relative;
    float: left;
    width: 100%;
    height: auto;
    top: 0;
    left: 0%;
    background-color: white;
    z-index: 1;
}

#elements .filter{
    width: 100%;
    cursor: pointer;
}
#elements .filter .field{
    width: 100%;
    height: 100%;
    padding: 0.35vw 0;
    text-align: left;
}
#elements .filter .field span{
    width: 100%;
    height: 100%;
    font-size: 1vw;
}
#elements .filter .top span{
    font-weight: bold;

}
#elements .filter .filter-box{
    width: 100%;
    padding: 0.5vw 1vw;
}
#elements .filter .filter-box .field{
    width: 100%;
    padding: 0.25vw 0;
    text-align: left;
}
#elements .filter .filter-box .field span{
    font-size: 0.95vw;
}

/*
#elements .filter .field:hover{
    color: white;
    background-color: black;
}*/
#elements .filter .field:active{
    transform: scale(0.95);
}


/*////////////////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////////////*/

.main {
    width: 100%;
    height: 90vh !important;
    overflow-x: hidden;
    overflow-y: scroll;
    padding-right: 1.5vw;
}

#content{
    width: 99%;
    padding-bottom: 5vw;
}
.minimized{
    width: 85% !important;
    width: 102% !important;
    margin-left: 15% !important;
    margin-left: 0% !important;
}

.grid {
    margin-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1vw 0.5vw;
}


.store{
    width: 100% !important;
    height: auto !important;
    padding: 2vw;
    padding-bottom: 4vw;
}
.store .image{
    height: auto !important;
    aspect-ratio: 1;
}

/*////////////////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////////////*/



@media (max-width: 991px) {


  #grid, .grid {
      grid-template-columns: 1fr; /* Una columna en pantallas pequeñas */
      gap: 4vw 0;
  }


    .main {
        height: 100vh!important;
        width: 100% !important;
        padding-right: 0.5vw !important;
    }

    .minimized{
        width: 100% !important;
    }


}