/* =========================
   Motorrad-Reisewelt Booking Bar
   ========================= */

:root {
  --mrw-green: #53736D;
  --mrw-green-dark: #46665F;
  --mrw-green-line: rgba(255, 255, 255, 0.18);
  --mrw-gold: #D9AE5F;
  --mrw-gold-hover: #C99A48;
  --mrw-white: #ffffff;
  --mrw-muted-white: rgba(255, 255, 255, 0.72);
}

/* Wrapper für Überlappung unter Hero */
.mrw-booking-wrapper {
  width: min(100% - 40px, 980px);
  margin: -48px auto 80px;
  position: relative;
  z-index: 20;
}

/* Hauptbar */
.mrw-booking-bar {
  display: flex;
  align-items: stretch;
  justify-content: space-between;

  width: 100%;
  min-height: 94px;

  background: var(--mrw-green);
  border-radius: 14px;
  overflow: hidden;

  box-shadow: 0 18px 40px rgba(36, 52, 74, 0.18);
}

/* Einzelner Step */
.mrw-booking-step {
  position: relative;
  display: flex;
  align-items: center;

  min-height: 94px;
  padding: 18px 28px 18px 22px;

  color: var(--mrw-white);
}

/* Breiten wie im Layout */
.mrw-step-1 {
  width: 35%;
}

.mrw-step-2 {
  width: 35%;
}

.mrw-step-3 {
  width: 30%;
}

/* Trennlinien */
.mrw-booking-step:not(:last-child) {
  border-right: 1px solid var(--mrw-green-line);
}

/* Große Step-Zahl */
.mrw-step-number {
  flex: 0 0 auto;

  margin-right: 12px;

  font-size: clamp(56px, 5vw, 76px);
  font-weight: 800;
  line-height: 0.85;

  color: rgba(255, 255, 255, 0.28);
  letter-spacing: -0.06em;
}

/* Inhalt neben der Zahl */
.mrw-step-content {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: center;

  width: 100%;
  min-width: 0;
}

/* Label */
.mrw-step-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;

  margin-bottom: 6px;

  color: var(--mrw-white);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.mrw-label-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 13px;
  line-height: 1;
  opacity: 0.95;
}

/* Select-Felder */
.mrw-select {
  width: 100%;
  max-width: 210px;
  height: 34px;

  padding: 0 34px 0 13px;

  color: var(--mrw-white);
  background-color: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 7px;

  font-size: 13px;
  font-weight: 500;
  line-height: 1;

  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  cursor: pointer;

  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.9) 50%),
    linear-gradient(135deg, rgba(255,255,255,0.9) 50%, transparent 50%);
  background-position:
    calc(100% - 16px) 13px,
    calc(100% - 11px) 13px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.mrw-select:hover,
.mrw-select:focus {
  border-color: rgba(255, 255, 255, 0.65);
  background-color: rgba(255, 255, 255, 0.1);
}

.mrw-select option {
  color: #24344A;
  background: #ffffff;
}

/* Button-Spalte */
.mrw-button-content {
  align-items: flex-start;
}

/* Goldener CTA */
.mrw-booking-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-height: 42px;
  padding: 0 24px;

  color: var(--mrw-white);
  background: var(--mrw-gold);

  border: 0;
  border-radius: 999px;

  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;

  cursor: pointer;

  box-shadow: 0 8px 20px rgba(217, 174, 95, 0.28);
  transition: all 0.22s ease;
}

.mrw-booking-button:hover,
.mrw-booking-button:focus {
  background: var(--mrw-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(217, 174, 95, 0.38);
}

.mrw-booking-button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 17px;
  height: 17px;

  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);

  font-size: 18px;
  line-height: 1;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 1024px) {
  .mrw-booking-wrapper {
    width: min(100% - 32px, 860px);
    margin-top: -36px;
  }

  .mrw-booking-step {
    padding-left: 18px;
    padding-right: 18px;
  }

  .mrw-step-number {
    font-size: 58px;
  }

  .mrw-select {
    max-width: 190px;
  }

  .mrw-booking-button {
    padding-inline: 20px;
  }
}

@media (max-width: 780px) {
  .mrw-booking-wrapper {
    width: min(100% - 28px, 520px);
    margin-top: -28px;
    margin-bottom: 60px;
  }

  .mrw-booking-bar {
    flex-direction: column;
    min-height: 0;
    border-radius: 16px;
  }

  .mrw-booking-step {
    width: 100%;
    min-height: 92px;
    padding: 20px 22px;
  }

  .mrw-booking-step:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--mrw-green-line);
  }

  .mrw-step-number {
    width: 72px;
    margin-right: 14px;
    font-size: 64px;
  }

  .mrw-select {
    max-width: 100%;
  }

  .mrw-button-content {
    align-items: stretch;
  }

  .mrw-booking-button {
    width: 100%;
    min-height: 48px;
  }
}

@media (max-width: 420px) {
  .mrw-booking-wrapper {
    width: calc(100% - 24px);
  }

  .mrw-booking-step {
    padding: 18px 18px;
  }

  .mrw-step-number {
    width: 58px;
    font-size: 54px;
  }

  .mrw-step-label {
    font-size: 12px;
  }

  .mrw-select {
    height: 36px;
    font-size: 12px;
  }

  .mrw-booking-button {
    font-size: 11px;
  }
}

/* =========================
   Booking Bar Feintuning
   größere Step-Zahlen + kompakter Button
   ========================= */

/* Gesamthöhe etwas näher ans Layout */
.mrw-booking-bar {
  min-height: 86px;
}

/* Step-Innenabstand kompakter */
.mrw-booking-step {
  min-height: 86px;
  padding-top: 14px;
  padding-bottom: 14px;
}

/* Große Zahlen 1, 2, 3 */
.mrw-step-number {
  font-size: 82px;
  font-weight: 800;
  line-height: 0.82;
  margin-right: 12px;
  color: rgba(255, 255, 255, 0.30);
}

/* Step 3 etwas kompakter, damit Button sauber reinpasst */
.mrw-step-3 {
  padding-left: 20px;
  padding-right: 18px;
  gap: 8px;
}

/* Die 3 nicht zu viel Platz wegnehmen lassen */
.mrw-step-3 .mrw-step-number {
  font-size: 82px;
  margin-right: 8px;
}

/* Inhalt in Step 3 rechts sauber ausrichten */
.mrw-step-3 .mrw-step-content {
  align-items: flex-start;
  width: auto;
  min-width: 0;
}

/* Button kleiner und passend */
.mrw-booking-button {
  min-height: 38px;
  padding: 0 18px;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.035em;

  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(217, 174, 95, 0.28);
}

/* Pfeil-Kreis im Button kleiner */
.mrw-booking-button span {
  width: 15px;
  height: 15px;
  font-size: 16px;
  margin-left: 2px;
}

/* Kleine Icons vor Reiseziel / Zeitraum etwas sichtbarer */

/* Astra transparent header logo: keep the uploaded PNG fully visible */
.ast-site-identity .custom-logo-link,
.ast-site-identity .custom-logo-link img,
.site-logo-img img,
.ast-builder-layout-element.site-header-focus-item img.custom-logo,
.ast-builder-layout-element.site-header-focus-item .site-logo-img img,
.ast-theme-transparent-header .ast-site-identity img,
.ast-theme-transparent-header .site-logo-img img {
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
  -webkit-filter: none !important;
  mix-blend-mode: normal !important;
  background: transparent !important;
  box-shadow: none !important;
}

.ast-site-identity .custom-logo-link img,
.site-logo-img img,
.ast-builder-layout-element.site-header-focus-item img.custom-logo {
  display: block;
  height: auto;
}
.mrw-label-icon {
  font-size: 15px;
  width: 15px;
  height: 15px;
}

/* Select-Felder etwas niedriger wie im Layout */
.mrw-select {
  height: 32px;
  font-size: 12px;
  max-width: 220px;
}

/* =========================
   Booking Bar: Dropdowns und Button einheitlich ausrichten
   ========================= */

/* Dropdowns und CTA gleich hoch */
.mrw-select,
.mrw-booking-button {
  height: 34px !important;
  min-height: 34px !important;
  box-sizing: border-box;
}

/* Select optisch sauber halten */
.mrw-select {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  line-height: 34px !important;
}

/* Button kompakter wie die Dropdowns */
.mrw-booking-button {
  padding: 0 18px !important;
  line-height: 1 !important;
  font-size: 10px;
  align-self: flex-start;
}

/* Button in Step 3 auf die gleiche Höhe wie die Dropdowns setzen */
.mrw-step-3 .mrw-step-content {
  justify-content: flex-start;
  padding-top: 20px;
}

/* Pfeil-Kreis passend zur neuen Buttonhöhe */
.mrw-booking-button span {
  width: 14px;
  height: 14px;
  font-size: 15px;
  margin-left: 3px;
}

