#welcome
{
    height: 120px !important;
}
#product
{
    margin-top: 150px;
    width: 100%;
}
#product #info
{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}
#product #info .info h1
{
    font-weight: bold;
    font-size: 30px;
    color: var(--main);
    font-family: 'Manrope', sans-serif;
    text-transform: uppercase;
}
#product #info .info
{
    max-width: 40%;
    color: #fff;
}
#product #info .info p
{
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
}
#product #info .info p a
{
    color: var(--main);
    text-decoration: none;
}
#product #info .info ul
{
    margin-top: 15px;
    margin-left: 50px;
    color: #636363;
}
#product #info .info ul li
{
    font-family: 'Poppins', sans-serif;
}
#product #info img
{
    border-radius: 15px;
    border: 4px solid var(--main);
}
#product a,
#product span
{
    font-family: 'Poppins', sans-serif;
}
@media screen and (max-width: 1160px)
{
    #product
    {
        margin-top: 50px;
    }
    #product #info
    {
        flex-direction: column;
        justify-content: center;
        gap: 50px;
        padding-bottom: 50px;
    }
    #product #info .info
    {
        max-width: 80%;
    }
}
@media screen and (max-width: 660px)
{
    #product #info img
    {
        width: 500px;
        height: 300px;
    }
}
@media screen and (max-width: 530px)
{
    #product #info img
    {
        width: 350px;
        height: 200px;
    }
}
#products
{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
#products #filter
{
    margin-left: 25px;
    width: 200px;
    border: 2px solid #636363;
    display: flex;
    flex-direction: column;
    color: #fff;
    padding: 5px;
    gap: 5px;
    height: 472px;
}
#products #filter label
{
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
}
#products #filter .stripe
{
    width: 100%;
    min-height: 2px;
    max-height: 2px;
    background: #636363;
}
#products #filter .input
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}
#products #filter .input p
{
    font-family: 'Poppins', sans-serif;
}
#products #filter input[type="submit"]
{
    background: var(--main);
    border: none;
    outline: none;
    min-height: 40px;
    max-height: 40px;
    color: #fff;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}
input[type="checkbox"]
{
    accent-color: var(--main);
    width: 18px;
    height: 18px;
}
#products .products
{
    min-height: 100vh;
    width: calc(100% - 250px);
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 25px;
    padding-bottom: 50px;
}
#products .products #product
{
    min-width: 370px;
    max-width: 370px;
    min-height: 320px;
    max-height: 320px;
    background: rgba(20, 20, 25, 0.55);
    border-radius: 4px;
    backdrop-filter: blur(11.6px);
    -webkit-backdrop-filter: blur(11.6px);
    border: 2px solid #63636321;
    border-radius: 4px;
    position: relative;
}
#products .products #product img
{
    position: absolute;
    top: 15px;
    left: 10px;
    border-radius: 4px;
    border: 2px solid var(--main);
}
#products .products #product label
{
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
    font-size: 25px;
    width: 100%;
    text-align: center;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}
#products .products #product button
{
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 40px;
    background: var(--main);
    color: #fff;
    cursor: pointer;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}
@media screen and (max-width: 1050px)
{
    #products #filter
    {
        display: none;
    }
    #products .products
    {
        width: 100%;
        justify-content: center;
        align-items: center;
    }
}