/* Nieuwe producten sectie */
.producten-sectie {
  background: #f5f5f5;
  width: 100vw;
  padding: 64px 0 48px 0;
  margin: 0;
}
.producten-sectie .producten-titel {
  color: #111;
  font-size: 2.5em;
  font-weight: 900;
  text-align: center;
  margin-bottom: 38px;
  letter-spacing: 0.01em;
  font-family: 'Barlow', Arial, sans-serif;
  text-transform: uppercase;
}
.producten-slider-nieuw {
  width: 100vw;
  max-width: 1800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.producten-grid-nieuw {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5vw;
  width: 100%;
}
.product-card-nieuw {
  background: #fff;
  border: 1px solid transparent;
  width: min(22vw, 260px);
  min-width: 160px;
  aspect-ratio: 1/1.15;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: border 0.2s;
  cursor: pointer;
  margin-bottom: 0;
  text-decoration: none;
  box-shadow: none;
  border-radius: 4px;
}
.product-card-nieuw:hover {
  border: 1px solid #111;
}
.product-card-img-wrapper {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-img-wrapper img.product-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s;
}
.product-card-img-wrapper img.product-img-hover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  left: 0; top: 0;
  opacity: 0;
  transition: opacity 0.2s;
}
.product-card-nieuw:hover .product-card-img-wrapper img.product-img-hover {
  opacity: 1;
}
.product-card-nieuw:hover .product-card-img-wrapper::after {
  opacity: 0.10;
}
.product-card-img-wrapper::after {
  content: '';
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: #000;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.product-card-nieuw:hover .product-card-img-wrapper::after {
  opacity: 0.10;
}
.product-card-label {
  width: 100%;
 
  text-align: center;
  padding: 14px 0 4px 0;
  font-size: 1.1em;
  font-weight: 700;
  color: #111;
  border-top: 1px solid #eee;
  letter-spacing: 0.01em;
}
.product-card-sub {
  font-size: 0.9em;
  color: #888;
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 1200px) {
  .product-card-nieuw {
    width: min(28vw, 220px);
  }
}
@media (max-width: 900px) {
  .product-card-nieuw {
    width: min(40vw, 180px);
  }
}
@media (max-width: 600px) {
  .producten-sectie {
    padding: 32px 0 18px 0;
  }
  .producten-sectie .producten-titel {
    font-size: 1.3em;
    margin-bottom: 18px;
  }
  .product-card-nieuw {
    width: 90vw;
    min-width: 0;
  }
}
.producten-slider-controls-nieuw {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  margin-right: 20px;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
.producten-slider-arrow-nieuw {
  background: #fff;
  color: #111;
  border: 1px solid #111;
  font-size: 1.7em;
  font-weight: 900;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.2s, color 0.2s;
  box-shadow: none;
}
.producten-slider-arrow-nieuw:active,
.producten-slider-arrow-nieuw:focus {
  background: #111;
  color: #fff;
}


.producten-slider-arrow-nieuw img {
  max-width: 60%;
  max-height: 60%;
  display: block;
  margin: auto;
  pointer-events: none;
}