/* Header-Startseite: Hintergrundbild rechts mittig ausrichten */
.header-startseite .wp-block-cover__image-background {
  background-position: right center !important;
  background-size: cover !important;
}

/* Tablet + Mobil: Text weiß */
@media (max-width: 1024px) {
  .white-shadow,
  .white-shadow a,
  .white-shadow strong,
  .white-shadow span {
    color: #ffffff !important;
    text-shadow:
      0 2px 4px rgba(0, 0, 0, 0.45),
      0 4px 12px rgba(0, 0, 0, 0.35);
  }
}

@media (max-width: 767px) {
  .white-shadow p,
  p.white-shadow {
    font-size: 18px !important;
    line-height: 1.55 !important;
  }
}


/* =========================
   Astra Mobile Menü direkt stylen
   Ziel: #ast-hf-mobile-menu
   ========================= */

@media (max-width: 921px) {

  /* kompletter mobiler Navigationsbereich */
  #ast-mobile-site-navigation,
  #ast-mobile-site-navigation .main-navigation,
  #ast-hf-mobile-menu {
    background: #53736D !important;
  }

  /* Menü selbst */
  #ast-hf-mobile-menu {
    padding: 10px 0 14px 0 !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: 0 18px 38px rgba(36, 52, 74, 0.22);
  }

  /* einzelne Menüpunkte */
  #ast-hf-mobile-menu > li {
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16) !important;
    margin: 0 !important;
  }

  #ast-hf-mobile-menu > li:last-child {
    border-bottom: none !important;
  }

  /* Links */
  #ast-hf-mobile-menu > li > a.menu-link {
    display: block !important;

    color: #ffffff !important;
    background: transparent !important;

    padding: 18px 24px !important;

    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    letter-spacing: 0.045em !important;
    text-transform: uppercase !important;

    border: none !important;
  }

  /* Hover / aktiv */
  #ast-hf-mobile-menu > li > a.menu-link:hover,
  #ast-hf-mobile-menu > li > a.menu-link:focus,
  #ast-hf-mobile-menu > li.current-menu-item > a.menu-link {
    color: #D9AE5F !important;
    background: rgba(255, 255, 255, 0.07) !important;
  }

  /* optional: kleine goldene Markierung links beim Hover */
  #ast-hf-mobile-menu > li > a.menu-link {
    position: relative;
  }

  #ast-hf-mobile-menu > li > a.menu-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    bottom: 14px;

    width: 4px;
    border-radius: 999px;
    background: #D9AE5F;

    opacity: 0;
    transition: opacity 0.2s ease;
  }

  #ast-hf-mobile-menu > li > a.menu-link:hover::before,
  #ast-hf-mobile-menu > li.current-menu-item > a.menu-link::before {
    opacity: 1;
  }
}

/* Desktop-Menü fetter darstellen */
@media (min-width: 922px) {
  #primary-site-navigation-desktop #ast-hf-menu-1 > li > a.menu-link {
    font-weight: 700 !important;
  }
}
/* =========================
   Touren-Block Startseite
   ========================= */

.bct-touren-block {
  --bct-tour-card-bg: transparent;
  --bct-tour-line: #d6cfc2;
  --bct-tour-text: #4b5259;
  --bct-tour-muted: #7b8188;
  --bct-tour-gold: #d2a759;
  --bct-tour-gold-hover: #c59745;

  /* max-width: 980px;*/
  margin: 0 auto;
}

.bct-touren-categories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /*ic20260623 4->3*/
  gap: 10px;
  margin: 0 0 16px;
}

.bct-touren-category {
  min-height: 38px;
  border: 1px dashed var(--bct-tour-line);
  border-radius: 10px;
  background: #f7f4ee;
  color: #5d646c;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.bct-touren-category:hover,
.bct-touren-category:focus {
  background: #ece6da;
}

.bct-touren-category.is-active {
  background: #e5dcc9;
  border-color: #bca97d;
  color: #2f3b46;
}

.bct-touren-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.bct-touren-overview__filters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 18px;
}

.bct-touren-overview__filter-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bct-touren-overview__filter-item label {
  color: #4f5a64;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
}

.bct-touren-overview__filter-item select {
  height: 40px;
  padding: 0 36px 0 12px;
  border: 1px solid #d8d3c7;
  border-radius: 8px;
  background-color: #fff;
  color: #2f3b46;
  font-size: 14px;
  line-height: 1;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #8d949b 50%),
    linear-gradient(135deg, #8d949b 50%, transparent 50%);
  background-position:
    calc(100% - 16px) 16px,
    calc(100% - 11px) 16px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.bct-touren-overview__filter-item select:focus {
  outline: none;
  border-color: #bfae85;
  box-shadow: 0 0 0 2px rgba(191, 174, 133, 0.2);
}

.bct-touren-overview__filters {
  display: block;
  margin: 0 0 14px;
}

.bct-search-tabs {
  --bct-tab-bg: #6f8f89;
  --bct-tab-bg-active: #53736d;
  --bct-tab-border: rgba(255, 255, 255, 0.2);
  width: min(100%, 980px);
  margin: 0 auto;
}

.bct-search-tabs__nav {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin: 0;
  position: relative;
  z-index: 3;
}

.bct-search-tabs__tab {
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
  background: var(--bct-tab-bg);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.bct-search-tabs__tab + .bct-search-tabs__tab {
  margin-left: -1px;
}

.bct-search-tabs__tab:hover,
.bct-search-tabs__tab:focus {
  background: #63847d;
  border-color: rgba(255, 255, 255, 0.3);
}

.bct-search-tabs__tab.is-active {
  background: var(--bct-tab-bg-active);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.bct-search-panel {
  margin-top: -1px;
  background: var(--mrw-green);
  border-radius: 0 14px 14px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 40px rgba(36, 52, 74, 0.18);
  overflow: hidden;
}

.mrw-booking-wrapper--inline {
  width: 100%;
  margin: 0;
}

.mrw-booking-bar--overview .mrw-step-1,
.mrw-booking-bar--overview .mrw-step-2,
.mrw-booking-bar--overview .mrw-step-3 {
  width: 33.333%;
}

.mrw-booking-bar--overview .mrw-select {
  max-width: 100%;
}

.mrw-booking-bar--overview {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.mrw-booking-bar--overview .mrw-step-3 .mrw-step-content {
  justify-content: flex-start;
  padding-top: 0;
}

.mrw-step-3--range .mrw-step-content {
  align-items: stretch;
}

input[type="range"].mrw-range {
  width: 82%;
  max-width: 184px;
  margin: 1px 0 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
}

input[type="range"].mrw-range::-webkit-slider-runnable-track {
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  border: 0;
  box-shadow: none;
}

input[type="range"].mrw-range::-moz-range-track {
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  border: 0;
  box-shadow: none;
}

input[type="range"].mrw-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  margin-top: -4px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  background: #d9ae5f;
  box-shadow: none;
  cursor: pointer;
}

input[type="range"].mrw-range::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  background: #d9ae5f;
  box-shadow: none;
  cursor: pointer;
}

.mrw-range-meta {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
}

.mrw-range-value {
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.mrw-step-3--range .mrw-step-label {
  white-space: nowrap;
  font-size: 12px;
}

.mrw-difficulty-current {
  font-weight: 700;
}

.bct-search-advanced-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  width: 100%;
  padding: 12px 14px 0;
}

.bct-search-field {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--bct-tab-border);
  border-radius: 8px;
  padding: 10px 12px;
}

.bct-search-field__label {
  display: block;
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
}

.bct-search-field__input,
.bct-search-field__select {
  width: 100%;
  height: 35px;
  padding: 0 34px 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 13px;
  line-height: 1;
  outline: none;
}

.bct-search-field__input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.bct-search-field__select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.88) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.88) 50%, transparent 50%);
  background-position:
    calc(100% - 15px) 14px,
    calc(100% - 10px) 14px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.bct-search-field__input:focus,
.bct-search-field__select:focus {
  border-color: rgba(255, 255, 255, 0.64);
  background-color: rgba(255, 255, 255, 0.11);
}

.bct-search-field__select option {
  color: #24344a;
  background: #fff;
}

.bct-search-actions {
  width: 100%;
  margin: 0;
  padding: 12px 14px 14px;
  display: flex;
  justify-content: flex-end;
}

.bct-search-submit {
  min-width: 150px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.bct-search-submit:hover,
.bct-search-submit:focus {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.64);
  transform: none;
  box-shadow: none;
}

.bct-search-tabs.is-quick .bct-search-actions {
  display: none;
}

.bct-search-tabs.is-quick .bct-search-advanced-fields {
  display: none;
}

.bct-touren-overview__count {
  margin: 6px 0 14px;
  color: #4f5a64;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.bct-tour-card {
  min-width: 0;
}

