*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
body{
    display: flex;
    flex-direction: column;
    height: 100vh;
}

header{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #004D8E;
}

.header-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    margin-inline: 8px;
    width: 95%;
}

header :nth-child(2){
    place-content: center;
}

.header-row > *{
    place-content: center;
    align-items: center;
}

.logo-div{
    display: grid;
    place-items: center;
}

.logo{
    max-height: 80px;
    margin-bottom: -10px;
}

.logo span{
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.icon{
    height: 50px;
}

.accessibility{
    display: flex;
    gap: 16px;
}

.bold{
    font-weight: bold;
}
.underlined{
    text-decoration: underline;
}


.searchBar{
    width: 95%;
    padding:8px;
    border-radius:4px;
    border-color: transparent;
}

.location-req{
    display: flex;

}


header p{
    color: white;
}

main{
    display: flex;
    flex-grow: 1;
    place-content: center;
    background-color: rgb(211, 36, 36);
}
#container{
    max-width: 98rem;
    background-color: rgb(250, 250, 250);
}

#carrossel{
    display: column;
    columns: 5;
    gap: 5px;
    margin:80px;
    flex-wrap: wrap;
}

.product-card{
    background-color: white;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: space-between;
    height: 480px;
    margin-bottom: 8px;

    padding: 8px;

    border-radius: 8px;
    border: 1px solid rgb(228, 228, 228);

}

.tag-rating{
    display: flex;
    justify-content: space-between;
}

.category-label{
    display: inline-block;
    font-size: 0.7rem;
    padding-block: 5px;
    line-height: 16px;
    font-weight: 600;
    background-color: rgb(0, 255, 242);
    border-radius: 10px;
    text-align: center;
}

.rating{
    display: flex;
    flex-direction: row;
    height: 20px;
}

.rating img{
    width: 20px;
    margin-inline: -1px;
}

.product-image{
    height: 10.125rem;
    width: 182px;
    height: 162px;
}

.product-name{
    font-weight: bold;
    font-family: "Poppins", sans-serif;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.product-price{
    color:rgb(255, 82, 0);
    font-size: 1.25rem;
    line-height: 1.875rem;
    font-weight: 700;
}

button{
    background-color: rgb(255, 82, 0);
    border: rgb(255, 82, 0);
    width: 100%;
    height: 40px;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 5px;
}