.btn-outline-secondary:hover a {
  color: #fff;
  text-decoration: none;
}

/* Shadow Preisboxen und Checkout Bereiche */
.shadow-checkout-sia {
  box-shadow:
    0 1px 1px rgba(0, 0, 0, 0.03),
    0 6px 18px rgba(0, 0, 0, 0.06);
}

.shadow-checkout-sia-hover {
  box-shadow:
    0 0.5px 1px rgba(0, 0, 0, 0.025),
    0 4px 12px rgba(0, 0, 0, 0.035);
  transition: box-shadow 0.25s ease;
}

.shadow-checkout-sia-hover:hover {
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.035),
    0 6px 16px rgba(0, 0, 0, 0.045);
}

/* Gesamtpreis Box im Checkout auf 100% Breite setzen */
.pad-breakout {
  margin-left: calc(var(--bs-gutter-x) * -0.5);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
}

@media (min-width: 0) {
  .pad-breakout {
    margin-left: -30px;
    margin-right: -30px;
  }
}

@media (min-width: 991px) {
  .pad-breakout {
    margin-left: -24px;
    margin-right: -24px;
  }
}

.price-line {
  --line-color: #687d25;
  position: relative;
}

.price-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: var(--line-color);
  pointer-events: none;
}

.no-radius {
  border-radius: 0 !important;
}

/* Pulse */
.circle.pulse {
  display: inline-block;
  border-radius: 50%;
  background-color: transparent;
  position: relative;
  overflow: visible;
}

.circle.pulse::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background-color: rgba(0, 123, 255, 0.5);
  /* Pulsierende Farbe */
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  /* Start bei 0 */
  animation: pulseAnimation 3s infinite cubic-bezier(0.25, 0.1, 0.25, 1);
  /* Sanfter Verlauf */
  z-index: -1;
}

.circle.pulse::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background-color: rgba(0, 123, 255, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  /* Start bei 0 */
  animation: pulseAnimation 3s infinite cubic-bezier(0.25, 0.1, 0.25, 1);
  z-index: -1;
}

/* Keyframes fuer den glatteren Pulse-Effekt */
@keyframes pulseAnimation {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
  }

  50% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

/* Button Pulse Effekt Hintergrundfarbe bei Aktion behalten */
#toggleMenuButton {
  background-color: #026598;
  border: none;
}

#toggleMenuButton.active,
#toggleMenuButton:focus,
#toggleMenuButton:hover {
  background-color: #026598 !important;
}

/*Menue Schnellsuche einklappen/ausklappen */
.nav-item-float {
  position: absolute;
  top: 0;
  right: 20px;
  width: 100%
    /* Kein transform hier, da wir Media Queries nutzen */
}

/* Ab mittleren Viewports (>=576px) → 50% nach rechts/oben */
@media (min-width: 576px) {
  .nav-item-float {
    transform: translate(30%, -50%);
  }
}

/* Auf kleineren Bildschirmen (<576px) → 40px vom rechten Rand */
@media (max-width: 575.98px) {
  .nav-item-float {
    transform: translate(calc(99% - 30px), -50%);
  }
}

/* Mittel: Tablets/Notebooks (576px – 1199.98px) => 20px Abstand */
@media (min-width: 576px) and (max-width: 1199.98px) {
  .nav-item-float {
    transform: translate(calc(98% - 25px), -50%);
  }
}

/* Groß: >=1200px => halbe Breite übern Rand */
@media (min-width: 1200px) {
  .nav-item-float {
    transform: translate(94%, -50%);
  }
}

/* Nav Mobil */
.dropdown-item:active {
  background-color: #c6beb4;
  border-bottom: dashed 1px #5e5c5c;
}

/* Anzeige-Badge Einleitung */
.ad-badge {
  position: absolute;
  right: 1px;
  bottom: 1px;
  z-index: 2;
  background-color: rgba(150, 90, 10, 1);
  color: #fff;
  padding: .25rem .5rem;
  border-radius: .5rem;
  font-size: .75rem;
  line-height: 1;
  white-space: nowrap;
}

/* ≥ sm (576px) */
@media (min-width: 576px) {
  .ad-badge {
    right: .75rem;
    bottom: .75rem;
    font-size: .8rem;
  }
}

/* ≥ md (768px) */
@media (min-width: 768px) {
  .ad-badge {
    right: 1px;
    bottom: 1px;
    padding: .3rem .6rem;
    font-size: .85rem;
  }
}

/* ≥ lg (991px) */
@media (min-width: 992px) {
  .ad-badge {
    right: 1px;
    bottom: 1px;
    font-size: .9rem;
  }
}


/* Anzeige mobil */
/* Standard: Banner ausblenden */
.ad-wrapper {
  display: none;
}

/* Nur auf Smartphones anzeigen */
@media (max-width: 991px) {
  .ad-wrapper {
    display: block;
    width: 100%;
  }

  .ad-link,
  .ad-picture {
    display: block;
    width: 100%;
  }

  .ad-image {
    display: block;
    width: 100% !important;
    height: auto;
    object-fit: cover;
  }

  .ad-caption {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.25rem;
  }

  .ad-label {
    font-size: 0.8rem;
  }
}

/* Font */
.fs-5 {
  font-size: 1rem !important
}

.fs-6 {
  font-size: .95rem !important
}

.fs-7 {
  font-size: .85rem !important
}

.fs-8 {
  font-size: .75rem !important
}

.fs-9 {
  font-size: .65rem !important
}

.fw-500 {
  font-weight: 500;
}

.preis {
  color: #0484bf !important;
}

.overflow-hidden {
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

/* Icon Number Badge */
.icon-badge-group .icon-badge-container {
  display: inline-block;
  margin-left: 1px;
}

.icon-badge-group .icon-badge-container:first-child {
  margin-left: 0
}

.icon-badge-container {
  margin-top: 1px;
  position: relative;
}

.icon-badge-icon {
  font-size: 30px;
  position: relative;
}

.icon-badge {
  background-color: red;
  font-size: 12px;
  color: white;
  text-align: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: relative;
  top: -36px;
  left: 17px;
}

@media (max-width: 991px) {
  .mobile-menu-icons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: start;
    width: 100%;
    padding: 16px 6px 6px 6px;
    gap: 0;
    /* gleichmäßige Spalten -> kein gap nötig */
  }

  /* Ein Icon-Button (Icon + optional Label) */
  .mobile-menu-icons .mobile-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    color: rgba(104, 125, 37, 1);
    /* #687d25 */
    min-width: 0;
    /* wichtig gegen Overflow */
  }

  /* Icon-Box (44x44 klickbar) */
  .mobile-menu-icons .mobile-icon__btn {
    position: relative;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: inherit;
    /* Iconfarbe nicht verändern */
    text-decoration: none;
  }

  .mobile-menu-icons .mobile-icon__btn i {
    font-size: 22px;
    line-height: 1;
    color: inherit;
    /* Iconfarbe nicht verändern */
  }

  /* Badge bleibt an der Icon-Box, nicht am Grid */
  .mobile-menu-icons .mobile-icon__btn .badge-pill {
    position: absolute;
    top: -6px;
    right: -8px;
  }

  /* Labels: standardmäßig NICHT anzeigen (professioneller Look) */
  .mobile-menu-icons .mobile-icon__label {
    margin-top: 4px;
    font-size: 10px;
    /* 🔑 kleiner, professionell */
    line-height: 1.1;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0.02em;
    /* ruhiger Text */
    opacity: 0.85;
    max-width: 64px;
    /* verhindert Zusammenlaufen */
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* OPTIONAL: wenn du Labels wirklich willst -> Container bekommt Klasse "show-icon-labels" */
  .show-icon-labels .mobile-menu-icons .mobile-icon__label {
    display: block;
    margin-top: 6px;
    font-size: 9px;
    line-height: 1.2;
    text-align: center;
    font-weight: 500;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0.9;
    color: inherit;
  }

  .icon-btn {
    position: relative;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    text-decoration: none;
    color: rgba(104, 125, 37, 1)
  }

  .icon-btn i {
    font-size: 20px;
    line-height: 1;
  }

  /* Badge sitzt IN der Fläche (kein "über den Rand") */
  .badge-pill {
    position: absolute;
    top: 6px;
    left: 22px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #e03131;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    line-height: 18px;
    text-align: center;
  }

  /* Optional: nur ein Punkt statt Zahl (super clean) */
  .badge-dot {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #e03131;
  }
}