.bct-tour-card.is-hidden {
  display: none;
}

.bct-tour-card__link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.bct-tour-card__link:focus-visible {
  outline: 2px solid #0d9488;
  outline-offset: 3px;
  border-radius: 16px;
}

.bct-tour-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  background: var(--bct-tour-card-bg);
  border: 1px dashed var(--bct-tour-line);
  border-radius: 15px;
  overflow: hidden;
}

.bct-tour-card__media {
  background: linear-gradient(135deg, #bcc8cf 0%, #e0e7eb 100%);
  min-height: 182px;
  height: 182px;
}

.bct-tour-card__media.is-empty {
  position: relative;
}

.bct-tour-card__media.is-empty::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.5), transparent 40%),
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.35), transparent 32%);
}

.bct-tour-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bct-tour-card__content {
  display: flex;
  flex-direction: column;
  min-height: 190px;
  padding: 12px 14px 16px;
}

.bct-tour-card__badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(226, 228, 230, 0.75);
  color: #6d767f;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.bct-tour-card__title {
  margin: 10px 0 8px;
  color: var(--bct-tour-text);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;

  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.bct-tour-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: var(--bct-tour-muted);
  font-size: 14px;
  line-height: 1.2;
  margin-top: auto;
}

.bct-tour-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.bct-tour-card__meta span:first-child::before,
.bct-tour-card__meta span:last-child::before {
  content: "";
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px 13px;
}

.bct-tour-card__meta span:first-child::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3.5' y='5' width='17' height='15' rx='2' fill='none' stroke='%23828a91' stroke-width='1.7'/%3E%3Cpath d='M8 3v4M16 3v4M3.5 10.5h17' fill='none' stroke='%23828a91' stroke-width='1.7'/%3E%3C/svg%3E");
}

.bct-tour-card__meta span:last-child::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4.5 18.5L10.5 12.5L14 16L19.5 8.5' fill='none' stroke='%23828a91' stroke-width='1.7'/%3E%3Ccircle cx='10.5' cy='12.5' r='1.4' fill='%23828a91'/%3E%3Ccircle cx='19.5' cy='8.5' r='1.4' fill='%23828a91'/%3E%3C/svg%3E");
}

.bct-tour-card__price {
  margin: 12px 0 0;
  color: #2f3b46;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
}

.bct-touren-block__footer {
  margin-top: 16px;
}

.bct-touren-load-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px 0 16px;
  border: 0;
  border-radius: 999px;
  background: var(--bct-tour-gold);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.bct-touren-load-more::after {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.23);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8 6l8 6l-8 6' fill='none' stroke='%23fff' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px 9px;
}

.bct-touren-load-more:hover,
.bct-touren-load-more:focus {
  background: var(--bct-tour-gold-hover);
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  .bct-touren-overview__filters {
    margin-bottom: 10px;
  }

  .bct-search-tabs__nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .bct-search-tabs__tab {
    width: 100%;
    min-height: 36px;
  }

  .bct-search-panel {
    border-radius: 0 12px 12px 12px;
  }

  .mrw-booking-wrapper--inline {
    width: 100%;
    margin-bottom: 0;
  }

  .mrw-booking-bar--overview .mrw-step-1,
  .mrw-booking-bar--overview .mrw-step-2,
  .mrw-booking-bar--overview .mrw-step-3 {
    width: 100%;
  }

  .bct-search-advanced-fields {
    grid-template-columns: 1fr;
  }

  .bct-search-actions {
    width: 100%;
  }

  .bct-search-submit {
    width: 100%;
    justify-content: center;
  }

  .bct-touren-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .bct-touren-category {
    min-height: 36px;
    font-size: 13px;
  }

  .bct-touren-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .bct-tour-card__media {
    height: 210px;
  }

  .bct-tour-card__title {
    font-size: 15px;
  }

.bct-tour-card__price {
    font-size: 18px;
  }
}

/* =========================
   Tour Hero Block (assigned tour)
   Shortcode: [touren-hero-block]
   ========================= */

.bct-tour-hero {
  --bct-tour-hero-min-h: 520px;
  --bct-tour-hero-bg-image: none;
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
  min-height: var(--bct-tour-hero-min-h);
  background-color: #bcbcbc;
  background-image: var(--bct-tour-hero-bg-image);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.bct-tour-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(38, 44, 52, 0.34) 0%, rgba(30, 35, 44, 0.44) 100%);
}

.bct-tour-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  min-height: var(--bct-tour-hero-min-h);
  margin: 0 auto;
  padding: clamp(152px, 13vw, 192px) 26px 52px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.bct-tour-hero__title {
  margin: 0 0 26px;
  max-width: 680px;
  color: #fff;
  font-size: clamp(2rem, 1.7rem + 1.05vw, 2.9rem);
  line-height: 1.16;
  font-weight: 700;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.34);
}

.bct-tour-hero__actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bct-tour-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 178px;
  padding: 0 22px;
  text-decoration: none !important;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.bct-tour-hero__btn,
.bct-tour-stage-two__btn,
.bct-tour-terms__btn,
.bct-tour-pdf__btn,
.bct-touren-load-more,
.bct-tour-card__link {
  text-decoration: none !important;
}

.bct-tour-hero__btn:hover,
.bct-tour-hero__btn:focus,
.bct-tour-hero__btn:visited,
.bct-tour-hero__btn:active,
.bct-tour-stage-two__btn:hover,
.bct-tour-stage-two__btn:focus,
.bct-tour-stage-two__btn:visited,
.bct-tour-stage-two__btn:active,
.bct-tour-terms__btn:hover,
.bct-tour-terms__btn:focus,
.bct-tour-terms__btn:visited,
.bct-tour-terms__btn:active,
.bct-tour-pdf__btn:hover,
.bct-tour-pdf__btn:focus,
.bct-tour-pdf__btn:visited,
.bct-tour-pdf__btn:active,
.bct-touren-load-more:hover,
.bct-touren-load-more:focus,
.bct-touren-load-more:visited,
.bct-touren-load-more:active,
.bct-tour-card__link:hover,
.bct-tour-card__link:focus,
.bct-tour-card__link:visited,
.bct-tour-card__link:active {
  text-decoration: none !important;
}

.bct-tour-hero__btn.is-booking {
  background: #d8ad5c;
  border-color: #d8ad5c;
  color: #fff;
  box-shadow: 0 10px 24px rgba(216, 173, 92, 0.35);
}

.bct-tour-hero__btn.is-pdf {
  background: rgba(16, 22, 28, 0.35);
  border-color: rgba(229, 236, 241, 0.6);
  color: #fff;
}

.bct-tour-hero__btn.is-disabled {
  opacity: 0.65;
  pointer-events: none;
}

.bct-tour-hero__btn.is-booking:hover,
.bct-tour-hero__btn.is-booking:focus {
  background: #cfa154;
  border-color: #cfa154;
  color: #fff;
  text-decoration: none !important;
}

.bct-tour-hero__btn.is-pdf:hover,
.bct-tour-hero__btn.is-pdf:focus {
  background: rgba(18, 26, 34, 0.55);
  border-color: rgba(245, 248, 251, 0.84);
  color: #fff;
  text-decoration: none !important;
}

.bct-tour-hero__btn:visited,
.bct-tour-hero__btn:active {
  text-decoration: none !important;
}

