* {
    
    padding: 0;
    box-sizing: border-box;
    font-family: 'K2D', sans-serif;
}
body {
     margin: 0;
   background-color: black;
}
.nav{
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-around;
    width: 100%;
    height: 100px;
    line-height: 100px;
    background: linear-gradient(rgba(88, 70, 70, 0.6), transparent);
    z-index: 100;
}
.nav-logo img{
    margin-top: 10px;
    color: white;
    width: auto;
    height: 80px;
}
.nav-menu ul{
    display: flex;
}
.nav-menu ul li,
.popup li{
  list-style-type: none;
}
.popup{
  border-radius: 20px;
}

.user-btn{
  display: flex;
  height: 50px;
  width: 50px;
  margin-top: 30px;
  position: relative;
  }
  .popup {
    position: absolute;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    display: none; /* Hide by default */
}

/* Style for the pop-up content */
.popup-content {
    color: #333;
}

/* Style for showing the pop-up when hovering */
.user-btn:hover + #popup {
    display: block;
}
.popup li a{
  text-decoration: none;
  font-weight: 500;
  color: black;
  padding: 3px;
}
.nav-menu li .link{
    text-decoration: none;
    font-weight: 500;
    color: #fff;
    padding-bottom: 15px;
    margin: 0 25px;
}
.link:hover, .act{
    border-bottom: 2px solid #fff;
}
.nav-button .btn{
    width: 130px;
    height: 40px;
    font-weight: 500;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: .3s ease;
}
ul li a{
  display: block;
    margin: 0;
    text-decoration: none;
    text-align: left;
    font-size: 20px;
    color: red;
  list-style-type: none;
}
ul li ul.dropdown{
  background: rgba(0, 0, 0 0.6);
  position: absolute;
  z-index: 999;
  display: none;
}
.user-btn{
  display: flex;
  height: 50px;
  width: 50px;
  margin-top: 30px;

}
.cart-page {
    margin: 80px auto;
}
.small-cointainer {
    max-width: 1080px;
    margin-top:10%;
  
    padding: 25px;
    background: linear-gradient(rgba(88, 70, 70, 0.6), transparent);
}
table {
    display: table;
    border-collapse: separate;
    box-sizing: border-box;
    text-indent: initial;
    border-spacing: 2px;
    border-color: gray;
    width: 100%;
    border-collapse: collapse;
}
tbody {
    display: table-row-group;
    vertical-align: middle;
    border-color: inherit;
    color: white;
}
tr {
    display: table-row;
    vertical-align: inherit;
    border-color: inherit;
}
.total-price table {
  border-top: 3px solid white;
  width: 100%;
  max-width: 400px;
}
.total-price {
    display: flex;
    justify-content: flex-end;
}
.btn:hover {
    background: #4a2f2f;
}

.btn {
    display: inline-block;
    background: #4a4646;
    color: #fff;
    padding: 8px 30px;
    margin: 30px 0;
    border-radius: 30px;
    transition-duration: 0.5s;}
    .cart-info {
        display: flex;
        flex-wrap: wrap;
    }
    td img {
        width: 80px;
        height: 80px;
        margin-right: 10px;
        object-fit: cover;
    }
    td input {
        width: 40px;
        height: 30px;
        padding: 5px;
    }
    td {
        padding: 10px 5px;
    }
    th {
        text-align: left;
        padding: 5px;
        color: white;
        background: black;
        font-weight: normal;
    }
    td a {
        color: white;
        font-size: 12px;
    }
    a{
        text-decoration: none;
    }
    
footer{
    position:relative;
    bottom: 1;
    left: 0;
    right: 0;
    background: #111;
    height: auto;
    width: 100vw;
    font-family: "Open Sans";
    padding-top: 40px;
    color: #fff;
  }
  .footer-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  .footer-content h3{
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 3rem;
  }
  .footer-content p{
    max-width: 500px;
    margin: 10px auto;
    line-height: 28px;
    font-size: 14px;
  }
  .socials{
    list-style: none;
    display: flex;
    padding-left: 0;
    
    margin: 1rem 0 3rem 0;
  }
  .socials li{
    margin: 0 10px;
  }
  .socials a{
    text-decoration: none;
    color: #fff;
  }
  .socials a i{
    font-size: 1.1rem;
    transition: color .4s ease;
  
  }
  .socials a:hover i{
    color: aqua;
  }
  
  .footer-bottom{
    background: #000;
    width: 100vw;
    padding: 20px 0;
    text-align: center;
  }
  .footer-bottom p{
    font-size: 14px;
    word-spacing: 2px;
    text-transform: capitalize;
  }
  .footer-bottom span{
    text-transform: uppercase;
    opacity: .4;
    font-weight: 200;
  }