/* Button */
.btn-blau {
  color: #fff;
  background-color: #026598;
  border-color: #026598;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}

.btn-orange {
  color: #fff;
  background-color: #f9af0d;
  border-color: #f9af0d;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}

.btn-orange:hover {
  color: #fff;
  background-color: #f9af0d;
  border-color: #f9af0d;
}

.btn-orange.focus,
.btn-orange:focus {
  color: #fff;
  background-color: #f9af0d;
  border-color: #f9af0d;
  box-shadow: 0 0 0 .2rem rgba(38, 143, 255, .5);
}

.btn-orange.disabled,
.btn-orange:disabled {
  color: #fff;
  background-color: #f9af0d;
  border-color: #f9af0d;
}

.btn-orange:not(:disabled):not(.disabled).active,
.btn-orange:not(:disabled):not(.disabled):active,
.show>.btn-orange.dropdown-toggle {
  color: #fff;
  background-color: #f9af0d;
  border-color: #f9af0d;
}

.btn-orange:not(:disabled):not(.disabled).active:focus,
.btn-orange:not(:disabled):not(.disabled):active:focus,
.show>.btn-orange.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(38, 143, 255, .5);
}

.btn-grau-beige {
  color: #000;
  border-color: #c6beb4;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
}

.btn-grau-beige:hover {
  color: #000;
  background-color: #c6beb4;
  border-color: #c6beb4;
}

.pulse {
  position: relative;
  animation: animate 3s linear infinite;
}

.pulse i {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: #fff;
  height: 100%;
  cursor: pointer;
}

@keyframes animate {
  0% {
    box-shadow: 0 0 0 0 rgb(255, 109, 74, 0.7), 0 0 0 0 rgb(255, 109, 74, 0.7)
  }

  40% {
    box-shadow: 0 0 0 50px rgb(255, 109, 74, 0), 0 0 0 0 rgb(255, 109, 74, 0.7)
  }

  80% {
    box-shadow: 0 0 0 50px rgb(255, 109, 74, 0), 0 0 0 30px rgb(255, 109, 74, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgb(255, 109, 74, 0), 0 0 0 30px rgb(255, 109, 74, 0)
  }
}

/* Sortable */
.card {
  position: relative;
  display: -ms-flexbox;
  /*display: flex;*/
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #F4EDED;
  background-clip: border-box;
  border: dotted 1px #c6beb4 !important;
  border-radius: 15px;
}

.card-deck {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.card-deck .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-deck {
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-right: -15px;
  }

  .card-deck .card {
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

/* Anfrage offen */
.anfrage-offen p {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  max-width: 99.99%;
}

/* Diverses */
.info-border {
  border-radius: 14px;
}

.vh-75 {
  height: 75vh !important;
}

.vh-85 {
  height: 85vh !important;
}

.top-20 {
  top: 20vh !important;
}

.bottom-5 {
  bottom: 5% !important;
}

.bottom-10 {
  bottom: 10% !important;
}

.bottom-16 {
  bottom: 16% !important;
}

.bottom-20 {
  bottom: 20% !important;
}

/* Map Spreewald Karte */
.spreewald-karte {
  width: 100%;
  height: 100svh;
  position: relative;
}

.spreewald-karte iframe {
  width: 100%;
  height: 100%;
  border-radius: 0px;
  position: relative;
  top: 64px;
}

.spreewaldkarte-area {
  margin: 40px 0 0 0;
}

.copy-spreewaldkarte {
  position: absolute;
  text-align: right;
  color: #333;
  font-size: 11px;
  padding: 3px;
  right: 1px;
  bottom: 0;
  width: auto;
  height: auto;
  background-color: #fff;
  opacity: .9;
  border-top-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.copy-spreewaldkarte a {
  color: #333;
  text-decoration: none;
}

.spreewald-karte .theme-btn {
  position: absolute;
  top: 100px;
  /* Wert alt: 150px */
  /*right: 20px; geloescht von MJ */
  left: 8px;
  width: 26px;
  height: auto;
  border: solid 2px #fff;
  border-radius: 50%;
}

.spreewald-karte i {
  font-size: 18px;
  justify-content: center;
  align-items: center;
}

.spreewald-karte .btn-position-user-gps {
  position: absolute;
  top: 160px;
  left: 8px;
  width: 42px;
  height: 42px;
  border: solid 1px #4f4435;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-position-user-gps i {
  font-size: 24px;
}

.offcanvas {
  height: 75svh !important;
}

.offcanvas-header img {
  width: auto;
  height: 40px;
  float: left;
  margin: 0 20px 0 0;
  position: relative;
}

@media screen and (min-width: 1399px) {
  .spreewald-karte {
    height: calc(100vh - 160px);
  }

  .spreewald-karte iframe {
    top: 1px;
  }

  .spreewald-karte .theme-btn {
    top: 90px;
  }

  .offcanvas {
    height: 65vh !important;
  }
}

@media screen and (max-width: 991px) {
  .spreewald-karte .btn-position-user-gps {
    top: 210px;
  }
}

/* farbiger Anbieter Pin auf der Karte */
.custom-pin-container {
  position: relative;
  width: calc(100px * var(--scale));
  /* Skalierbare Breite */
  height: calc(150px * var(--scale));
  /* Skalierbare Höhe */
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-pin-xmark {
  color: #ffffff;
  /* Weißes X-Icon */
  font-size: calc(100px * var(--scale));
  /* Skalierbare Größe des X-Icons */
  position: absolute;
  bottom: 0;
  /* X-Icon bleibt an der Unterseite des Containers */
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  /* Das X-Icon bleibt die Basis */
}

.pin-icon-circle {
  position: absolute;
  top: calc(53px * var(--scale));
  /* Skalierbar oberhalb des X-Icons */
  left: 50%;
  transform: translateX(-50%);
  width: calc(66px * var(--scale));
  /* Skalierbare Breite des Kreises */
  height: calc(66px * var(--scale));
  /* Skalierbare Höhe des Kreises */
  border-radius: 50%;
  /* Kreisform */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  /* Der Kreis wird über dem X-Icon positioniert */
}

.custom-icon-ship {
  color: #ffffff;
  font-size: calc(30px * var(--scale));
  /* Skalierbare Größe des Schiff-Icons */
  position: relative;
  z-index: 3;
  /* Das Schiff-Icon wird über dem Kreis angezeigt */
}

/* Unterklassen für unterschiedliche Farben der Kreise */
.pin-icon-circle.kahnfahrt {
  background-color: #4caf50;
}

.pin-icon-circle.bootsvermietung {
  background-color: #4caf50;
}

.pin-icon-circle.radvermietung {
  background-color: #e5692d;
}

.pin-icon-circle.gastronomie {
  background-color: #a82350;
}

.pin-icon-circle.unterkunft {
  background-color: #3f51b5;
}

.pin-icon-circle.wellness {
  background-color: #8bc34a;
}

.pin-icon-circle.ausflugsziel {
  background-color: #009688;
}

.pin-icon-circle.region {
  background-color: #795548;
}

.pin-icon-circle.kurzurlaub {
  background-color: #FF9800;
}

.pin-icon-circle.veranstaltung {
  background-color: #9c27b0;
}

/* Message */
.bg-message-erfolgreich {
  background: rgba(157, 173, 47, .8);
  color: #000;
  font-size: 16px;
  border-radius: 15px;
  margin: 0 auto;
  width: 98%;
}

.bg-message-fehler {
  background: rgba(229, 186, 34, .8);
  color: #000;
  font-size: 16px;
  border-radius: 15px;
  margin: 0 auto;
  width: 98%;
}

.bg-message-terminbestaetigung-wunschtermin {
  background: rgba(229, 186, 34, .3);
  color: #000;
  border-radius: 15px;
}

.bg-message-terminbestaetigung-ausweichtermin {
  background: rgba(157, 173, 47, .3);
  color: #000;
  border-radius: 15px;
}

.text-bg-warnung {
  background: rgba(220, 53, 69, .8) !important;
  color: #fff;
  font-size: 14px;
}

.text-bg-hinweis {
  background: rgba(249, 175, 13, .8) !important;
  font-size: 14px;
  color: #fff;
}

.conversation-snippet {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}


/* Container Anpassung Breite Mobil */
@media (max-width: 767px) {

  .container,
  .container-fluid,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    --bs-gutter-x: .2rem;
    --bs-gutter-y: 0;
    width: 100% !important;
    padding-right: calc(var(--bs-gutter-x) * .1);
    padding-left: calc(var(--bs-gutter-x) * .1);
    margin-right: auto;
    margin-left: auto;
  }
}

/* Anker */
.anker {
  visibility: hidden;
  height: 0px !important;
  position: absolute;
  margin: -220px;
}

/* Text auf Bild */
.container-bildtext {
  position: relative;
  text-align: center;
  color: #333;
  font-size: 11px;
}

.bottom-left {
  position: absolute;
  bottom: 8px;
  left: 16px;
}

.top-left {
  position: absolute;
  top: 8px;
  left: 16px;
}

.top-right {
  position: absolute;
  top: 8px;
  right: 16px;
}

.bottom-right {
  position: absolute;
  bottom: 25px;
  right: -1px;
  background-color: #fff;
  opacity: .9;
  padding: 1px 6px;
  border-top-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.bottom-right-anbieterdetail {
  position: absolute;
  bottom: 10px;
  right: -1px;
  background-color: #fff;
  opacity: .9;
  padding: 1px 6px;
  border-top-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.bottom-right-anzeige {
  position: absolute;
  bottom: 1px;
  right: -1px;
  background-color: #915D09;
  padding: 1px 10px;
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.bottom-right,
.bottom-right-anbieterdetail a {
  color: #fff;
  text-decoration: none;
}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Border */
.border-4 {
  border-radius: 14px;
}

.border-5 {
  border-radius: 15px;
}

/* Formular */
.form-control {
  color: #1f1f1f !important;
  border-color: #707070;
  background-color: #fff;
}

.nice-select {
  color: #1f1f1f !important;
  border-color: #707070;
  background-color: #fff;
}

/* Reisewuensche +/
/* Standard: Inaktive Darstellung */
.hotel-item.inaktiv {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

/* Aktive Darstellung */
.hotel-item.aktiv {
  opacity: 1;
}

/* Badge Styling */
.badge-circle {
  width: 36px;
  height: 36px;
  background-color: #f0f0f0;
  border: 2px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-50%);
}

/* Checkbox Styling */
.badge-circle .form-check-input {
  width: 90%;
  height: 90%;
  cursor: pointer;
  border-radius: 50%;
  border: none;
  background-color: #f0f0f0;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Checkbox aktiv: Haken und Farbe anpassen */
.badge-circle .form-check-input:checked {
  background-color: #333333;
  color: #ffffff;
}

/* Positionierung des Badges */
.top--badge {
  top: -18px;
}

.end--badge {
  right: 18px;
}

/* Scrolleiste */
ul.list-group::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 3px;
}

ul.list-group::-webkit-scrollbar-thumb:hover {
  background-color: #aaa;
}

ul.list-group::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

/* Offcanvas Karte */
.offcanvas-second {
  z-index: 1061 !important;
}

/* Überschreibe das Default von .offcanvas-bottom (das normalerweise ~50% Höhe erzwingt) */
.offcanvas-bottom.offcanvas-second {
  height: 90svh !important;
  /* feste Höhe von 90% der Viewport-Höhe */
  max-height: 90svh !important;
  /* sicherstellen, dass Bootstrap die Höhe nicht limitiert */
  overflow-y: auto;
  /* scrollbar, falls Inhalt höher als 90% */
}

/* Switch Schnellsuche Routenplan GPS Ortung */
.custom-switch {
  display: flex;
  align-items: center;
}

/* Anpassung der Switch-Größe */
.custom-switch .form-check-input {
  width: 80px;
  height: 26px;
  border-radius: 13px;
  position: relative;
}

/* Aktiver Zustand */
.custom-switch .form-check-input:checked {
  background-color: #0d6efd;
}

/* Label-Anpassungen */
.custom-switch .form-check-label {
  margin-left: 10px;
  font-size: 1rem;
}

@media (max-width: 576px) {

  /* Bootstrap's sm breakpoint */
  .custom-switch .form-check-input {
    width: 100px;
    height: 26px;
  }

  .custom-switch .form-check-input::before {
    width: 16px;
    height: 26px;
    transform: translateX(38px);
    /* Angepasst für kleinere Größe */
  }

  .custom-switch .form-check-input:checked::before {
    transform: translateX(38px);
  }

  .custom-switch .form-check-label {
    font-size: 0.875rem;
    /* Kleinere Schriftgröße */
  }
}

/* Video Einleitung Landscape oder Portrait */
.video-container.landscape {
  width: 100%;
  height: 400px;
  /* Höhe des Video-Containers im Landscape-Modus */
  padding-bottom: 56.25%;
  /* Padding-Bottom, um den Platz zu behalten */
}

.video-container.portrait {
  width: 100%;
  height: 600px;
  /* Höhe des Video-Containers im Portrait-Modus */
  padding-bottom: 150%;
  /* Padding-Bottom, um den Platz zu behalten */
}

/* Belegungskalender */
.calendar-container {
  max-width: 600px;
  margin: auto;
}

.calendar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.calendar-nav h3 {
  margin: 0;
  font-size: 1.5rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: #dee2e6;
}

.week-day,
.day,
.empty {
  background: #fff;
  text-align: center;
  padding: .75rem 0;
  min-height: 3.5rem;
  position: relative;
  font-size: .95rem;
}

.week-day {
  background: #f8f9fa;
  font-weight: 500;
}

.empty {
  cursor: default;
}

.day.today {
  background: #fff !important;
  color: #000 !important;
  font-weight: 700;
  border: none !important;
  box-shadow: none !important;
}

.day.disabled {
  pointer-events: none;
}

@media (max-width: 767.98px) {
  .row>.col-md-6+.col-md-6 .calendar-container {
    margin-top: 30px;
  }
}

/* Volle Stati */
.day.available {
  background: #007aff;
  color: #fff;
  cursor: pointer;
}

.day.booked {
  background: #ff3b31;
  color: #fff;
}

.day.requested {
  background: #ffd60a;
  color: #000;
}

/* Halbtage in Verfügbarkeit (An- und Abreisetag) */
.day.available.half-start {
  background:
    linear-gradient(135deg,
      #007aff 49.5%,
      /* frei (blau) */
      #000 49.5%,
      /* Trennlinie */
      #000 50.5%,
      #ff3b31 50.5%
      /* gebucht (rot) */
    );
  color: #fff;
}

.day.available.half-end {
  background:
    linear-gradient(315deg,
      #007aff 49.5%,
      #000 49.5%,
      #000 50.5%,
      #ff3b31 50.5%);
  color: #fff;
}

/* Auswahl durch den Nutzer */
.day.selection-start,
.day.selection-end,
.day.selection-range {
  background: rgba(0, 122, 255, 0.2) !important;
  color: #000 !important;
}

/* Legende */
.legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.legend-item {
  display: flex;
  align-items: center;
  font-size: .95rem;
}

.legend-color {
  width: 22px;
  height: 22px;
  margin-right: .5rem;
  border: 1px solid #ccc;
  border-radius: .2rem;
}

/* ========================================================================== */
/* Gast Login                                                                 */
/* ========================================================================== */

/* Nachrichten */
.messages-header p {
  margin-bottom: 0;
}

.messages-badge {
  white-space: nowrap;
}

/* Filterleiste */
#messageFilterBar .btn {
  border-radius: 999px;
}

#messageFilterBar .btn.active {
  color: #fff;
}

/* Hauptlayout: Liste + Thread */
.messages-layout {
  min-height: 320px;
}

.conversation-list-wrapper,
.thread-wrapper {
  border-radius: 1rem;
}

.conversation-list-wrapper {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.thread-wrapper {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

/* Meine Reisen */
.trip-media {
  max-width: 260px;
}

@media (max-width: 767.98px) {
  .trip-media {
    max-width: 100%;
  }
}

/* Konversationsliste */
.conversation-item {
  cursor: pointer;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 0;
  padding: 0.75rem 1rem;
  background-color: transparent;
}

.conversation-item:last-child {
  border-bottom: 0;
}

.conversation-item.active {
  background-color: #e9f2ff;
  box-shadow: inset 3px 0 0 #0d6efd;
}

.conversation-item-unread .conversation-title {
  font-weight: 600;
}

.conversation-title {
  font-size: 0.95rem;
}

.conversation-provider {
  font-size: 0.8rem;
}

.conversation-meta {
  font-size: 0.78rem;
}

.conversation-snippet {
  font-size: 0.8rem;
}

.conversation-badge {
  font-size: 0.7rem;
}

.unread-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

/* Thread */
.thread-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.75rem 1rem;
}

.thread-header-title {
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.thread-header-subtitle {
  font-size: 0.85rem;
}

.thread-badges .badge {
  font-size: 0.7rem;
}

.thread-links a {
  white-space: nowrap;
}

.thread-body {
  padding: 1rem;
  overflow-y: auto;
  flex: 1 1 auto;
  max-height: 440px;
}

/* Nachrichten-Bubbles */
.message-row {
  margin-bottom: 0.75rem;
}

.message-bubble {
  padding: 0.6rem 0.75rem;
  border-radius: 0.9rem;
  font-size: 0.9rem;
  max-width: 80%;
}

.message-bubble-guest {
  background-color: #f8f9fa;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.message-bubble-guest a {
  font-weight: bold;
  color: #4f4435;
}

.message-bubble-provider {
  background-color: #0d6efd;
  color: #ffffff;
}

.message-bubble-provider a {
  font-weight: bold;
  color: #ffffff;
}

.message-meta {
  font-size: 0.75rem;
  margin-top: 0.2rem;
}

.message-system {
  font-size: 0.75rem;
  color: #6c757d;
  text-align: center;
  margin: 0.5rem 0;
}

.message-attachment {
  margin-top: 0.35rem;
  font-size: 0.8rem;
}

.message-attachment .badge {
  font-size: 0.75rem;
}

/* Composer */
.thread-composer {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.75rem 1rem;
}

.thread-composer textarea {
  resize: none;
  /* Höhe wird per JS geregelt */
}

.thread-composer-hint {
  font-size: 0.75rem;
}

.thread-composer-counter {
  font-size: 0.75rem;
}

/* Empty-State für gefilterte Liste */
#noConversationsState {
  font-size: 0.85rem;
}

/* Mobile – View-Wechsel Liste / Thread */
@media (max-width: 991.98px) {
  .messages-layout {
    position: relative;
  }

  .messages-layout .list-col,
  .messages-layout .thread-col {
    width: 100%;
  }

  .messages-layout .thread-col {
    display: none;
  }

  .messages-layout.show-thread .list-col {
    display: none;
  }

  .messages-layout.show-thread .thread-col {
    display: block;
  }

  .thread-wrapper {
    min-height: 70vh;
  }
}

/* Mobile: Back-Button im Thread-Header */
.thread-mobile-back {
  display: none;
}

@media (max-width: 991.98px) {
  .thread-mobile-back {
    display: inline-flex;
    align-items: center;
    border: 0;
    background: transparent;
    padding: 0;
    margin-right: 0.5rem;
  }
}

/* Overlay Textbausteine */
.textblocks-overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.25);
  /* Seite bleibt sichtbar */
}

.textblocks-overlay.d-none {
  display: none !important;
}

.textblocks-dialog {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  max-width: 540px;
  width: calc(100% - 2rem);
  max-height: 70vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.textblocks-header {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.textblocks-title {
  font-size: 1rem;
  margin: 0;
}

.textblocks-close-btn {
  border: none;
  background: transparent;
  font-size: 1.4rem;
  line-height: 1;
}

.textblocks-body {
  padding: 0.75rem 1rem 1rem;
  overflow-y: auto;
}

.textblock-item {
  font-size: 0.9rem;
}

/* Bewertungen */
.review-header-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.review-header-title {
  flex: 0 0 auto;
}

.review-info-box {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.75rem 0.95rem;
  border-radius: 1rem;
  background: #ffffff;
  border: 1px solid #e3f0ff;
  font-size: 0.9rem;
  color: #6c757d;
}

.review-info-box i {
  color: #0d6efd;
  margin-top: 0.1rem;
}

@media (max-width: 767.98px) {
  .review-header-top {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
}

/* FILTER / SUCHE / SORTIERUNG */
.review-filters {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.review-status-tabs {
  display: inline-flex;
  gap: 0.2rem;
  padding: 0.12rem 0.35rem;
  background: #e9edf0;
  border-radius: 999px;
  width: 100%;
  justify-content: flex-start;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.review-status-tabs::-webkit-scrollbar {
  display: none;
}

.review-status-tab {
  border: none;
  background: transparent;
  padding: 0.3rem 0.85rem;
  font-size: 0.82rem;
  border-radius: 999px;
  cursor: pointer;
  color: #6c757d;
  white-space: nowrap;
  flex: 0 0 auto;
}

.review-status-tab.is-active {
  background: #ffffff;
  color: #0d6efd;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.review-filter-right {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 100%;
  justify-content: space-between;
}

.review-search,
.review-sort {
  position: relative;
}

.review-search input,
.review-sort select {
  border-radius: 999px;
  border: 1px solid #dee2e6;
  padding: 0.35rem 0.8rem;
  font-size: 0.82rem;
  min-width: 160px;
  width: 300px;
}

.review-search i {
  position: absolute;
  right: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  color: #adb5bd;
}

/* REDAKTIONELLE ABLEHNUNG in der Box */
.review-rejection {
  margin-top: 0.75rem;
  padding: 0.75rem 0.85rem;
  border-radius: 0.75rem;
  background: #fff4f4;
  border: 1px solid #ffd5d5;
  font-size: 0.83rem;
  color: #6c757d;
}

.review-rejection-title {
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: #dc3545;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.review-rejection-title i {
  font-size: 0.9rem;
}

.review-rejection ul {
  margin: 0 0 0.4rem 1.1rem;
  padding: 0;
}

.review-rejection li {
  margin-bottom: 0.15rem;
}

.review-edit-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 600;
  color: #0d6efd;
  text-decoration: none;
}

.review-edit-link i {
  font-size: 0.9rem;
}

.review-edit-link:hover {
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .review-filters {
    gap: 0.4rem;
    padding-inline: 0.25rem;
  }

  .review-status-tabs {
    padding-inline: 0.2rem;
  }

  .review-status-tab {
    font-size: 0.78rem;
    padding: 0.18rem 0.65rem;
  }

  .review-filter-right {
    flex-direction: column;
    gap: 0.3rem;
  }

  .review-search input,
  .review-sort select {
    width: 100%;
    min-width: 0;
    padding: 0.3rem 0.7rem;
    font-size: 0.8rem;
  }

  .hotel-slider .owl-item {
    padding-bottom: 1.25rem !important;
  }
}

/* Paswortsicherheit */
.bg-medium {
  background-color: #e09710 !important;
}

/* ========================================================================== */
/* Anbieter Login                                                                 */
/* ========================================================================== */

/* Dashboard */
.metrics-row .dashboard-widget {
  border-radius: 15px;
  background-color: #f5f5f5;
  /* neutrale Card-Farbe */
  padding: 10px 1px 10px 10px;
}

.metrics-row .dashboard-widget.dashboard-widget-color-2 {
  background-color: #c9f5e6;
  /* Mint-Fläche */
  border-radius: 15px;
  padding: 16px;
}

.metrics-row .dashboard-widget.dashboard-widget-color-2 .dashboard-widget-info {
  background-color: transparent;
  padding: 0;
}

.metric-subtitle {
  font-size: 0.875rem;
  color: #7a8592;
  margin-bottom: 8px;
}

.metric-title,
.metrics-row .dashboard-widget .h5 {
  font-size: 1rem;
  font-weight: 600;
}

.chart-container {
  width: 100%;
  height: 160px;
}

.metrics-row .dashboard-widget.dashboard-widget-color-2 .origin-list {
  margin: 12px 0 0;
  width: 100%;
  max-width: 100%;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  max-height: 160px;
  overflow-y: auto;
}

.metrics-row .dashboard-widget.dashboard-widget-color-2 .origin-list .list-group-item {
  border-left: none;
  border-right: none;
  font-size: 1rem;
}

.metrics-row .dashboard-widget.dashboard-widget-color-2 .origin-list .list-group-item:first-child {
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.metrics-row .dashboard-widget.dashboard-widget-color-2 .origin-list .list-group-item:last-child {
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

.metric-hints {
  list-style: none;
  margin: 0;
  padding: 0;
}

.metric-hints li {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem;
  padding: 0.35rem 0;
  margin: 0;
  font-size: 1rem;
}

/* Icon */
.metric-hints li i {
  font-size: 1.25rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Wrapper um das Icon */
.metric-hints li>span:first-child {
  display: flex;
  align-items: center;
  margin-top: 0 !important;
}

/* Text */
.metric-hints li span:last-child {
  position: relative;
  top: 2px;
  display: inline-block;
}

/* Schnell-starten-Bereich */
.quick-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2rem;
  padding: .1rem .1rem .1rem 1px;
  /* Wert alt padding: 0.9rem 1.25rem;*/
  border-radius: 999px;
  background: #faf5f2;
  /* leichtes Beige, wie dein Hintergrund */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.quick-actions-label {
  font-weight: 600;
  color: #3c3328;
  /* dunkles Braun aus deinem CI */
  white-space: nowrap;
  padding: 10px 0 1px 40px;
}

.quick-actions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 20px 20px 30px
}

.quick-action-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 102, 255, 0.35);
  background-color: #ffffff;
  color: #0066ff;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.15s ease-in-out;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.quick-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: rgba(0, 102, 255, 0.08);
}

.quick-action-icon i {
  font-size: 0.95rem;
}

.quick-action-text {
  white-space: nowrap;
}

.quick-action-chip:hover,
.quick-action-chip:focus {
  background: #0066ff;
  color: #ffffff;
  border-color: #0066ff;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 102, 255, 0.25);
}

.quick-action-chip:hover .quick-action-icon,
.quick-action-chip:focus .quick-action-icon {
  background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 576px) {
  .quick-actions {
    border-radius: 20px;
    align-items: flex-start;
  }

  .quick-actions-list {
    width: 100%;
  }

  .quick-action-chip {
    width: 100%;
    justify-content: flex-start;
  }

  .quick-action-text {
    white-space: normal;
  }
}

/* Filter Pins */
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 102, 255, 0.35);
  background-color: #ffffff;
  color: #0066ff;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  white-space: nowrap;
}

/* Hover / Fokus */
.filter-chip:hover,
.filter-chip:focus {
  background-color: #0066ff;
  color: #ffffff;
  border-color: #0066ff;
  box-shadow: 0 4px 10px rgba(0, 102, 255, 0.25);
  text-decoration: none;
}

/* Optional: aktiver Chip (wenn Status ausgewählt) */
.filter-chip.active {
  background-color: #0066ff;
  color: #ffffff;
  border-color: #0066ff;
  box-shadow: 0 4px 10px rgba(0, 102, 255, 0.25);
}

/* Mobile: Chips umbrechen */
@media (max-width: 576px) {
  .filter-chip {
    width: auto;
  }
}

/* Anbieter Angebotsverwaltung */
.si-chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem .9rem;
  border-radius: 999px;
  font-size: .85rem;
  border: 1px solid #dee2e6;
  background-color: #f8f9fa;
  cursor: default;
  transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
  user-select: none;
}

.si-chip i {
  font-size: .9rem;
}

.si-chip.si-chip-active {
  background-color: #0d6efd;
  color: #fff;
  border-color: #0d6efd;
  box-shadow: 0 0.25rem 0.5rem rgba(13, 110, 253, 0.15);
}

.si-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

/* Step-Navigation: Scrollbar auf kleinen Screens */
.si-steps-nav {
  overflow-x: auto;
  white-space: nowrap;
}

.si-steps-nav .nav-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

@media (max-width: 575.98px) {
  .si-steps-nav .nav-link {
    font-size: .9rem;
    padding-inline: .5rem;
  }
}

/* Angebot wechseln */
.si-offer-switcher-btn {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  width: auto;
  max-width: 100%;
  padding: .45rem .45rem .45rem .45rem;
  border-radius: 999px;
  border: 1px solid #cce0ff;
  background-color: #f5f9ff;
  color: #0d6efd;
  font-size: .9rem;
  text-decoration: none;
  transition: background-color .15s ease, box-shadow .15s ease, border-color .15s ease;
  white-space: normal;
}

.si-offer-switcher-btn:hover {
  background-color: #e8f2ff;
  border-color: #99c2ff;
  box-shadow: 0 0.25rem 0.5rem rgba(13, 110, 253, 0.12);
  color: #0b5ed7;
}

.si-offer-switcher-thumb {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
  background: #e9ecef;
}

.si-offer-switcher-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.si-offer-switcher-text-main {
  font-weight: 600;
  line-height: 1.2;
}

.si-offer-switcher-text-sub {
  display: block;
  font-size: .75rem;
  color: #6c757d;
}

/* Modal-Liste */
.si-offer-list-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .5rem .25rem;
  border-radius: .5rem;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: background-color .12s ease;
}

.si-offer-list-item:hover {
  background-color: #f8f9fa;
}

.si-offer-list-thumb {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  background: #e9ecef;
  flex-shrink: 0;
}

.si-offer-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.si-offer-list-title {
  font-size: .9rem;
  font-weight: 600;
}

.si-offer-list-meta {
  font-size: .75rem;
  color: #6c757d;
}

@media (max-width: 576px) {
  .si-offer-switcher-btn {
    gap: 2rem;
  }
}

/* Mediathek Header */
.si-media-header-title {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

/* Drag&Drop-Zone */
.si-media-dropzone {
  border: 1px dashed #ced4da;
  border-radius: 1rem;
  padding: 1.25rem;
  background: #f8f9fa;
  text-align: center;
  transition: border-color .15s ease, background-color .15s ease;
}

.si-media-dropzone:hover {
  border-color: #0d6efd;
  background-color: #f5f9ff;
}

.si-media-dropzone-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #e7f1ff;
  color: #0d6efd;
  margin-bottom: .5rem;
}

/* Bulk-Bar */
.si-media-bulkbar {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  justify-content: space-between;
  font-size: .85rem;
}

/* Media Cards */
.si-media-card {
  position: relative;
  border-radius: 1rem;
  overflow: visible;
  box-shadow: 0 .25rem .75rem rgba(15, 23, 42, 0.06);
  border: 1px solid #e9ecef;
  background-color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.si-media-card-thumb-wrapper {
  position: relative;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  overflow: hidden;
}

.si-media-card-body {
  padding: .5rem .75rem .75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
}

.si-media-card-body .dropdown-menu {
  margin-top: .35rem;
  margin-right: -.25rem;
  border-radius: .75rem;
  padding: .25rem 0;
  box-shadow: 0 .75rem 1.5rem rgba(15, 23, 42, 0.15);
  min-width: 220px;
  z-index: 20;
}

.si-media-card-thumb {
  width: 100%;
  padding-top: 75%;
  background-color: #f1f3f5;
  overflow: hidden;
}

.si-media-card-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.si-media-card-checkbox {
  position: absolute;
  top: .5rem;
  left: .5rem;
  z-index: 2;
}

.si-media-card-badge {
  position: absolute;
  top: .5rem;
  right: .5rem;
  z-index: 2;
}

.si-media-card-body {
  padding: .5rem .75rem .75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.si-media-card-title {
  font-size: .85rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.si-media-card-meta {
  font-size: .75rem;
  color: #6c757d;
}

.si-media-card-usage {
  font-size: .75rem;
  color: #6c757d;
  margin-top: .25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Modal: Detailansicht */
.si-media-detail-thumb {
  width: 100%;
  padding-top: 75%;
  background-color: #f1f3f5;
  border-radius: .75rem;
  overflow: hidden;
  position: relative;
}

.si-media-detail-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.si-media-detail-meta {
  font-size: .85rem;
}

.si-media-detail-meta dt {
  font-weight: 600;
  color: #495057;
}

.si-media-detail-meta dd {
  margin-bottom: .25rem;
  color: #6c757d;
}

/* Kleine Hilfs-Klasse für Bilder */
.si-object-fit-cover {
  object-fit: cover;
}

@media (max-width: 575.98px) {
  .si-media-dropzone {
    padding: .9rem;
  }
}

/* Mobile Account Dropdown */
.mobile-account {
  position: relative;
}

.mobile-account .icon-badge-container,
.mobile-menu .right .icon-badge-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
}

.mobile-account .icon-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  background: #dc3545;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .9);
}

/* Dropdown: wirkt wie Card, genügend Touch-Ziele */
.mobile-account .dropdown-menu {
  z-index: 1055;
  min-width: 260px;
  padding: .35rem;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, .12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
  margin-top: .5rem !important;
  /* KEINE negativen margins */
}

.mobile-account .dropdown-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem .9rem;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 400;
}

.mobile-account .dropdown-item i {
  width: 22px;
  text-align: center;
  opacity: .75;
}

.mobile-account .dropdown-item:active,
.mobile-account .dropdown-item:focus {
  outline: none;
}

.mobile-account .dropdown-divider {
  margin: .35rem 0;
}

/* Optional: auf sehr kleinen Geräten das Menü nicht "wegschneiden" */
@media (max-width: 576px) {
  .mobile-account .dropdown-menu {
    max-width: calc(100vw - 24px);
  }
}

/* Bewertungen */
:root {
  --si-bg: #f7f8fb;
  --si-card: #ffffff;
  --si-border: rgba(0, 0, 0, .08);
  --si-shadow: 0 10px 30px rgba(20, 24, 40, .08);
  --si-muted: rgba(0, 0, 0, .6);
  --si-pill-bg: rgba(13, 110, 253, .08);
  --si-pill-border: rgba(13, 110, 253, .22);
}

.si-page-title {
  letter-spacing: -.02em;
}

.si-subtitle {
  color: var(--si-muted);
}

.si-card {
  background: var(--si-card);
  border: 1px solid var(--si-border);
  border-radius: 1.25rem;
  box-shadow: var(--si-shadow);
}

.si-card-soft {
  background: linear-gradient(180deg, #fff, rgba(255, 255, 255, .92));
  border: 1px solid var(--si-border);
  border-radius: 1.25rem;
}

.si-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .85rem;
  border-radius: 999px;
  background: var(--si-pill-bg);
  border: 1px solid var(--si-pill-border);
  text-decoration: none;
  color: #0d6efd;
  font-weight: 600;
  white-space: nowrap;
}

.si-chip:hover {
  background: rgba(13, 110, 253, .12);
}

.si-kpi {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--si-border);
  background: #fff;
}

.si-kpi .si-kpi-label {
  color: var(--si-muted);
  font-size: .9rem;
}

.si-kpi .si-kpi-value {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -.02em;
}

.si-stars {
  display: inline-flex;
  gap: .15rem;
}

.si-stars i {
  font-size: .95rem;
}

.si-stars .si-star-on {
  color: #f7b500;
}

.si-stars .si-star-off {
  color: rgba(0, 0, 0, .12);
}

.si-badge-pill {
  border-radius: 999px;
  padding: .35rem .6rem;
  font-weight: 700;
}

.si-review-item {
  border: 1px solid var(--si-border);
  border-radius: 1.1rem;
  padding: 1rem;
  background: #fff;
  transition: transform .12s ease, box-shadow .12s ease;
  cursor: pointer;
}

.si-review-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(20, 24, 40, .10);
}

.si-review-meta {
  color: var(--si-muted);
  font-size: .9rem;
}

.si-review-text {
  color: rgba(0, 0, 0, .82);
}

.si-sticky-panel {
  position: sticky;
  top: 1rem;
}

.si-small {
  font-size: .9rem;
  color: var(--si-muted);
}

.si-divider {
  border-top: 1px solid var(--si-border);
}

@media (max-width: 991.98px) {
  .si-sticky-panel {
    position: static;
    top: auto;
  }
}

/* Gutschein Logik bei Direktbuchung Angeboten */
.is-hidden-important {
  display: none !important;
}

/* Labels kompakter und sauber */
#reisedaten-block .gift-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .35rem;
  line-height: 1.2;
}

#reisedaten-block .gift-input {
  /* falls dein Theme crazy padding setzt, hilft das */
  padding-top: .75rem;
  padding-bottom: .75rem;
}

#reisedaten-block .gift-info {
  display: inline-flex;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  opacity: .65;
  border: 1px solid currentColor;
  cursor: help;
}

#reisedaten-block .gift-hint {
  margin-top: .25rem;
  font-size: .95rem;
  line-height: 1.25;
  opacity: .75;
}

/* Suche global */
:root {
  --thumb-w: 92px;
  --thumb-h: 70px;

  --accent: #f2f4ef;
  --accent-ink: #4f4435;

  --ink: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --border-2: #d1d5db;

  --surface: #ffffff;
  --surface-2: #f9fafb;

  --radius-lg: 18px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .05);
  --shadow-md: 0 8px 30px rgba(17, 24, 39, .08);

  --focus-ring: 0 0 0 .25rem rgba(13, 110, 253, .22);

  /* quick bar */
  --chip-h: 44px;
  --ctl-h: 46px;
}

