/* Studio Zaya prijzenpagina - consistent met bestaande huisstijl */
.price-page,
.price-page *{
  box-sizing:border-box;
}

.price-page{
  padding:150px 0 80px;
  min-height:100vh;
  background:transparent;
  overflow:hidden;
}

.price-head{
  width:min(860px,92%);
  margin:0 auto 54px;
  text-align:center;
}

.price-head .mini{
  font-size:12px;
  letter-spacing:4px;
  text-transform:uppercase;
  color:var(--taupe);
  margin-bottom:18px;
}

.price-head h1{
  font-family:Georgia,'Times New Roman',serif;
  font-size:clamp(48px,6vw,92px);
  line-height:.95;
  letter-spacing:-3px;
  font-weight:400;
  color:var(--dark);
  margin:0;
}

.price-list-wrap{
  width:min(1180px,92%);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
  align-items:stretch;
}

.price-list-card{
  background:rgba(255,255,255,.66);
  border:1px solid var(--line);
  border-radius:36px;
  box-shadow:0 20px 60px rgba(80,62,50,.08);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height:0;
  transition:transform .45s ease, box-shadow .45s ease, border-color .45s ease;
}

.price-list-card:hover{
  transform:translateY(-10px);
  box-shadow:var(--shadow);
  border-color:rgba(156,130,112,.25);
}

.price-list-top{
  padding:24px 24px 0;
}

.price-list-top img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:28px;
  box-shadow:0 18px 55px rgba(80,62,50,.10);
}

.price-list-top h2{
  font-family:Georgia,'Times New Roman',serif;
  font-size:clamp(32px,3vw,44px);
  line-height:1;
  letter-spacing:-1.4px;
  font-weight:400;
  color:var(--dark);
  margin:28px 0 0;
}

.price-list-content{
  padding:22px 32px 32px;
  display:flex;
  flex-direction:column;
  flex:1;
}

.price-list-content > ul,
.upgrade-block ul{
  list-style:none;
  margin:0;
  padding:0;
}

.price-list-content > ul{
  padding-bottom:24px;
  border-bottom:1px solid var(--line);
}

.price-list-content li{
  position:relative;
  padding-left:20px;
  margin:0 0 11px;
  font-size:15px;
  line-height:1.65;
  color:var(--text);
}

.price-list-content li:before{
  content:"";
  position:absolute;
  left:0;
  top:.82em;
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--champ);
  box-shadow:0 0 0 4px rgba(214,191,173,.16);
}

.upgrade-block{
  margin-top:24px;
  padding-bottom:24px;
  border-bottom:1px solid var(--line);
}

.upgrade-block strong{
  display:block;
  margin:0 0 14px;
  font-size:11px;
  letter-spacing:3px;
  text-transform:uppercase;
  font-weight:600;
  color:var(--taupe);
}

.upgrade-block li{
  font-size:14px;
  margin-bottom:9px;
}

.price-button{
  margin-top:auto;
  padding-top:24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  color:var(--dark);
  text-decoration:none;
}

.price-button .icon{
  display:none;
}

.price-button strong{
  display:block;
  font-family:Georgia,'Times New Roman',serif;
  font-size:42px;
  line-height:1;
  font-weight:400;
  color:var(--dark);
}

.price-button:after{
  content:"Boek shoot";
  min-height:50px;
  padding:0 22px;
  border-radius:999px;
  background:var(--dark);
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-transform:uppercase;
  letter-spacing:1.4px;
  font-size:12px;
  border:1px solid rgba(255,255,255,.22);
  box-shadow:0 18px 42px rgba(47,41,37,.14);
  white-space:nowrap;
  transition:.35s;
}

.price-button:hover:after{
  background:var(--champ);
  color:var(--dark);
  transform:translateY(-3px);
}

@media(max-width:1050px){
  .price-list-wrap{
    grid-template-columns:1fr;
    max-width:620px;
    gap:24px;
  }
  .price-list-top img{
    height:320px;
  }
}

@media(max-width:560px){
  .price-page{
    padding:125px 0 56px;
  }
  .price-head{
    margin-bottom:34px;
  }
  .price-head h1{
    letter-spacing:-2px;
  }
  .price-list-wrap{
    width:92%;
    gap:18px;
  }
  .price-list-card{
    border-radius:30px;
  }
  .price-list-top{
    padding:18px 18px 0;
  }
  .price-list-top img{
    height:245px;
    border-radius:24px;
  }
  .price-list-top h2{
    margin-top:22px;
  }
  .price-list-content{
    padding:20px 22px 24px;
  }
  .price-list-content li{
    font-size:14px;
  }
  .price-button{
    display:grid;
    grid-template-columns:1fr;
    gap:16px;
    align-items:start;
  }
  .price-button strong{
    font-size:40px;
  }
  .price-button:after{
    width:100%;
  }
}
