@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap');

*{
    box-sizing: border-box;
    font-size: small;
    /* padding: 1px; */
    /* margin: 1px; */
}

#container{
    display: flex;
    width: 95%;
    margin: auto;
    margin-top: 2px;
}

#left-sidebar ul>li{
    list-style-type: none;
    
}

#left-sidebar a{
    text-decoration: none;
}

#left-sidebar ul li ul{
    display: none;
}

#left-sidebar>a{
    font-weight: bolder;
    color:black;
}

#left-sidebar ul>li>a{
    color: black;
    cursor: pointer;
}

/* #left-sidebar ul{
    display: inline-block;
} */

#left-sidebar a:hover,
#left-sidebar ul li a:hover{
    border-bottom: 1px solid black;
}

#left-sidebar{
    /* border: 1px solid red; */
    width: 20%;
}

#products-div{
    /* border: 1px solid teal; */
    width: 65%;
    height: auto;
}

#right-sidebar{
    /* border: 1px solid blue; */
    width: 15%;
    height: 900px;
}

#designers a{
    /* display: block; */
    text-decoration: none;
}

#designers>a{
    font-weight: bolder;
    color:black;
    cursor: pointer;
}

#sort, #colors{
    /* text-align: center; */
    margin-left: 25px;
}

#sort li, #colors li{
    list-style-type: none;
    cursor: pointer;
    /* margin-bottom: -10px; */
}

#sort li a:hover, #colors li a:hover{
    border-bottom: 1px solid black;

}

#colors{
    /* text-align: center; */
    margin-top: 100px;
}

#products{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}
.image{
    height: 500px;
    padding: 40px 0px 0px 0px;
    overflow-y: hidden;
}

#products img{
    width: 100%;
    height: auto;
    align-items: center;
    border: 1px transparent;
    display: flex;
    flex-direction: column-reverse;
}

#products p{
    margin-bottom: -12px;
}
.content{
    height: auto;
}

/* NAVBAR */
#navbar {
    /* overflow: hidden; */
    position: fixed;
    display: flex;
    width: 100%;
    min-height: 55px;
    text-transform: uppercase;
    /* border: 1px solid red; */
    margin-top: -8px;
    justify-content: space-between;
    background-color: white;
    /* font-weight: bold; */
  }
  #navbar > #navbar-left,
  #navbar-rigth {
    display: flex;
    background-color: white;
    /* border: 1px solid black; */
  }
  #navbar > #navbar-left {
    /* border: 1px solid green; */
    width: 40%;
    min-height: 55px;
    justify-content: right;
    margin-right: 15%;
  }
  #navbar > #navbar-right {
    /* border: 1px solid black; */
    width: 40%;
    min-height: 55px;
    margin-left: 15%;
    background-color: white;
    /* justify-content: right; */
  }
  #navbar-left > .links > a {
    /* border: 1px solid red; */
    margin-left: 10px;
    font-size: 13px;
    text-decoration: none;
    color: black;
  }
  #navbar-left > .links > a:hover {
    text-decoration: underline;
  }
  #navbar-right > .links2 > a {
    /* border: 1px solid red; */
    margin-left: 10px;
    font-size: 13px;
    text-decoration: none;
    color: black;
    /* background-color: white; */
  }
  #navbar-right > .links2 > a:hover {
    text-decoration: underline;
  }
  #navbar > #icon {
    /* border: 1px solid blue; */
    width: 10%;
    min-height: 55px;
  }
  #navbar-left > .links {
    /* border: 1px solid green; */
    margin-top: 18px;
    cursor: pointer;
  }
  #navbar-right > .links2 {
    /* border: 1px solid green; */
    margin-top: 18px;
    cursor: pointer;
  }
  #navbar > #icon > img {
    height: 25px;
    margin-top: 15px;
  }
  .links2 > a:nth-child(4) > #item_count {
    /* border: 1px solid black; */
    display: inline;
  }
  
  .dropdown {
    display: inline;
    overflow: hidden;
    width: 50px;
    margin-left: 15px;
  }
  
  .dropdown .dropbtn {
    font-size: 13px;  
    border: none;
    outline: none;
    color: black;
    background-color: inherit;
    font-family: inherit;
    /* font-weight: bold; */
    margin-left: -7px;
  }
  
  .navbar a:hover, .dropdown:hover .dropbtn {
    cursor: pointer;
    text-decoration: underline;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    border: 1px solid rgb(192, 189, 189);
    margin-left: 10px;
    width: 25%;
    z-index: 1;
  }
  
  .dropdown-content > div > a{
    font-size: 12px;
  }
  .dropdown-content > input:nth-child(2){
    margin-left: 15px;
    width: 88%;
    height: 40px;
    position: relative;
  }
  .dropdown-content > input:nth-child(4){
    margin-left: 15px;
    margin-top: 15px;
  }
  .dropdown-content > span{
    font-size: 13px;
  }
  .dropdown-content > #search_btn > img{
    height: 30px;
    width: 30px;
    position: absolute;
    margin-top: -38px;
    margin-left: 280px;
  }
  ::placeholder {
    padding-left: 10px;
    font-weight: bold;
  }
  
  .dropdown-content a {
    float: left;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .dropdown-content a:hover {
    background-color: white;
    text-decoration: underline;
    cursor: pointer;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  } 

  /* FOOTER */

  #footer{
    display: block;
    /* border: 1px solid black; */
    margin-top: 50px;
    /* font-weight: bold; */
}
#footer > #top-footer{
    display: flex;
    justify-content: space-around;
    /* border: 1px solid black; */
}
#footer > #top-footer > .links > a{
    font-size: 13px;
    text-decoration: none;
    color: black;
    margin-left: 25px;
    /* border: 1px solid black;  */
}
#footer > #top-footer > .links > a:hover {
    text-decoration: underline;
}
#footer > #bottom-footer{
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
    /* border: 1px solid black; */
}
#footer > #bottom-footer > .links > a{
    font-size: 13px;
    text-decoration: none;
    color: black;
    margin-left: 25px;
    opacity: 70%;
    /* border: 1px solid black; */
}
#footer > #bottom-footer > .links > a:hover {
    text-decoration: underline;
}
#social-connect{
    /* border: 1px solid black; */
    margin-left: 25px;
}
#social-connect > a > img{
    height: 15px;
    width: 20px;
    cursor: pointer;
}
.links{
    display: flex;
}