/** Shopify CDN: Minification failed

Line 16:7 Expected ":"

**/
/* Section header */
.coll-pop { padding: 80px 80px; position: relative; overflow: hidden; }
.coll-pop__head { text-align: center; margin-bottom: 60px; }

.coll-pop__title {
  margin: 0 0 8px;
  color:#5E6B62;
  font-size: clamp(32px,6vw,55px);
  font-weight:400;
  font-family: "montserrat";
  serif; line-height: 1.05;
}

.coll-pop__sub { margin: 0; color:#929BA6; font-size:14px; line-height:20px; font-weight:500; font-family:"Montserrat", sans-serif; }
.coll-pop__empty { text-align:center; color:#929BA6; }

/* Grid */
.coll-pop__grid { display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 30px; }



/* Card */
.coll-pop__card { display:flex; flex-direction:column; gap:16px; }
.coll-pop__thumb { width:100%; }
.coll-pop__img,
.coll-pop__img.placeholder {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 297.5 / 397;
    object-fit: cover;
    background: #f6f6f6;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
    overflow: hidden;
}

.coll-pop__body { display:flex; flex-direction:column; align-items:center; gap:24px; }

/* Card container fills equal height */
.coll-pop__card { display:flex; flex-direction:column; height:100%; }

/* Body as 4-row grid: title / price / desc (flex) */
.coll-pop__body {
  display:grid;
  grid-template-rows: auto auto 1fr; /* title, price, desc takes remaining space */
  align-items:start;
  gap: 0;
  height:100%;
}
.coll-pop__card-title a {
  color:#5E6B62;
  text-decoration: none;
}
/* Title one line (overflow hidden) for same height */
.coll-pop__card-title{
  margin:0;
  text-align:left;
  color:#5E6B62;
  font-size:24px;
  font-weight:600;
  font-family:"Montserrat",sans-serif;
  display:-webkit-box;      /* 1 line only */
  -webkit-box-orient: vertical;
  overflow:hidden;
}

/* Price same line-height everywhere */
.coll-pop__price{
  margin:0;
  text-align:left;
  color:#9CA685;
  font-size:16px;
  line-height:20px;
  font-weight:500;
  min-height:20px;                /* lock height */
}

/* Description takes leftover space; clamp to equal lines */
.coll-pop__desc{
  width:100%;
  padding-right:16px;
  color:#929BA6;
  font-size:14px;
  line-height:20px;
  font-weight:500;
  display:flex;                   /* so <p> stretches */
}
.coll-pop__desc p{
  margin:0;
  margin-top: 10px;
  display:-webkit-box;
  -webkit-line-clamp: 9;          /* ~9 lines -> equal height columns */
  -webkit-box-orient: vertical;
  overflow:hidden;
}



@media only screen and (min-width: 1200px) {
    
}


@media only screen and (max-width: 1199px) and (min-width: 768px) {
    
      .coll-pop {
    padding: 20px 20px;
    margin-top: 30px;
  }

  .render-btn-booking>.booking-btn{
    font-size:12px;
  }

}


@media only screen and (max-width: 767px) and (min-width: 481px) {
    
    .coll-pop {
    padding: 0;
    margin-top: 30px;
  }

  .coll-pop__title{
    font-size: 40px;
  }

  

  .coll-pop__head{
    margin-bottom: 10px;
  }


  .coll-pop__card{
    padding-right: 10px;
    padding-left: 10px;
  }

  .coll-pop__img, .coll-pop__img.placeholder{
    margin-top: 15px;
  }

  .coll-pop__card-title{
    font-size: 20px;
  }

    .orch-card__btns{
    display: block;
  }
  
  .voucher-cta-row{
    margin-bottom: 10px;
  }

}


@media only screen and (max-width: 480px) {


    .coll-pop {
    padding: 0;
    margin-top: 30px;
  }

  .coll-pop__title{
    font-size: 25px;
  }

  

  .coll-pop__head{
    margin-bottom: 10px;
  }


  .coll-pop__card{
    padding-right: 10px;
    padding-left: 10px;
  }

  .coll-pop__img, .coll-pop__img.placeholder{
    margin-top: 15px;
  }

  .coll-pop__card-title{
    font-size: 20px;
  }

  .orch-card__btns{
    display: block;
  }
  
  .voucher-cta-row{
    margin-bottom: 10px;
  }

}


@media only screen and (max-width: 320px) {


  .coll-pop {
    padding: 0;
    margin-top: 30px;
  }

  .coll-pop__title{
    font-size: 25px;
  }

  

  .coll-pop__head{
    margin-bottom: 10px;
  }


  .coll-pop__card{
    padding-right: 10px;
    padding-left: 10px;
  }

  .coll-pop__img, .coll-pop__img.placeholder{
    margin-top: 15px;
  }

  .coll-pop__card-title{
    font-size: 20px;
  }



}


@media (max-width:900px){  .coll-pop__grid{ grid-template-columns: repeat(2,1fr);} }
@media (max-width:640px){  .coll-pop__grid{ grid-template-columns: 1fr;} }

