body {
  font-family: "Roboto", sans-serif;
  font-size: 17px; /* mobielvriendelijk */
  line-height: 1.6;
}
.text-block h1 {
  font-size: 28px;
}
.text-block h2 {
  font-size: 22px;
}

@media (max-width: 768px) {
  body {
    font-size: 18px;
  }
  .text-block h1 {
    font-size: 30px;
  }
  .text-block h2 {
    font-size: 24px;
  }
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
  padding: 1em;
  background: #f7f7f7;
}

nav a {
  text-decoration: none;
  color: #800;
  font-weight: bold;
}

.image-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
  padding: 1em;
}

.image-row {
  display: flex;
  justify-content: center;
  gap: 1em;
  overflow-x: auto;
  flex-wrap: nowrap;
}

.image-row a img {
  max-width: none;
  height: auto;
  display: block;
}

.text-block {
  max-width: 800px;
  margin: 2em auto;
  padding: 0 1em;
  text-align: center;
}

.koop-knop {
  display: inline-block;
  padding: 16px 32px;
  background: #d90000;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4em;
  border-radius: 6px;
  margin-top: 1em;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: background 0.2s ease;
}

.koop-knop:hover {
  background: #b00000;
}


.product-grid .item {
  text-align: center;
  border: 1px solid #ddd;
  padding: 1em;
  background: #fff;
}

.product-grid img {
  width: 100%;
  height: auto;
  display: block;
  min-width: 350px;
}

footer {
  background: #f0f0f0;
  text-align: center;
  padding: 2em 1em;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer li {
  display: inline-block;
  margin: 0 1em;
}

.product-price {
    font-size: 2em;
    color: #0a500a; /* donkergroen */
    font-weight: bold;
    margin: 10px 0;
}


@media (max-width: 768px) {
  .image-row {
    flex-direction: column;
    align-items: center;
  }
}


.testimonials {
  background-color: #fafafa;
  padding: 3em 1em;
  text-align: center;
}

.testimonials h2 {
  font-size: 24px;
  margin-bottom: 1em;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2em;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-item {
  background: #fff;
  border: 1px solid #ddd;
  padding: 1.5em;
  font-size: 16px;
  line-height: 1.5;
}


.product-grid {
  justify-items: center;
  display: grid;
  gap: 1em;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2em 1em;
  box-sizing: border-box;
  grid-template-columns: repeat(3, 1fr); /* default desktop */
}
/*********************************** iPads ******************************/
@media (min-width: 601px) and (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 601px) and (max-width: 1024px) {
  body,
  header,
  h1, h2, h3,
  .item {
    font-size: 1.5em;
  }
}

/************************** mobile ******************************/
@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 600px) {
  body,
  header,
  h1, h2, h3,
  .item,
  .categories a {
    font-size: 3em!important;
  }
}

/**************************single product wrapper ******************************/

.product-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2em 1em;
}

.product-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  align-items: flex-start;
  justify-content: center;
}

.product-image {
  flex: 1 1 400px;
  text-align: center;
}

.product-details {
  flex: 1 1 400px;
}

/* Responsive stacking op mobiel */
@media (max-width: 768px) {
  .product-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}