/* Algemene opmaak */
body {
  background-color: white;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
}

header {
  text-align: center;
  padding: 20px;
}

h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

hr {
  width: 80%;
  margin: 0 auto 20px auto;
  border: none;
  border-top: 2px solid #444;
}

.nav-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.button {
  font-size: 18px;
  padding: 10px 20px;
  background-color: white;
  color: black;
  border-radius: 25px;
  border: 2px solid black;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button:hover {
  background-color: black;
  color: white;
}

/* Product weergave */
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px 40px 20px;
}

.product {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #f3f3f3;
  padding: 20px;
  margin: 15px 0;
  width: 90%;
  max-width: 800px;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.product img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #fff;
}

.description {
  flex: 1;
}

.description h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.description p {
  font-size: 18px;
  margin: 4px 0;
}

.prijs-aanbieding {
  color: red;
  font-weight: bold;
}

@media (max-width: 600px) {
  .product {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .product img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }

  .description {
    width: 100%;
  }
}