@media (min-width: 576px) {
  :root {
    --thumb-w: 120px;
    --thumb-h: 90px;
  }
}

@media (max-width: 420px) {
  :root {
    --thumb-w: 84px;
    --thumb-h: 64px;
  }
}

/* ------------------------------------------------------------
   Global a11y / focus
------------------------------------------------------------ */
.form-control:focus,
.form-select:focus,
.form-check-input:focus {
  box-shadow: var(--focus-ring);
}

.text-muted {
  color: var(--muted) !important;
}

/* ------------------------------------------------------------
   Category Pills (Top)
   Fix: mobile alignment + better wrapping/scroll
------------------------------------------------------------ */
.srch-cat-pills {
  display: flex;
  gap: .5rem;
  align-items: center;
  padding: .55rem;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}

/* Mobile: avoid "weird positioning" by making it scrollable */
@media (max-width: 575.98px) {
  .srch-cat-pills {
    border-radius: var(--radius-lg);
    padding: .6rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .srch-cat-pills::-webkit-scrollbar {
    display: none;
  }
}

.srch-cat-pill {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: .5rem .85rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 700;
  color: var(--ink);
  user-select: none;
  transition: background .15s ease, border-color .15s ease, transform .05s ease, box-shadow .15s ease;
  white-space: nowrap;
}

.srch-cat-pill:hover {
  background: var(--surface-2);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .02);
}

.srch-cat-pill:active {
  transform: translateY(1px);
}

.srch-cat-pill .srch-count {
  font-weight: 800;
  font-size: .82rem;
  padding: .14rem .5rem;
  border-radius: var(--radius-pill);
  background: #f3f4f6;
  color: var(--ink);
  border: 1px solid var(--border);
  line-height: 1.1;
}

.srch-cat-pill.is-active {
  border-color: transparent;
  background: var(--accent);
  color: var(--accent-ink);
}

.srch-cat-pill.is-active .srch-count {
  background: rgba(255, 255, 255, .35);
  color: var(--accent-ink);
  border-color: rgba(198, 190, 180, 1);
}

/* ------------------------------------------------------------
   Quick Bar controls (Desktop row above results)
   Make it feel like one cohesive bar
------------------------------------------------------------ */
#quickBar .d-none.d-lg-flex {
  gap: .65rem !important;
  align-items: center;
}

@media (min-width: 992px) {
  #quickBar .d-none.d-lg-flex {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: .65rem;
    box-shadow: var(--shadow-sm);
  }

  /* unify height */
  #quickBar .form-control,
  #quickBar .form-select,
  #quickBar .btn {
    height: var(--ctl-h);
    border-radius: 14px;
  }

  #quickBar input[type="number"].form-control {
    width: 120px !important;
  }

  #quickBar #clearAllD {
    border-color: var(--border-2);
    font-weight: 700;
  }
}

/* ------------------------------------------------------------
   Mobile chips row
------------------------------------------------------------ */
#mobileChips .btn {
  height: var(--chip-h);
  border-radius: 14px;
  font-weight: 650;
  border-color: var(--border-2);
  background: var(--surface);
}

#openFiltersBtn {
  height: var(--chip-h);
  border-radius: 14px;
  font-weight: 750;
}

/* Active filter chips */
#activeFilters .btn {
  border-radius: 999px;
  font-weight: 650;
  border-color: var(--border-2);
  background: var(--surface);
}

#activeFilters .btn:hover {
  border-color: var(--border-2);
  background: var(--surface);
  color: inherit;
}

#activeFilters .btn:focus,
#activeFilters .btn:focus-visible {
  border-color: var(--border-2);
  background: var(--surface);
  color: inherit;
  box-shadow: none;
  outline: none;
}

#activeFilters .btn:active,
#activeFilters .btn.active {
  border-color: var(--border-2);
  background: var(--surface);
  color: inherit;
  box-shadow: none;
}

#activeFilters .btn:not(:disabled):not(.disabled):active {
  border-color: var(--border-2);
  background: var(--surface);
}

.srch-filter-title {
  font-weight: 850;
  font-size: 1.05rem;
}

.srch-filter-subtitle {
  font-weight: 850;
  font-size: 1rem;
  margin-top: .25rem;
}

.srch-type-count {
  color: var(--muted);
  font-weight: 700;
}

.srch-type-row {
  --bs-form-check-padding-start: 0;
  display: flex;
  align-items: center;
  padding: .75rem .9rem;
  border-radius: 14px;
  background: rgba(31, 41, 55, .06);
  transition: background .15s ease;
}

.srch-type-row+.srch-type-row {
  margin-top: .35rem;
}

.srch-type-row .form-check-input {
  margin-left: 0 !important;
  margin-top: 0;
  flex: 0 0 auto;
}

.srch-type-row .form-check-label {
  margin-left: .75rem;
  margin-bottom: 0;
  flex: 1 1 auto;
}

.srch-type-row.is-active {
  background: rgba(13, 110, 253, .08);
}

.srch-type-row.is-disabled {
  opacity: .45;
  pointer-events: none;
}

.srch-switch {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .55rem .75rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .02);
}

.offcanvas .srch-switch {
  padding: .75rem .9rem;
  border-radius: 16px;
}

.srch-switch .form-check-label {
  flex: 1;
  margin: 0;
  font-weight: 750;
  color: var(--ink);
}

.srch-switch .form-check-input {
  width: 3.25rem !important;
  height: 1.75rem !important;
  margin: 0 !important;
  background-size: 1.5rem 1.5rem !important;
  border-width: 1px;
  transform: none !important;
}

.srch-switch .form-check-input:checked {
  border-width: 1px;
  transform: none !important;
}

.form-select {
  border-color: var(--border);
  border-radius: 14px;
  background-color: var(--surface);
}

#sortD,
#sortM {
  padding-right: 2.4rem;
  /* room for caret */
  background-repeat: no-repeat;
  background-position: right .85rem center;
  background-size: 12px 12px;
  /* Inline SVG caret (dark) */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 20 20'%3E%3Cpath fill='%236b7280' d='M5.3 7.3a1 1 0 0 1 1.4 0L10 10.6l3.3-3.3a1 1 0 1 1 1.4 1.4l-4 4a1 1 0 0 1-1.4 0l-4-4a1 1 0 0 1 0-1.4Z'/%3E%3C/svg%3E");
}

#sortD:focus,
#sortM:focus {
  outline: none;
}

#placeInputD,
#placeInputM,
#priceMinD,
#priceMaxD,
#priceMinM,
#priceMaxM {
  border-color: var(--border);
  border-radius: 14px;
  background: var(--surface);
}

.srch-result-item,
.srch-result-item:hover,
.srch-result-item:focus,
.srch-result-item:active,
.srch-result-item:visited {
  text-decoration: none;
}

.srch-result-item {
  border-radius: 16px;
  border: 1px solid var(--border);
  margin-bottom: .75rem;
  overflow: hidden;
  background: var(--surface);
  color: inherit;
  padding: .9rem !important;
  box-shadow: var(--shadow-sm);
  transition: transform .08s ease, box-shadow .15s ease, background .15s ease;
}

.srch-result-item:hover {
  background: #fbfcfe;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.srch-result-row {
  display: grid;
  grid-template-columns: var(--thumb-w) 1fr;
  gap: .85rem;
  align-items: start;
}
.srch-result-row--no-thumb {
  grid-template-columns: 1fr;
}

.srch-result-thumb {
  width: var(--thumb-w);
  height: var(--thumb-h);
  border-radius: 14px;
  overflow: hidden;
  background: #f1f3f5;
}

.srch-result-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.srch-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  align-items: center;
  margin-bottom: .25rem;
}

.srch-badge-accent {
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
  border-radius: 999px;
  padding: .28rem .55rem;
  line-height: 1;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}
a.srch-badge-accent {
  text-decoration: none;
  transition: opacity .15s;
}
a.srch-badge-accent:hover {
  opacity: .85;
}
.srch-badge-accent i {
  margin-right: .2em;
}