.bct-tour-hero__btn.is-booking::after,
.bct-tour-hero__btn.is-pdf::after {
  margin-left: 10px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.bct-tour-hero__btn.is-booking::after {
  content: "➜";
}

.bct-tour-hero__btn.is-pdf::after {
  content: none;
  margin-left: 0;
}

.bct-tour-hero__facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 0;
  background: rgba(56, 60, 66, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
}

.bct-tour-hero__fact {
  background: transparent;
  min-height: 126px;
  padding: 18px 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.bct-tour-hero__fact:last-child {
  border-right: 0;
}

.bct-tour-hero__fact-icon {
  color: #d8ad5c;
  width: 26px;
  height: 26px;
  margin-bottom: 9px;
}

.bct-tour-hero__fact-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.bct-tour-hero__fact-value {
  color: #fff;
  font-size: clamp(1.02rem, 0.98rem + 0.15vw, 1.16rem);
  line-height: 1.1;
  font-weight: 600;
}

.bct-tour-hero__fact-value--price {
  white-space: nowrap;
}

.bct-tour-hero__price-prefix,
.bct-tour-hero__price-currency {
  font-size: 0.58em;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.bct-tour-hero__price-prefix {
  margin-right: 0.14em;
}

.bct-tour-hero__price-currency {
  margin-left: 0.14em;
}

.bct-tour-hero__fact-label {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}

@media (max-width: 980px) {
  .bct-tour-hero__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 172px;
  }

  .bct-tour-hero__title {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .bct-tour-hero__facts {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }

  .bct-tour-hero__fact:nth-child(2n) {
    border-right: 0;
  }

  .bct-tour-hero__fact:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 640px) {
  .bct-tour-hero__fact {
    min-height: 106px;
  }

  .bct-tour-hero__btn {
    min-width: 148px;
    min-height: 40px;
    font-size: 11px;
  }

  .bct-tour-hero__facts {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
}

/* =========================
   Tour Info Block (below hero)
   Shortcode: [touren-info-block]
   ========================= */

.bct-tour-stage-two,
.bct-tour-terms,
.tourwizard-itinerary {
  --bct-section-kicker-bg: #0f5a52;
  --bct-section-kicker-fg: #ffffff;
  --bct-section-kicker-size: 0.72rem;
}

.bct-tour-stage-two {
  --bct-stage2-left: 56%;
  --bct-stage2-right: 44%;
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 100%;
  background: transparent;
}

.bct-tour-stage-two__inner {
  max-width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, var(--bct-stage2-left)) minmax(0, var(--bct-stage2-right));
  align-items: stretch;
  width: 100%;
  padding: 0;
  gap: 18px;
}

.bct-tour-stage-two__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}

.bct-tour-stage-two__kicker {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--bct-section-kicker-bg);
  color: var(--bct-section-kicker-fg);
  font-size: var(--bct-section-kicker-size);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  align-self: flex-start;
}

.bct-tour-stage-two__title {
  margin: 0 0 10px;
  color: #1f1f1d;
  letter-spacing: 0.01em;
  font-size: clamp(1.9rem, 1.6rem + 0.9vw, 2.55rem) !important;
  line-height: 1.1;
  font-weight: 700;
}

.bct-tour-stage-two__text {
  margin: 0 0 12px;
  color: #4f4b46;
  line-height: 1.48;
  font-size: 0.95rem !important;
}

.bct-tour-stage-two__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  text-decoration: none;
  color: #515a67;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.86rem;
  font-weight: 500;
  border: 1px solid #c3c9cf;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  transition: all 0.2s ease;
}

.bct-tour-stage-two__btn.is-terms {
  background: rgba(255, 255, 255, 0.46);
}

.bct-tour-stage-two__btn.is-route {
  background: rgba(255, 255, 255, 0.46);
}

.bct-tour-stage-two__btn:hover,
.bct-tour-stage-two__btn:focus {
  color: #2f3a47;
  border-color: #9da8b3;
  background: rgba(255, 255, 255, 0.74);
}

.bct-tour-stage-two__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.bct-tour-stage-two__right {
  min-height: 100%;
  display: flex;
}

.bct-tour-stage-two__image-wrap {
  width: 100%;
  min-height: 0;
  aspect-ratio: 1.25 / 1;
  border-radius: 12px;
  overflow: hidden;
  background: #d8d8d8;
}

.bct-tour-stage-two__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bct-tour-stage-two__image-wrap.is-placeholder {
  background: #d1d1d1;
}

@media (max-width: 980px) {
  .bct-tour-stage-two__inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0;
  }

  .bct-tour-stage-two__left {
    padding: 0;
  }

  .bct-tour-stage-two__title {
    font-size: clamp(1.55rem, 1.3rem + 1.4vw, 2rem) !important;
  }

  .bct-tour-stage-two__image-wrap {
    max-height: 520px;
    aspect-ratio: 1.3 / 1;
  }
}

@media (max-width: 640px) {
  .bct-tour-stage-two__left {
    gap: 0;
  }

  .bct-tour-stage-two__title {
    font-size: clamp(1.55rem, 1.3rem + 1.4vw, 2rem) !important;
  }

  .bct-tour-stage-two__text {
    font-size: 0.92rem !important;
    margin-bottom: 10px;
  }

  .bct-tour-stage-two__btn {
    min-height: 36px;
    font-size: 0.8rem;
    padding: 0 13px;
  }

  .bct-tour-stage-two__actions {
    gap: 8px;
  }
}

/* =========================
   Tour Termine Block
   Shortcode: [touren-termine-block]
   ========================= */

.bct-tour-terms {
  margin: 28px 0 34px;
  --bct-terms-line: #c9c1b6;
  --bct-terms-text: #2f2f2d;
  --bct-terms-muted: #777068;
  --bct-terms-accent: #c96e31;
  --bct-terms-accent-dark: #af5b24;
}

.bct-tour-terms__head {
  margin-bottom: 16px;
}

.bct-tour-terms__title {
  margin: 0;
  color: var(--bct-terms-text);
  font-size: clamp(1.7rem, 1.35rem + 1vw, 2.95rem) !important;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.bct-tour-terms__kicker {
  display: inline-flex;
  align-items: center;
  margin: 0 0 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--bct-section-kicker-bg);
  color: var(--bct-section-kicker-fg);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: var(--bct-section-kicker-size);
  line-height: 1;
  font-weight: 700;
}

.bct-tour-terms__empty {
  margin: 0;
  color: var(--bct-terms-muted);
}

.bct-tour-terms__table-wrap {
  width: 100%;
}

.bct-tour-terms__table-head,
.bct-tour-terms__row {
  display: grid;
  grid-template-columns: minmax(220px, 1.5fr) minmax(130px, 1fr) minmax(130px, 1fr) minmax(130px, 1fr) minmax(140px, 1fr) minmax(150px, 1fr);
  gap: 14px;
  align-items: center;
}

.bct-tour-terms__table-head {
  border-bottom: 1px solid var(--bct-terms-line);
  padding: 0 0 12px;
  margin-bottom: 2px;
}

.bct-tour-terms__cell--head {
  color: #6f6a62;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.7rem;
  line-height: 1.3;
  font-weight: 600;
}

.bct-tour-terms__cell--head span {
  display: block;
  margin-top: 4px;
  color: #90897f;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.69rem;
  font-weight: 500;
}

.bct-tour-terms__row {
  border-bottom: 1px solid var(--bct-terms-line);
  padding: 14px 0;
}

.bct-tour-terms__cell {
  min-width: 0;
}

.bct-tour-terms__date {
  margin: 0;
  color: #2f2f2d;
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 600;
}

.bct-tour-terms__code {
  margin: 5px 0 0;
  color: #8b847a;
  font-size: 0.7rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bct-tour-terms__price {
  margin: 0;
  color: #1e1e1d;
  font-size: 1.13rem;
  line-height: 1.2;
  font-weight: 600;
}

.bct-tour-terms__price--single {
  color: #5a5752;
}

.bct-tour-terms__availability {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  min-width: 122px;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.67rem;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  background: #ece7de;
  color: #8b847a;
}

.bct-tour-terms__availability.is-available {
  background: #e5ece5;
  color: #6f7a6f;
}

.bct-tour-terms__availability.is-limited {
  background: #f3e5d8;
  color: #c47b3e;
}

.bct-tour-terms__availability.is-soldout {
  background: #e6e0d7;
  color: #9b9389;
}

.bct-tour-terms__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  width: 100%;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: var(--bct-terms-accent);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.bct-tour-terms__btn:hover,
.bct-tour-terms__btn:focus {
  background: var(--bct-terms-accent-dark);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.bct-tour-terms__btn.is-soldout {
  background: #c9c3bb;
}

.bct-tour-terms__btn.is-soldout:hover,
.bct-tour-terms__btn.is-soldout:focus {
  background: #beb7ae;
  color: #fff;
  text-decoration: none;
}

.bct-tour-terms__note {
  margin: 10px 0 0;
  color: #8a837a;
  font-size: 0.74rem;
  line-height: 1.3;
}

@media (max-width: 980px) {
  .bct-tour-terms__table-head {
    display: none;
  }

  .bct-tour-terms__table-body {
    display: grid;
    gap: 10px;
  }

  .bct-tour-terms__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px 10px;
    border: 1px solid #d8d1c7;
    border-radius: 14px;
    padding: 12px;
  }

  .bct-tour-terms__cell {
    display: block;
    margin: 0;
  }

  .bct-tour-terms__cell::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 3px;
    color: #7d766d;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.62rem;
    line-height: 1.2;
    font-weight: 600;
  }

  .bct-tour-terms__cell--date::before {
    content: none;
  }

  .bct-tour-terms__cell--date {
    grid-column: 1 / -1;
  }

  .bct-tour-terms__date {
    font-size: 1.08rem;
    line-height: 1.2;
    margin-bottom: 0;
  }

  .bct-tour-terms__code {
    margin-top: 4px;
    font-size: 0.64rem;
    letter-spacing: 0.03em;
  }

  .bct-tour-terms__price {
    font-size: 1rem;
    line-height: 1.2;
  }

  .bct-tour-terms__price--single {
    font-size: 1rem;
  }

  .bct-tour-terms__cell--availability {
    grid-column: 1 / 2;
  }

  .bct-tour-terms__cell--action {
    grid-column: 2 / 3;
  }

  .bct-tour-terms__availability {
    min-height: 28px;
    min-width: 0;
    width: 100%;
    padding-inline: 10px;
    font-size: 0.62rem;
  }

  .bct-tour-terms__btn {
    min-height: 34px;
    border-radius: 10px;
    font-size: 0.68rem;
    padding: 0 8px;
  }

  .bct-tour-terms__note {
    margin-top: 8px;
    font-size: 0.68rem;
  }
}

