:root{
  --grsb-font:'Manrope',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Arial,sans-serif;
  --grsb-accent:#04acbf;
  --grsb-accent-dark:#0396a7;
  --grsb-text:#172033;
  --grsb-muted:#717b8c;
  --grsb-border:rgba(23,32,51,.10);
  --grsb-border-strong:rgba(23,32,51,.14);
  --grsb-bg:rgba(255,255,255,.96);
  --grsb-shadow:0 18px 44px rgba(9,21,38,.12);
  --grsb-shadow-soft:0 10px 28px rgba(9,21,38,.08);
  --grsb-radius-desktop:999px;
  --grsb-radius-mobile:28px;
}

.grsb-wrap,
#grsb-portal-root,
#grsb-portal-root *{
  font-family:var(--grsb-font);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

.grsb-wrap{
  position:relative;
  width:min(100%,1120px);
  margin-inline:auto;
}

.grsb-bar,
.grsb-mobile-actions{
  width:100%;
  max-width:100%;
  box-sizing:border-box;
}

.grsb-bar{
  position:relative;
  display:flex;
  align-items:stretch;
  margin:0 auto;
  padding-right:90px;
  border:1px solid rgba(255,255,255,.52);
  border-radius:var(--grsb-radius-desktop);
  background:var(--grsb-bg);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  box-shadow:var(--grsb-shadow);
  overflow:visible;
  transition:transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.grsb-bar:hover{
  box-shadow:0 22px 52px rgba(9,21,38,.14);
}

.grsb-field{
  appearance:none;
  -webkit-appearance:none;
  border:0;
  background:transparent;
  color:inherit;
  flex:1 1 0;
  min-width:0;
  padding:18px 22px;
  display:grid;
  grid-template-columns:24px minmax(0,1fr);
  grid-template-rows:auto auto;
  column-gap:14px;
  row-gap:4px;
  align-items:center;
  text-align:left;
  cursor:pointer;
  border-radius:999px;
  transition:background-color .16s ease, transform .16s ease;
}

.grsb-field:hover,
.grsb-field.is-active{
  background:rgba(4,172,191,.08);
}

.grsb-field:focus,
.grsb-searchbtn:focus,
.grsb-searchbtn-full:focus,
.grsb-btn:focus,
.grsb-stepper button:focus{
  outline:none;
}

.grsb-field:focus-visible,
.grsb-searchbtn:focus-visible,
.grsb-searchbtn-full:focus-visible,
.grsb-btn:focus-visible,
.grsb-stepper button:focus-visible,
.grsb-dest__item:focus-visible{
  box-shadow:0 0 0 3px rgba(4,172,191,.20);
}

.grsb-field::before{
  content:'';
  grid-column:1;
  grid-row:1 / span 2;
  width:24px;
  height:24px;
  background-repeat:no-repeat;
  background-position:center;
  background-size:24px 24px;
  align-self:center;
}

.grsb-field[data-grsb-open="destination"]::before{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2304acbf' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s7-4.35 7-11a7 7 0 1 0-14 0c0 6.65 7 11 7 11Z'/%3E%3Ccircle cx='12' cy='11' r='2.5'/%3E%3C/svg%3E");
}

.grsb-field[data-grsb-open="dates"]::before{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2304acbf' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 3v3M16 3v3M4 9h16'/%3E%3Crect x='4' y='5' width='16' height='16' rx='3'/%3E%3Cpath d='M8 13h.01M12 13h.01M16 13h.01M8 17h.01M12 17h.01'/%3E%3C/svg%3E");
}

.grsb-field[data-grsb-open="guests"]::before{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2304acbf' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
}

.grsb-field__label{
  grid-column:2;
  grid-row:1;
  min-width:0;
  margin:0;
  font-size:13px;
  line-height:1.1;
  letter-spacing:.01em;
  font-weight:600;
  color:var(--grsb-text);
}

.grsb-field__value{
  grid-column:2;
  grid-row:2;
  min-width:0;
  margin:0;
  font-size:18px;
  line-height:1.2;
  font-weight:500;
  color:var(--grsb-muted);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.grsb-divider{
  flex:0 0 1px;
  margin:16px 0;
  background:linear-gradient(to bottom, transparent 0%, rgba(23,32,51,.10) 18%, rgba(23,32,51,.10) 82%, transparent 100%);
}

.grsb-searchbtn{
  position:absolute;
  top:50%;
  right:16px;
  transform:translateY(-50%);
  width:58px;
  height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 !important;
  border:0 !important;
  border-radius:999px;
  background:linear-gradient(180deg, var(--grsb-accent) 0%, var(--grsb-accent-dark) 100%) !important;
  box-shadow:0 14px 28px rgba(4,172,191,.30) !important;
  cursor:pointer;
  z-index:3;
  transition:transform .16s ease, filter .16s ease, box-shadow .16s ease;
}

.grsb-searchbtn:hover{
  transform:translateY(-50%) scale(1.03);
  filter:brightness(1.03);
  box-shadow:0 16px 34px rgba(4,172,191,.34) !important;
}

.grsb-searchbtn:active{
  transform:translateY(-50%) scale(.98);
}

.grsb-searchbtn__svg{
  width:24px;
  height:24px;
  fill:#fff;
  display:block;
}

.grsb-mobile-actions{display:none;}
.grsb-searchbtn-full{display:none;}

/* Portal */
#grsb-portal-root{
  position:fixed;
  inset:0;
  z-index:999999;
  pointer-events:none;
}

.grsb-portal__overlay{
  position:absolute;
  inset:0;
  background:rgba(8,18,34,.08);
  pointer-events:auto;
}

.grsb-portal__panel{
  position:absolute;
  width:min(420px, calc(100vw - 24px));
  min-width:340px;
  max-width:calc(100vw - 24px);
  padding:20px;
  border:1px solid rgba(255,255,255,.65);
  border-radius:22px;
  background:rgba(255,255,255,.98);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  box-shadow:0 22px 46px rgba(9,21,38,.18);
  pointer-events:auto;
  box-sizing:border-box;
}

.grsb-portal__panel--dates{
  width:min(720px, calc(100vw - 24px));
  min-width:680px;
}

.grsb-pop__title{
  margin:0 0 16px;
  font-size:20px;
  line-height:1.15;
  font-weight:700;
  color:var(--grsb-text);
}

.grsb-dest__list{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.grsb-dest__item{
  display:flex;
  align-items:center;
  gap:14px;
  padding:12px 14px;
  border:1px solid transparent;
  border-radius:16px;
  cursor:pointer;
  transition:background-color .16s ease, border-color .16s ease, transform .16s ease;
}

.grsb-dest__item:hover{
  background:rgba(4,172,191,.06);
  border-color:rgba(4,172,191,.14);
}

.grsb-pin{
  width:20px;
  height:20px;
  flex:0 0 20px;
  position:relative;
}

.grsb-pin::before{
  content:'';
  position:absolute;
  inset:1px 3px 5px;
  border:2px solid var(--grsb-accent);
  border-radius:999px;
}

.grsb-pin::after{
  content:'';
  position:absolute;
  left:9px;
  bottom:0;
  width:2px;
  height:7px;
  border-radius:999px;
  background:var(--grsb-accent);
}

.grsb-dest__name,
.grsb-empty,
.grsb-guest__label,
.grsb-stepper__val{
  color:var(--grsb-text);
}

.grsb-dest__name{
  font-size:16px;
  line-height:1.25;
  font-weight:600;
}

.grsb-empty{
  font-size:15px;
  color:var(--grsb-muted);
}

.grsb-guest__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 0;
  border-top:1px solid rgba(23,32,51,.08);
}

.grsb-guest__row:first-of-type{
  border-top:0;
  padding-top:6px;
}

.grsb-guest__label{
  font-size:16px;
  line-height:1.25;
  font-weight:600;
}

.grsb-stepper{
  display:flex;
  align-items:center;
  gap:14px;
}

.grsb-stepper button{
  appearance:none;
  -webkit-appearance:none;
  width:42px;
  height:42px;
  padding:0;
  margin:0;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border:1.5px solid rgba(23,32,51,.16);
  background:#fff;
  color:var(--grsb-text) !important;
  -webkit-text-fill-color:var(--grsb-text) !important;
  font-size:22px;
  line-height:1;
  font-weight:700;
  cursor:pointer;
  transition:border-color .16s ease, background-color .16s ease, transform .16s ease;
}

.grsb-stepper button:hover:not(:disabled){
  border-color:rgba(4,172,191,.45);
  background:rgba(4,172,191,.06);
}

.grsb-stepper button:active:not(:disabled){
  transform:scale(.96);
}

.grsb-stepper button:disabled{
  opacity:.35;
  cursor:not-allowed;
}

.grsb-stepper__icon{
  display:block;
  color:inherit !important;
  -webkit-text-fill-color:inherit !important;
}

.grsb-stepper__val{
  min-width:32px;
  text-align:center;
  font-size:19px;
  line-height:1;
  font-weight:700;
}

.grsb-pop__actions{
  margin-top:18px;
  display:flex;
  justify-content:flex-end;
}

.grsb-btn{
  appearance:none;
  -webkit-appearance:none;
  min-width:120px;
  height:46px;
  padding:0 22px;
  border:0;
  border-radius:999px;
  background:linear-gradient(180deg, var(--grsb-accent) 0%, var(--grsb-accent-dark) 100%);
  color:#fff;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  transition:transform .16s ease, filter .16s ease;
}

.grsb-btn:hover{
  filter:brightness(1.03);
}

.grsb-btn:active{
  transform:translateY(1px);
}

/* Flatpickr */
.grsb-fp-wrap .flatpickr-calendar{
  width:100%;
  background:transparent;
  box-shadow:none !important;
  border:0;
}

.grsb-fp-wrap .flatpickr-months{
  margin-bottom:10px;
}

.grsb-fp-wrap .flatpickr-month,
.grsb-fp-wrap .flatpickr-current-month,
.grsb-fp-wrap .flatpickr-weekday,
.grsb-fp-wrap .flatpickr-day{
  font-family:var(--grsb-font);
}

.grsb-fp-wrap .flatpickr-current-month .flatpickr-monthDropdown-months,
.grsb-fp-wrap .flatpickr-current-month input.cur-year,
.grsb-fp-wrap .flatpickr-weekday{
  color:var(--grsb-text);
}

.grsb-fp-wrap .flatpickr-weekday{
  font-weight:600;
}

.grsb-fp-wrap .flatpickr-months .flatpickr-prev-month svg,
.grsb-fp-wrap .flatpickr-months .flatpickr-next-month svg{
  fill:var(--grsb-accent);
}

.grsb-fp-wrap .flatpickr-day{
  border-radius:12px;
}

.grsb-fp-wrap .flatpickr-day.today{
  border-color:rgba(4,172,191,.32);
}

.grsb-fp-wrap .flatpickr-day.inRange,
.grsb-fp-wrap .flatpickr-day.prevMonthDay.inRange,
.grsb-fp-wrap .flatpickr-day.nextMonthDay.inRange{
  background:rgba(4,172,191,.13);
  border-color:transparent;
  box-shadow:none !important;
}

.grsb-fp-wrap .flatpickr-day.selected,
.grsb-fp-wrap .flatpickr-day.startRange,
.grsb-fp-wrap .flatpickr-day.endRange,
.grsb-fp-wrap .flatpickr-day.selected.inRange,
.grsb-fp-wrap .flatpickr-day.startRange.inRange,
.grsb-fp-wrap .flatpickr-day.endRange.inRange{
  background:var(--grsb-accent);
  border-color:var(--grsb-accent);
  color:#fff;
}

.grsb-fp-wrap .flatpickr-day:hover{
  border-color:rgba(4,172,191,.45);
}

.grsb-fp-wrap .flatpickr-day.prevMonthDay,
.grsb-fp-wrap .flatpickr-day.nextMonthDay{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  visibility:hidden;
  pointer-events:none;
}

.grsb-fp-wrap .flatpickr-day.prevMonthDay.inRange,
.grsb-fp-wrap .flatpickr-day.nextMonthDay.inRange{
  visibility:visible;
}

/* iPhone tap behavior */
.grsb-field,
.grsb-searchbtn,
.grsb-searchbtn-full,
.grsb-stepper button,
.grsb-btn,
.grsb-dest__item{
  touch-action:manipulation;
  -ms-touch-action:manipulation;
  -webkit-tap-highlight-color:transparent;
}

.grsb-stepper button,
.grsb-btn,
.grsb-searchbtn,
.grsb-searchbtn-full{
  user-select:none;
  -webkit-user-select:none;
}

/* Tablet */
@media (max-width: 920px){
  .grsb-bar{
    padding-right:84px;
  }

  .grsb-field{
    padding:16px 18px;
  }

  .grsb-field__value{
    font-size:17px;
  }

  .grsb-searchbtn{
    width:54px;
    height:54px;
  }

  .grsb-portal__panel--dates{
    min-width:unset;
  }
}

/* Mobile */
@media (max-width: 767px){
  .grsb-wrap{
    width:min(100%, 540px);
    padding-inline:0;
  }

  .grsb-bar{
    flex-direction:column;
    padding-right:0;
    padding:6px;
    border-radius:var(--grsb-radius-mobile);
    background:rgba(255,255,255,.97);
    box-shadow:0 16px 36px rgba(9,21,38,.14);
    overflow:hidden;
  }

  .grsb-divider,
  .grsb-searchbtn{
    display:none;
  }

  .grsb-field{
    width:100%;
    flex:0 0 auto;
    grid-template-columns:22px minmax(0,1fr);
    column-gap:12px;
    padding:17px 16px;
    border-radius:22px;
  }

  .grsb-field + .grsb-divider + .grsb-field,
  .grsb-field + .grsb-field,
  .grsb-field:not(:first-child){
    margin-top:2px;
  }

  .grsb-field:not(:first-of-type){
    border-top:1px solid rgba(23,32,51,.08);
  }

  .grsb-field__label{
    font-size:12px;
  }

  .grsb-field__value{
    font-size:17px;
    line-height:1.18;
  }

  .grsb-mobile-actions{
    display:block;
    margin-top:14px;
  }

  .grsb-searchbtn-full{
    appearance:none;
    -webkit-appearance:none;
    display:block;
    width:100%;
    height:58px;
    padding:0 20px;
    border:0;
    border-radius:999px;
    background:linear-gradient(180deg, var(--grsb-accent) 0%, var(--grsb-accent-dark) 100%);
    color:#fff;
    font-size:18px;
    font-weight:700;
    letter-spacing:.01em;
    box-shadow:0 16px 32px rgba(4,172,191,.22);
    cursor:pointer;
    transition:transform .16s ease, filter .16s ease;
  }

  .grsb-searchbtn-full:hover{
    filter:brightness(1.03);
  }

  .grsb-searchbtn-full:active{
    transform:translateY(1px);
  }

  .grsb-portal__panel,
  .grsb-portal__panel--dates{
    left:12px !important;
    width:calc(100vw - 24px) !important;
    min-width:unset !important;
    max-width:calc(100vw - 24px) !important;
    padding:18px;
    border-radius:24px;
  }

  .grsb-pop__title{
    font-size:19px;
  }

  .grsb-stepper{
    gap:12px;
  }

  .grsb-stepper button{
    width:48px;
    height:48px;
    font-size:24px;
  }

  .grsb-stepper__val{
    min-width:28px;
    font-size:18px;
  }

  .grsb-pop__actions{
    justify-content:flex-end;
  }

  .grsb-btn{
    min-width:112px;
    height:48px;
  }
}

@media (max-width: 480px){
  .grsb-wrap{
    width:min(100%, 100vw - 24px);
  }

  .grsb-bar{
    border-radius:26px;
    padding:4px;
  }

  .grsb-field{
    padding:16px 14px;
    column-gap:11px;
  }

  .grsb-field::before{
    width:22px;
    height:22px;
    background-size:22px 22px;
  }

  .grsb-field__value{
    font-size:16px;
  }

  .grsb-searchbtn-full{
    height:56px;
    font-size:17px;
  }

  .grsb-guest__row{
    gap:12px;
  }
}


/* ==== V2.1.1 Fixes ==== */

/* center calendar mobile */
@media (max-width: 768px) {
  .flatpickr-calendar {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
}

/* unify typography */
.grsb-label {
  font-size: 12px !important;
}

.grsb-value {
  font-size: 15px !important;
}

.flatpickr-current-month,
.flatpickr-weekdays span {
  font-size: 14px !important;
}

.flatpickr-day {
  font-size: 14px !important;
}


/* =========================================================
   V2.3.0 - MotoPress Results Page Refinement
   ========================================================= */
body.grsb-results-page{
  --gr-results-card-radius:24px;
  --gr-results-shadow:0 18px 40px rgba(9,21,38,.08);
  --gr-results-shadow-hover:0 22px 48px rgba(9,21,38,.12);
}

body.grsb-results-page .mphb_sc_search_results-wrapper,
body.grsb-results-page .mphb-search-results-wrapper,
body.grsb-results-page .mphb-room-types,
body.grsb-results-page .mphb_room_type,
body.grsb-results-page .mphb-loop-room-types{
  font-family:var(--grsb-font);
}

body.grsb-results-page .mphb_sc_search_results-wrapper,
body.grsb-results-page .mphb-search-results-wrapper{
  max-width:1200px;
  margin-inline:auto;
}

body.grsb-results-page .mphb-room-types,
body.grsb-results-page .mphb-loop-room-types{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
  gap:28px;
}

body.grsb-results-page .mphb-room-type,
body.grsb-results-page .mphb-room_type,
body.grsb-results-page .type-mphb_room_type{
  background:#fff;
  border:1px solid rgba(23,32,51,.08);
  border-radius:var(--gr-results-card-radius);
  overflow:hidden;
  box-shadow:var(--gr-results-shadow);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  display:flex;
  flex-direction:column;
}

body.grsb-results-page .mphb-room-type:hover,
body.grsb-results-page .mphb-room_type:hover,
body.grsb-results-page .type-mphb_room_type:hover{
  transform:translateY(-3px);
  box-shadow:var(--gr-results-shadow-hover);
  border-color:rgba(4,172,191,.18);
}

body.grsb-results-page .mphb-room-type img,
body.grsb-results-page .mphb-room_type img,
body.grsb-results-page .type-mphb_room_type img{
  width:100%;
  aspect-ratio:4 / 3;
  object-fit:cover;
  display:block;
}

body.grsb-results-page .mphb-room-type-images,
body.grsb-results-page .mphb-room-type-gallery,
body.grsb-results-page .mphb-room-type-featured-image,
body.grsb-results-page .post-thumbnail,
body.grsb-results-page .entry-thumbnail{
  margin:0 !important;
  overflow:hidden;
  border-radius:24px 24px 0 0;
}

body.grsb-results-page .mphb-room-type > *:not(.mphb-room-type-images):not(.mphb-room-type-gallery):not(.mphb-room-type-featured-image),
body.grsb-results-page .mphb-room_type > *:not(.mphb-room-type-images):not(.mphb-room-type-gallery):not(.mphb-room-type-featured-image),
body.grsb-results-page .type-mphb_room_type > *:not(.post-thumbnail):not(.entry-thumbnail){
  padding-left:22px;
  padding-right:22px;
}

body.grsb-results-page .mphb-room-type-title,
body.grsb-results-page .entry-title,
body.grsb-results-page .mphb-room-type-title a,
body.grsb-results-page .entry-title a{
  margin:18px 0 8px !important;
  font-size:24px;
  line-height:1.15;
  font-weight:700;
  color:var(--grsb-text);
  text-decoration:none;
}

body.grsb-results-page .mphb-room-type-title a:hover,
body.grsb-results-page .entry-title a:hover{
  color:var(--grsb-accent-dark);
}

body.grsb-results-page .mphb-room-type-description,
body.grsb-results-page .entry-content,
body.grsb-results-page .mphb-loop-room-type-attributes,
body.grsb-results-page .mphb-room-type-facilities,
body.grsb-results-page .mphb-room-type-details{
  color:var(--grsb-muted);
  font-size:15px;
  line-height:1.65;
}

body.grsb-results-page .mphb-regular-price,
body.grsb-results-page .mphb-price,
body.grsb-results-page .mphb-room-type-price,
body.grsb-results-page .mphb-price-period,
body.grsb-results-page .mphb-to-book-btn-wrapper,
body.grsb-results-page .mphb-view-details-button-wrapper,
body.grsb-results-page .mphb-book-button-wrapper{
  font-family:var(--grsb-font);
}

body.grsb-results-page .mphb-price,
body.grsb-results-page .mphb-room-type-price{
  margin-top:auto;
  padding-top:10px;
  font-size:28px;
  line-height:1.1;
  font-weight:700;
  color:var(--grsb-text);
}

body.grsb-results-page .mphb-price-period{
  display:block;
  margin-top:4px;
  font-size:13px;
  font-weight:500;
  color:var(--grsb-muted);
}

body.grsb-results-page .mphb-view-details-button-wrapper,
body.grsb-results-page .mphb-to-book-btn-wrapper,
body.grsb-results-page .mphb-book-button-wrapper,
body.grsb-results-page .mphb-reserve-btn-wrapper{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  padding-top:16px;
  padding-bottom:22px;
}

body.grsb-results-page .mphb-view-details-button-wrapper .button,
body.grsb-results-page .mphb-to-book-btn-wrapper .button,
body.grsb-results-page .mphb-book-button-wrapper .button,
body.grsb-results-page .mphb-reserve-btn,
body.grsb-results-page a.mphb-view-details-button,
body.grsb-results-page a.mphb-book-button,
body.grsb-results-page input[type="submit"].mphb-reserve-btn{
  appearance:none;
  -webkit-appearance:none;
  min-height:48px;
  padding:13px 18px !important;
  border-radius:999px !important;
  border:1px solid rgba(4,172,191,.16) !important;
  background:#fff !important;
  color:var(--grsb-text) !important;
  font-size:15px !important;
  font-weight:600 !important;
  line-height:1.1 !important;
  text-decoration:none !important;
  box-shadow:none !important;
  transition:transform .16s ease, box-shadow .16s ease, background-color .16s ease, color .16s ease, border-color .16s ease;
}

body.grsb-results-page .mphb-book-button-wrapper .button,
body.grsb-results-page .mphb-to-book-btn-wrapper .button,
body.grsb-results-page a.mphb-book-button,
body.grsb-results-page input[type="submit"].mphb-reserve-btn{
  background:linear-gradient(180deg, var(--grsb-accent) 0%, var(--grsb-accent-dark) 100%) !important;
  color:#fff !important;
  border-color:transparent !important;
  box-shadow:0 12px 24px rgba(4,172,191,.24) !important;
}

body.grsb-results-page .mphb-view-details-button-wrapper .button:hover,
body.grsb-results-page .mphb-to-book-btn-wrapper .button:hover,
body.grsb-results-page .mphb-book-button-wrapper .button:hover,
body.grsb-results-page .mphb-reserve-btn:hover,
body.grsb-results-page a.mphb-view-details-button:hover,
body.grsb-results-page a.mphb-book-button:hover{
  transform:translateY(-1px);
}

body.grsb-results-page .mphb-view-details-button-wrapper .button:hover,
body.grsb-results-page a.mphb-view-details-button:hover{
  background:rgba(4,172,191,.06) !important;
  border-color:rgba(4,172,191,.24) !important;
  color:var(--grsb-accent-dark) !important;
}

body.grsb-results-page .mphb-book-button-wrapper .button:hover,
body.grsb-results-page .mphb-to-book-btn-wrapper .button:hover,
body.grsb-results-page .mphb-reserve-btn:hover,
body.grsb-results-page a.mphb-book-button:hover{
  filter:brightness(1.03);
  box-shadow:0 14px 28px rgba(4,172,191,.28) !important;
}

body.grsb-results-page .mphb-recommendation-total,
body.grsb-results-page .mphb-search-results-total,
body.grsb-results-page .mphb-results-number,
body.grsb-results-page .mphb_sc_search_results-info{
  margin-bottom:18px;
  color:var(--grsb-muted);
  font-size:15px;
}

body.grsb-results-page .mphb-pagination,
body.grsb-results-page .navigation.pagination{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  margin-top:28px;
}

body.grsb-results-page .mphb-pagination a,
body.grsb-results-page .mphb-pagination span,
body.grsb-results-page .navigation.pagination .page-numbers{
  min-width:42px;
  height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border:1px solid rgba(23,32,51,.10);
  text-decoration:none;
  color:var(--grsb-text);
  background:#fff;
}

body.grsb-results-page .mphb-pagination .current,
body.grsb-results-page .navigation.pagination .current{
  background:linear-gradient(180deg, var(--grsb-accent) 0%, var(--grsb-accent-dark) 100%);
  color:#fff;
  border-color:transparent;
}

@media (max-width: 767px){
  body.grsb-results-page .mphb-room-types,
  body.grsb-results-page .mphb-loop-room-types{
    grid-template-columns:1fr;
    gap:20px;
  }

  body.grsb-results-page .mphb-room-type,
  body.grsb-results-page .mphb-room_type,
  body.grsb-results-page .type-mphb_room_type{
    border-radius:22px;
  }

  body.grsb-results-page .mphb-room-type > *:not(.mphb-room-type-images):not(.mphb-room-type-gallery):not(.mphb-room-type-featured-image),
  body.grsb-results-page .mphb-room_type > *:not(.mphb-room-type-images):not(.mphb-room-type-gallery):not(.mphb-room-type-featured-image),
  body.grsb-results-page .type-mphb_room_type > *:not(.post-thumbnail):not(.entry-thumbnail){
    padding-left:18px;
    padding-right:18px;
  }

  body.grsb-results-page .mphb-room-type-title,
  body.grsb-results-page .entry-title,
  body.grsb-results-page .mphb-room-type-title a,
  body.grsb-results-page .entry-title a{
    font-size:21px;
  }

  body.grsb-results-page .mphb-price,
  body.grsb-results-page .mphb-room-type-price{
    font-size:24px;
  }

  body.grsb-results-page .mphb-view-details-button-wrapper,
  body.grsb-results-page .mphb-to-book-btn-wrapper,
  body.grsb-results-page .mphb-book-button-wrapper,
  body.grsb-results-page .mphb-reserve-btn-wrapper{
    gap:10px;
  }

  body.grsb-results-page .mphb-view-details-button-wrapper .button,
  body.grsb-results-page .mphb-to-book-btn-wrapper .button,
  body.grsb-results-page .mphb-book-button-wrapper .button,
  body.grsb-results-page a.mphb-view-details-button,
  body.grsb-results-page a.mphb-book-button,
  body.grsb-results-page input[type="submit"].mphb-reserve-btn{
    width:100%;
    justify-content:center;
    text-align:center;
  }
}


/* =========================================================
   V2.4.0 - Destinos GR propios + buscador compacto por destino
   ========================================================= */
.grsb-wrap--compact-destination .grsb-field[data-grsb-open="destination"],
.grsb-wrap--compact-destination .grsb-field[data-grsb-open="destination"] + .grsb-divider{
  display:none;
}

.grsb-wrap--compact-destination .grsb-bar{
  max-width:760px;
  padding-right:86px;
}

.grsb-wrap--compact-destination .grsb-field{
  flex-basis:50%;
}

.grsb-dest__badge{
  display:inline-flex;
  align-items:center;
  margin-left:8px;
  padding:3px 8px;
  border-radius:999px;
  background:rgba(4,172,191,.10);
  color:var(--grsb-accent-dark);
  font-size:11px;
  line-height:1;
  font-weight:600;
  vertical-align:middle;
}

body.grsb-results-page .mphb-room-type-title,
body.grsb-results-page .entry-title,
body.grsb-results-page .mphb-room-type-title a,
body.grsb-results-page .entry-title a{
  font-weight:500;
  color:#111827;
}

body.grsb-results-page .mphb-room-type-description,
body.grsb-results-page .entry-content,
body.grsb-results-page .mphb-loop-room-type-attributes,
body.grsb-results-page .mphb-room-type-facilities,
body.grsb-results-page .mphb-room-type-details{
  color:#374151;
  font-size:16px;
  line-height:1.55;
}

@media (max-width: 767px){
  .grsb-wrap--compact-destination .grsb-bar{
    max-width:100%;
    padding-right:0;
  }
  .grsb-wrap--compact-destination .grsb-field{
    flex-basis:auto;
  }
}
