.simply-scroll { 
	width: 100%;
}
.simply-scroll-container { 
	position: relative;
}
.simply-scroll-clip { 
	position: relative;
	overflow: hidden;
	z-index: 2;
    border-radius: 20px; /* Ronde hoeken voor de clip-container */
}
.simply-scroll .simply-scroll-clip {
	width: 100%;
}
.simply-scroll .simply-scroll-list > li {
  width: 300px;
  display: block;
  position: relative;
  float: left;
  padding: 0;
  margin: 0 15px;
  list-style: none;
  border-radius: 20px;
  overflow: hidden;
  background: #f6f6f7; /* lichte grijs-tint */
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.simply-scroll .simply-scroll-list > li:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

/* Afbeeldingen */
ul#slideshow7 li img {
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  object-fit: cover;
}

/* Informatieblok onder de foto */
#slideshow7 .item-information {
  background: linear-gradient(180deg, #eeeeee 0%, #dcdcdc 100%);
  color: #222;
  padding: 18px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  text-align: center;
}

#slideshow7 .item-information .titel { 
  color:#333; 
  font-weight:800; 
  font-size:20px; 
  margin:0 0 8px; 
}

/* Titel / merknaam */
#slideshow7 .item-information h5 {
  font-weight: 800;
  font-size: 20px;
  color: #333;
  text-transform: capitalize;
  margin-bottom: 8px;
}

/* Specificatielijst */
#slideshow7 ul.list-specificaties {
  font-size: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #444;
}
#slideshow7 ul.list-specificaties li {
  margin: 2px 0;
}

/* Prijslabel – zachter oranje met subtiele schaduw */
#slideshow7 h3 {
  font-weight: 900 !important;
  font-size: 18px;
  color: #2e7d32;
}
#slideshow7 h4.prijs {
  font-size: 18px;
  font-weight: 800;
  float: right;
  padding: 5px 10px;
  background: linear-gradient(135deg, #5c5c5c, #c7c6c4);
  color: #222;
  border-radius: 8px;
  margin: -18px 0 0 0;
  display: inline-block;
  box-shadow: 0 2px 6px rgba(255,152,0,0.3);
}
#slideshow7 li:hover h4.prijs {
  filter: brightness(1.05);
}