/* MBVC GetYourGuide-style dynamic page */

.mbvc-detail-page {
  background: #ffffff;
  color: #102a43;
}

.mbvc-detail-main {
  background: #fff;
}

.mbvc-gyg-top {
  padding: 118px 0 36px;
  background: #fff;
}

.mbvc-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: #61758a;
  margin-bottom: 18px;
}

.mbvc-breadcrumbs a {
  color: #038b07;
  font-weight: 800;
}

.mbvc-page-label {
  display: inline-flex;
  align-items: center;
  background: #e9f8ea;
  color: #038b07;
  border: 1px solid #d7efd8;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 12px;
}

.mbvc-title-row h1 {
  color: #102a43;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 900;
  max-width: 920px;
  margin: 0 0 12px;
}

.mbvc-title-row p {
  color: #41566b;
  max-width: 850px;
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 12px;
}

.mbvc-rating-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #61758a;
  font-size: 14px;
  font-weight: 700;
  align-items: center;
}

.mbvc-rating-line .stars {
  color: #00b106;
  letter-spacing: 1px;
}

.mbvc-rating-line strong {
  color: #102a43;
}

.mbvc-gallery {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 170px 170px;
  gap: 10px;
  border-radius: 18px;
  overflow: hidden;
  background: #eef6ef;
}

.mbvc-gallery a {
  position: relative;
  display: block;
  overflow: hidden;
  background: #e9f8ea;
}

.mbvc-gallery-main {
  grid-row: span 2;
}

.mbvc-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
  display: block;
}

.mbvc-gallery a:hover img {
  transform: scale(1.04);
}

.mbvc-view-all {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: rgba(16,42,67,.88);
  color: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 900;
}

.mbvc-detail-content {
  padding: 34px 0 72px;
  background: #fff;
}

.mbvc-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  align-items: start;
}

.mbvc-detail-left {
  max-width: 820px;
}

.mbvc-quick-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.mbvc-quick-facts div {
  border: 1px solid #dfeee0;
  border-radius: 16px;
  padding: 14px;
  background: #fbfffb;
}

.mbvc-quick-facts i {
  color: #00b106;
  font-size: 20px;
  margin-bottom: 8px;
}

.mbvc-quick-facts strong {
  display: block;
  color: #102a43;
  font-weight: 900;
  font-size: 14px;
}

.mbvc-quick-facts span {
  display: block;
  color: #61758a;
  font-size: 12px;
  line-height: 1.4;
}

.mbvc-content-block {
  border-bottom: 1px solid #e8f2e9;
  padding: 0 0 30px;
  margin-bottom: 30px;
}

.mbvc-content-block:last-child {
  border-bottom: 0;
}

.mbvc-content-block h2 {
  color: #102a43;
  font-size: 29px;
  line-height: 1.18;
  font-weight: 900;
  margin: 0 0 14px;
}

.mbvc-content-block h3 {
  color: #102a43;
  font-size: 21px;
  font-weight: 900;
  margin: 20px 0 8px;
}

.mbvc-content-block p,
.mbvc-content-block li {
  color: #41566b;
  font-size: 16px;
  line-height: 1.75;
}

.mbvc-content-block .lead {
  color: #61758a;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 600;
}

.mbvc-content-block img {
  max-width: 100%;
  border-radius: 16px;
  height: auto;
}

.mbvc-checks {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mbvc-checks li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}

.mbvc-checks li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #00b106;
  font-weight: 900;
}

.mbvc-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.mbvc-info-grid div {
  background: #f8fff8;
  border: 1px solid #dfeee0;
  border-radius: 18px;
  padding: 20px;
}

.mbvc-more-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.mbvc-more-photos a {
  display: block;
  height: 150px;
  overflow: hidden;
  border-radius: 16px;
  background: #e9f8ea;
}

.mbvc-more-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mbvc-book-card {
  position: sticky;
  top: 104px;
}