@media (max-width: 680px) {
  .bct-tour-terms__title {
    font-size: clamp(1.35rem, 1.1rem + 2.2vw, 1.7rem) !important;
  }

  .bct-tour-terms__kicker {
    margin-bottom: 9px;
    padding: 5px 11px;
    font-size: 0.62rem;
  }

  .bct-tour-terms__date {
    font-size: 1rem;
  }

  .bct-tour-terms__price {
    font-size: 0.95rem;
  }

  .bct-tour-terms__price--single {
    font-size: 0.95rem;
  }

  .bct-tour-terms__row {
    padding: 10px;
    gap: 7px 8px;
  }

  .bct-tour-terms__btn {
    min-height: 32px;
    font-size: 0.64rem;
  }
}

/* =========================
   Shortcode: [touren-leistungen-block]
   ========================= */

.bct-tour-services {
  margin: 30px 0 36px;
  --bct-services-border: #cec6bb;
  --bct-services-text: #3c3b39;
  --bct-services-muted: #787168;
  --bct-services-icon-yes: #5d7f73;
  --bct-services-icon-no: #b56d4a;
}

.bct-tour-services__head {
  margin-bottom: 14px;
}

.bct-tour-services__title {
  margin: 0;
  color: #1f1f1d;
  font-size: clamp(1.3rem, 1.08rem + 0.5vw, 1.75rem);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.bct-tour-services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  align-items: start;
  border: 1px dashed var(--bct-services-border);
  border-radius: 16px;
  padding: 24px 22px;
}

.bct-tour-services__column {
  min-width: 0;
  padding: 0 18px;
}

.bct-tour-services__column:first-child {
  border-right: 1px solid rgba(206, 198, 187, 0.7);
}

.bct-tour-services__column-title {
  margin: 0;
  padding: 0 0 10px;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: 0;
  font-weight: 700;
  color: #1f1f1d;
}

.bct-tour-services__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.bct-tour-services__item {
  display: grid;
  grid-template-columns: 19px 1fr;
  gap: 9px;
  align-items: start;
  padding: 0;
}

.bct-tour-services__icon {
  width: 15px;
  height: 15px;
  display: inline-flex;
  margin-top: 2px;
}

.bct-tour-services__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.bct-tour-services__icon.is-included {
  color: var(--bct-services-icon-yes);
}

.bct-tour-services__icon.is-excluded {
  color: var(--bct-services-icon-no);
}

.bct-tour-services__text {
  color: var(--bct-services-text);
  font-size: 0.96rem;
  line-height: 1.42;
}

.bct-tour-services__column-empty {
  margin: 0;
  padding: 2px 0 0;
  color: var(--bct-services-muted);
  font-size: 0.9rem;
}

.bct-tour-services__empty {
  margin: 0;
  color: var(--bct-services-muted);
}

@media (max-width: 900px) {
  .bct-tour-services__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px 14px;
  }

  .bct-tour-services__column {
    padding: 0;
  }

  .bct-tour-services__column:first-child {
    border-right: 0;
    border-bottom: 1px solid rgba(206, 198, 187, 0.7);
    padding-bottom: 14px;
  }

  .bct-tour-services__column:last-child {
    padding-top: 2px;
  }
}

/* =========================
   Tour PDF Block
   Shortcode: [touren-pdf-block]
   ========================= */

.bct-tour-pdf {
  margin: 24px 0 30px;
  --bct-pdf-card: #f6f3ee;
  --bct-pdf-border: #d7d0c6;
  --bct-pdf-text: #2f2f2d;
  --bct-pdf-muted: #6f6961;
  --bct-pdf-accent: #5e857e;
  --bct-pdf-accent-2: #d8ad5c;
}

.bct-tour-pdf__title {
  margin: 0 0 7px;
  color: var(--bct-pdf-text);
  font-size: clamp(1.06rem, 1rem + 0.2vw, 1.26rem);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0;
}

.bct-tour-pdf__text {
  margin: 0;
  color: var(--bct-pdf-muted);
  line-height: 1.45;
  font-size: 0.92rem;
}

.bct-tour-pdf__empty {
  margin-top: 16px;
  display: inline-block;
  color: #8b8378;
  font-size: 0.8rem;
  line-height: 1.3;
}

