/* Ticket listing — larger prices; per-person inline next to amount */
.ticket-price-block {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
}
.ticket-price-block .ticket-price-amount {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}
.ticket-price-block .ticket-price-note-inline {
  font-size: 15px;
  font-weight: 400;
}
.widget_next_exhibitions .exhibition-time.ticket-sidebar-price {
  font-size: 20px;
  font-weight: 700;
}
.widget_next_exhibitions .ticket-sidebar-per {
  display: inline;
  font-size: 13px;
  font-weight: 500;
  margin-left: 6px;
}

/* Header logo — fixed size on all breakpoints; theme overrides (e.g. 200px mobile) */
.site-logo h1 {
  padding: 10px !important;
}
img.brand-logo-img {
  width: 150px !important;
  max-width: 150px !important;
  height: auto !important;
}

/* Ticket detail — mobile: tabs → book+blog sidebar → FAQs; md+: two cols, FAQs under tabs */
.tour-detail-layout {
  width: 100%;
  display: flex;
  flex-direction: column;
}

@media only screen and (max-width: 991px) {
  .tour-detail-layout > .sidebar,
  .tour-detail-layout > .td-main,
  .tour-detail-layout > .td-faq {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0;
    padding-right: 0;
  }

  .notice-bar .container {
    overflow: hidden;
  }

  /* One-line breadcrumb trail; clip with … when it overflows */
  .notice-bar .breadcrumb {
    display: block !important;
    float: none !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .notice-bar .breadcrumb > li {
    display: inline-block !important;
    float: none !important;
    vertical-align: top;
    white-space: nowrap;
  }
}

@media only screen and (min-width: 992px) {
  .tour-detail-layout .sidebar.right-sidebar.tour-detail-sidebar {
    float: none !important;
    width: auto !important;
    padding-left: 0;
    padding-right: 0;
    margin-top: 0 !important;
  }

  .tour-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
    column-gap: 30px;
    align-items: start;
  }

  .tour-detail-layout .td-main {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .tour-detail-layout .tour-detail-sidebar {
    grid-column: 2;
    grid-row: 1;
    grid-row-end: span 1;
    min-width: 0;
  }

  .tour-detail-layout.tour-detail-has-faq .tour-detail-sidebar {
    grid-row-end: span 2;
  }

  .tour-detail-layout.tour-detail-has-faq .td-faq {
    grid-column: 1;
    grid-row: 2;
    min-width: 0;
    margin-top: 0 !important;
  }
}

/* Verified reviews notice (tour detail page) */
.verified-reviews-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  margin: 0 0 20px;
  border-left: 3px solid var(--accent-color, #c79c56);
  background: #f7f3ec;
  border-radius: 3px;
  font-size: 13px;
  line-height: 1.5;
  color: #4a4a4a;
}
.verified-reviews-notice .fa-check-circle {
  color: var(--accent-color, #c79c56);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}
.verified-reviews-notice strong {
  display: block;
  margin-bottom: 2px;
  color: #222;
  font-size: 13px;
}

/* Language switcher (header topbar + footer) */
.topbar-locale,
.footer-locale-social {
  text-align: right;
}

.topbar .locale-switcher--topbar {
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
  line-height: 40px;
}

.site-footer-bottom .locale-switcher--footer {
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
  line-height: 1.6;
}

.locale-switcher__list {
  margin: 0;
  padding: 0;
  font-size: 12px;
}

.locale-switcher__item {
  display: inline-block;
  margin: 0 1px;
}

.locale-switcher__item + .locale-switcher__item::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 10px;
  margin: 0 6px;
  background: rgba(255, 255, 255, 0.25);
  vertical-align: middle;
}

.site-footer-bottom .locale-switcher__item + .locale-switcher__item::before {
  background: rgba(0, 0, 0, 0.15);
}

.topbar .locale-switcher__link {
  color: #bbb;
}

.topbar .locale-switcher__link:hover {
  color: #fff;
  text-decoration: none;
}

.header-style2 .topbar .locale-switcher__link {
  color: #666;
}

.header-style2 .topbar .locale-switcher__link:hover {
  color: #222;
}

.header-style2 .topbar .locale-switcher__current {
  color: #222;
}

.header-style2 .topbar .locale-switcher__item + .locale-switcher__item::before {
  background: rgba(0, 0, 0, 0.12);
}

.site-footer-bottom .locale-switcher__link {
  color: #888;
}

.site-footer-bottom .locale-switcher__link:hover {
  color: #333;
  text-decoration: none;
}

.site-footer-bottom .locale-switcher__current {
  color: #333;
  font-weight: 600;
}

/* Language switcher inside mobile burger menu (Bootstrap 3: hidden-md hidden-lg) */
.locale-switcher-mobile-wrap {
  border-top: 1px solid #eee;
  background: #fafafa;
  text-align: center;
  padding: 14px 20px 18px;
}

.locale-switcher-mobile-inner {
  display: inline-block;
  max-width: 100%;
}

.locale-switcher-mobile__label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888;
  margin: 0 0 10px;
  font-weight: 600;
}

.locale-switcher--mobile_menu {
  line-height: normal;
}

.locale-switcher--mobile_menu .locale-switcher__list {
  font-size: 15px;
  line-height: 1.6;
}

.locale-switcher--mobile_menu .locale-switcher__item {
  margin: 0 4px;
}

.locale-switcher--mobile_menu .locale-switcher__link {
  color: #3554d1;
  padding: 6px 4px;
  display: inline-block;
}

.locale-switcher--mobile_menu .locale-switcher__link:hover {
  color: #243a93;
  text-decoration: none;
}

.locale-switcher--mobile_menu .locale-switcher__current {
  color: #222;
  font-weight: 700;
  padding: 6px 4px;
  display: inline-block;
}

.locale-switcher--mobile_menu .locale-switcher__item + .locale-switcher__item::before {
  background: rgba(0, 0, 0, 0.12);
  height: 14px;
  margin: 0 8px;
}

/* Footer — venues information (two columns) */
.site-footer .footer-venues-grid {
  margin-left: -10px;
  margin-right: -10px;
}
.site-footer .footer-venues-grid__cell {
  padding-left: 10px;
  padding-right: 10px;
}
.site-footer .footer-venue-item {
  display: block;
  margin-bottom: 18px;
  font-style: normal;
  line-height: 1.45;
}
.site-footer .footer-venue-item__blurb {
  color: #888;
  font-size: 13px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.site-footer .footer-widget-contracts {
  margin-top: 28px;
}