.body-container.product-page{
    height: auto;
    padding-top: 80px;
    width: 100%;
    flex-direction: column;
    align-items: center;
}

.products-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px;
}

.products-title span:first-child {
    font-style: normal;
    font-weight: 900;
    font-size: 35px;
    line-height: 30px;
    color: #BA6145;
}

.products-title span:last-child {
    font-family: Pacifico;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    color: #EAB557;
}

.row {
    width: 100%;
}

.buttons-container-product{
    min-height: 120px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}

.buttons-container-product .button-menu-1{
    margin-right: 20px;
    width: 250px;
}

.products-section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    max-width: 900px;
    margin-bottom: 20px;
}

.product-card {
    width: 250px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    margin-bottom: 20px;
    margin-right: 10px;
    margin-left: 10px;
    position: relative;
}

.product-card a{
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: absolute;
}

.product-card img{
    max-width: 100%;
    max-height: 100%;
}

.product-card span{
    margin-top: 10px;
    font-style: normal;
    font-weight: 900;
    font-size: 28px;
    line-height: 17px;
    color: #BA6145;
    width: 100%;
    text-align: center;

}