:root {
  --fewo-bg: #f7f5f1;
  --fewo-surface: #ffffff;
  --fewo-ink: #1d2430;
  --fewo-muted: #b8bcc5;
  --fewo-line: rgba(29, 36, 48, 0.06);
  --fewo-booked: #e6dfd2;
  --fewo-booked-edge: #d5ccb9;
  --fewo-selected: rgba(77, 94, 114, 0.2);
  --fewo-selected-edge: #3F4D5E;
  --fewo-accent: #4D5E72;
  --fewo-shadow: 0 18px 40px rgba(29, 36, 48, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  color: var(--fewo-ink);
  background:
    radial-gradient(circle at top left, rgba(77, 94, 114, 0.06), transparent 32%),
    linear-gradient(180deg, #fbfaf7 0%, #f2eee7 100%);
}

.fewo-test {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 24px 18px 60px;
  background: rgb(248, 245, 242);
}

.fewo-test__header {
  padding: 10px 4px 20px;
}

.fewo-test__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7e8795;
}

.fewo-test__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.05;
}

.fewo-test__lead {
  margin: 14px 0 0;
  max-width: 42rem;
  color: #5c6572;
  line-height: 1.65;
}

.fewo-selection {
  position: sticky;
  top: 0;
  z-index: 5;
  margin-top: 10px;
  padding: 18px 4px 14px;
  background: linear-gradient(180deg, rgba(247, 245, 241, 0.98), rgba(247, 245, 241, 0.9));
  backdrop-filter: blur(8px);
}

.fewo-selection__summary {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(26px, 3.8vw, 38px);
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: normal;
  flex-wrap: wrap;
  color: #4D5E72;
}

.fewo-selection__summary strong {
  display: inline-block;
  min-width: 0;
  font-weight: inherit;
}

.fewo-selection__arrow {
  color: rgb(77, 94, 114);
}

.fewo-selection__hint {
  margin: 10px 0 0;
  padding-top: 10px;
  border-top: 3px solid rgba(77, 94, 114, 0.9);
  font-size: 14px;
  color: #6a7280;
}

.fewo-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  padding: 10px 4px 4px;
}

.fewo-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6a7280;
  font-size: 13px;
}

.fewo-legend__swatch {
  display: inline-block;
  width: 28px;
  height: 14px;
  border-radius: 999px;
}

.fewo-legend__swatch--free {
  background: rgba(29, 36, 48, 0.06);
}

.fewo-legend__swatch--selected {
  background: var(--fewo-selected);
  border: 1px solid rgba(77, 94, 114, 0.24);
}

.fewo-legend__swatch--booked {
  background: var(--fewo-booked);
}

.fewo-status {
  margin: 14px 4px 0;
  color: #6a7280;
  font-size: 14px;
}

.fewo-status:empty {
  display: none;
}

.fewo-scroll-area {
  position: relative;
  margin-top: 16px;
  padding: 0 4px 40px;
  height: clamp(480px, 60vh, 620px);
  background: #ffffff;
  border-radius: 6px;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid rgba(29, 36, 48, 0.08);
  border-bottom: 1px solid rgba(29, 36, 48, 0.08);
  scroll-behavior: smooth;
  touch-action: pan-y;
}

.fewo-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.fewo-form {
  display: grid;
  gap: 14px;
}

.fewo-form-card .quote-box {
  margin-top: 24px;
}

.fewo-form-card {
  background: rgb(248, 245, 242);
}

.fewo-months {
  display: grid;
  gap: 6px;
  margin-top: 18px;
}

.fewo-month {
  padding: 18px 0 2px;
}

.fewo-month__title {
  margin: 0 0 18px;
  text-align: center;
  font-size: clamp(26px, 4.4vw, 34px);
  line-height: 1.15;
  font-weight: 700;
}