.srch-result-badge {
  font-size: .78rem;
  font-weight: 600;
  border-radius: 999px;
  padding: .22rem .5rem;
  line-height: 1;
  white-space: nowrap;
}
.srch-result-badge--default    { background: #23BCB9;               color: #fff; }
.srch-result-badge--offer      { background: rgba(255, 214, 10, 1); color: #4f4435; }
.srch-result-badge--success    { background: rgba(52, 199, 89, 1);  color: #fff; }
.srch-result-badge--pending    { background: rgba(0, 122, 255, 1);  color: #fff; }
.srch-result-badge--attention  { background: rgba(255, 149, 0, 1);  color: #fff; }
.srch-result-badge--warning    { background: rgba(255, 59, 49, 1);  color: #fff; }
.srch-result-badge--expired    { background: rgba(20, 190, 180, 1); color: #fff; }
.srch-result-badge--discount   { background: #F96768;               color: #fff; }

.srch-cat-link {
  color: #026598;
  font-weight: 500;
  font-size: .85rem;
  text-decoration: none;
}
a.srch-cat-link:hover {
  color: #024a73;
  text-decoration: none;
}
.srch-cat-link i {
  margin-right: .15em;
}

.badge.text-bg-success {
  font-size: .82rem;
  padding: .25rem .5rem;
  line-height: 1;
}

.srch-badge-row small.text-muted {
  font-size: .88rem;
}

.srch-result-title {
  font-size: .95rem;
  line-height: 1.25;
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.srch-result-subtitle {
  font-size: .85rem;
  margin-top: .1rem;
}
.srch-result-link {
  color: var(--primary, #026598);
  text-decoration: none;
  font-weight: 500;
}
.srch-result-link:hover {
  text-decoration: underline;
}
.srch-result-actions .btn,
.srch-mobile-actions .btn {
  text-decoration: none !important;
}

.srch-result-avail {
  font-size: .85rem;
  color: #026598;
  font-weight: 500;
  margin-top: .25rem;
}
.srch-result-avail i {
  margin-right: .2em;
}

.srch-result-excerpt {
  color: var(--muted);
  margin-top: .3rem;
  font-size: .93rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.srch-result-meta {
  font-size: .84rem;
  color: var(--muted);
  margin-top: .3rem;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

mark.srch-hl {
  padding: 0 .12em;
  border-radius: .25em;
  background: rgba(13, 110, 253, .14);
}

/* Actions */
.srch-result-actions {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: .5rem;
  min-width: 180px;
  padding-left: .5rem;
}

.srch-price-strong {
  font-weight: 900;
  text-align: right;
  font-size: 1rem;
  line-height: 1.15;
}

.srch-price-sub {
  font-size: .82rem;
  color: var(--muted);
  text-align: right;
  line-height: 1.2;
}

.srch-result-actions .btn,
.srch-mobile-actions .btn {
  padding: .45rem .7rem;
  font-size: .92rem;
  border-radius: 12px;
}

@media (min-width: 992px) {
  .srch-result-row {
    grid-template-columns: var(--thumb-w) 1fr auto;
  }
  .srch-result-row--no-thumb {
    grid-template-columns: 1fr auto;
  }

  .srch-result-actions {
    display: flex;
  }

  .srch-mobile-actions {
    display: none !important;
  }

  .srch-result-title {
    font-size: 1.05rem;
  }
}

.srch-ad-main {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  margin-bottom: .75rem;
  box-shadow: var(--shadow-sm);
}

.srch-ad-main .srch-ad-head {
  padding: .7rem .9rem;
  background: var(--surface-2);
  border-bottom: 1px solid #eef2f7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}

.srch-ad-badge {
  font-size: .75rem;
  padding: .18rem .45rem;
  border-radius: 999px;
  background: #e5e7eb;
  color: #374151;
  border: 1px solid var(--border-2);
}

.srch-ad-main .srch-ad-body {
  padding: 1rem;
}

.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 991.98px) {
  .cruise-grid section.mb-3 {
    margin-bottom: .5rem !important;
  }

  .cruise-grid .row.g-4 {
    --bs-gutter-y: .6rem;
  }

  .cruise-grid .row.g-4>* {
    margin-top: 0 !important;
  }

  #results>.mb-2 {
    margin-bottom: .35rem !important;
  }

  #results {
    padding-top: 0 !important;
  }
}

.srch-jump-ping {
  outline: 2px solid rgba(13, 110, 253, .25);
  outline-offset: 6px;
  border-radius: .75rem;
}

.btn-outline-secondary:hover a {
  color: #fff;
  text-decoration: none;
}

/* Shadow Preisboxen und Checkout Bereiche */
.shadow-checkout-sia {
  box-shadow:
    0 1px 1px rgba(0, 0, 0, 0.03),
    0 6px 18px rgba(0, 0, 0, 0.06);
}

.shadow-checkout-sia-hover {
  box-shadow:
    0 0.5px 1px rgba(0, 0, 0, 0.025),
    0 4px 12px rgba(0, 0, 0, 0.035);
  transition: box-shadow 0.25s ease;
}

.shadow-checkout-sia-hover:hover {
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.035),
    0 6px 16px rgba(0, 0, 0, 0.045);
}

/* Gesamtpreis Box im Checkout auf 100% Breite setzen */
.pad-breakout {
  margin-left: calc(var(--bs-gutter-x) * -0.5);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
}

@media (min-width: 0) {
  .pad-breakout {
    margin-left: -30px;
    margin-right: -30px;
  }
}

@media (min-width: 991px) {
  .pad-breakout {
    margin-left: -24px;
    margin-right: -24px;
  }
}

.price-line {
  --line-color: #687d25;
  position: relative;
}

.price-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: var(--line-color);
  pointer-events: none;
}

.no-radius {
  border-radius: 0 !important;
}

/* Pulse */
.circle.pulse {
  display: inline-block;
  border-radius: 50%;
  background-color: transparent;
  position: relative;
  overflow: visible;
}

.circle.pulse::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background-color: rgba(0, 123, 255, 0.5);
  /* Pulsierende Farbe */
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  /* Start bei 0 */
  animation: pulseAnimation 3s infinite cubic-bezier(0.25, 0.1, 0.25, 1);
  /* Sanfter Verlauf */
  z-index: -1;
}

.circle.pulse::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background-color: rgba(0, 123, 255, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  /* Start bei 0 */
  animation: pulseAnimation 3s infinite cubic-bezier(0.25, 0.1, 0.25, 1);
  z-index: -1;
}

/* Keyframes fuer den glatteren Pulse-Effekt */
@keyframes pulseAnimation {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
  }

  50% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

/* Button Pulse Effekt Hintergrundfarbe bei Aktion behalten */
#toggleMenuButton {
  background-color: #026598;
  border: none;
}

#toggleMenuButton.active,
#toggleMenuButton:focus,
#toggleMenuButton:hover {
  background-color: #026598 !important;
}

/*Menue Schnellsuche einklappen/ausklappen */
.nav-item-float {
  position: absolute;
  top: 0;
  right: 20px;
  width: 100%
    /* Kein transform hier, da wir Media Queries nutzen */
}

/* Ab mittleren Viewports (>=576px) → 50% nach rechts/oben */
@media (min-width: 576px) {
  .nav-item-float {
    transform: translate(30%, -50%);
  }
}

/* Auf kleineren Bildschirmen (<576px) → 40px vom rechten Rand */
@media (max-width: 575.98px) {
  .nav-item-float {
    transform: translate(calc(99% - 30px), -50%);
  }
}

/* Mittel: Tablets/Notebooks (576px – 1199.98px) => 20px Abstand */
@media (min-width: 576px) and (max-width: 1199.98px) {
  .nav-item-float {
    transform: translate(calc(98% - 25px), -50%);
  }
}

/* Groß: >=1200px => halbe Breite übern Rand */
@media (min-width: 1200px) {
  .nav-item-float {
    transform: translate(94%, -50%);
  }
}

/* Nav Mobil */
.dropdown-item:active {
  background-color: #c6beb4;
  border-bottom: dashed 1px #5e5c5c;
}

/* Anzeige-Badge Einleitung */
.ad-badge {
  position: absolute;
  right: 1px;
  bottom: 1px;
  z-index: 2;
  background-color: rgba(150, 90, 10, 1);
  color: #fff;
  padding: .25rem .5rem;
  border-radius: .5rem;
  font-size: .75rem;
  line-height: 1;
  white-space: nowrap;
}

/* ≥ sm (576px) */
@media (min-width: 576px) {
  .ad-badge {
    right: .75rem;
    bottom: .75rem;
    font-size: .8rem;
  }
}

/* ≥ md (768px) */
@media (min-width: 768px) {
  .ad-badge {
    right: 1px;
    bottom: 1px;
    padding: .3rem .6rem;
    font-size: .85rem;
  }
}

/* ≥ lg (991px) */
@media (min-width: 992px) {
  .ad-badge {
    right: 1px;
    bottom: 1px;
    font-size: .9rem;
  }
}


/* Anzeige mobil */
/* Standard: Banner ausblenden */
.ad-wrapper {
  display: none;
}

/* Nur auf Smartphones anzeigen */
@media (max-width: 991px) {
  .ad-wrapper {
    display: block;
    width: 100%;
  }

  .ad-link,
  .ad-picture {
    display: block;
    width: 100%;
  }

  .ad-image {
    display: block;
    width: 100% !important;
    height: auto;
    object-fit: cover;
  }

  .ad-caption {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.25rem;
  }

  .ad-label {
    font-size: 0.8rem;
  }
}

/* Font */
.fs-5 {
  font-size: 1rem !important
}

.fs-6 {
  font-size: .95rem !important
}

.fs-7 {
  font-size: .85rem !important
}

.fs-8 {
  font-size: .75rem !important
}

.fs-9 {
  font-size: .65rem !important
}

.fw-500 {
  font-weight: 500;
}

.preis {
  color: #0484bf !important;
}

.overflow-hidden {
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

/* Icon Number Badge */
.icon-badge-group .icon-badge-container {
  display: inline-block;
  margin-left: 1px;
}

.icon-badge-group .icon-badge-container:first-child {
  margin-left: 0
}

.icon-badge-container {
  margin-top: 1px;
  position: relative;
}

.icon-badge-icon {
  font-size: 30px;
  position: relative;
}

.icon-badge {
  background-color: red;
  font-size: 12px;
  color: white;
  text-align: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: relative;
  top: -36px;
  left: 17px;
}

@media (max-width: 991px) {
  .mobile-menu-icons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: start;
    width: 100%;
    padding: 16px 6px 6px 6px;
    gap: 0;
    /* gleichmäßige Spalten -> kein gap nötig */
  }

  /* Ein Icon-Button (Icon + optional Label) */
  .mobile-menu-icons .mobile-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    color: rgba(104, 125, 37, 1);
    /* #687d25 */
    min-width: 0;
    /* wichtig gegen Overflow */
  }

  /* Icon-Box (44x44 klickbar) */
  .mobile-menu-icons .mobile-icon__btn {
    position: relative;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: inherit;
    /* Iconfarbe nicht verändern */
    text-decoration: none;
  }

  .mobile-menu-icons .mobile-icon__btn i {
    font-size: 22px;
    line-height: 1;
    color: inherit;
    /* Iconfarbe nicht verändern */
  }

  /* Badge bleibt an der Icon-Box, nicht am Grid */
  .mobile-menu-icons .mobile-icon__btn .badge-pill {
    position: absolute;
    top: -6px;
    right: -8px;
  }

  /* Labels: standardmäßig NICHT anzeigen (professioneller Look) */
  .mobile-menu-icons .mobile-icon__label {
    margin-top: 4px;
    font-size: 10px;
    /* 🔑 kleiner, professionell */
    line-height: 1.1;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0.02em;
    /* ruhiger Text */
    opacity: 0.85;
    max-width: 64px;
    /* verhindert Zusammenlaufen */
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* OPTIONAL: wenn du Labels wirklich willst -> Container bekommt Klasse "show-icon-labels" */
  .show-icon-labels .mobile-menu-icons .mobile-icon__label {
    display: block;
    margin-top: 6px;
    font-size: 9px;
    line-height: 1.2;
    text-align: center;
    font-weight: 500;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0.9;
    color: inherit;
  }

  .icon-btn {
    position: relative;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    text-decoration: none;
    color: rgba(104, 125, 37, 1)
  }

  .icon-btn i {
    font-size: 20px;
    line-height: 1;
  }

  /* Badge sitzt IN der Fläche (kein "über den Rand") */
  .badge-pill {
    position: absolute;
    top: 6px;
    left: 22px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #e03131;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    line-height: 18px;
    text-align: center;
  }

  /* Optional: nur ein Punkt statt Zahl (super clean) */
  .badge-dot {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #e03131;
  }
}

/* Button */
.btn-orange {
  color: #fff;
  background-color: #f9af0d;
  border-color: #f9af0d;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}

.btn-orange:hover {
  color: #fff;
  background-color: #f9af0d;
  border-color: #f9af0d;
}

.btn-orange.focus,
.btn-orange:focus {
  color: #fff;
  background-color: #f9af0d;
  border-color: #f9af0d;
  box-shadow: 0 0 0 .2rem rgba(38, 143, 255, .5);
}

.btn-orange.disabled,
.btn-orange:disabled {
  color: #fff;
  background-color: #f9af0d;
  border-color: #f9af0d;
}

.btn-orange:not(:disabled):not(.disabled).active,
.btn-orange:not(:disabled):not(.disabled):active,
.show>.btn-orange.dropdown-toggle {
  color: #fff;
  background-color: #f9af0d;
  border-color: #f9af0d;
}

.btn-orange:not(:disabled):not(.disabled).active:focus,
.btn-orange:not(:disabled):not(.disabled):active:focus,
.show>.btn-orange.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem rgba(38, 143, 255, .5);
}

.btn-grau-beige {
  color: #000;
  border-color: #c6beb4;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
}

.btn-grau-beige:hover {
  color: #000;
  background-color: #c6beb4;
  border-color: #c6beb4;
}

.pulse {
  position: relative;
  animation: animate 3s linear infinite;
}

.pulse i {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: #fff;
  height: 100%;
  cursor: pointer;
}

@keyframes animate {
  0% {
    box-shadow: 0 0 0 0 rgb(255, 109, 74, 0.7), 0 0 0 0 rgb(255, 109, 74, 0.7)
  }

  40% {
    box-shadow: 0 0 0 50px rgb(255, 109, 74, 0), 0 0 0 0 rgb(255, 109, 74, 0.7)
  }

  80% {
    box-shadow: 0 0 0 50px rgb(255, 109, 74, 0), 0 0 0 30px rgb(255, 109, 74, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgb(255, 109, 74, 0), 0 0 0 30px rgb(255, 109, 74, 0)
  }
}

/* Sortable */
.card {
  position: relative;
  display: -ms-flexbox;
  /*display: flex;*/
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #F4EDED;
  background-clip: border-box;
  border: dotted 1px #c6beb4 !important;
  border-radius: 15px;
}

.card-deck {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.card-deck .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-deck {
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-right: -15px;
  }

  .card-deck .card {
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

/* Anfrage offen */
.anfrage-offen p {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  max-width: 99.99%;
}

/* Diverses */
.info-border {
  border-radius: 14px;
}

.vh-75 {
  height: 75vh !important;
}

.vh-85 {
  height: 85vh !important;
}

.top-20 {
  top: 20vh !important;
}

.bottom-5 {
  bottom: 5% !important;
}

.bottom-10 {
  bottom: 10% !important;
}

.bottom-16 {
  bottom: 16% !important;
}

.bottom-20 {
  bottom: 20% !important;
}

/* Map Spreewald Karte */
.spreewald-karte {
  width: 100%;
  height: 100svh;
  position: relative;
}

.spreewald-karte iframe {
  width: 100%;
  height: 100%;
  border-radius: 0px;
  position: relative;
  top: 64px;
}

.spreewaldkarte-area {
  margin: 40px 0 0 0;
}

.copy-spreewaldkarte {
  position: absolute;
  text-align: right;
  color: #333;
  font-size: 11px;
  padding: 3px;
  right: 1px;
  bottom: 0;
  width: auto;
  height: auto;
  background-color: #fff;
  opacity: .9;
  border-top-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.copy-spreewaldkarte a {
  color: #333;
  text-decoration: none;
}

.spreewald-karte .theme-btn {
  position: absolute;
  top: 100px;
  /* Wert alt: 150px */
  /*right: 20px; geloescht von MJ */
  left: 8px;
  width: 26px;
  height: auto;
  border: solid 2px #fff;
  border-radius: 50%;
}

.spreewald-karte i {
  font-size: 18px;
  justify-content: center;
  align-items: center;
}

.spreewald-karte .btn-position-user-gps {
  position: absolute;
  top: 160px;
  left: 8px;
  width: 42px;
  height: 42px;
  border: solid 1px #4f4435;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-position-user-gps i {
  font-size: 24px;
}

.offcanvas {
  height: 75svh !important;
}

.offcanvas-header img {
  width: auto;
  height: 40px;
  float: left;
  margin: 0 20px 0 0;
  position: relative;
}

@media screen and (min-width: 1399px) {
  .spreewald-karte {
    height: calc(100vh - 160px);
  }

  .spreewald-karte iframe {
    top: 1px;
  }

  .spreewald-karte .theme-btn {
    top: 90px;
  }

  .offcanvas {
    height: 65vh !important;
  }
}

@media screen and (max-width: 991px) {
  .spreewald-karte .btn-position-user-gps {
    top: 210px;
  }
}

/* farbiger Anbieter Pin auf der Karte */
.custom-pin-container {
  position: relative;
  width: calc(100px * var(--scale));
  /* Skalierbare Breite */
  height: calc(150px * var(--scale));
  /* Skalierbare Höhe */
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-pin-xmark {
  color: #ffffff;
  /* Weißes X-Icon */
  font-size: calc(100px * var(--scale));
  /* Skalierbare Größe des X-Icons */
  position: absolute;
  bottom: 0;
  /* X-Icon bleibt an der Unterseite des Containers */
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  /* Das X-Icon bleibt die Basis */
}

.pin-icon-circle {
  position: absolute;
  top: calc(53px * var(--scale));
  /* Skalierbar oberhalb des X-Icons */
  left: 50%;
  transform: translateX(-50%);
  width: calc(66px * var(--scale));
  /* Skalierbare Breite des Kreises */
  height: calc(66px * var(--scale));
  /* Skalierbare Höhe des Kreises */
  border-radius: 50%;
  /* Kreisform */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  /* Der Kreis wird über dem X-Icon positioniert */
}

.custom-icon-ship {
  color: #ffffff;
  font-size: calc(30px * var(--scale));
  /* Skalierbare Größe des Schiff-Icons */
  position: relative;
  z-index: 3;
  /* Das Schiff-Icon wird über dem Kreis angezeigt */
}

/* Unterklassen für unterschiedliche Farben der Kreise */
.pin-icon-circle.kahnfahrt {
  background-color: #4caf50;
}

.pin-icon-circle.bootsvermietung {
  background-color: #4caf50;
}

.pin-icon-circle.radvermietung {
  background-color: #e5692d;
}

.pin-icon-circle.gastronomie {
  background-color: #a82350;
}

.pin-icon-circle.unterkunft {
  background-color: #3f51b5;
}

.pin-icon-circle.wellness {
  background-color: #8bc34a;
}

.pin-icon-circle.ausflugsziel {
  background-color: #009688;
}

.pin-icon-circle.region {
  background-color: #795548;
}

.pin-icon-circle.kurzurlaub {
  background-color: #FF9800;
}

.pin-icon-circle.veranstaltung {
  background-color: #9c27b0;
}

/* Message */
.bg-message-erfolgreich {
  background: rgba(157, 173, 47, .8);
  color: #000;
  font-size: 16px;
  border-radius: 15px;
  margin: 0 auto;
  width: 98%;
}

.bg-message-fehler {
  background: rgba(229, 186, 34, .8);
  color: #000;
  font-size: 16px;
  border-radius: 15px;
  margin: 0 auto;
  width: 98%;
}

.bg-message-terminbestaetigung-wunschtermin {
  background: rgba(229, 186, 34, .3);
  color: #000;
  border-radius: 15px;
}

.bg-message-terminbestaetigung-ausweichtermin {
  background: rgba(157, 173, 47, .3);
  color: #000;
  border-radius: 15px;
}

.text-bg-warnung {
  background: rgba(220, 53, 69, .8) !important;
  color: #fff;
  font-size: 14px;
}

.text-bg-hinweis {
  background: rgba(249, 175, 13, .8) !important;
  font-size: 14px;
  color: #fff;
}

.conversation-snippet {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}


/* Container Anpassung Breite Mobil */
@media (max-width: 767px) {

  .container,
  .container-fluid,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    --bs-gutter-x: .2rem;
    --bs-gutter-y: 0;
    width: 100% !important;
    padding-right: calc(var(--bs-gutter-x) * .1);
    padding-left: calc(var(--bs-gutter-x) * .1);
    margin-right: auto;
    margin-left: auto;
  }
}

/* Anker */
.anker {
  visibility: hidden;
  height: 0px !important;
  position: absolute;
  margin: -220px;
}

/* Text auf Bild */
.container-bildtext {
  position: relative;
  text-align: center;
  color: #333;
  font-size: 11px;
}

.bottom-left {
  position: absolute;
  bottom: 8px;
  left: 16px;
}

.top-left {
  position: absolute;
  top: 8px;
  left: 16px;
}

.top-right {
  position: absolute;
  top: 8px;
  right: 16px;
}

.bottom-right {
  position: absolute;
  bottom: 25px;
  right: -1px;
  background-color: #fff;
  opacity: .9;
  padding: 1px 6px;
  border-top-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.bottom-right-anbieterdetail {
  position: absolute;
  bottom: 10px;
  right: -1px;
  background-color: #fff;
  opacity: .9;
  padding: 1px 6px;
  border-top-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.bottom-right-anzeige {
  position: absolute;
  bottom: 1px;
  right: -1px;
  background-color: #915D09;
  padding: 1px 10px;
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.bottom-right,
.bottom-right-anbieterdetail a {
  color: #fff;
  text-decoration: none;
}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Border */
.border-4 {
  border-radius: 14px;
}

.border-5 {
  border-radius: 15px;
}

/* Formular */
.form-control {
  color: #1f1f1f !important;
  border-color: #707070;
  background-color: #fff;
}

.nice-select {
  color: #1f1f1f !important;
  border-color: #707070;
  background-color: #fff;
}

/* Reisewuensche +/
/* Standard: Inaktive Darstellung */
.hotel-item.inaktiv {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

/* Aktive Darstellung */
.hotel-item.aktiv {
  opacity: 1;
}

/* Badge Styling */
.badge-circle {
  width: 36px;
  height: 36px;
  background-color: #f0f0f0;
  border: 2px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-50%);
}

/* Checkbox Styling */
.badge-circle .form-check-input {
  width: 90%;
  height: 90%;
  cursor: pointer;
  border-radius: 50%;
  border: none;
  background-color: #f0f0f0;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Checkbox aktiv: Haken und Farbe anpassen */
.badge-circle .form-check-input:checked {
  background-color: #333333;
  color: #ffffff;
}

/* Positionierung des Badges */
.top--badge {
  top: -18px;
}

.end--badge {
  right: 18px;
}

/* Scrolleiste */
ul.list-group::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 3px;
}

ul.list-group::-webkit-scrollbar-thumb:hover {
  background-color: #aaa;
}

ul.list-group::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

/* Offcanvas Karte */
.offcanvas-second {
  z-index: 1061 !important;
}

/* Überschreibe das Default von .offcanvas-bottom (das normalerweise ~50% Höhe erzwingt) */
.offcanvas-bottom.offcanvas-second {
  height: 90svh !important;
  /* feste Höhe von 90% der Viewport-Höhe */
  max-height: 90svh !important;
  /* sicherstellen, dass Bootstrap die Höhe nicht limitiert */
  overflow-y: auto;
  /* scrollbar, falls Inhalt höher als 90% */
}

/* Switch Schnellsuche Routenplan GPS Ortung */
.custom-switch {
  display: flex;
  align-items: center;
}

/* Anpassung der Switch-Größe */
.custom-switch .form-check-input {
  width: 80px;
  height: 26px;
  border-radius: 13px;
  position: relative;
}

/* Aktiver Zustand */
.custom-switch .form-check-input:checked {
  background-color: #0d6efd;
}

/* Label-Anpassungen */
.custom-switch .form-check-label {
  margin-left: 10px;
  font-size: 1rem;
}

@media (max-width: 576px) {

  /* Bootstrap's sm breakpoint */
  .custom-switch .form-check-input {
    width: 100px;
    height: 26px;
  }

  .custom-switch .form-check-input::before {
    width: 16px;
    height: 26px;
    transform: translateX(38px);
    /* Angepasst für kleinere Größe */
  }

  .custom-switch .form-check-input:checked::before {
    transform: translateX(38px);
  }

  .custom-switch .form-check-label {
    font-size: 0.875rem;
    /* Kleinere Schriftgröße */
  }
}

/* Video Einleitung Landscape oder Portrait */
.video-container.landscape {
  width: 100%;
  height: 400px;
  /* Höhe des Video-Containers im Landscape-Modus */
  padding-bottom: 56.25%;
  /* Padding-Bottom, um den Platz zu behalten */
}

.video-container.portrait {
  width: 100%;
  height: 600px;
  /* Höhe des Video-Containers im Portrait-Modus */
  padding-bottom: 150%;
  /* Padding-Bottom, um den Platz zu behalten */
}

/* Belegungskalender */
.calendar-container {
  max-width: 600px;
  margin: auto;
}

.calendar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.calendar-nav h3 {
  margin: 0;
  font-size: 1.5rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: #dee2e6;
}

.week-day,
.day,
.empty {
  background: #fff;
  text-align: center;
  padding: .75rem 0;
  min-height: 3.5rem;
  position: relative;
  font-size: .95rem;
}

.week-day {
  background: #f8f9fa;
  font-weight: 500;
}

.empty {
  cursor: default;
}

.day.today {
  background: #fff !important;
  color: #000 !important;
  font-weight: 700;
  border: none !important;
  box-shadow: none !important;
}

.day.disabled {
  pointer-events: none;
}

@media (max-width: 767.98px) {
  .row>.col-md-6+.col-md-6 .calendar-container {
    margin-top: 30px;
  }
}

/* Volle Stati */
.day.available {
  background: #007aff;
  color: #fff;
  cursor: pointer;
}

.day.booked {
  background: #ff3b31;
  color: #fff;
}

.day.requested {
  background: #ffd60a;
  color: #000;
}

/* Halbtage in Verfügbarkeit (An- und Abreisetag) */
.day.available.half-start {
  background:
    linear-gradient(135deg,
      #007aff 49.5%,
      /* frei (blau) */
      #000 49.5%,
      /* Trennlinie */
      #000 50.5%,
      #ff3b31 50.5%
      /* gebucht (rot) */
    );
  color: #fff;
}

.day.available.half-end {
  background:
    linear-gradient(315deg,
      #007aff 49.5%,
      #000 49.5%,
      #000 50.5%,
      #ff3b31 50.5%);
  color: #fff;
}

/* Auswahl durch den Nutzer */
.day.selection-start,
.day.selection-end,
.day.selection-range {
  background: rgba(0, 122, 255, 0.2) !important;
  color: #000 !important;
}

/* Legende */
.legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.legend-item {
  display: flex;
  align-items: center;
  font-size: .95rem;
}

.legend-color {
  width: 22px;
  height: 22px;
  margin-right: .5rem;
  border: 1px solid #ccc;
  border-radius: .2rem;
}

/* ========================================================================== */
/* Gast Login                                                                 */
/* ========================================================================== */

/* Nachrichten */
.messages-header p {
  margin-bottom: 0;
}

.messages-badge {
  white-space: nowrap;
}

/* Filterleiste */
#messageFilterBar .btn {
  border-radius: 999px;
}

#messageFilterBar .btn.active {
  color: #fff;
}

/* Hauptlayout: Liste + Thread */
.messages-layout {
  min-height: 320px;
}

.conversation-list-wrapper,
.thread-wrapper {
  border-radius: 1rem;
}

.conversation-list-wrapper {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.thread-wrapper {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

/* Meine Reisen */
.trip-media {
  max-width: 260px;
}

@media (max-width: 767.98px) {
  .trip-media {
    max-width: 100%;
  }
}

/* Konversationsliste */
.conversation-item {
  cursor: pointer;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 0;
  padding: 0.75rem 1rem;
  background-color: transparent;
}

.conversation-item:last-child {
  border-bottom: 0;
}

.conversation-item.active {
  background-color: #e9f2ff;
  box-shadow: inset 3px 0 0 #0d6efd;
}

.conversation-item-unread .conversation-title {
  font-weight: 600;
}

.conversation-title {
  font-size: 0.95rem;
}

.conversation-provider {
  font-size: 0.8rem;
}

.conversation-meta {
  font-size: 0.78rem;
}

.conversation-snippet {
  font-size: 0.8rem;
}

.conversation-badge {
  font-size: 0.7rem;
}

.unread-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

/* Thread */
.thread-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.75rem 1rem;
}

.thread-header-title {
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.thread-header-subtitle {
  font-size: 0.85rem;
}

.thread-badges .badge {
  font-size: 0.7rem;
}

.thread-links a {
  white-space: nowrap;
}

.thread-body {
  padding: 1rem;
  overflow-y: auto;
  flex: 1 1 auto;
  max-height: 440px;
}

/* Nachrichten-Bubbles */
.message-row {
  margin-bottom: 0.75rem;
}

.message-bubble {
  padding: 0.6rem 0.75rem;
  border-radius: 0.9rem;
  font-size: 0.9rem;
  max-width: 80%;
}

.message-bubble-guest {
  background-color: #f8f9fa;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.message-bubble-guest a {
  font-weight: bold;
  color: #4f4435;
}

.message-bubble-provider {
  background-color: #0d6efd;
  color: #ffffff;
}

.message-bubble-provider a {
  font-weight: bold;
  color: #ffffff;
}

.message-meta {
  font-size: 0.75rem;
  margin-top: 0.2rem;
}

.message-system {
  font-size: 0.75rem;
  color: #6c757d;
  text-align: center;
  margin: 0.5rem 0;
}

.message-attachment {
  margin-top: 0.35rem;
  font-size: 0.8rem;
}

.message-attachment .badge {
  font-size: 0.75rem;
}

/* Composer */
.thread-composer {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.75rem 1rem;
}

.thread-composer textarea {
  resize: none;
  /* Höhe wird per JS geregelt */
}

.thread-composer-hint {
  font-size: 0.75rem;
}

.thread-composer-counter {
  font-size: 0.75rem;
}

/* Empty-State für gefilterte Liste */
#noConversationsState {
  font-size: 0.85rem;
}

/* Mobile – View-Wechsel Liste / Thread */
@media (max-width: 991.98px) {
  .messages-layout {
    position: relative;
  }

  .messages-layout .list-col,
  .messages-layout .thread-col {
    width: 100%;
  }

  .messages-layout .thread-col {
    display: none;
  }

  .messages-layout.show-thread .list-col {
    display: none;
  }

  .messages-layout.show-thread .thread-col {
    display: block;
  }

  .thread-wrapper {
    min-height: 70vh;
  }
}

/* Mobile: Back-Button im Thread-Header */
.thread-mobile-back {
  display: none;
}

@media (max-width: 991.98px) {
  .thread-mobile-back {
    display: inline-flex;
    align-items: center;
    border: 0;
    background: transparent;
    padding: 0;
    margin-right: 0.5rem;
  }
}

/* Overlay Textbausteine */
.textblocks-overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.25);
  /* Seite bleibt sichtbar */
}

.textblocks-overlay.d-none {
  display: none !important;
}

.textblocks-dialog {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  max-width: 540px;
  width: calc(100% - 2rem);
  max-height: 70vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.textblocks-header {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.textblocks-title {
  font-size: 1rem;
  margin: 0;
}

.textblocks-close-btn {
  border: none;
  background: transparent;
  font-size: 1.4rem;
  line-height: 1;
}

.textblocks-body {
  padding: 0.75rem 1rem 1rem;
  overflow-y: auto;
}

.textblock-item {
  font-size: 0.9rem;
}

/* Bewertungen */
.review-header-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.review-header-title {
  flex: 0 0 auto;
}

.review-info-box {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.75rem 0.95rem;
  border-radius: 1rem;
  background: #ffffff;
  border: 1px solid #e3f0ff;
  font-size: 0.9rem;
  color: #6c757d;
}

.review-info-box i {
  color: #0d6efd;
  margin-top: 0.1rem;
}

@media (max-width: 767.98px) {
  .review-header-top {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
}

/* FILTER / SUCHE / SORTIERUNG */
.review-filters {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.review-status-tabs {
  display: inline-flex;
  gap: 0.2rem;
  padding: 0.12rem 0.35rem;
  background: #e9edf0;
  border-radius: 999px;
  width: 100%;
  justify-content: flex-start;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.review-status-tabs::-webkit-scrollbar {
  display: none;
}

.review-status-tab {
  border: none;
  background: transparent;
  padding: 0.3rem 0.85rem;
  font-size: 0.82rem;
  border-radius: 999px;
  cursor: pointer;
  color: #6c757d;
  white-space: nowrap;
  flex: 0 0 auto;
}

.review-status-tab.is-active {
  background: #ffffff;
  color: #0d6efd;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.review-filter-right {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 100%;
  justify-content: space-between;
}

.review-search,
.review-sort {
  position: relative;
}

.review-search input,
.review-sort select {
  border-radius: 999px;
  border: 1px solid #dee2e6;
  padding: 0.35rem 0.8rem;
  font-size: 0.82rem;
  min-width: 160px;
  width: 300px;
}

.review-search i {
  position: absolute;
  right: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  color: #adb5bd;
}

/* REDAKTIONELLE ABLEHNUNG in der Box */
.review-rejection {
  margin-top: 0.75rem;
  padding: 0.75rem 0.85rem;
  border-radius: 0.75rem;
  background: #fff4f4;
  border: 1px solid #ffd5d5;
  font-size: 0.83rem;
  color: #6c757d;
}

.review-rejection-title {
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: #dc3545;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.review-rejection-title i {
  font-size: 0.9rem;
}

.review-rejection ul {
  margin: 0 0 0.4rem 1.1rem;
  padding: 0;
}

.review-rejection li {
  margin-bottom: 0.15rem;
}

.review-edit-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 600;
  color: #0d6efd;
  text-decoration: none;
}

.review-edit-link i {
  font-size: 0.9rem;
}

.review-edit-link:hover {
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .review-filters {
    gap: 0.4rem;
    padding-inline: 0.25rem;
  }

  .review-status-tabs {
    padding-inline: 0.2rem;
  }

  .review-status-tab {
    font-size: 0.78rem;
    padding: 0.18rem 0.65rem;
  }

  .review-filter-right {
    flex-direction: column;
    gap: 0.3rem;
  }

  .review-search input,
  .review-sort select {
    width: 100%;
    min-width: 0;
    padding: 0.3rem 0.7rem;
    font-size: 0.8rem;
  }

  .hotel-slider .owl-item {
    padding-bottom: 1.25rem !important;
  }
}

/* Paswortsicherheit */
.bg-medium {
  background-color: #e09710 !important;
}

/* ========================================================================== */
/* Anbieter Login                                                                 */
/* ========================================================================== */

/* Dashboard */
.metrics-row .dashboard-widget {
  border-radius: 15px;
  background-color: #f5f5f5;
  /* neutrale Card-Farbe */
  padding: 10px 1px 10px 10px;
}

.metrics-row .dashboard-widget.dashboard-widget-color-2 {
  background-color: #c9f5e6;
  /* Mint-Fläche */
  border-radius: 15px;
  padding: 16px;
}

.metrics-row .dashboard-widget.dashboard-widget-color-2 .dashboard-widget-info {
  background-color: transparent;
  padding: 0;
}

.metric-subtitle {
  font-size: 0.875rem;
  color: #7a8592;
  margin-bottom: 8px;
}

.metric-title,
.metrics-row .dashboard-widget .h5 {
  font-size: 1rem;
  font-weight: 600;
}

.chart-container {
  width: 100%;
  height: 160px;
}

.metrics-row .dashboard-widget.dashboard-widget-color-2 .origin-list {
  margin: 12px 0 0;
  width: 100%;
  max-width: 100%;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  max-height: 160px;
  overflow-y: auto;
}

.metrics-row .dashboard-widget.dashboard-widget-color-2 .origin-list .list-group-item {
  border-left: none;
  border-right: none;
  font-size: 1rem;
}

.metrics-row .dashboard-widget.dashboard-widget-color-2 .origin-list .list-group-item:first-child {
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.metrics-row .dashboard-widget.dashboard-widget-color-2 .origin-list .list-group-item:last-child {
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

.metric-hints {
  list-style: none;
  margin: 0;
  padding: 0;
}

.metric-hints li {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem;
  padding: 0.35rem 0;
  margin: 0;
  font-size: 1rem;
}

/* Icon */
.metric-hints li i {
  font-size: 1.25rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Wrapper um das Icon */
.metric-hints li>span:first-child {
  display: flex;
  align-items: center;
  margin-top: 0 !important;
}

/* Text */
.metric-hints li span:last-child {
  position: relative;
  top: 2px;
  display: inline-block;
}

/* Schnell-starten-Bereich */
.quick-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2rem;
  padding: .1rem .1rem .1rem 1px;
  /* Wert alt padding: 0.9rem 1.25rem;*/
  border-radius: 999px;
  background: #faf5f2;
  /* leichtes Beige, wie dein Hintergrund */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.quick-actions-label {
  font-weight: 600;
  color: #3c3328;
  /* dunkles Braun aus deinem CI */
  white-space: nowrap;
  padding: 10px 0 1px 40px;
}

.quick-actions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 20px 20px 30px
}

.quick-action-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 102, 255, 0.35);
  background-color: #ffffff;
  color: #0066ff;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.15s ease-in-out;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.quick-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: rgba(0, 102, 255, 0.08);
}

.quick-action-icon i {
  font-size: 0.95rem;
}

.quick-action-text {
  white-space: nowrap;
}

.quick-action-chip:hover,
.quick-action-chip:focus {
  background: #0066ff;
  color: #ffffff;
  border-color: #0066ff;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 102, 255, 0.25);
}

.quick-action-chip:hover .quick-action-icon,
.quick-action-chip:focus .quick-action-icon {
  background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 576px) {
  .quick-actions {
    border-radius: 20px;
    align-items: flex-start;
  }

  .quick-actions-list {
    width: 100%;
  }

  .quick-action-chip {
    width: 100%;
    justify-content: flex-start;
  }

  .quick-action-text {
    white-space: normal;
  }
}

/* Filter Pins */
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 102, 255, 0.35);
  background-color: #ffffff;
  color: #0066ff;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  white-space: nowrap;
}

/* Hover / Fokus */
.filter-chip:hover,
.filter-chip:focus {
  background-color: #0066ff;
  color: #ffffff;
  border-color: #0066ff;
  box-shadow: 0 4px 10px rgba(0, 102, 255, 0.25);
  text-decoration: none;
}

/* Optional: aktiver Chip (wenn Status ausgewählt) */
.filter-chip.active {
  background-color: #0066ff;
  color: #ffffff;
  border-color: #0066ff;
  box-shadow: 0 4px 10px rgba(0, 102, 255, 0.25);
}

/* Mobile: Chips umbrechen */
@media (max-width: 576px) {
  .filter-chip {
    width: auto;
  }
}

/* Anbieter Angebotsverwaltung */
.si-chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem .9rem;
  border-radius: 999px;
  font-size: .85rem;
  border: 1px solid #dee2e6;
  background-color: #f8f9fa;
  cursor: default;
  transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
  user-select: none;
}

.si-chip i {
  font-size: .9rem;
}

.si-chip.si-chip-active {
  background-color: #0d6efd;
  color: #fff;
  border-color: #0d6efd;
  box-shadow: 0 0.25rem 0.5rem rgba(13, 110, 253, 0.15);
}

.si-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

/* Step-Navigation: Scrollbar auf kleinen Screens */
.si-steps-nav {
  overflow-x: auto;
  white-space: nowrap;
}

.si-steps-nav .nav-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

@media (max-width: 575.98px) {
  .si-steps-nav .nav-link {
    font-size: .9rem;
    padding-inline: .5rem;
  }
}

/* Angebot wechseln */
.si-offer-switcher-btn {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  width: auto;
  max-width: 100%;
  padding: .45rem .45rem .45rem .45rem;
  border-radius: 999px;
  border: 1px solid #cce0ff;
  background-color: #f5f9ff;
  color: #0d6efd;
  font-size: .9rem;
  text-decoration: none;
  transition: background-color .15s ease, box-shadow .15s ease, border-color .15s ease;
  white-space: normal;
}

.si-offer-switcher-btn:hover {
  background-color: #e8f2ff;
  border-color: #99c2ff;
  box-shadow: 0 0.25rem 0.5rem rgba(13, 110, 253, 0.12);
  color: #0b5ed7;
}

.si-offer-switcher-thumb {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
  background: #e9ecef;
}

.si-offer-switcher-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.si-offer-switcher-text-main {
  font-weight: 600;
  line-height: 1.2;
}

.si-offer-switcher-text-sub {
  display: block;
  font-size: .75rem;
  color: #6c757d;
}

/* Modal-Liste */
.si-offer-list-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .5rem .25rem;
  border-radius: .5rem;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: background-color .12s ease;
}

.si-offer-list-item:hover {
  background-color: #f8f9fa;
}

.si-offer-list-thumb {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  background: #e9ecef;
  flex-shrink: 0;
}

.si-offer-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.si-offer-list-title {
  font-size: .9rem;
  font-weight: 600;
}

.si-offer-list-meta {
  font-size: .75rem;
  color: #6c757d;
}

@media (max-width: 576px) {
  .si-offer-switcher-btn {
    gap: 2rem;
  }
}

/* Mediathek Header */
.si-media-header-title {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

/* Drag&Drop-Zone */
.si-media-dropzone {
  border: 1px dashed #ced4da;
  border-radius: 1rem;
  padding: 1.25rem;
  background: #f8f9fa;
  text-align: center;
  transition: border-color .15s ease, background-color .15s ease;
}

.si-media-dropzone:hover {
  border-color: #0d6efd;
  background-color: #f5f9ff;
}

.si-media-dropzone-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #e7f1ff;
  color: #0d6efd;
  margin-bottom: .5rem;
}

/* Bulk-Bar */
.si-media-bulkbar {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  justify-content: space-between;
  font-size: .85rem;
}

/* Media Cards */
.si-media-card {
  position: relative;
  border-radius: 1rem;
  overflow: visible;
  box-shadow: 0 .25rem .75rem rgba(15, 23, 42, 0.06);
  border: 1px solid #e9ecef;
  background-color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.si-media-card-thumb-wrapper {
  position: relative;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  overflow: hidden;
}

.si-media-card-body {
  padding: .5rem .75rem .75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
}

.si-media-card-body .dropdown-menu {
  margin-top: .35rem;
  margin-right: -.25rem;
  border-radius: .75rem;
  padding: .25rem 0;
  box-shadow: 0 .75rem 1.5rem rgba(15, 23, 42, 0.15);
  min-width: 220px;
  z-index: 20;
}

.si-media-card-thumb {
  width: 100%;
  padding-top: 75%;
  background-color: #f1f3f5;
  overflow: hidden;
}

.si-media-card-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.si-media-card-checkbox {
  position: absolute;
  top: .5rem;
  left: .5rem;
  z-index: 2;
}

.si-media-card-badge {
  position: absolute;
  top: .5rem;
  right: .5rem;
  z-index: 2;
}

.si-media-card-body {
  padding: .5rem .75rem .75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.si-media-card-title {
  font-size: .85rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.si-media-card-meta {
  font-size: .75rem;
  color: #6c757d;
}

.si-media-card-usage {
  font-size: .75rem;
  color: #6c757d;
  margin-top: .25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Modal: Detailansicht */
.si-media-detail-thumb {
  width: 100%;
  padding-top: 75%;
  background-color: #f1f3f5;
  border-radius: .75rem;
  overflow: hidden;
  position: relative;
}

.si-media-detail-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.si-media-detail-meta {
  font-size: .85rem;
}

.si-media-detail-meta dt {
  font-weight: 600;
  color: #495057;
}

.si-media-detail-meta dd {
  margin-bottom: .25rem;
  color: #6c757d;
}

/* Kleine Hilfs-Klasse für Bilder */
.si-object-fit-cover {
  object-fit: cover;
}

@media (max-width: 575.98px) {
  .si-media-dropzone {
    padding: .9rem;
  }
}

/* Mobile Account Dropdown */
.mobile-account {
  position: relative;
}

.mobile-account .icon-badge-container,
.mobile-menu .right .icon-badge-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
}

.mobile-account .icon-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  background: #dc3545;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .9);
}

/* Dropdown: wirkt wie Card, genügend Touch-Ziele */
.mobile-account .dropdown-menu {
  z-index: 1055;
  min-width: 260px;
  padding: .35rem;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, .12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
  margin-top: .5rem !important;
  /* KEINE negativen margins */
}

.mobile-account .dropdown-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem .9rem;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 400;
}

.mobile-account .dropdown-item i {
  width: 22px;
  text-align: center;
  opacity: .75;
}

.mobile-account .dropdown-item:active,
.mobile-account .dropdown-item:focus {
  outline: none;
}

.mobile-account .dropdown-divider {
  margin: .35rem 0;
}

/* Optional: auf sehr kleinen Geräten das Menü nicht "wegschneiden" */
@media (max-width: 576px) {
  .mobile-account .dropdown-menu {
    max-width: calc(100vw - 24px);
  }
}

/* Bewertungen */
:root {
  --si-bg: #f7f8fb;
  --si-card: #ffffff;
  --si-border: rgba(0, 0, 0, .08);
  --si-shadow: 0 10px 30px rgba(20, 24, 40, .08);
  --si-muted: rgba(0, 0, 0, .6);
  --si-pill-bg: rgba(13, 110, 253, .08);
  --si-pill-border: rgba(13, 110, 253, .22);
}

.si-page-title {
  letter-spacing: -.02em;
}

.si-subtitle {
  color: var(--si-muted);
}

.si-card {
  background: var(--si-card);
  border: 1px solid var(--si-border);
  border-radius: 1.25rem;
  box-shadow: var(--si-shadow);
}

.si-card-soft {
  background: linear-gradient(180deg, #fff, rgba(255, 255, 255, .92));
  border: 1px solid var(--si-border);
  border-radius: 1.25rem;
}

.si-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .85rem;
  border-radius: 999px;
  background: var(--si-pill-bg);
  border: 1px solid var(--si-pill-border);
  text-decoration: none;
  color: #0d6efd;
  font-weight: 600;
  white-space: nowrap;
}

.si-chip:hover {
  background: rgba(13, 110, 253, .12);
}

.si-kpi {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--si-border);
  background: #fff;
}

.si-kpi .si-kpi-label {
  color: var(--si-muted);
  font-size: .9rem;
}

.si-kpi .si-kpi-value {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -.02em;
}

.si-stars {
  display: inline-flex;
  gap: .15rem;
}

.si-stars i {
  font-size: .95rem;
}

.si-stars .si-star-on {
  color: #f7b500;
}

.si-stars .si-star-off {
  color: rgba(0, 0, 0, .12);
}

.si-badge-pill {
  border-radius: 999px;
  padding: .35rem .6rem;
  font-weight: 700;
}

.si-review-item {
  border: 1px solid var(--si-border);
  border-radius: 1.1rem;
  padding: 1rem;
  background: #fff;
  transition: transform .12s ease, box-shadow .12s ease;
  cursor: pointer;
}

.si-review-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(20, 24, 40, .10);
}

.si-review-meta {
  color: var(--si-muted);
  font-size: .9rem;
}

.si-review-text {
  color: rgba(0, 0, 0, .82);
}

.si-sticky-panel {
  position: sticky;
  top: 1rem;
}

.si-small {
  font-size: .9rem;
  color: var(--si-muted);
}

.si-divider {
  border-top: 1px solid var(--si-border);
}

@media (max-width: 991.98px) {
  .si-sticky-panel {
    position: static;
    top: auto;
  }
}

/* Gutschein Logik bei Direktbuchung Angeboten */
.is-hidden-important {
  display: none !important;
}

/* Labels kompakter und sauber */
#reisedaten-block .gift-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .35rem;
  line-height: 1.2;
}

#reisedaten-block .gift-input {
  /* falls dein Theme crazy padding setzt, hilft das */
  padding-top: .75rem;
  padding-bottom: .75rem;
}

#reisedaten-block .gift-info {
  display: inline-flex;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  opacity: .65;
  border: 1px solid currentColor;
  cursor: help;
}

#reisedaten-block .gift-hint {
  margin-top: .25rem;
  font-size: .95rem;
  line-height: 1.25;
  opacity: .75;
}

/* Suche global */
:root {
  --thumb-w: 92px;
  --thumb-h: 70px;

  --accent: #f2f4ef;
  --accent-ink: #4f4435;

  --ink: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --border-2: #d1d5db;

  --surface: #ffffff;
  --surface-2: #f9fafb;

  --radius-lg: 18px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .05);
  --shadow-md: 0 8px 30px rgba(17, 24, 39, .08);

  --focus-ring: 0 0 0 .25rem rgba(13, 110, 253, .22);

  /* quick bar */
  --chip-h: 44px;
  --ctl-h: 46px;
}

@media (min-width: 576px) {
  :root {
    --thumb-w: 120px;
    --thumb-h: 90px;
  }
}

@media (max-width: 420px) {
  :root {
    --thumb-w: 84px;
    --thumb-h: 64px;
  }
}

/* ------------------------------------------------------------
   Global a11y / focus
------------------------------------------------------------ */
.form-control:focus,
.form-select:focus,
.form-check-input:focus {
  box-shadow: var(--focus-ring);
}

.text-muted {
  color: var(--muted) !important;
}

/* ------------------------------------------------------------
   Category Pills (Top)
   Fix: mobile alignment + better wrapping/scroll
------------------------------------------------------------ */
.srch-cat-pills {
  display: flex;
  gap: .5rem;
  align-items: center;
  padding: .55rem;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}

/* Mobile: avoid "weird positioning" by making it scrollable */
@media (max-width: 575.98px) {
  .srch-cat-pills {
    border-radius: var(--radius-lg);
    padding: .6rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .srch-cat-pills::-webkit-scrollbar {
    display: none;
  }
}

.srch-cat-pill {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: .5rem .85rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 700;
  color: var(--ink);
  user-select: none;
  transition: background .15s ease, border-color .15s ease, transform .05s ease, box-shadow .15s ease;
  white-space: nowrap;
}

.srch-cat-pill:hover {
  background: var(--surface-2);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .02);
}

.srch-cat-pill:active {
  transform: translateY(1px);
}

.srch-cat-pill .srch-count {
  font-weight: 800;
  font-size: .82rem;
  padding: .14rem .5rem;
  border-radius: var(--radius-pill);
  background: #f3f4f6;
  color: var(--ink);
  border: 1px solid var(--border);
  line-height: 1.1;
}

.srch-cat-pill.is-active {
  border-color: transparent;
  background: var(--accent);
  color: var(--accent-ink);
}

.srch-cat-pill.is-active .srch-count {
  background: rgba(255, 255, 255, .35);
  color: var(--accent-ink);
  border-color: rgba(198, 190, 180, 1);
}

/* ------------------------------------------------------------
   Quick Bar controls (Desktop row above results)
   Make it feel like one cohesive bar
------------------------------------------------------------ */
#quickBar .d-none.d-lg-flex {
  gap: .65rem !important;
  align-items: center;
}

@media (min-width: 992px) {
  #quickBar .d-none.d-lg-flex {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: .65rem;
    box-shadow: var(--shadow-sm);
  }

  /* unify height */
  #quickBar .form-control,
  #quickBar .form-select,
  #quickBar .btn {
    height: var(--ctl-h);
    border-radius: 14px;
  }

  #quickBar input[type="number"].form-control {
    width: 120px !important;
  }

  #quickBar #clearAllD {
    border-color: var(--border-2);
    font-weight: 700;
  }
}

