*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
.navBar{
    display: flex;
    justify-content: space-between;
    align-items: center;

}
.logo{
    width: 70px;
}
.navBar ul{
    display: flex;
}
.navBar ul li{
    margin-right: 16px;
    list-style-type: none;
    font-size: 18px;
}




.container {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    grid-template-rows: 1fr; 
    gap: 20px 20px; 
    grid-template-areas: 
      ". ."; 
    margin: 25px;
   
  }

  /* product-container part */
  .card-container{
    display: flex;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(214, 214, 214, 0.349);
    border: 1px solid rgba(150, 150, 150, 0.562);
  }
  .card-container img{
    width: 150px;
    height: 150px;
    margin-right: 30px;
    object-fit: cover;

  }
  .product-detail-container{
    width: 70%;
    justify-content: space-between;
    margin-top: 20px;
 
  }

  .cp-container{
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    margin-top: 8px;
  
  }
  .ts-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    margin-top: 8px;
 
  }

  .tags-ul{
    display: flex;
  }
  .tags-ul li{
    list-style-type: none;
    background-color: black;
    color: white;
    border-radius: 20px;
    padding: 5px 10px;
    margin-left: 10px;
  }


  .footer-container{
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 150px;
    background-color: rgba(0, 255, 255, 0.747);

  }
  .footer-container .btn-container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    right: 0;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 850px;
  }

  .footer-container .btn-container a{
    padding: 10px 30px;
    background-color: rgb(32, 32, 32);
    border-radius: 10px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    margin-left: 20px;
  }

  .footer-container .btn-container a:hover{
    background-color: black;
    color: red;
  }

  .ts-container .color-container .color-img{
    width: 60px;
    height: 60px;
    object-fit: cover;
  }

  .ts-container .color-container{
    display: flex;
  }

  .links{
    width: 200px;
    height: 50px;
    display: flex;
  }