.fewo-week {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.fewo-week--labels {
  margin-bottom: 4px;
  min-height: 0;
}

.fewo-day--label {
  min-height: 0;
  padding: 8px 8px 10px;
}

.fewo-day--label .fewo-day__surface,
.fewo-day--label .fewo-day__number,
.fewo-day--label .fewo-day__price {
  display: none;
}

.fewo-weekday-label {
  display: block;
  text-align: center;
  font-size: 14px;
  color: var(--fewo-muted);
  font-weight: 600;
}

.fewo-day--label-saturday .fewo-weekday-label {
  color: var(--fewo-ink);
  font-weight: 700;
}

.fewo-week {
  position: relative;
  min-height: 72px;
  isolation: isolate;
}

.fewo-day {
  position: relative;
  min-height: 72px;
  padding: 9px 8px 10px;
  background: transparent;
  border-radius: 0;
}

.fewo-day__surface {
  position: absolute;
  inset: 8px 0;
  z-index: 1;
  background: transparent;
}

.fewo-day--ghost {
  pointer-events: none;
}

.fewo-day--ghost .fewo-day__number {
  visibility: hidden;
}

.fewo-day--free .fewo-day__surface {
  background: transparent;
}

.fewo-day--booked .fewo-day__surface {
  background: var(--fewo-booked);
  z-index: 1;
}

.fewo-day--selected .fewo-day__surface {
  background: var(--fewo-selected);
  z-index: 2;
}

.fewo-day--selected-anchor .fewo-day__surface {
  background: transparent;
  z-index: 1;
}

.fewo-day--booked-start .fewo-day__surface,
.fewo-day--selected-start .fewo-day__surface {
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
}

.fewo-day--booked-end .fewo-day__surface,
.fewo-day--selected-end .fewo-day__surface {
  clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
}

.fewo-day--booked-single .fewo-day__surface,
.fewo-day--selected-single .fewo-day__surface {
  clip-path: polygon(22% 0, 100% 0, 78% 100%, 0 100%);
}

.fewo-day--booked-start.fewo-day--booked-end .fewo-day__surface,
.fewo-day--selected-start.fewo-day--selected-end .fewo-day__surface {
  clip-path: polygon(22% 0, 100% 0, 78% 100%, 0 100%);
}

.fewo-day--booked-start .fewo-day__surface::before,
.fewo-day--selected-start .fewo-day__surface::before,
.fewo-day--booked-end .fewo-day__surface::after,
.fewo-day--selected-end .fewo-day__surface::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 26px;
  z-index: 0;
}

.fewo-day--booked-start .fewo-day__surface::before,
.fewo-day--selected-start .fewo-day__surface::before {
  left: -1px;
  background: var(--fewo-surface);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.fewo-day--booked-end .fewo-day__surface::after,
.fewo-day--selected-end .fewo-day__surface::after {
  right: -1px;
  background: var(--fewo-surface);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.fewo-day--selected-start .fewo-day__surface,
.fewo-day--selected-middle .fewo-day__surface,
.fewo-day--selected-end .fewo-day__surface {
  box-shadow: inset 0 0 0 1px rgba(77, 94, 114, 0.18);
}

.fewo-day--interactive {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.fewo-day__number {
  position: relative;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  font-size: 23px;
  font-weight: 600;
  color: #d0d2d7;
}

.fewo-day__price {
  position: relative;
  z-index: 4;
  display: block;
  margin-top: 4px;
  padding-left: 2px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  color: #55606f;
}

.fewo-day--saturday .fewo-day__number {
  color: var(--fewo-ink);
  font-weight: 700;
}

.fewo-day--booked .fewo-day__number,
.fewo-day--selected .fewo-day__number {
  color: #b7b0a3;
}

.fewo-day--selected .fewo-day__number {
  color: #4D5E72;
}

.fewo-day--selected.fewo-day--selected-anchor .fewo-day__number {
  color: #ffffff;
}

.fewo-day--selected {
  position: relative;
  z-index: 2;
  isolation: isolate;
}

.fewo-day--selected-anchor {
  position: relative;
  z-index: 40;
  overflow: visible;
  isolation: isolate;
}

.fewo-day--selected-anchor .fewo-day__surface::before,
.fewo-day--selected-anchor .fewo-day__surface::after {
  z-index: 0;
}

.fewo-day--selected-anchor .fewo-day__number {
  position: relative;
  z-index: 50;
  color: #ffffff !important;
  background: transparent;
  box-shadow: none;
}

.fewo-day--selected-anchor .fewo-day__number::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: #4D5E72;
  box-shadow: 0 10px 24px rgba(77, 94, 114, 0.22);
  z-index: -1;
  pointer-events: none;
}

.fewo-day--selected-anchor .fewo-day__price {
  position: relative;
  z-index: 51;
}
.fewo-day--out-month .fewo-day__number {
  color: #e5e6ea;
}

.fewo-day--blocked .fewo-day__number {
  opacity: 0.56;
}

.fewo-day--blocked .fewo-day__price {
  opacity: 0.56;
}

.fewo-day--past {
  opacity: 0.5;
}

.fewo-day--past .fewo-day__surface {
  background: rgba(29, 36, 48, 0.04);
}

.fewo-day--past .fewo-day__number,
.fewo-day--past .fewo-day__price {
  color: #b8bcc5;
}

.fewo-day--today .fewo-day__surface {
  box-shadow: inset 0 0 0 1px rgba(77, 94, 114, 0.18);
}

.fewo-day--today .fewo-day__number {
  box-shadow: 0 0 0 2px rgba(77, 94, 114, 0.22);
}

.fewo-day--today:not(.fewo-day--selected-anchor) .fewo-day__number {
  color: rgb(77, 94, 114);
}

#clearSelectionButton,
#fewoClearButton,
[data-fewo-role="clear-button"] {
  -webkit-appearance: none;
  appearance: none;
  display: inline-flex;
  width: fit-content;
  flex: 0 0 auto;
  max-width: none;
  min-width: 0;
  align-self: flex-start;
  justify-self: start;
  border: 1px solid rgb(77, 94, 114);
  border-radius: 6px;
  background: rgb(77, 94, 114);
  color: #fff9f5;
  padding: 12px 20px;
  min-height: 44px;
  line-height: 1.2;
  white-space: nowrap;
}

#clearSelectionButton:hover,
#fewoClearButton:hover,
[data-fewo-role="clear-button"]:hover {
  background: #3F4D5E;
  border-color: #3F4D5E;
}

#practicalLeft li,
#practicalRight li,
#practicalLeft li::marker,
#practicalRight li::marker {
  color: rgb(29, 36, 48) !important;
}

#practicalLeft,
#practicalRight,
#practicalLeft li,
#practicalRight li {
  display: block;
  visibility: visible;
  opacity: 1;
  color: rgb(29, 36, 48) !important;
  font-size: 1.04rem;
  line-height: 1.7;
}

