.navbar{
    display: flex;
    justify-content: flex-start;
    align-items: center;

    width: 100%;
    height: 75px;

    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #fff;
}

.navbar > div{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.navbar > a{
    text-decoration: none;
}

.navbar-logo{
    font-family: "Edu NSW ACT Cursive", cursive;
    text-decoration: none;
    font-size: 25px;
    color: #333;
}

.navbar > div > ul{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;

    list-style: none;
}

.navbar > div > ul > li > a{
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    color: #333;

    padding: 5px 15px;
    border-radius: 5px;

    transition: all 0.5s;
}

.navbar > div > ul > li > a:hover{
    background-color: #E57373;
    color: #fff;
}

.shopping-cart{
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #333;
}

.shopping-cart > i{
    transform: scaleX(-1);
    font-size: 25px;
    color: #333;
}

.shopping-cart > strong{
    position: absolute;
    top: 5px;
    left: -17px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    width: 20px;
    height: 20px;
    border-radius: 50%;

    background-color: #D32F2F;
    color: #fff;
    font-size: 12px;
}

.shopping-cart > p{
    font-size: 13px;
    font-weight: 600;
}

#hamburger-button{
    display: none;
    font-size: 25px;
    color: #333;
    cursor: pointer;
}

.hamburger-menu{
    position: absolute;
    top: 75px;
    left: 0;

    visibility: hidden;
    opacity: 0;

    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;

    width: 100%;
    padding: 20px;

    background-color: #fff;

    list-style: none;

    transition: all 1s;
}

.hamburger-menu > li{
    width: 100%;
    border-bottom: 1px solid #33333390;

    padding-bottom: 5px;
}

.hamburger-menu > li > a{
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

@media (max-width: 1450px) {
    .navbar{
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 900px) {
    .navbar > div > ul{
        display: none;
    }

    #hamburger-button{
        display: block;
    }
}

@media (max-width: 450px) {
    .navbar{
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .navbar-logo{
        font-size: 20px;
    }
}