*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:-apple-system,BlinkMacSystemFont,sans-serif;
  background:#ffffff;
  color:#111;
}

header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:25px 10%;
  position:sticky;
  top:0;
  background:white;
  border-bottom:1px solid #eee;
  z-index:1000;
}

.logo{
  font-size:1.5rem;
  font-weight:700;
}

nav a{
  margin-left:25px;
  text-decoration:none;
  color:#111;
  transition:0.3s;
}

nav a:hover{
  color:#0071e3;
}

.hero{
  min-height:70vh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:40px;
}

.hero h1{
  font-size:4rem;
  max-width:900px;
  margin:auto;
  line-height:1.1;
}

.hero p{
  margin-top:20px;
  font-size:1.2rem;
  color:#666;
}

.products{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:40px;
  padding:80px 10%;
}

.product{
  background:#f7f7f7;
  border-radius:30px;
  overflow:hidden;
  padding-bottom:30px;
  transition:0.3s;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.product:hover{
  transform:translateY(-5px);
}

.product img{
  width:100%;
  height:320px;
  object-fit:cover;
}

.product h2{
  padding:20px;
  font-size:1.5rem;
}

.product p{
  padding:0 20px;
  color:#666;
  line-height:1.6;
}

.price{
  padding:20px;
  font-size:1.4rem;
  font-weight:bold;
}

/* STRIPE KOOPKNOP */
.buy-btn{
  display:inline-block;
  margin-left:20px;
  margin-top:10px;
  padding:14px 24px;
  border-radius:999px;
  background:#0071e3;
  color:white;
  text-decoration:none;
  font-size:1rem;
  font-weight:600;
  transition:0.3s;
}

.buy-btn:hover{
  background:#005bb5;
  transform:scale(1.03);
}

footer{
  padding:40px;
  text-align:center;
  color:#666;
}

/* MOBIEL */
@media(max-width:768px){

  .hero h1{
    font-size:2.5rem;
  }

  header{
    flex-direction:column;
    gap:15px;
  }

  nav a{
    margin:0 10px;
  }

  .products{
    padding:50px 20px;
  }

}