#highlightsGrid .card,
#highlightsGrid .card *,
#practicalLeft,
#practicalLeft *,
#practicalRight,
#practicalRight * {
  color: rgb(29, 36, 48) !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative;
  z-index: 1;
}

#highlightsGrid .card
 {
  display: block;
  background:rgb(248,246,243);
  color: rgb(29, 36, 48) !important;
  opacity: 1 !important;
  visibility: visible !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: visible !important;
  transform: none !important;
  filter: none !important;
  clip-path: none !important;
  mask: none !important;
}

#highlightsGrid .card *,
#practicalLeft *,
#practicalRight * {
  color: rgb(29, 36, 48) !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

#highlightsGrid .card::before,
#highlightsGrid .card::after,
#practicalLeft::before,
#practicalLeft::after,
#practicalRight::before,
#practicalRight::after {
  content: none !important;
}


.fewo-month + .fewo-month {
  margin-top: -2px;
}

@media (max-width: 640px) {
  .card {
    color: rgb(29, 36, 48);
  }

  .fewo-test {
    padding: 14px 10px 44px;
  }

  .fewo-scroll-area {
    height: clamp(380px, 52vh, 500px);
    max-height: clamp(380px, 52vh, 500px);
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    padding-left: 2px;
    padding-right: 2px;
    padding-bottom: 28px;
  }

  .fewo-selection {
    padding-left: 2px;
    padding-right: 2px;
  }

  .fewo-selection__summary {
    gap: 8px;
    font-size: 18px;
  }

  .fewo-selection__hint {
    font-size: 13px;
  }

  .fewo-month__title {
    margin-bottom: 14px;
    font-size: 18px;
  }

  .fewo-day--label {
    padding: 6px 4px 8px;
    min-height: 0;
  }

  .fewo-weekday-label {
    font-size: 12px;
  }

  .fewo-week {
    min-height: 58px;
  }

  .fewo-day {
    min-height: 58px;
    padding: 6px 4px;
  }

  .fewo-day__surface {
    inset: 6px 0;
  }

  .fewo-day__number {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .fewo-day__price {
    margin-top: 2px;
    font-size: 10px;
  }

  .fewo-day--booked-start .fewo-day__surface::before,
  .fewo-day--selected-start .fewo-day__surface::before,
  .fewo-day--booked-end .fewo-day__surface::after,
  .fewo-day--selected-end .fewo-day__surface::after {
    width: 18px;
  }

  .fewo-actions {
    position: static;
    z-index: auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-wrap: nowrap;
    margin-top: 0;
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: 0;
    padding: 12px 10px calc(12px + env(safe-area-inset-bottom, 0px));
    background: transparent;
  }

  #practicalLeft,
  #practicalRight {
    color: rgb(29, 36, 48);
  }

  #highlightsGrid .card p,
  #highlightsGrid .card li,
  #highlightsGrid .card span,
  #highlightsGrid .card strong,
  #highlightsGrid .card small,
  #highlightsGrid .card a,
  #practicalLeft li,
  #practicalLeft span,
  #practicalLeft strong,
  #practicalLeft small,
  #practicalLeft a,
  #practicalRight li,
  #practicalRight span,
  #practicalRight strong,
  #practicalRight small,
  #practicalRight a,
  #anfrage .card p,
  #anfrage .card li,
  #anfrage .card span,
  #anfrage .card strong,
  #anfrage .card small,
  #anfrage .card a {
    color: rgb(29, 36, 48);
  }
}
b(29, 36, 48);
  }
}
(29, 36, 48);
  }
}
 li,
  #anfrage .card span,
  #anfrage .card strong,
  #anfrage .card small,
  #anfrage .card a {
    color: rgb(29, 36, 48);
  }
}