/* ------------------------------------------------------------
   Mobile chips row
------------------------------------------------------------ */
#mobileChips .btn {
  height: var(--chip-h);
  border-radius: 14px;
  font-weight: 650;
  border-color: var(--border-2);
  background: var(--surface);
}

#openFiltersBtn {
  height: var(--chip-h);
  border-radius: 14px;
  font-weight: 750;
}

/* Active filter chips */
#activeFilters .btn {
  border-radius: 999px;
  font-weight: 650;
  border-color: var(--border-2);
  background: var(--surface);
}

#activeFilters .btn:hover {
  border-color: var(--border-2);
  background: var(--surface);
  color: inherit;
}

#activeFilters .btn:focus,
#activeFilters .btn:focus-visible {
  border-color: var(--border-2);
  background: var(--surface);
  color: inherit;
  box-shadow: none;
  outline: none;
}

#activeFilters .btn:active,
#activeFilters .btn.active {
  border-color: var(--border-2);
  background: var(--surface);
  color: inherit;
  box-shadow: none;
}

#activeFilters .btn:not(:disabled):not(.disabled):active {
  border-color: var(--border-2);
  background: var(--surface);
}

.srch-filter-title {
  font-weight: 850;
  font-size: 1.05rem;
}

.srch-filter-subtitle {
  font-weight: 850;
  font-size: 1rem;
  margin-top: .25rem;
}

