.top {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 700px;
    background: url('../../assets/images/jackets.jpg') no-repeat;
    background-size: cover;
    background-position: center;
}

.top h1 {
    font-family: "Archivo Black", sans-serif;
    font-size: 62px;
    color: white;
    text-align: center;
    padding-top: 15%;
}


.info {
    width: 45%;
    height: 20%;
    background-color: #EFEFEF;
    position: absolute;
    top: 600px;
    left: 0%;
    border-radius: 0 30px 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info p {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    padding: 60px;
    line-height: 35px;
}

#filter_dropdown {
    font-family: "Open Sans", sans-serif;
    text-align: right;
    margin: auto;
    margin-top: 20px;
    padding-right: 20px;
}

#gender_filter {
    padding: 10px;
    border: 1px solid #CCCC;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

#products-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 120px;
    max-width: 80%;
    margin: auto;
    margin-top: 120px;
    margin-bottom: 120px;
}

.item {
    text-align: left;
    line-height: 30px;
    position: relative;
    width: 300px;
}

.item img {
    width: 300px;
    height: 400px;
    object-fit: contain;
    margin-bottom: 20px;
}

.item h2 {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.item p {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
}

.item p .old {
    text-decoration-line: line-through;
}

.item p .new {
    color: red;
    font-weight: 700;
}



@media (min-width: 1950px) {

    #products-container {
        max-width: 1500px;
    }

    .info {
        width: 30%;
    }

    #filter_dropdown {
        max-width: 1500px;
    }
}

@media (max-width: 991px) {
    .top {
        min-height: 700px;
    }

    .top h1 {
        padding-top: 40%;
    }

    .info {
        width: 80%;
        height: 20%;
        top: 600px;
    }

    .info p {
        line-height: 35px;
    }

    #filter_dropdown {
        margin-top: 200px;
        text-align: left;
        margin-left: 20px;
    }

    .item {
        width: 248px;
    }

    .item img {
        width: 248px;
        height: 300px;
    }

    #products-container {
        margin-top: 20px;
    }

}

@media (max-width: 768px) {
    .top {
        min-height: 600px;
    }

    .top h1 {
        padding-top: 50%;
        font-size: 58px;
    }

    .info {
        width: 80%;
        height: 18%;
        top: 530px;
    }

    .info p {
        font-family: "Open Sans", sans-serif;
        font-size: 14px;
        line-height: 30px;
    }

    #products-container {
        gap: 60px;
    }

    .item {
        width: 200px;
    }

    .item img {
        width: 200px;
        height: 250px;
    }
}


@media (max-width: 450px) {
    .top {
        min-height: 500px;
    }

    .top h1 {
        padding-top: 60%;
        font-size: 48px;
    }

    .info {
        width: 90%;
        height: 18%;
        top: 450px;
    }

    .info p {
        font-family: "Open Sans", sans-serif;
        font-size: 95%;
        padding: 38px;
        line-height: 26px;
    }

    #products-container {
        gap: 60px;
    }

    .item {
        width: 110px;
    }

    .item img {
        width: 110px;
    }

}