.bct-tour-pdf__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.bct-tour-pdf__card {
  min-width: 0;
  border: 1px solid var(--bct-pdf-border);
  border-radius: 14px;
  background: var(--bct-pdf-card);
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.bct-tour-pdf__card.is-terms {
  background: var(--bct-pdf-accent);
  border-color: #52726c;
}

.bct-tour-pdf__card.is-terms .bct-tour-pdf__title {
  color: #fff;
  font-size: clamp(1.6rem, 1.45rem + 0.5vw, 2.05rem);
  line-height: 1.1;
}

.bct-tour-pdf__card.is-terms .bct-tour-pdf__text {
  color: rgba(255, 255, 255, 0.9);
}

.bct-tour-pdf__card-icon {
  width: 18px;
  height: 18px;
  color: #5f5b55;
  margin-bottom: 9px;
  display: inline-flex;
}

.bct-tour-pdf__card.is-terms .bct-tour-pdf__card-icon {
  color: rgba(255, 255, 255, 0.85);
}

.bct-tour-pdf__card-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.bct-tour-pdf__btn {
  margin-top: auto;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 700;
}

.bct-tour-pdf__btn.is-link {
  color: #5f5b55;
  padding-top: 16px;
}

.bct-tour-pdf__btn.is-link:hover,
.bct-tour-pdf__btn.is-link:focus {
  color: #3f3c37;
}

.bct-tour-pdf__btn.is-cta {
  margin-top: 14px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--bct-pdf-accent-2);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bct-tour-pdf__btn.is-cta:hover,
.bct-tour-pdf__btn.is-cta:focus {
  background: #c99f52;
  color: #fff;
}

@media (max-width: 680px) {
  .bct-tour-pdf__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .bct-tour-pdf__card {
    border-radius: 12px;
    padding: 12px;
  }

  .bct-tour-pdf__title {
    font-size: 1rem;
  }

  .bct-tour-pdf__card.is-terms .bct-tour-pdf__title {
    font-size: clamp(1.28rem, 1.1rem + 1.5vw, 1.6rem);
  }

  .bct-tour-pdf__text {
    font-size: 0.86rem;
  }

  .bct-tour-pdf__btn {
    font-size: 0.68rem;
  }

  .bct-tour-pdf__btn.is-cta {
    min-height: 32px;
    padding: 0 12px;
  }
}

/* =========================
   Tourtage Block (TourWizard)
   Shortcodes: [tourwizard_itinerary], [touren_tage_block]
   ========================= */

.tourwizard-itinerary {
  --tw-ui-border: #cfc8bc;
  --tw-ui-card-bg: #d4cfbf;
  --tw-ui-text: #222220;
  --tw-ui-muted: #59554f;
  --tw-ui-accent: #003f38;
  --tw-ui-accent-soft: #dce6e1;
  --tw-ui-pill-bg: #ece9e2;
  margin: 34px 0 46px;
  padding-left: 0;
  padding-right: 0;
}

.tourwizard-itinerary__head {
  margin-bottom: 18px;
  padding-bottom: 0;
  border-bottom: 0;
}

.tourwizard-itinerary__head::before {
  content: "Tourtage";
  display: inline-flex;
  align-items: center;
  margin: 0 0 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--bct-section-kicker-bg);
  color: var(--bct-section-kicker-fg);
  font-size: var(--bct-section-kicker-size);
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tourwizard-itinerary__intro {
  margin: 0 0 16px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.tourwizard-itinerary__title {
  margin: 0;
  color: var(--tw-ui-text);
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: clamp(1.9rem, 1.6rem + 0.9vw, 2.55rem);
  line-height: 1.1;
  font-weight: 700;
}

.tourwizard-itinerary__intro-title {
  margin: 0 0 8px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #1f1f1d;
  font-size: clamp(1.18rem, 1.07rem + 0.22vw, 1.34rem);
  line-height: 1.22;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.01em;
}

.tourwizard-itinerary__intro-text {
  margin: 0;
  color: #5c5851;
  font-size: 0.95rem;
  line-height: 1.45;
  font-weight: 600;
}

.tourwizard-itinerary__marker {
  display: inline-block;
  margin-right: 6px;
  padding: 2px 8px;
  border-radius: 0;
  background: #2bb6a3;
  color: #fff;
  font-size: 0.82em;
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  vertical-align: baseline;
}

.tourwizard-itinerary__marker.is-alt {
  background: #2bb6a3;
}

.tourwizard-itinerary__marker.is-alert {
  background: #d96a1f;
}

.tourwizard-itinerary__progress {
  height: 5px;
  border-radius: 999px;
  background: #e5e9ef;
  margin: 0 0 16px;
}

.tourwizard-itinerary__progress-bar {
  background: linear-gradient(90deg, #53736d 0%, #669189 100%);
}

.tourwizard-itinerary__steps {
  display: flex;
  flex-wrap: wrap;
  overflow-x: visible;
  row-gap: 8px;
  column-gap: 8px;
  margin: 0 0 14px;
  padding-bottom: 0;
}

.tourwizard-itinerary__step {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  border: 1px solid #879088;
  background: #f0efea;
  color: #33433e;
  border-radius: 999px;
  padding: 0;
  font-size: 0.86rem;
  line-height: 1.1;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tourwizard-itinerary__step.is-active {
  border-color: var(--tw-ui-accent);
  background: var(--tw-ui-accent);
  color: #fff;
  font-weight: 700;
}

.tourwizard-itinerary__step.is-past {
  border-color: #8d968e;
  background: #e7ecea;
  color: #2f3e39;
}

.tourwizard-itinerary__layout {
  display: grid;
  grid-template-columns: minmax(340px, 1.05fr) minmax(380px, 1fr);
  gap: 22px;
  border: 1px solid var(--tw-ui-border);
  border-radius: 14px;
  background: var(--tw-ui-card-bg);
  padding: 20px;
  align-items: stretch;
}

.tourwizard-itinerary__days {
  order: 2;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
  padding: 0;
  padding-bottom: 56px;
  min-height: 680px;
  position: relative;
}

.tourwizard-itinerary__map-wrap {
  order: 1;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
  position: static;
}

.tourwizard-itinerary__day-title {
  color: #0f0f0f;
  font-size: clamp(2rem, 1.7rem + 0.7vw, 2.6rem);
  line-height: 1.06;
  margin-top: 4px;
}

.tourwizard-itinerary__day-top {
  display: block;
  margin-bottom: 4px;
}

.tourwizard-itinerary__day-location {
  color: #2e2d2a;
  font-size: 0.98rem;
  line-height: 1.35;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #746f65;
}

.tourwizard-itinerary__day-badge {
  background: transparent;
  color: #25352f;
  padding: 0;
  min-height: 0;
  border-radius: 0;
  font-size: 0.86rem;
  text-transform: none;
  letter-spacing: 0;
}

.tourwizard-itinerary__note {
  margin: 0;
  color: #4b4842;
  font-size: 0.74rem;
  line-height: 1.3;
  position: absolute;
  right: 0;
  bottom: 0;
  text-align: right;
}

.tourwizard-itinerary__fold {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}

.tourwizard-itinerary__fold + .tourwizard-itinerary__fold {
  margin-top: 24px;
}

.tourwizard-itinerary__fold summary {
  display: none;
}

.tourwizard-itinerary__day-text {
  color: #191917;
  font-size: 1.01rem;
  line-height: 1.52;
}

.tourwizard-itinerary__gallery {
  margin-top: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.tourwizard-itinerary__gallery-item {
  border-color: #d8ddd4;
  border-radius: 6px;
  background: #fff;
}

.tourwizard-itinerary__gallery-item img {
  aspect-ratio: 4 / 3;
  height: auto;
}

.tourwizard-itinerary__gallery-caption {
  display: none;
}

.tourwizard-itinerary__map {
  border-bottom: 0;
  border-radius: 6px;
  min-height: 430px;
  height: 430px;
}

.tourwizard-itinerary__map .leaflet-control-container {
  font-size: 12px;
}

html.tw-lightbox-open {
  overflow: hidden;
}

.tourwizard-itinerary__lightbox {
  position: fixed;
  inset: 0;
  background: rgba(28, 36, 48, 0.84);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 24px;
}

.tourwizard-itinerary__lightbox.is-open {
  display: flex;
}

.tourwizard-itinerary__lightbox-figure {
  margin: 0;
  max-width: min(1040px, calc(100vw - 140px));
  max-height: calc(100vh - 120px);
  display: grid;
  gap: 10px;
}

.tourwizard-itinerary__lightbox-img {
  max-width: 100%;
  max-height: calc(100vh - 180px);
  width: auto;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.tourwizard-itinerary__lightbox-caption {
  color: #e4e8ee;
  font-size: 0.9rem;
  line-height: 1.45;
  text-align: center;
}

.tourwizard-itinerary__lightbox-close,
.tourwizard-itinerary__lightbox-nav {
  border: 0;
  cursor: pointer;
  color: #f3f6fa;
  background: rgba(22, 30, 40, 0.56);
  border-radius: 999px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tourwizard-itinerary__lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  line-height: 1;
}

.tourwizard-itinerary__lightbox-nav {
  position: absolute;
  top: 50%;
  margin-top: -21px;
  font-size: 28px;
  line-height: 1;
}

.tourwizard-itinerary__lightbox-nav.is-prev {
  left: 20px;
}

.tourwizard-itinerary__lightbox-nav.is-next {
  right: 20px;
}

/* SEO-Block normal im Content-Flow anzeigen (kein Viewport-Breakout) */
.tourwizard-seo-content {
  clear: both;
}

.tourwizard-seo-content.is-fullwidth {
  position: static;
  left: auto;
  right: auto;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 980px) {
  .bct-tour-terms,
  .bct-tour-services,
  .bct-tour-pdf {
    box-sizing: border-box;
    padding-left: 16px;
    padding-right: 16px;
  }

  .bct-tour-terms__head,
  .bct-tour-services__head {
    margin-bottom: 14px;
  }

  .bct-tour-terms__grid {
    gap: 14px;
  }

  .tourwizard-itinerary {
    padding-left: 0;
    padding-right: 0;
  }

  .tourwizard-itinerary__steps {
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 0;
    margin-bottom: 12px;
  }

  .tourwizard-itinerary__step {
    white-space: normal;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    font-size: 0.76rem;
  }

  .tourwizard-itinerary__layout {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px;
  }

  .tourwizard-itinerary__days {
    order: 2;
    padding: 0;
    padding-bottom: 42px;
    min-height: 0;
  }

  .tourwizard-itinerary__map-wrap {
    order: 1;
  }

  .tourwizard-itinerary__map {
    min-height: 280px;
    height: 280px;
  }

  .tourwizard-itinerary__title {
    font-size: clamp(1.55rem, 1.3rem + 1.4vw, 2rem);
  }

  .tourwizard-itinerary__day-title {
    font-size: clamp(1.45rem, 1.2rem + 1vw, 1.85rem);
  }

  .tourwizard-itinerary__day-text {
    font-size: 0.95rem;
    line-height: 1.46;
  }

  .tourwizard-itinerary__head::before {
    margin-bottom: 10px;
    font-size: 0.7rem;
  }

  .tourwizard-itinerary__note {
    font-size: 0.7rem;
  }

  .tourwizard-itinerary__lightbox {
    padding: 14px;
  }

  .tourwizard-itinerary__lightbox-figure {
    max-width: calc(100vw - 28px);
    max-height: calc(100vh - 110px);
  }

  .tourwizard-itinerary__lightbox-img {
    max-height: calc(100vh - 170px);
  }

  .tourwizard-itinerary__lightbox-nav {
    width: 36px;
    height: 36px;
    margin-top: -18px;
    font-size: 24px;
  }
}

/* =========================
   Single Post: Navigation + Footer-Abstand
   ========================= */

.single-post .post-navigation {
  display: none !important;
}

.single-post article.post,
.single-post .site-main > article {
  padding-bottom: clamp(56px, 7vw, 110px);
}

/* =========================
   Tour Header ohne Seitenränder
   ========================= */

body.single-post.category-touren #masthead {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 120;
  background: transparent !important;
}

body.single-post.category-touren #masthead .ast-main-header-wrap,
body.single-post.category-touren #masthead .ast-primary-header-bar,
body.single-post.category-touren #masthead .site-primary-header-wrap,
body.single-post.category-touren #masthead .main-header-bar {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.admin-bar.single-post.category-touren #masthead {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar.single-post.category-touren #masthead {
    top: 46px;
  }
}

.ast-single-post.ast-page-builder-template .site-main > article.category-touren {
  padding-top: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.single-post article.category-touren .entry-content > #headerbild_touren.wp-block-spectra-container,
.single-post article.category-touren .entry-content > #headerbild_touren.wp-block-uagb-container {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
}

/* =========================
   Buchungsanfrage Formular
   ========================= */

.bct-booking-inquiry-form {
  display: grid;
  gap: 16px;
}

.bct-booking-inquiry-form__status {
  margin: 0 0 14px;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 0.95rem;
}

.bct-booking-inquiry-form__status.is-success {
  background: #e8f6ee;
  color: #175e35;
}

.bct-booking-inquiry-form__status.is-error {
  background: #fdecea;
  color: #7f1d1d;
}

.bct-booking-inquiry-form__row {
  display: grid;
  gap: 12px;
}

.bct-booking-inquiry-form__row.is-single {
  grid-template-columns: minmax(0, 1fr);
}

.bct-booking-inquiry-form__row.is-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bct-booking-inquiry-form__row.is-three {
  grid-template-columns: 1.1fr 0.7fr 1.2fr;
}

.bct-booking-inquiry-form__row--street {
  grid-template-columns: 1.4fr 0.6fr;
}

.bct-booking-inquiry-form__tour-meta {
  margin-top: -4px;
  padding: 6px 10px;
  border-left: 3px solid #0d9488;
  background: #f7fbfa;
  color: #30423a;
  font-size: 0.92rem;
}

.bct-booking-inquiry-form__tour-meta p {
  margin: 3px 0;
}

.bct-booking-inquiry-form__field label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin: 0 0 6px;
}

.bct-booking-inquiry-form__field input[type="text"],
.bct-booking-inquiry-form__field input[type="email"],
.bct-booking-inquiry-form__field input[type="number"],
.bct-booking-inquiry-form__field textarea {
  width: 100%;
  border: 1px solid #d2d6dc;
  border-radius: 4px;
  background: #fff;
  color: #1f2933;
  padding: 10px 11px;
  font-size: 0.95rem;
  line-height: 1.45;
}

.bct-booking-inquiry-form__field textarea {
  resize: vertical;
  min-height: 150px;
}

.bct-booking-inquiry-form__field input[readonly] {
  background: #f6f7f9;
  color: #5b6470;
}

.bct-booking-inquiry-form__field--mini-group > label {
  margin-bottom: 8px;
}

.bct-booking-inquiry-form__mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.bct-booking-inquiry-form__mini-field input[type="number"] {
  text-align: center;
}

.bct-booking-inquiry-form__mini-field label {
  margin: 4px 0 0;
  font-size: 0.86rem;
  color: #5b6470;
  font-weight: 500;
}

.bct-booking-inquiry-form__helper {
  margin: -2px 0 10px;
  font-size: 0.9rem;
  color: #5b6470;
}

.bct-booking-inquiry-form__honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.bct-ride-challenge {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.bct-ride-challenge__track {
  position: relative;
  height: 54px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(90deg, #f3ede5 0%, #efe8de 100%);
  overflow: hidden;
  touch-action: none;
}

.bct-ride-challenge__target {
  position: absolute;
  top: 0;
  left: var(--bct-ride-zone-left, 76%);
  width: var(--bct-ride-zone-width, 12%);
  height: 100%;
  background: linear-gradient(180deg, rgba(194, 101, 42, 0.08) 0%, rgba(194, 101, 42, 0.14) 100%);
  border-radius: 999px;
}

.bct-ride-challenge__bike {
  position: absolute;
  top: 50%;
  left: 0;
  width: 78px;
  height: 36px;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  cursor: grab;
  color: #2e3f38;
  transform: translate(-50%, -50%);
  touch-action: none;
}

.bct-ride-challenge__bike svg {
  width: 100%;
  height: 100%;
  display: block;
}

.bct-ride-challenge__bike-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  pointer-events: none;
}

.bct-ride-challenge__bike circle,
.bct-ride-challenge__bike path {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bct-ride-challenge.is-dragging .bct-ride-challenge__bike,
.bct-ride-challenge__bike:active {
  cursor: grabbing;
}

.bct-ride-challenge__bike:focus-visible {
  outline: 2px solid #c2652a;
  outline-offset: 2px;
}

.bct-ride-challenge__status {
  margin: 10px 0 0;
  font-size: 0.9rem;
  color: #605850;
}

.bct-ride-challenge[data-ride-ok="1"] .bct-ride-challenge__status {
  color: #8a4518;
}

.bct-booking-inquiry-form__privacy-text {
  margin: 0 0 10px;
  font-size: 0.93rem;
  line-height: 1.55;
  color: #435160;
}

.bct-booking-inquiry-form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.bct-booking-inquiry-form__checkbox-label input[type="checkbox"] {
  margin-top: 0.2em;
}

.bct-booking-inquiry-form__actions {
  margin-top: 6px;
}

.bct-booking-inquiry-form__submit {
  border: 0;
  border-radius: 4px;
  background: #0d9488;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 11px 22px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.bct-booking-inquiry-form__submit:hover,
.bct-booking-inquiry-form__submit:focus {
  background: #0b7f74;
  transform: translateY(-1px);
}

@media (max-width: 920px) {
  .bct-booking-inquiry-form__row.is-two,
  .bct-booking-inquiry-form__row.is-three,
  .bct-booking-inquiry-form__row--street {
    grid-template-columns: minmax(0, 1fr);
  }

  .bct-booking-inquiry-form__mini-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* =========================
   Booking Form V2 Layout
   ========================= */

.bct-booking-v2 {
  background: #faf5ee;
  color: #3a302a;
}

.bct-booking-v2.is-plain {
  background: transparent;
}

.bct-booking-v2__status {
  margin: 0 0 14px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.95rem;
}

.bct-booking-v2__status.is-success {
  background: #e8f6ee;
  color: #175e35;
}

.bct-booking-v2__status.is-error {
  background: #fdecea;
  color: #7f1d1d;
}

.bct-booking-v2__layout {
  display: grid;
  grid-template-columns: minmax(320px, 40%) minmax(0, 1fr);
  min-height: 760px;
  border: 1px solid #e4ddd3;
  border-radius: 14px;
  overflow: hidden;
  background: #faf5ee;
}

.bct-booking-v2__visual {
  position: relative;
  min-height: 100%;
}

.bct-booking-v2__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bct-booking-v2__visual-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.bct-booking-v2__visual-overlay h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.12;
}

.bct-booking-v2__visual-overlay p {
  margin: 10px 0 0;
  font-size: 1rem;
  line-height: 1.5;
}

.bct-booking-v2__form-col {
  background: #faf5ee;
  overflow-y: auto;
}

.bct-booking-v2.is-form-only .bct-booking-v2__form-col {
  background: transparent;
  overflow: visible;
}

.bct-booking-v2__form {
  max-width: 880px;
  margin: 0 auto;
  padding: 26px 24px 30px;
  display: grid;
  gap: 18px;
}

.bct-booking-v2.is-form-only .bct-booking-v2__form {
  max-width: none;
  margin: 0;
}

.bct-booking-v2__form-col--solo .bct-booking-v2__form {
  padding-left: 0;
  padding-right: 0;
}

.bct-booking-v2__head h2 {
  margin: 0 0 6px;
  font-size: clamp(1.85rem, 2.4vw, 2.65rem);
  line-height: 1.08;
  color: #3a302a;
}

.bct-booking-v2__head p {
  margin: 0;
  color: #605850;
  font-size: 0.98rem;
}

.bct-booking-v2__section {
  background: transparent;
}

.bct-booking-v2__section--soft {
  background: #f6f0e8;
  border: 1px solid #ddd5cb;
  border-radius: 14px;
  padding: 16px;
}

.bct-booking-v2.is-plain .bct-booking-v2__section--soft {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.bct-booking-v2__section h3 {
  margin: 0 0 12px;
  font-size: 1.32rem;
  color: #3a302a;
}

.bct-booking-v2__grid {
  display: grid;
  gap: 12px;
}

.bct-booking-v2__grid.is-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bct-booking-v2__field label {
  display: block;
  margin: 0 0 6px;
  font-size: 0.88rem;
  color: #605850;
}

.bct-booking-v2__field input[type="text"],
.bct-booking-v2__field input[type="email"],
.bct-booking-v2__field input[type="tel"],
.bct-booking-v2__field input[type="date"],
.bct-booking-v2__field input[type="time"],
.bct-booking-v2__field input[type="number"],
.bct-booking-v2__field select,
.bct-booking-v2__field textarea {
  width: 100%;
  border: 1px solid #d8d0c8;
  border-radius: 10px;
  background: #fff;
  color: #3a302a;
  padding: 11px 12px;
  line-height: 1.4;
  box-sizing: border-box;
}

.bct-booking-v2__field select {
  appearance: auto;
}

.bct-booking-v2__field input[readonly] {
  background: #f3eee8;
  color: #605850;
}

.bct-booking-v2__field-note {
  display: block;
  margin-top: 5px;
  color: #74695f;
  font-size: 0.78rem;
}

.bct-booking-v2__field-link {
  display: inline-block;
  margin-top: 7px;
  color: #c2652a;
  font-weight: 700;
  font-size: 0.86rem;
  text-decoration: none;
}

.bct-booking-v2__field-link:hover,
.bct-booking-v2__field-link:focus {
  text-decoration: underline;
}

.bct-booking-v2__tour-meta {
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  font-size: 0.92rem;
  color: #4f463f;
}

.bct-booking-v2__tour-meta p {
  margin: 3px 0;
}

.bct-booking-v2__address {
  border: 1px solid #d8d0c8;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.bct-booking-v2__address-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.bct-booking-v2__address-row > div {
  border-bottom: 1px solid #e7e1d9;
}

.bct-booking-v2__address-row:last-child > div {
  border-bottom: 0;
}

.bct-booking-v2__address-row input {
  width: 100%;
  border: 0;
  border-radius: 0;
  padding: 12px;
  box-sizing: border-box;
}

.bct-booking-v2__address-row.is-2-1 {
  grid-template-columns: 2fr 1fr;
}

.bct-booking-v2__address-row.is-2-1 > div:first-child {
  border-right: 1px solid #e7e1d9;
}

.bct-booking-v2__address-row.is-1-3 {
  grid-template-columns: 1fr 3fr;
}

.bct-booking-v2__address-row.is-1-3 > div:first-child {
  border-right: 1px solid #e7e1d9;
}

.bct-booking-v2__address-row.is-1-1-2 {
  grid-template-columns: 1fr 1fr 2fr;
}

.bct-booking-v2__address-row.is-1-1-2 > div:not(:last-child) {
  border-right: 1px solid #e7e1d9;
}

.bct-booking-v2__address .bct-booking-v2__field-note {
  margin-top: -4px;
  padding: 0 12px 10px;
}

.bct-booking-v2__counter-group {
  margin-top: 12px;
  border-top: 1px solid #d9d1c8;
}

.bct-booking-v2__counter {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #ddd5cb;
}

.bct-booking-v2__counter:last-child {
  border-bottom: 0;
}

.bct-booking-v2__counter strong {
  display: block;
  font-size: 0.98rem;
  color: #3a302a;
}

.bct-booking-v2__counter small {
  display: block;
  margin-top: 3px;
  color: #605850;
}

.bct-booking-v2__counter-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bct-booking-v2__counter-controls button {
  width: 33px;
  height: 33px;
  border-radius: 999px;
  border: 1px solid #bfb5aa;
  background: #fff;
  color: #3f3832;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}

.bct-booking-v2__counter-controls button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.bct-booking-v2__counter-controls input {
  width: 42px;
  text-align: center;
  border: 0;
  background: transparent;
  color: #3a302a;
  font-size: 1.03rem;
  padding: 0;
  pointer-events: none;
  -moz-appearance: textfield;
  appearance: textfield;
}

.bct-booking-v2__counter-controls input::-webkit-outer-spin-button,
.bct-booking-v2__counter-controls input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.bct-booking-v2__option {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #ddd5cb;
}

.bct-booking-v2__option label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #3a302a;
  font-size: 0.93rem;
  line-height: 1.45;
}

.bct-booking-v2__option input[type="checkbox"] {
  margin-top: 0.2em;
}

.bct-booking-v2__driver-bikes {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #ddd5cb;
}

.bct-booking-v2__driver-bikes-head {
  margin: 0 0 12px;
}

.bct-booking-v2__driver-bikes-head strong {
  display: block;
  font-size: 0.98rem;
  color: #3a302a;
}

.bct-booking-v2__driver-bikes-head small {
  display: block;
  margin-top: 3px;
  color: #605850;
}

.bct-booking-v2__helper {
  margin: -2px 0 10px;
  color: #605850;
  font-size: 0.9rem;
}

.bct-booking-v2__privacy p {
  margin: 0 0 9px;
  color: #605850;
  font-size: 0.92rem;
  line-height: 1.55;
}

.bct-booking-v2__privacy label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #3a302a;
  font-size: 0.93rem;
}

.bct-booking-v2__privacy input[type="checkbox"] {
  margin-top: 0.2em;
}

.bct-booking-v2__actions {
  margin-top: 6px;
}

.bct-booking-v2__submit {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 13px 16px;
  background: #c2652a;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
}

.bct-booking-v2__bike-fallback {
  display: inline-block;
  color: #c2652a;
  font-weight: 700;
  font-size: 0.86rem;
}

@media (max-width: 980px) {
  .bct-booking-v2__layout {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  .bct-booking-v2__visual {
    display: none;
  }

  .bct-booking-v2__form {
    padding: 20px 14px 24px;
  }

  .bct-booking-v2__grid.is-2,
  .bct-booking-v2__address-row.is-2-1,
  .bct-booking-v2__address-row.is-1-3,
  .bct-booking-v2__address-row.is-1-1-2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .bct-booking-v2__address-row.is-2-1 > div:first-child,
  .bct-booking-v2__address-row.is-1-3 > div:first-child,
  .bct-booking-v2__address-row.is-1-1-2 > div:not(:last-child) {
    border-right: 0;
  }

  .bct-booking-v2__counter {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* =========================
   Booking Wrapper Blocks
   ========================= */

.bct-booking-wrap {
  --bct-wrap-image: 40%;
  --bct-wrap-content: 60%;
  --bct-wrap-gap: 0px;
  --bct-wrap-min-height: 760px;
  display: grid;
  grid-template-columns: minmax(280px, var(--bct-wrap-image)) minmax(0, var(--bct-wrap-content));
  align-items: start;
  gap: var(--bct-wrap-gap);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: var(--bct-wrap-min-height);
  background: #faf5ee;
}

.bct-booking-wrap__image {
  position: sticky;
  top: 24px;
  align-self: start;
  height: var(--bct-image-height, 68vh);
  min-height: var(--bct-image-min-height, 420px);
  max-height: 820px;
  overflow: hidden;
}

.bct-booking-wrap__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--bct-image-position, center center);
}

.bct-booking-wrap__image.has-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bct-image-overlay, #000000);
  opacity: var(--bct-image-overlay-op, 0.08);
  pointer-events: none;
}

.bct-booking-wrap__content {
  padding: var(--bct-content-padding, 40px);
  box-sizing: border-box;
}

.bct-booking-wrap__content .bct-booking-v2 {
  background: transparent;
}

.bct-booking-wrap__content .bct-booking-v2__form {
  width: min(100%, var(--bct-form-max-width, 800px));
  max-width: var(--bct-form-max-width, 800px);
  margin: 0;
  padding: 0;
}

.bct-booking-wrap__content .bct-booking-v2.is-stretch .bct-booking-v2__form,
.bct-booking-wrap__content .bct-booking-v2.is-form-only .bct-booking-v2__form {
  width: min(100%, var(--bct-form-max-width, 800px));
  max-width: var(--bct-form-max-width, 800px);
  margin: 0;
}

.bct-booking-wrap__content .bct-booking-v2__form-col {
  background: transparent;
  overflow: visible;
}

.bct-booking-wrap__content .bct-booking-v2__section--soft {
  background: #f6f0e8;
}

@media (max-width: 980px) {
  .bct-booking-wrap {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  .bct-booking-wrap__image {
    display: none;
  }

  .bct-booking-wrap__content {
    padding: 18px 14px 24px;
  }

  .bct-booking-wrap__content .bct-booking-v2__form,
  .bct-booking-wrap__content .bct-booking-v2.is-stretch .bct-booking-v2__form,
  .bct-booking-wrap__content .bct-booking-v2.is-form-only .bct-booking-v2__form {
    width: 100%;
    max-width: none;
  }
}
/* Nur USA/Kanada Button */
.button-usa-kanada.wp-block-button > a,
.button-usa-kanada.wp-block-spectra-buttons > a,
.button-usa-kanada > .wp-block-button__link,
.button-usa-kanada > .wp-block-spectra-button,
a.button-usa-kanada {
  width: auto !important;
  min-width: 200px !important;
  max-width: none !important;
  padding: 14px 28px !important;

  display: inline-flex !important;
  align-items: center;
  justify-content: center;

  white-space: nowrap !important;
  box-sizing: border-box;
  flex-shrink: 0 !important;
}

/* Text im Button nicht umbrechen */
.button-usa-kanada .spectra-button__link,
a.button-usa-kanada .spectra-button__link {
  display: inline-block !important;
  width: auto !important;
  max-width: none !important;

  white-space: nowrap !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

#acym_fulldiv_formAcym1.acym__subscription__form__shortcode {
  padding: 0 !important;
  margin: 0 !important;
}
.footer-break {
  display: block;
}