@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}


body
{
    overflow-x: hidden;
    max-width: 100%;
}
.container{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding: 0 20px;
  margin: 0 auto;
  max-width: 1044px;
}

/*Styles for product card*/

.product .product-card{
  z-index: 1;
  position: relative;
  width: 300px;
  height: 330px;
  border-radius: 10px;
}

/* .product
{
  width: 300px;
  height: 300px;
} */

.product .product-card:before{
  content: '';
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.product-information
{
  width: 100vw;
}

.product .product-card .product-img{
  z-index: 1;
  position: absolute;
 
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
}



.product .product-card .name{
  z-index: 2;
  color: #fff;
  position: absolute;
  width: 100%;
  bottom: 75px;
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.5px;
  padding-top: 250px;
}

.product .product-card .price{
  z-index: 2;
  color: #fff;
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 80px;
  font-size: 30px;
  font-weight: 300;
}


.product .product-card .popup-btn{
  z-index: 4;
  color: #fff;
  background: #555;
  position: absolute; 
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  padding: 10px 15px;
  border-radius: 20px;
  cursor: pointer;
}

/*Styles for popup view*/

.product .popup-view{
  z-index: 2;
  background: rgba(255, 255, 255, 0.5);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

.product .popup-view.active{
  opacity: 1;
  visibility: visible;
}

.product .popup-card{
  position: relative;
  display: flex;
  width: 800px;
  height: 500px;
  margin: 20px;
}

.product .popup-card .product-img{
  z-index: 2;
  background: #1D212B;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45%;
  height: 90%;
  transform: translateY(25px);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.product .popup-card .product-img img{
  z-index: 2;
  position: relative;
  width: 450px;
  left: -50px;
}

.product .popup-card .info{
  z-index: 2;
  background: #fff;
  display: flex;
  flex-direction: column;
  width: 55%;
  height: 100%;
  box-sizing: border-box;
  padding: 40px;
  border-radius: 10px;
  position: relative;
}

.product .popup-card .close-btn{
  color: #555;
  z-index: 3;
  position: absolute;
  right: 0;
  font-size: 20px;
  margin: 20px;
  cursor: pointer;
}

.product .popup-card .info h2{
  font-size: 40px;
  line-height: 20px;
  margin: 10px;
}

.product .popup-card .info h2 span{
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.product .popup-card .info p{
  font-size: 15px;
  margin: 10px;
}

.product .popup-card .info .price{
  font-size: 45px;
  font-weight: 300;
  margin: 10px;
}

.product .popup-card .info .add-cart-btn{
  color: #fff;
  background: #009DD2;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  margin: 10px auto;
  padding: 10px 50px;
  border-radius: 20px;
}

.product .popup-card .info .add-wish{
  color: #009DD2;
  font-size: 16px;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
}

/*Responsive styles*/

@media (max-width: 900px){
  .product .popup-card{
    flex-direction: column;
    width: 550px;
    height: auto;
  }

  .product .popup-card .product-img{
    z-index: 3;
    width: 100%;
    height: 200px;
    transform: translateY(0);
    border-bottom-left-radius: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  .product .popup-card .product-img img{
    left: initial;
    max-width: 100%;
  }

  .product .popup-card .info{
    width: 100%;
    height: auto;
    padding: 20px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .product .popup-card .info h2{
    margin: 20px 5px 5px 5px;
    font-size: 25px;
  }

  .product .popup-card .info h2 span{
    font-size: 10px;
  }

  .product .popup-card .info p{
    margin: 5px;
    font-size: 13px;
  }

  .product .popup-card .info .price{
    margin: 5px;
    font-size: 30px;
  }

  .product .popup-card .info .add-cart-btn{
    margin: 5px auto;
    padding: 5px 40px;
    font-size: 14px;
  }

  .product .popup-card .info .add-wish{
    font-size: 14px;
  }

  .product .popup-card .close-btn{
    z-index: 4;
  }
}
      


.container
{
    width: 50px;
}

.body_main
{
    margin-left: 0;
    margin-right: 0;
}

.h2
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: x-large;
    color: black;
}



.product-window
{
    margin-left: 5%;
    float: left;
    display: grid;
    width: 800px;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 1px;
    row-gap: 5px;
    grid-auto-rows: minmax(100px, auto);
}
.cat-item
{
  width: 250px;
}
.categories{
   float: left;
   width: 300px;
   height: 400px;
   position: relative;
}
.product-categories
{
  position: absolute;
  width:230px;
}
.product-footer
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: medium;
    text-align: center;
    border: 0.1px solid #d4cccc;
    width: 120px;
    height: 30px;
    margin-left: 25%;
}
.image-container
{
    margin-bottom: 10%;
    border: 1px solid#e5e5e5;
}
.product-overview
{
    height: 300px;
    width: 250px;
    height: 320px;
}

.grid-container {
    display: grid;
    column-gap: 2px;
    row-gap: 4px;
}

.display-product
{
    height: 400px;
    width: 100%;
    margin-left: 200px;
    margin-top: 40px;
}
.display-product-overview
{
    height: 100px;
    margin-left: 300px;
    margin-top: 200px;
}

#display-prod:hover
{
    text-decoration: none;
    color: white;
    background:black;
}

.product-name
{
    width: 100%;
    background-color: #2cc1d2;
    height: 50px; 
    font-family: Arial, Helvetica, sans-serif; 
    color: white;
    font-size: x-large; 
    padding-left: 200px; 
    padding-top: 25px; 
    height: 80px;
}

.quick-view
{
    background-color: black;
    color: white;
    width: 225.6px;
    z-index: 4;
    height: 40px;
    margin-bottom: 50px;
}

.product-list
{
  text-decoration: none;
}

.product-list.current-product
{
  color: #2cc1d2;
}


/* #preview{
	margin-top: 10px;
	border:1px solid black;
	width:350px;
	height:500px;
	background-repeat: no-repeat;
	margin-left: auto;
	margin-right: auto;
}
#samples{
	text-align: center;
}
#samples img {	
	margin: 10px;
	display: block;
	 border: 2px solid #6A6462;
}
#samples img:hover {
	 cursor: zoom-in;
	 border: 0;
	 -moz-box-shadow:2px 2px 7px 2px rgba(130,130,130,1),-1px -1px 7px 2px rgba(130,130,130,1);
	-webkit-box-shadow: 2px 2px 7px 2px rgba(130,130,130,.7),-1px -1px 7px 2px rgba(130,130,130,1);
	box-shadow: 2px 2px 7px 2px rgba(130,130,130,.7),-2px -2px 7px 2px rgba(130,130,130,1);
}
@media screen and (max-width: 767px){
	#samples img {
		display: inline-block;
	}
} */




.lens {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0;
  left: 0;
  cursor: crosshair;
  background-color: rgba(255, 255, 255, 0.6);
}


.result{
    position: absolute;
    left: calc(100% + 50px);
    top: 30px;
    width: 180px;
    height: 180px;
    background-repeat: no-repeat;
    border: 2px solid #e5e5e5;
    align-items: center;
}


.image-box {
  width: 400px;
  position: relative;
  margin-left: 100px; 
  margin-top: 100px; 
}

.image
{
    align-items: center;
    border:4px solid #e5e5e5;
}

.products-points
{
   font-family: arial;
   font-size: medium;
}

.products-points::marker
{
  color: blue;
}
      