.mbvc-book-inner {
  background: #fff;
  border: 1px solid #dfeee0;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 18px 44px rgba(16,42,67,.13);
}

.mbvc-book-small {
  color: #61758a;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.mbvc-book-price {
  color: #102a43;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 16px;
}

.mbvc-book-btn,
.mbvc-book-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 10px;
}

.mbvc-book-btn {
  background: #00b106;
  color: #fff;
  box-shadow: 0 14px 28px rgba(0,177,6,.22);
}

.mbvc-book-btn:hover {
  color: #fff;
  background: #038b07;
}

.mbvc-book-outline {
  border: 1px solid #00b106;
  color: #038b07;
  background: #fff;
}

.mbvc-book-points {
  border-top: 1px solid #e8f2e9;
  padding-top: 14px;
  margin-top: 14px;
}

.mbvc-book-points div {
  color: #41566b;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 9px;
}

.mbvc-book-points i {
  color: #00b106;
  margin-right: 7px;
}

.mbvc-related-search {
  background: #f6fbf6;
  border-top: 1px solid #dfeee0;
  padding: 52px 0;
}

.mbvc-related-search h2 {
  color: #102a43;
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 6px;
}

.mbvc-related-search p {
  color: #61758a;
  margin-bottom: 18px;
}

.mbvc-search-inline {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  background: #fff;
  border: 1px solid #dfeee0;
  border-radius: 22px;
  padding: 14px;
  box-shadow: 0 14px 34px rgba(16,42,67,.06);
}

.mbvc-search-inline input {
  min-height: 52px;
  border: 1px solid #dfeee0;
  border-radius: 15px;
  padding: 0 16px;
  font-weight: 700;
}

.mbvc-search-inline button {
  border: 0;
  border-radius: 15px;
  background: #00b106;
  color: #fff;
  padding: 0 26px;
  font-weight: 900;
}

.mbvc-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.86);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.mbvc-lightbox.active {
  display: flex;
}

.mbvc-lightbox img {
  max-width: 94vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
}

.mbvc-lightbox-close {
  position: fixed;
  right: 24px;
  top: 18px;
  background: #fff;
  color: #102a43;
  border: 0;
  border-radius: 999px;
  width: 44px;
  height: 44px;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  z-index: 100000;
}

@media (max-width: 991px) {
  .mbvc-gyg-top {
    padding-top: 110px;
  }

  .mbvc-title-row h1 {
    font-size: 34px;
  }

  .mbvc-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 130px 130px;
  }

  .mbvc-gallery-main {
    grid-column: span 2;
    grid-row: span 1;
  }

  .mbvc-detail-layout {
    grid-template-columns: 1fr;
  }

  .mbvc-book-card {
    position: static;
    order: -1;
  }

  .mbvc-quick-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .mbvc-info-grid,
  .mbvc-more-photos {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .mbvc-gyg-top {
    padding-top: 92px;
  }

  .mbvc-title-row h1 {
    font-size: 28px;
  }

  .mbvc-gallery {
    display: block;
    border-radius: 18px;
  }

  .mbvc-gallery a {
    height: 230px;
  }

  .mbvc-gallery a:not(:first-child) {
    display: none;
  }

  .mbvc-quick-facts {
    grid-template-columns: 1fr;
  }

  .mbvc-search-inline {
    grid-template-columns: 1fr;
  }
}

.mbvc-book-inner {
  border: 1px solid #cfead2;
  background: linear-gradient(180deg, #ffffff 0%, #f7fff8 100%);
}

.mbvc-book-price {
  font-size: 34px;
  line-height: 1.1;
}

.mbvc-traferral-book-btn {
  min-height: 62px !important;
  font-size: 20px;
  box-shadow: 0 18px 35px rgba(0, 177, 6, .28);
}

.mbvc-price-notes {
  background: #ffffff;
  border-left: 5px solid #00b106;
  font-size: 17px;
}

.mbvc-book-points {
  background: #f8fff8;
  border-radius: 18px;
  padding: 18px;
}
