*{
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

#wrapper{
    max-width: 1400px;
    height:auto;
    margin:auto;
}

back-btn{
    display: inline-block;
    padding: 12px 20px;
    background-color: #FF69B4;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    border: 3px solid #c80064;
    box-shadow: 0px 5px 8px rgba(0,0,0,0.3);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin: 20px;
}

/* hover */
.back-btn:hover{
    background-color: #f0e6f9;
    color: #FF69B4;
    border-color: #eb97c1;
    transform: translateY(-2px);
}

/* active click */
.back-btn:active{
    transform: translateY(1px);
    box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
}

/* #mobile */
.nav{
    background-color:rgba(82,42,111,1.0);
    overflow:visible;
    padding: 10px 20px;
}

    .nav-list{
        display:flex;
        flex-wrap: wrap;
        align-items: center;
        list-style: none;
        padding:0;
        margin:0;
        width:100%;
        justify-content: space-between;
    }

    .links, .dropdown, .dropdown-content{
        list-style: none;
        text-decoration:none;
    }

    .nav-list li{
        padding: 8px 12px;
    }
    .logo{
        text-align: center;
        margin-bottom:10px;
    }

    .dropbtn{
        font-size:0.95rem;
    }

    #menu-links{
        width:100%;
        display: none;
        text-decoration:none;
        
    }

#menu-links.show{
    display: block;

}

/*end of mobile*/

.nav-list a, .dropbtn{

    color: #DDAAFF;
    text-decoration:none;
    border:none;
    font-weight: 600;
    background: none;
    cursor: pointer;
    font-size: 1rem;
}

.logo img {
    width: 130px;
    height: auto;
}

.iconCart{
    font-size: 1.2rem;
    cursor: pointer;
}

.dropdown-content{
    display: none;
    background-color: #fff;
    min-width:160px;
    border-radius: 6px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    padding: 8px 16px;
}

#cart-count{
    background-color: pink;
    position: absolute;
    bottom: 20px;
    left: 13px;
    color: #fff; padding: 5px;
    border-radius: 50%;
}

/* Dropdown Links*/
.dropdown-content li{
    padding:8px 16px;
    text-decoration:none;
}

.hide{
    display :none;
}
.dropdown.show .dropdown-content{
    display:block;
}

/*desktop styling*/
@media(min-width:900px){
    .nav-list li{
        position:relative;
    }
    #menu-links{
        width:auto;
        display:flex;
        flex-direction: row;
    }
    .dropdown-content li a{
        color:#333;
        text-decoration:none;
        display: block
    }
    .dropdown-content li:hover{
        background-color:#f0e6f9;
    }

    /*show dropdown on hover */
    .dropdown:hover .dropdown-content{
        display:block;
    }

    .dropdown-content{
        display:none;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }
    .dropdown.show .dropdown-content{
        display:block;
    }
    /* hide hamburger icons */
    #iconOpen,
    #iconClose{
        display: none;
    }

    /* always show menu */
    #menu-links{
        display: flex;
    }

}
/*end of nav*/

/*timer*/
#timer{
    width:100%;
    height:auto;
    color: #fff;
    background-color:#DDAAFF;
    text-align: center;
    margin:auto;
}

/*Footer*/
#footer{
    width:100%;
    height:auto;
    color: #fff;
    background-color:#DDAAFF;
    text-align: center;
    margin:auto;
    padding:20px;
}

#footer .email-signup form {
    width: 70%;
    justify-content: center;
    margin:5px auto;
    padding:10px;
}
#footer .email-signup input{
    padding:10px;
}
#footer .email-signup button{
    width:max-content
}

#footer ul{
    list-style: none;
}
.resources{
    display: flex;
    flex-direction: column;
    text-align: center;
    margin:10px auto;
    width:100%;
    height: auto;
}
.socials{
    width: 100%;
    height:auto;
    margin:auto;
}

.socials ul{
    display: flex;
    flex-direction: row;
    text-align: center;
    margin: auto;
    width:80%;
    height: auto;
}
#footer ul{
    padding-left:0;
}
.social-1 img{
    width:100%;
    height:auto;
    margin: 0%;
}


.social-1{
    margin:auto;
    min-width:60px;
    width:30%;
    height:auto;
}


@media(min-width:700px){


    .row{
        display: flex;
        direction: row;
    }
    .logo,.resources{
        width:30%;
    }
    .socials{
        width: 60%;
    }
}

/*end of footer*/