#flavorBody {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 140px 62px 62px 62px;
    max-width: 100%;
    overflow: hidden;
    font-family: "Lato", sans-serif;
    font-size: 1em;
}


/* #region Header */

#header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 70px;
    padding: 12px 16px 12px 16px;
    background-color: #150601;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    height: 80px;
}

#logo {
    display: flex;
    gap: 4px;
    padding-bottom: 12px;
    font-size: 36px;
    align-items: center;
    font-family: "Ranchers", sans-serif;
}

#logo2 {
    display: inline;
    color: #B42344;
}

.cart-mobile {
    padding-right: 26px;
}

/* #endregion */
/* #region Flavor */
#flavorSection {
    max-width: 100%;
}

.flavor-header {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    white-space: nowrap;
    gap: 8px;
}

.flavor-header-main {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
}

.flavor-header-sub {
    display: flex;
    margin-top: -40px;
    text-wrap: wrap;
}

/* #endregion */
/* #region FlavorCard */
#flavorCardSection {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-top: 32px;
}

.flavor-card {
    border: 2px solid #150601;
    border-radius: 10px;
    padding: 16px;
    max-width: 300px;
    height: 300px;
    text-align: center;
    cursor: pointer;
}

.flavor-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid #F2A900;
}

.flavor-card img {
    width: 100%;
    height: 200px;
    border-radius: 8px;
}

.card-fav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-content {
    gap: 8px;
}

.flavor-card h3 {
    font-size: 24px;
    color: #150601;
    margin: 4px 0 4px 0;
}

.flavor-card p {
    font-size: 16px;
    color: #333;
}

/* #endregion */
/* #region Dropdown nav */
.dropdown {
    position: relative;
    display: inline-block;
    display: flex;
}

#burger {
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ddd;
    border-radius: 5px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.nav-mobile {
    display: none;
}

.cart-mobile {
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
}

/* #endregion */
/* #region Media Queries   DESKTOP LAYOUT */
@media (min-width: 1000px) {

    #header {
        display: flex;
        justify-content: space-between;
        padding: 12px 64px 12px 64px;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
    }

    .logo-desktop {
        display: flex;
        flex: 1 0 0;
        align-items: start;
    }

    .drop-mobile {
        display: none;
    }

    #navlist {
        display: flex;
        flex-direction: row;
        gap: 48px;
        padding-right: 140px;
        align-items: right;
        cursor: pointer;
        list-style: none;
    }

    .nav-item a {
        text-decoration: none;
        color: #B42344;
        font-family: "Ranchers", sans-serif;
        font-size: 24px;
        font-weight: 400;
    }

    .cart-mobile {
        display: none;
    }

    .nav-item a:hover {
        color: #F2A900;
    }

    #flavorBody {
        display: flex;
        flex-direction: column;
        align-items: left;
        max-width: 100%;
        overflow: hidden;
        font-family: "Lato", sans-serif;
        margin-left: 70px;
        font-size: 1.5em;
    }

    .flavor-header {
        display: flex;
        flex-direction: column;
        align-items: baseline;
        white-space: nowrap;
    }

    .flavor-header-main {
        display: flex;
        flex-direction: row;
        align-items: baseline;
    }

    .flavor-header-sub {
        margin-top: -40px;
    }

    #flavorCardSection {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: stretch;
        margin-top: 48px;
    }
}

/* #endregion */