#aboutBody {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    margin: 0;
    padding: 140px 62px 62px 62px;
    max-width: 100%;
    overflow: hidden;
    font-family: "Lato", sans-serif;
}


/* #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;
}

#logo1 {
    display: inline;
    color: #F2A900;
}

#logo2 {
    display: inline;
    color: #B42344;
}

.cart-mobile {
    padding-right: 26px;
}

/* #endregion */
/* #region About */
#aboutSection {
    max-width: 100%;
}

.stack {
    display: none;
}

.about-header {
    display: flex;
    align-items: baseline;
    white-space: nowrap;
    gap: 8px;
}

.logo {
    display: flex;
    gap: 4px;
    align-items: center;
    font-family: "Ranchers", sans-serif;
}

p {
    font-size: 20px;
}

/* #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) {
    #aboutBody {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 48px;
        margin: 0;
        padding: 140px 62px 62px 62px;
        max-width: 100%;
        overflow: hidden;
        margin-left: 70px;
        font-family: "Lato", sans-serif;
    }

    #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;
    }

    #aboutBody {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 80px;
        font-size: 24px;
    }

    .stack {
        display: flex;
        align-items: center;
        padding-top: 50px;

    }

}

/* #endregion */