.srch-type-count {
  color: var(--muted);
  font-weight: 700;
}

.srch-type-row {
  --bs-form-check-padding-start: 0;
  display: flex;
  align-items: center;
  padding: .75rem .9rem;
  border-radius: 14px;
  background: rgba(31, 41, 55, .06);
  transition: background .15s ease;
}

.srch-type-row+.srch-type-row {
  margin-top: .35rem;
}

.srch-type-row .form-check-input {
  margin-left: 0 !important;
  margin-top: 0;
  flex: 0 0 auto;
}

.srch-type-row .form-check-label {
  margin-left: .75rem;
  margin-bottom: 0;
  flex: 1 1 auto;
}

.srch-type-row.is-active {
  background: rgba(13, 110, 253, .08);
}

.srch-type-row.is-disabled {
  opacity: .45;
  pointer-events: none;
}

.srch-switch {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .55rem .75rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .02);
}

.offcanvas .srch-switch {
  padding: .75rem .9rem;
  border-radius: 16px;
}

.srch-switch .form-check-label {
  flex: 1;
  margin: 0;
  font-weight: 750;
  color: var(--ink);
}

.srch-switch .form-check-input {
  width: 3.25rem !important;
  height: 1.75rem !important;
  margin: 0 !important;
  background-size: 1.5rem 1.5rem !important;
  border-width: 1px;
  transform: none !important;
}

