@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

body{
    background-color: #c2c2c2;
}

.vbnamediv{
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 400px;
  flex-direction: column;
}
.vbname{
  position: relative;
 width: 40%;
 height: auto;
 margin-top: 30px;
 margin-left: 30%;
}

.shiny-dark{
  position: relative;
  color: rgb(255, 242, 181);
  font-family: 'Open Sans';
  background-image: linear-gradient(rgb(255,255,255)
  45%,
  rgb(170,170,170) 60%,
  rgb(192,192,192) 74%);
  text-align: center;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 65px;
}

.container{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  background-color: #222;
  justify-content: center;
  align-items: center;
  width: 100%;
  
}

/*Styles for product card*/

.product .product-card{
  z-index: 1;
  background: black;
  position: relative;
  width: 300px;
  height: 400px;
  margin: 40px;
  border-radius: 10px;
}

.product .product-card:before{
  content: '';
  background: black;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.product .product-card .product-img{
  z-index: 1;
  position: absolute;
  max-width: 300px;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.product .product-card .name{
  z-index: 2;
  color: #fff;
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 130px;
  font-size: 30px;
  letter-spacing: 1px;
}

.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: 2;
  color: #fff;
  background: #555;
  position: absolute;
  bottom: 30px;
  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: 110px 20px 20px 20px;
}

.product .popup-card .product-img{
  z-index: 2;
  background: #111111;
  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: 390px;
  /* left: -50px; */
}

.product .popup-card .info{
  z-index: 2;
  background: #fff;
  display: flex;
  flex-direction: column;
  width: 55%;
  height: 100%;
  box-sizing: border-box;
  border-radius: 10px;
}

.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  screen and (min-width: 1800px) {

  .product .popup-card {
    position: relative;
    display: flex;
    width: 1000px;
    height: 700px;
    margin: 110px 20px 20px 20px;
}

.product .product-card {
  z-index: 1;
  background: black;
  position: relative;
  width: 400px;
  height: 500px;
  margin: 40px;
  border-radius: 10px;
}

.product .popup-card .info p {
  font-size: 22px;
  margin: 10px;
}

.product .product-card .popup-btn {
  bottom: 40px;
  font-size: 18px;
}
  
}

@media (min-width: 2000px){


  .product .product-card{
    z-index: 1;
    background: black;
    position: relative;
    width: 500px;
    height: 600px;
    margin: 40px;
    border-radius: 10px;
  }

  .product .product-card .product-img {
    z-index: 1;
    position: absolute;
    max-width: 480px;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.product .product-card .name {
  font-size: 45px;
 
}
}
 
@media  screen and (min-width: 2200px) {

  .product .popup-card {
    position: relative;
    display: flex;
    width: 1200px;
    height: 900px;
    margin: 110px 20px 20px 20px;
}

.product .popup-card .info p {
  font-size: 29px;
  margin: 10px;
}

.product .popup-card .product-img img {
  z-index: 2;
  position: relative;
  width: 500px;
  /* left: -50px; */
}

.product .popup-card .close-btn {
  font-size: 30px;

}


}

@media screen and (min-width: 2300px) {

  .product .product-card{
    z-index: 1;
    background: black;
    position: relative;
    width: 600px;
    height: 700px;
    margin: 40px;
    border-radius: 10px;
  }

  .product .product-card .popup-btn {
    bottom: 40px;
    font-size: 22px;
  }
  
}


@media screen and (min-width: 2719px) {

  .product .product-card{
    z-index: 1;
    background: black;
    position: relative;
    width: 700px;
    height: 800px;
    margin: 40px;
    border-radius: 10px;
  }

  .product .product-card .popup-btn {
    bottom: 40px;
    font-size: 27px;
  }

  .product .popup-card {
    position: relative;
    display: flex;
    width: 1400px;
    height: 1000px;
    margin: 110px 20px 20px 20px;
}

.product .popup-card .info p {
  font-size: 35px;
  margin: 10px;
}

.product .popup-card .product-img img {
  z-index: 2;
  position: relative;
  width: 600px;
  /* left: -50px; */
}
.product .popup-card .info h2 {
  font-size: 50px;
  line-height: 20px;
  margin: 10px;
}
  
}




@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;
    padding-top: 30px;
  }

  .product .popup-card .product-img img{
    left: initial;
    max-width: 100%;
  }

  .product .popup-card .info{
    width: 100%;
    height: auto;
    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;
  }
}
     

.metalen {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 21px;
  color: #ffffff;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.blad_kleuren {
  position: relative;
  width: 55px;
  height: 55px;
  border-radius: 11px;
  margin: 7px 7px;
  border: 0.3px solid #0c0c0c77;
}