body{
    background-color: black;
    margin: auto;
}


.container{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    padding: 50px 50px;
}

.collection{
    display: grid;
    box-sizing: border-box;
    flex: 1;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-template-rows: auto;
    gap: 25px;
}

.product{
    position: relative;
    display: flex;
    flex-direction: column;
    filter: saturate(1);
    box-sizing: border-box;
    transition: 0.1s;
    color: white;
}

.product .cover{
    width: 100%;
}

.product .stage {
    position: absolute;
    max-width: 100%;
    width: 100% !important;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product .stage img{
    width: 40%;
    height: auto;
}

.product:hover{
    background-color: var(--main-color);color: black;
}

.product .information{
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Montserrat-Bold;
    font-size: 12pt;
    padding: 20px 20px;
    width: 100%;
    box-sizing: border-box;
    gap: 10px;
}

.product .information .name {
    font-family: Montserrat-Regular;
    font-size: 11pt;
    padding: 5px;flex: 1;
}

.product .information .price{
    font-family: Montserrat-Black;
    font-size: 18pt;
    padding: 5px;
}

.product{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction:column;
}

.product .stage{
    width: 600px;
}

.product .print{
    position: absolute;
    width: 280px;
    height: 380px;
    transform: translateY(0px);
}

.product .print img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product input[type="range"]{
    width: 100%;
}

.product ul{
    overflow: hidden;
    padding: 10px 10px;
    margin: 10px 0px;
}

.product ul li{
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    margin: 0px 5px;
    opacity: 1;
    transition: 0.2s;
}

.product ul li:hover{
    opacity: 0.8;
}