
.profile-pic {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #FFDF01;
    padding: .2rem;
}

.user-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nonuser-nav {
    display: flex;
    gap: 1rem;
}

.sign-btns {

    padding: 0 1rem;
    border-radius: 0.5rem;
    height: 35px;
    color: #f9f9f9;
    font-weight: 600;
    font-size: 1rem;
}

.sign-up-btn {
    border: none;
    color: #1C1C1C;
    background: #FFDF01;
}

.sign-in-btn {
    background: none;
    border: solid 2px #FFDF01;
}

.profile-section {
    display: flex;
    width: fit-content;
    height: fit-content;
}

nav {
    display: flex;
    align-items: center;
    height: 46px;
    width: 100%;
    position: relative;
    z-index: 5;
    justify-content: space-between;
}

.nav-menu {
    cursor: pointer;
}

.side-menu {
    display: flex;
    flex-direction: column;
    right: 100%;
    gap: 2rem;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    padding: 2rem 0 2rem 0;
    position: fixed;
    z-index: 7;
    background: linear-gradient(144deg, rgba(28, 28, 28, 1) 0%, rgba(70, 56, 29, 1) 100%);
    transition: all 0.3s ease-in-out;
}

.side-logo img {
    height: 57px;
    margin: 0 0 1.1rem 2rem;
}

.side-btn-section {
    display: flex;
    width: fit-content;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 0 0 2rem;
}

.side-btn-section a {
    font-size: 1.4rem;
}

a {
    text-decoration: none;
}

.side-buttons {
    
    display: flex;
    gap: 1rem;
    align-items: center;
    font-weight: 400;
    color: #979AA4;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}

.side-buttons:hover svg path {
    fill: #F9F9F9;
}

.side-buttons:hover {
    color: #F9F9F9;
}

.side-menu path {
    fill: #979AA4;
    transition: fill 0.3s ease-in-out;
}

.my-section {
    width: fit-content;
    padding: 0 0 0 2.5rem;
}

.my-section h1 {
    font-size: 1.2rem;
    margin: 0 0 1rem 0;
    color: #979AA4;
}

.my-section:last-of-type{
    margin: 0 0 10rem 0;
}

.side-list img {
    height: 25px;
}

.side-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.close-btn {
    position: absolute;
    right: 20px;
    cursor: pointer;
}

.black-fillter {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 6;
    background: black;
    pointer-events: none;
}

.cart-sec{
    position: relative;
}

.cart-badge{
    font-size: .8rem;
    position: absolute;
    right: -15%;
    top: -20%;
    color: #FFDF01;
    background: #1C1C1C;
    padding: .2rem .3rem;
    border-radius: 2rem;
}

.nav-btns{
    display: none;
    gap: 1.5rem;
}

.nav-btns>img{
    height: 80px;
}

.nav-btns-wrapper{
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-btns-wrapper>a{
    color: #F9F9F9;
    text-decoration: none;
    font-size: 1.2rem;
}


@media (min-width: 576px) {}

@media (min-width: 768px) {
    .side-menu {
        width: 50%;
    }
}

@media (min-width: 992px) {}

@media (min-width: 1200px) {
    .side-menu {
        width: 30%;
    }
    
    .close-btn {
        display: none;
    }

    .nav-menu {
        display: none;
    }

    .nav-btns{
        display: flex;
    }
}

@media (min-width: 1400px) {
    .my-section:last-of-type{
        margin: 0;
    }   
}

@media (min-width: 1600px) {

    
}