.srch-switch .form-check-input:checked {
  border-width: 1px;
  transform: none !important;
}

.form-select {
  border-color: var(--border);
  border-radius: 14px;
  background-color: var(--surface);
}

#sortD,
#sortM {
  padding-right: 2.4rem;
  /* room for caret */
  background-repeat: no-repeat;
  background-position: right .85rem center;
  background-size: 12px 12px;
  /* Inline SVG caret (dark) */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 20 20'%3E%3Cpath fill='%236b7280' d='M5.3 7.3a1 1 0 0 1 1.4 0L10 10.6l3.3-3.3a1 1 0 1 1 1.4 1.4l-4 4a1 1 0 0 1-1.4 0l-4-4a1 1 0 0 1 0-1.4Z'/%3E%3C/svg%3E");
}

#sortD:focus,
#sortM:focus {
  outline: none;
}

#placeInputD,
#placeInputM,
#priceMinD,
#priceMaxD,
#priceMinM,
#priceMaxM {
  border-color: var(--border);
  border-radius: 14px;
  background: var(--surface);
}

.srch-result-item,
.srch-result-item:hover,
.srch-result-item:focus,
.srch-result-item:active,
.srch-result-item:visited {
  text-decoration: none;
}

.srch-result-item {
  border-radius: 16px;
  border: 1px solid var(--border);
  margin-bottom: .75rem;
  overflow: hidden;
  background: var(--surface);
  color: inherit;
  padding: .9rem !important;
  box-shadow: var(--shadow-sm);
  transition: transform .08s ease, box-shadow .15s ease, background .15s ease;
}

.srch-result-item:hover {
  background: #fbfcfe;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.srch-result-row {
  display: grid;
  grid-template-columns: var(--thumb-w) 1fr;
  gap: .85rem;
  align-items: start;
}
.srch-result-row--no-thumb {
  grid-template-columns: 1fr;
}

.srch-result-thumb {
  width: var(--thumb-w);
  height: var(--thumb-h);
  border-radius: 14px;
  overflow: hidden;
  background: #f1f3f5;
}

.srch-result-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.srch-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  align-items: center;
  margin-bottom: .25rem;
}

.srch-badge-accent {
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
  border-radius: 999px;
  padding: .28rem .55rem;
  line-height: 1;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}
a.srch-badge-accent {
  text-decoration: none;
  transition: opacity .15s;
}
a.srch-badge-accent:hover {
  opacity: .85;
}
.srch-badge-accent i {
  margin-right: .2em;
}

