.head-wrapper
{
    width: 100%;
    padding: 100px 50px 50px;
}
.filters
{
    width: 100%;
    padding: 20px 0px;
}
.filters h2
{
    color: #101010;
    font-family: aeonik;
    font-size: 3vw;
    font-weight: 700;
}
.filters form
{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;   
    grid-gap: 15px;
}
.filters form input, .filters form select
{
    width: 100%;
    border: none;
    outline: none;
    background-color: #ddd;
    padding: 10px;
    border-radius: 5px;
    color: #101010;
    font-family: aeonik;
    border: .5px solid #00000000;
    transition: .3s;
}
.filters form input:hover, .filters form select:hover
{
    border: .5px solid #101010;
}

.filters form select
{
    text-align: center;
}
.filters form input::placeholder
{
    font-family: aeonik;
}
.filters form button
{
    padding: 10px;
    background-color: #ddd;
    font-family: aeonik;
    border: none;
    outline: none;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
}
.filters form button:hover
{
    background-color: #101010;
    color: #ddd;
}
.product_cont
{
    width: 100%;
    padding: 50px 0px;
    height: fit-content;
}
.product_cont h2
{
    color: #101010;
    font-family: aeonik;
    font-weight: 800;
    font-size: 6vw;
}
.product_grid
{
    width: 100%;
    display: grid;
    grid-gap: 30px;
    grid-template-columns: 1fr 1fr 1fr;    
}
.product_box
{
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    transition: .3s;
}
.product_box:hover .img img
{
    transform: scale(1.1) !important;
}
.product_box .img
{
    width: 100%;
    transition: .3s;
    overflow: hidden;
    border-radius: 5px;
    position: relative;
}
.product_box .img img
{
    width: 100%;
    border-radius: 5px;
    transition: .3s;
}
.detail-pro
{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sec
{
    margin-top: -8px;
}
.product_box h3
{
    margin: 10px 0px 0px;
    font-family: aeonik;
    text-align: center;
    font-weight: 600;
    color: #101010;
}
.product_box span
{
    font-family: aeonik;
    color: #6b6b6b;
    display: block;
    font-weight: 600;
}
.product_box .overlay_product
{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #0404046b;
    z-index: 100;
    display: flex;
    opacity: 0;
    backdrop-filter: blur(5px);
    transition: .3s;
    animation: fade .5s;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}
.wrapper_pro
{
    text-align: center;
    width: 100%;
    padding: 0px 20%;
}
.product_box:hover .img .overlay_product 
{
    opacity: 1;
}
.product_box:hover .img .overlay_product a
{
    opacity: 1;
    margin: 0 !important;
}

.overlay_product a
{
    background-color: #f1f1f137;
    font-family: aeonik;
    text-decoration: none;
    display: block;
    color: #ffffff;
    padding: 10px 20px;
    width: 100%;
    border-radius: 40px;
    opacity: 0;
    margin-left: -10px;
    transition: .3s;
}
.overlay_product a:nth-child(3)
{
    transition-delay: .1s !important;
}
.button-wrapper
{
    padding: 50px 0px;
    display: flex;
    justify-content: center;
}
.button-wrapper button
{
    padding: 10px 40px;
    background-color: #ddd;
    border: none;
    outline: none;
    color: #101010;
    font-family: aeonik;
    border-radius: 5px;
    transition: .3s;
}
.button-wrapper button:hover
{
    color: #ddd;
    background-color: #101010;
}
@media only screen and (max-width: 1200px) 
{
    .filters form
    {
        grid-template-columns: 1fr 1fr;
    }
    .product_grid
    {
        grid-template-columns: 1fr 1fr;
    }
    .head-wrapper
    {
        padding: 100px 30px;
    }
}
@media only screen and (max-width: 700px)
{
    .product_grid
    {
        grid-template-columns: 1fr;
    }
    .filters h2
    {
        font-size: 30px;
    }
} 
@media only screen and (max-width: 600px)
{
    .filters form
    {
        grid-template-columns: auto;
    }
}
@media only screen and (max-width: 400px)
{
    .detail-pro
    {
        display: block;
    }
    .detail-pro h3
    {
        text-align: left;
    }
}