.srch-result-badge {
  font-size: .78rem;
  font-weight: 600;
  border-radius: 999px;
  padding: .22rem .5rem;
  line-height: 1;
  white-space: nowrap;
}
.srch-result-badge--default    { background: #23BCB9;               color: #fff; }
.srch-result-badge--offer      { background: rgba(255, 214, 10, 1); color: #4f4435; }
.srch-result-badge--success    { background: rgba(52, 199, 89, 1);  color: #fff; }
.srch-result-badge--pending    { background: rgba(0, 122, 255, 1);  color: #fff; }
.srch-result-badge--attention  { background: rgba(255, 149, 0, 1);  color: #fff; }
.srch-result-badge--warning    { background: rgba(255, 59, 49, 1);  color: #fff; }
.srch-result-badge--expired    { background: rgba(20, 190, 180, 1); color: #fff; }
.srch-result-badge--discount   { background: #F96768;               color: #fff; }

.srch-cat-link {
  color: #026598;
  font-weight: 500;
  font-size: .85rem;
  text-decoration: none;
}
a.srch-cat-link:hover {
  color: #024a73;
  text-decoration: none;
}
.srch-cat-link i {
  margin-right: .15em;
}

.badge.text-bg-success {
  font-size: .82rem;
  padding: .25rem .5rem;
  line-height: 1;
}

.srch-badge-row small.text-muted {
  font-size: .88rem;
}

.srch-result-title {
  font-size: .95rem;
  line-height: 1.25;
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.srch-result-subtitle {
  font-size: .85rem;
  margin-top: .1rem;
}
.srch-result-link {
  color: var(--primary, #026598);
  text-decoration: none;
  font-weight: 500;
}
.srch-result-link:hover {
  text-decoration: underline;
}
.srch-result-actions .btn,
.srch-mobile-actions .btn {
  text-decoration: none !important;
}

.srch-result-avail {
  font-size: .85rem;
  color: #026598;
  font-weight: 500;
  margin-top: .25rem;
}
.srch-result-avail i {
  margin-right: .2em;
}

.srch-result-excerpt {
  color: var(--muted);
  margin-top: .3rem;
  font-size: .93rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.srch-result-meta {
  font-size: .84rem;
  color: var(--muted);
  margin-top: .3rem;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

mark.srch-hl {
  padding: 0 .12em;
  border-radius: .25em;
  background: rgba(13, 110, 253, .14);
}

/* Actions */
.srch-result-actions {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: .5rem;
  min-width: 180px;
  padding-left: .5rem;
}

.srch-price-strong {
  font-weight: 900;
  text-align: right;
  font-size: 1rem;
  line-height: 1.15;
}

.srch-price-sub {
  font-size: .82rem;
  color: var(--muted);
  text-align: right;
  line-height: 1.2;
}

.srch-result-actions .btn,
.srch-mobile-actions .btn {
  padding: .45rem .7rem;
  font-size: .92rem;
  border-radius: 12px;
}

@media (min-width: 992px) {
  .srch-result-row {
    grid-template-columns: var(--thumb-w) 1fr auto;
  }
  .srch-result-row--no-thumb {
    grid-template-columns: 1fr auto;
  }

  .srch-result-actions {
    display: flex;
  }

  .srch-mobile-actions {
    display: none !important;
  }

  .srch-result-title {
    font-size: 1.05rem;
  }
}

.srch-ad-main {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  margin-bottom: .75rem;
  box-shadow: var(--shadow-sm);
}

.srch-ad-main .srch-ad-head {
  padding: .7rem .9rem;
  background: var(--surface-2);
  border-bottom: 1px solid #eef2f7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}

.srch-ad-badge {
  font-size: .75rem;
  padding: .18rem .45rem;
  border-radius: 999px;
  background: #e5e7eb;
  color: #374151;
  border: 1px solid var(--border-2);
}

.srch-ad-main .srch-ad-body {
  padding: 1rem;
}

.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 991.98px) {
  .cruise-grid section.mb-3 {
    margin-bottom: .5rem !important;
  }

  .cruise-grid .row.g-4 {
    --bs-gutter-y: .6rem;
  }

  .cruise-grid .row.g-4>* {
    margin-top: 0 !important;
  }

  #results>.mb-2 {
    margin-bottom: .35rem !important;
  }

  #results {
    padding-top: 0 !important;
  }
}

.srch-jump-ping {
  outline: 2px solid rgba(13, 110, 253, .25);
  outline-offset: 6px;
  border-radius: .75rem;
}

/* ------------------------------------------------------------
   Abfahrtzeiten Pills
------------------------------------------------------------ */
:root {
  --brand-blue: #026598;
  --brand-yellow: #f9af0d;
  --brand-neutral: #c6beb4;
}

/* Professioneller "Chip"-Look: flach, klar, nicht zu groß */
.time-chip {
  background: #fff;
  color: var(--brand-blue);
  border: 1px solid var(--brand-neutral);
  border-radius: 9999px;

  padding: .55rem .9rem;
  min-height: 40px;
  /* kleiner als vorher, trotzdem gut antippbar */
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;

  box-shadow: none;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
}

.time-chip:hover {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 .2rem rgba(2, 101, 152, .10);
}

/* Ausgewählt: eindeutig sichtbar + Checkmark */
.time-chip.is-active {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #fff;
  box-shadow: 0 0 0 .22rem rgba(249, 175, 13, .45);
  /* gelber Halo als Akzent */
  position: relative;
}

.time-chip.is-active::after {
  content: "✓";
  font-weight: 900;
  position: absolute;
  right: .65rem;
  top: 50%;
  transform: translateY(-50%);
}

/* Tastaturfokus (nicht nur hover) */
.time-chip:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 .22rem rgba(249, 175, 13, .55);
  border-color: var(--brand-yellow);
}

/* =========================================
   Sofort buchbar – Set
========================================= */

.instant-booking-toolbar {
  margin-bottom: 25px;
}

.instant-booking-pills {
  gap: 10px;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.instant-booking-pills::-webkit-scrollbar {
  display: none;
}

.instant-booking-pills .nav-link {
  border-radius: 999px;
  white-space: nowrap;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #4b5563;
  font-weight: 600;
  padding: 10px 18px;
  line-height: 1.2;
}

.instant-booking-pills .nav-link:hover {
  background: #f8f9fa;
  color: #111827;
}

.instant-booking-pills .nav-link.active {
  background: #0d6efd;
  color: #fff;
  border-color: #0d6efd;
}

.instant-day-toggle {
  gap: 10px;
}

.instant-day-toggle .btn {
  min-width: 110px;
  border-radius: 999px !important;
  font-weight: 600;
  padding: 10px 18px;
}

.instant-day-toggle .btn.active,
.instant-day-toggle .btn:active,
.instant-day-toggle .btn.show {
  background: #0d6efd;
  border-color: #0d6efd;
  color: #fff;
}

.instant-booking__offer-link {
  color: #6c757d;
  text-decoration: none;
  transition: color .15s ease-in-out;
}
.instant-booking__offer-link:hover {
  color: var(--primary, #026598);
  text-decoration: none;
}

.theme-btn-outline {
  background: transparent;
  color: #0d6efd;
  border: 1px solid #0d6efd;
}

.theme-btn-outline:hover {
  background: #0d6efd;
  color: #fff;
}

/* Mobile stärker an Desktop-Design anlehnen */
@media (max-width: 767.98px) {
  .instant-booking .hotel-item {
    display: flex;
    flex-direction: column !important;
  }

  .instant-booking .hotel-img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
  }

  .instant-booking .hotel-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
  }

  .instant-booking .hotel-content {
    width: 100%;
    padding-top: 18px;
  }

  .instant-booking .hotel-bottom {
    flex-direction: column;
    align-items: stretch !important;
    gap: 14px !important;
  }

  .instant-booking .hotel-bottom .about-bottom,
  .instant-booking .hotel-bottom .about-bottom .theme-btn {
    width: 100%;
  }

  .instant-booking .hotel-bottom .theme-btn {
    text-align: center;
  }

  .instant-booking .badge-angebot {
    max-width: calc(100% - 90px);
    text-align: center;
  }
}

/* =========================================
   Warenkorb
========================================= */

/* =========================================
   Warenkorb
========================================= */

.sk-cart .sk-cart-table-wrap {
  overflow: visible !important;
}

.sk-cart .sk-cart-table {
  width: 100%;
  margin-bottom: 0;
  table-layout: fixed;
  border-collapse: collapse;
}

/* Desktop-Spaltenbreiten */
.sk-cart .sk-cart-table th:nth-child(1),
.sk-cart .sk-cart-table td:nth-child(1) {
  width: 58%;
}

.sk-cart .sk-cart-table th:nth-child(2),
.sk-cart .sk-cart-table td:nth-child(2) {
  width: 12%;
}

.sk-cart .sk-cart-table th:nth-child(3),
.sk-cart .sk-cart-table td:nth-child(3) {
  width: 16%;
}

.sk-cart .sk-cart-table th:nth-child(4),
.sk-cart .sk-cart-table td:nth-child(4) {
  width: 14%;
}

.sk-cart .sk-cart-table thead th {
  white-space: nowrap;
  vertical-align: top;
}

.sk-cart .sk-cart-table tbody tr.sk-cart-row td {
  vertical-align: top;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.sk-cart .sk-cart-table td:nth-child(2),
.sk-cart .sk-cart-table td:nth-child(3),
.sk-cart .sk-cart-table td:nth-child(4) {
  white-space: nowrap;
}

.sk-cart .sk-cart-table td:nth-child(2),
.sk-cart .sk-cart-table th:nth-child(2),
.sk-cart .sk-cart-table td:nth-child(4),
.sk-cart .sk-cart-table th:nth-child(4) {
  text-align: right;
}

.sk-cart .sk-cart-table td:nth-child(3),
.sk-cart .sk-cart-table th:nth-child(3) {
  text-align: left;
}

.sk-cart .sk-cart-product {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-width: 0;
}

.sk-cart .sk-cart-img {
  flex: 0 0 120px;
  width: 120px;
  max-width: 120px;
  min-width: 120px;
}

.sk-cart .sk-cart-img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.sk-cart .sk-cart-product-content {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  padding-right: 0.5rem;
}

.sk-cart .sk-cart-product-content .cart-product-title,
.sk-cart .cart-product-title {
  display: block;
  max-width: 100%;
  margin: 0 0 0.5rem 0;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.sk-cart .cart-product-info,
.sk-cart .cart-product-info>div,
.sk-cart .cart-product-info span,
.sk-cart .cart-product-info li,
.sk-cart .cart-product-extra,
.sk-cart .cart-product-extra ul {
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.sk-cart .cart-price,
.sk-cart .cart-sub-total {
  display: block;
  white-space: nowrap;
  line-height: 1.35;
  padding-top: 0.125rem;
}

.sk-cart .sk-cart-table td:nth-child(2) .cart-price,
.sk-cart .sk-cart-table td:nth-child(4) .cart-sub-total {
  width: 100%;
  text-align: right;
}

.sk-cart .sk-cart-qty {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  min-width: 140px;
  padding-top: 0;
}

.sk-cart .sk-cart-qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  max-width: 100%;
}

.sk-cart .sk-cart-remove-link {
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  line-height: 1.2;
  text-decoration: underline;
}

.sk-cart .sk-cart-remove-link:hover,
.sk-cart .sk-cart-remove-link:focus {
  opacity: 0.8;
}

.sk-cart .sk-cart-modal__content {
  border: 0;
  border-radius: 0.875rem;
}

.sk-cart .sk-cart-modal__body {
  padding: 1.25rem;
}

.sk-cart .sk-cart-modal__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
}

/* Gutscheinbereich Desktop */
.sk-cart .cart-coupon {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
}

.sk-cart .cart-coupon .form-control {
  min-width: 0;
  flex: 1 1 auto;
}

.sk-cart .cart-coupon .coupon-btn {
  flex: 0 0 auto;
  position: static !important;
}

/* Tablet */

@media (max-width: 991.98px) {
  .sk-cart .sk-cart-img {
    flex: 0 0 96px;
    width: 96px;
    max-width: 96px;
    min-width: 96px;
  }

  .sk-cart .sk-cart-table th:nth-child(1),
  .sk-cart .sk-cart-table td:nth-child(1) {
    width: 54%;
  }

  .sk-cart .sk-cart-table th:nth-child(2),
  .sk-cart .sk-cart-table td:nth-child(2) {
    width: 13%;
  }

  .sk-cart .sk-cart-table th:nth-child(3),
  .sk-cart .sk-cart-table td:nth-child(3) {
    width: 18%;
  }

  .sk-cart .sk-cart-table th:nth-child(4),
  .sk-cart .sk-cart-table td:nth-child(4) {
    width: 15%;
  }
}

/* Mobile: Tabelle -> Card Layout */

@media (max-width: 767.98px) {

  .sk-cart .sk-cart-table,
  .sk-cart .sk-cart-table thead,
  .sk-cart .sk-cart-table tbody,
  .sk-cart .sk-cart-table th,
  .sk-cart .sk-cart-table td,
  .sk-cart .sk-cart-table tr {
    display: block;
    width: 100%;
  }

  .sk-cart .sk-cart-table thead {
    display: none;
  }

  .sk-cart .sk-cart-table tbody {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .sk-cart .sk-cart-table th:nth-child(1),
  .sk-cart .sk-cart-table td:nth-child(1),
  .sk-cart .sk-cart-table th:nth-child(2),
  .sk-cart .sk-cart-table td:nth-child(2),
  .sk-cart .sk-cart-table th:nth-child(3),
  .sk-cart .sk-cart-table td:nth-child(3),
  .sk-cart .sk-cart-table th:nth-child(4),
  .sk-cart .sk-cart-table td:nth-child(4) {
    width: 100%;
  }

  .sk-cart .sk-cart-table tbody tr.sk-cart-row {
    display: block;
    margin: 0;
    padding: 1rem;
    overflow: hidden;
    background: #f8f9fa;
    border-radius: 1rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  }

  .sk-cart .sk-cart-table tbody tr.sk-cart-row td {
    display: block;
    width: 100%;
    min-width: 0;
    padding: 0;
    border: 0 !important;
    text-align: left;
    white-space: normal;
  }

  .sk-cart .sk-cart-table tbody tr.sk-cart-row td+td {
    margin-top: 0.875rem;
    padding-top: 0.875rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
  }

  .sk-cart .sk-cart-table tbody tr.sk-cart-row td:not(:first-child)::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 0.375rem;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #6c757d;
  }

  .sk-cart .cart-product,
  .sk-cart .sk-cart-product,
  .sk-cart .cart-img,
  .sk-cart .sk-cart-img,
  .sk-cart .cart-product-content,
  .sk-cart .sk-cart-product-content,
  .sk-cart .cart-product-info {
    position: static !important;
    float: none !important;
  }

  .sk-cart .cart-product,
  .sk-cart .sk-cart-product {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    clear: both !important;
  }

  .sk-cart .cart-img,
  .sk-cart .sk-cart-img {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 0 0.875rem 0 !important;
    overflow: hidden !important;
    flex: none !important;
  }

  .sk-cart .cart-img img,
  .sk-cart .sk-cart-img img {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    aspect-ratio: auto !important;
    border-radius: 0.75rem;
  }

  .sk-cart .cart-product-content,
  .sk-cart .sk-cart-product-content {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    clear: both !important;
    flex: none !important;
    font-size: 1.2rem;
  }

  .sk-cart .cart-product-title,
  .sk-cart .sk-cart-product-content .cart-product-title {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 0.5rem 0 !important;
    font-size: 1rem !important;
    line-height: 1.3 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }

  .sk-cart .cart-product-info,
  .sk-cart .cart-product-info>div,
  .sk-cart .cart-product-info span,
  .sk-cart .cart-product-info li,
  .sk-cart .cart-product-extra,
  .sk-cart .cart-product-extra ul {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }

  .sk-cart .cart-product-info {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .sk-cart .cart-product-info span>span {
    font-weight: 600;
    margin: 20px 0 0 0;
  }

  .sk-cart .cart-product-extra ul {
    margin: 0.375rem 0 0 0 !important;
    padding-left: 1px !important;
  }

  .sk-cart .cart-product-extra li {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.25rem;
  }

  .sk-cart .cart-price,
  .sk-cart .cart-sub-total {
    font-size: 0.95rem;
    line-height: 1.4;
    word-break: break-word;
    white-space: normal;
    text-align: left !important;
  }

  .sk-cart .sk-cart-qty {
    width: 100%;
    min-width: 0;
    align-items: flex-start;
    gap: 0.375rem;
  }

  .sk-cart .sk-cart-qty-controls {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    flex-wrap: nowrap;
    max-width: 100%;
  }

  .sk-cart .sk-cart-qty-controls .qty-amount {
    width: 52px;
    min-width: 52px;
    max-width: 52px;
    text-align: center;
  }

  .sk-cart .sk-cart-remove-link {
    margin-top: 0.125rem;
    font-size: 0.95rem !important;
  }

  .sk-cart .cart-coupon {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.75rem !important;
  }

  .sk-cart .cart-coupon .form-control,
  .sk-cart .cart-coupon .coupon-btn {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    position: static !important;
    margin: 0 !important;
  }

  .sk-cart .cart-coupon .coupon-btn {
    min-height: 48px;
  }

  .sk-cart .cart-summary {
    margin-top: 0.5rem;
  }

  .sk-cart .sk-cart-modal .modal-dialog {
    margin: 1rem;
  }

  .sk-cart .sk-cart-modal__body {
    padding: 1rem;
  }
}

/* Very small devices */

@media (max-width: 575.98px) {
  .sk-cart .sk-cart-table tbody tr.sk-cart-row {
    padding: 0.875rem;
    border-radius: 0.875rem;
  }

  .sk-cart .cart-img img,
  .sk-cart .sk-cart-img img {
    border-radius: 0.625rem;
  }

  .sk-cart .cart-product-title,
  .sk-cart .sk-cart-product-content .cart-product-title {
    font-size: 0.95rem !important;
  }

  .sk-cart .cart-product-info,
  .sk-cart .cart-product-extra li,
  .sk-cart .cart-price,
  .sk-cart .cart-sub-total,
  .sk-cart .sk-cart-remove-link {
    font-size: 0.9rem !important;
  }

  .sk-cart .sk-cart-table tbody tr.sk-cart-row td:not(:first-child)::before {
    font-size: 0.72rem;
  }

  .sk-cart .sk-cart-modal__text {
    font-size: 0.95rem;
  }
}

/* Video-Wrapper: 636×427 container (~3:2) with 16:9 video cover-crop */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 67.14%;
  /* 427/636 */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 119.34%;
  /* 16:9 at container height: 427*(16/9)/636 */
  height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
}

/* Video Seitenbreite */
.video-wrapper-seitenbreite {
  position: relative;
  display: flex;
  justify-content: center;
  height: 450px;
  z-index: 100;
 
}

/* ═══════════════════════════════════════════
   Instant Booking Section
   ═══════════════════════════════════════════ */

/* Category Pills */
.instant-booking-pills-wrap {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  max-width: 100%;
  mask-image: linear-gradient(to right, #000 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, #000 85%, transparent 100%);
}

.instant-booking-pills-wrap.scrolled-end {
  mask-image: none;
  -webkit-mask-image: none;
}

.instant-booking-pills-wrap::-webkit-scrollbar {
  display: none;
}

.instant-booking-pills {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  padding: 2px 0;
}

.instant-booking-pills .nav-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 50px;
  border: 2px solid #026598;
  background: #fff;
  color: #026598;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.instant-booking-pills .nav-link:hover {
  background: rgba(2, 101, 152, 0.08);
}

.instant-booking-pills .nav-link.active {
  background: #026598;
  border-color: #026598;
  color: #fff;
}

/* Day Pills */
.instant-day-pills {
  display: flex;
  gap: 8px;
}

.instant-day-pills .day-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 20px;
  border-radius: 50px;
  border: 2px solid #026598;
  background: #fff;
  color: #026598;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
}

.instant-day-pills .day-pill:hover:not(.active) {
  background: rgba(2, 101, 152, 0.08);
}

.instant-day-pills .day-pill.active {
  background: #026598;
  color: #fff;
}

/* Tour Date */
.tour-date {
  color: #026598;
  font-weight: 500;
}

.tour-date i {
  color: #026598;
}

/* Loading Spinner */
.instant-booking-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 0;
  gap: 12px;
}

.instant-booking-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(2, 101, 152, 0.15);
  border-top-color: #026598;
  border-radius: 50%;
  animation: instant-booking-spin .8s linear infinite;
}

@keyframes instant-booking-spin {
  to {
    transform: rotate(360deg);
  }
}

.instant-booking-spinner-label {
  font-size: 14px;
  color: #026598;
  font-weight: 500;
}

/* Instant Booking Slider: Badge nicht abschneiden */
.instant-booking .hotel-slider .hotel-item {
  margin-top: 15px;
  overflow: visible;
}

/* ═══════════════════════════════════════════
   Ergebnislisten
   ═══════════════════════════════════════════ */

/* Ergebnisbox Gesponsert */
.hotel-item.bg-anzeige-gesponsert {
  position: relative;
  border-radius: 15px;
  overflow: visible;
  /* padding-left: 14px; */
  background: linear-gradient(90deg,
      rgba(158, 173, 48, .12) 0%,
      #ffffff 62%);
  border: 1px solid rgba(0, 0, 0, .08);
}

.hotel-item.bg-anzeige-gesponsert::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 3px;
  bottom: 3px;
  width: 4px;
  background: #9ead30;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  z-index: 0;
}

.hotel-item.bg-anzeige-gesponsert .hotel-img,
.hotel-item.bg-anzeige-gesponsert .hotel-content {
  position: relative;
  z-index: 1;
  margin-left: 8px;
}

.hotel-item.bg-anzeige-gesponsert .badge-gesponsert {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 20;
  background: #0485bf;
  color: #fff;
  border: 1px solid rgba(0, 0, 0, .12);
  box-shadow: none;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .01em;
}

.hotel-item.bg-anzeige-gesponsert .badge-gesponsert.pulse {
  transform: none !important;
  animation: none !important;
}

@media (max-width: 991px) {
  .hotel-item.bg-anzeige-gesponsert .badge-gesponsert {
    top: 44px;
    right: 18px;
  }
}

/* Ergebnisbox Bildbreite */
.hotel-item-result .hotel-img {
  width: 100%;
  min-width: 0;
}

.hotel-item-result .hotel-img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

@media (min-width: 768px) {
  .hotel-item-result .hotel-img {
    width: 350px;
    min-width: 350px;
  }

  .hotel-item-result .hotel-img img {
    width: 350px;
    height: auto;
    object-fit: cover;
  }
}

/* RVM slider: category row uses normal weight instead of theme default 500 */
.hotel-slider .tour-top,
.hotel-slider .tour-top a,
.hotel-slider .tour-top .tour-category,
.instant-booking .tour-top,
.instant-booking .tour-top a,
.instant-booking .tour-top .tour-category {
  font-weight: 400;
}

/* RVM slider + instant booking: price in body text color instead of theme purple (#4F4B8B) */
.hotel-slider .tour-price,
.hotel-slider .tour-price span,
.instant-booking .tour-price,
.instant-booking .tour-price span {
  color: #212529;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Result Card — Self-contained BEM block
   Jede BEM-Klasse erbt 1:1 die Optik der entsprechenden Legacy-Klasse
   (.hotel-item / .hotel-img / .hotel-content / .hotel-bottom / .hotel-price /
   .theme-btn / .badge), ohne im Markup davon abhängig zu sein.
   Einzige nicht-BEM-Klasse im Markup: .add-wishlist (aus <x-wishlist-button>).
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Card-Container: entspricht .hotel-item + .hotel-list .hotel-item ─────── */
.result-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 25px;
  padding: 5px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .result-card {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}

.result-card *,
.result-card *::before,
.result-card *::after {
  box-sizing: inherit;
}

/* ── Bildbereich: entspricht .hotel-img + .hotel-list .hotel-img ──────────── */
.result-card__media {
  position: relative;
  width: 100%;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .result-card__media {
    width: 350px;
    align-self: center;        /* vertikal zentriert wenn Body höher wird */
  }
}

.result-card__picture {
  display: block;
  border-radius: 12px;
  overflow: hidden;
}

.result-card__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

@media (min-width: 768px) {
  .result-card__image {
    width: 350px;
    height: auto;
    object-fit: cover;
  }
}

@media (max-width: 767.98px) {
  .result-card__image {
    width: 100%;
    height: auto;
  }
}

/* ── Badge: entspricht .hotel-img .badge (uppercase, letter-spacing) ──────── */
.result-card__badge {
  position: absolute;
  top: -15px;
  right: 20px;
  z-index: 2;
  display: inline-block;
  padding: 8px 15px;
  border-radius: 50px;
  background: rgba(35, 188, 185, .8);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

/* Filament-Varianten (1:1 identisch mit Filament-Preview in OfferResource) */
.result-card__badge--default    { background: #23BCB9;                color: #fff; }
.result-card__badge--offer      { background: rgba(255, 214, 10, 1);  color: #4f4435; font-size: 14px; }
.result-card__badge--success    { background: rgba(52, 199, 89, 1);   color: #fff;    font-size: 14px; }
.result-card__badge--pending    { background: rgba(0, 122, 255, 1);   color: #fff;    font-size: 14px; }
.result-card__badge--attention  { background: rgba(255, 149, 0, 1);   color: #fff;    font-size: 14px; }
.result-card__badge--warning    { background: rgba(255, 59, 49, 1);   color: #fff;    font-size: 14px; }
.result-card__badge--expired    { background: rgba(20, 190, 180, 1);  color: #fff;    font-size: 14px; }
.result-card__badge--discount   { background: #F96768;                color: #fff; }
.result-card__badge--debug      { background: #ff6b35;                color: #fff;    font-size: 14px; }
.result-card__badge--sponsored  { background: #0485bf;                color: #fff;    font-size: 12px; letter-spacing: .01em; font-weight: 600; padding: 5px 10px; border-radius: 999px; text-transform: none; display: none; /* Now rendered via .result-card__sponsored-label */ }

/* ── Wishlist: 1:1 aus .hotel-img .add-wishlist ───────────────────────────── */
.result-card__media .add-wishlist {
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: #026598;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  position: absolute;
  z-index: 1 !important;
  left: 10px;
  top: 10px;
  text-decoration: none;
  transition: background .3s ease;
}

.result-card__media .add-wishlist:hover {
  background: #788526;
  color: #fff;
}

/* ── Body: entspricht .hotel-content + .hotel-list .hotel-content ─────────── */
.result-card__body {
  padding: 10px 15px 10px 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* ── Header: Titel + Primärmeta ───────────────────────────────────────────── */
.result-card__header {
  margin-bottom: 8px;
}

/* Titel: entspricht .h5 .tour-title — h5 = 18px (style.css), blaue Link-Farbe */
.result-card__title {
  margin: 0 0 4px 0;
  color: #5e5c5c;
  font-family: inherit;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}

/* ── Meta (Container) ─────────────────────────────────────────────────────── */
.result-card__meta-wrapper {
  padding: 10px 0;
  border-top: 1px solid rgba(0, 0, 0, .05);
  border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.result-card__meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 16px;
  font-size: 14px;
  color: #026598;
  font-weight: 500;
}

.result-card__meta-item {
  display: inline-flex;
  align-items: center;
  line-height: 1.3;
}

.result-card__meta-link {
  color: inherit;
  text-decoration: none;
}

.result-card__meta-link:hover,
.result-card__meta-link:focus {
  color: #026598;
  text-decoration: underline;
}

.result-card__icon {
  margin-right: 5px;
}

/* Primary meta: Kategorie + Anzahl, Icons IMMER blau,
   mobile justify-space-between, desktop justify-flex-start */
.result-card__meta--primary {
  justify-content: space-between;
}

.result-card__meta--primary .result-card__icon,
.result-card__meta--primary i[class*="fa-"] {
  color: #026598;
}

@media (min-width: 768px) {
  .result-card__meta--primary {
    justify-content: flex-start;
  }

  .result-card__status {
    padding-left: 10px;
  }
}

/* Secondary meta: Ort + Zusatzinfos, oben/unten hellgraue Trennlinie */
.result-card__meta--secondary {
  margin: 4px 0 8px 0;
  color: #4f4435;
}

.result-card__meta--secondary .result-card__icon {
  color: #026598;
}

/* ── Fließtext / bookable items ──────────────────────────────────────────── */
.result-card__description {
  margin: 8px 0 12px 0;
  color: #4f4435;
  font-weight: normal;
  font-size: 15px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.result-card__items {
  margin: 0 0 8px 0;
  font-size: 13px;
  color: #6c757d;
}

/* ── Status (Öffnungszeiten / Verfügbarkeit) ─────────────────────────────── */
.result-card__status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: #026598;
}

.result-card__status-icon {
  margin-right: 2px;
  color: #026598;
}

/* Inherits font-size/weight/color from .result-card__status (same as primary).
   Stays inline; wraps only when space runs out (flex-wrap on parent). */
.result-card__status-extra {}

.result-card__status-secondary {
  color: #6c757d;
  font-size: 13px;
}

/* Status-Icon (Kalender/Uhr) bleibt immer im CI-Blau — unabhängig von open/closed/next/season. */
.result-card__status--open    .result-card__status-icon,
.result-card__status--closed  .result-card__status-icon,
.result-card__status--next    .result-card__status-icon,
.result-card__status--season  .result-card__status-icon { color: #026598; }

/* ── Footer: entspricht .hotel-bottom ────────────────────────────────────── */
.result-card__footer {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-top: 20px;
  padding-top: 13px;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Preis: entspricht .hotel-price / .hotel-price-amount / .hotel-price-type */
.result-card__price {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}

.result-card__price-amount {
  color: #5e5c5c;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
}

.result-card__price-unit {
  color: #4F4B8B;
  font-size: 14px;
  font-weight: 500;
}

/* ── CTA: 1:1 aus .theme-btn inkl. ::before-Hover-Animation ─────────────── */
.result-card__cta {
  font-size: 16px;
  color: #ffffff;
  padding: 11px 20px;
  transition: all .5s;
  position: relative;
  border-radius: 10px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  background: #026598;
  box-shadow: 0 3px 24px rgb(0 0 0 / 12%);
  z-index: 1;
  text-decoration: none;
  display: inline-block;
  line-height: 1.2;
}

.result-card__cta::before {
  content: "";
  height: 400px;
  width: 400px;
  background: #e09710;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: .5s cubic-bezier(.25, .46, .45, .94);
  z-index: -1;
}

.result-card__cta:hover,
.result-card__cta:active,
.result-card__cta:focus,
.result-card__cta:visited {
  color: #fff;
  text-decoration: none;
}

.result-card__cta:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

/* ── Modifiers ───────────────────────────────────────────────────────────── */
.result-card--sponsored {
  background: linear-gradient(90deg, rgba(158, 173, 48, .12) 0%, #fff 62%);
  border: 1px solid rgba(0, 0, 0, .08);
  overflow: visible;
}

.result-card--sponsored::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 3px;
  bottom: 3px;
  width: 4px;
  background: #9ead30;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  z-index: 0;
}

.result-card--sponsored .result-card__media {
  margin-left: 8px;
}

.result-card__sponsored-label {
  position: absolute;
  top: 15px;
  right: 14px;
  z-index: 20;
  background: #0485bf;
  color: #fff;
  border: 1px solid rgba(0, 0, 0, .12);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .01em;
}

@media (max-width: 991px) {
  .result-card__sponsored-label {
    top: 17px;
    right: 18px;
  }
}

.result-card--inactive {
  opacity: .55;
  filter: saturate(.6);
}