/* =========================
   TABAC HIRSCHMANN BOOKING
   MODALS
   ========================= */

@keyframes th-booking-open {
  from {
    opacity: 0;
    transform: translateY(0.75rem) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.th-booking {
  width: min(calc(100% - 2rem), 72rem);
  max-width: none;
  max-height: none;
  margin: auto;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  background: var(--color-white);
  color: var(--color-text);
  box-shadow: 0 32px 100px rgba(32, 18, 12, 0.32);
  overflow: visible;
}

.th-booking--consultation {
  width: min(calc(100% - 2rem), 80rem);
}

.th-booking--tasting {
  width: min(calc(100% - 2rem), 72rem);
}

.th-booking:not([open]) {
  display: none;
}

.th-booking[open] {
  display: grid;
  grid-template-rows: auto auto;
  animation: th-booking-open 0.24s ease both;
}

.th-booking::backdrop {
  background: rgba(18, 11, 7, 0.64);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.th-booking__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.4rem 1.75rem;
  border-bottom: 1px solid var(--color-border);
  border-radius: var(--radius-large) var(--radius-large) 0 0;
  background:
    radial-gradient(circle at top right, rgba(184, 135, 43, 0.16), transparent 22rem),
    var(--color-surface-soft);
}

.th-booking__eyebrow {
  margin: 0 0 0.32rem;
  color: var(--color-gold-dark);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
}

.th-booking__title {
  margin: 0;
  color: var(--color-brown-dark);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 1.55rem + 1.4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: var(--letter-spacing-heading);
}

.th-booking__close {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 3.15rem;
  height: 3.15rem;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-brown-dark);
  box-shadow: 0 8px 24px rgba(32, 18, 12, 0.1);
  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast);
}

.th-booking__close span {
  font-size: 1.95rem;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-0.05rem);
}

.th-booking__close:hover,
.th-booking__close:focus-visible {
  border-color: var(--color-brown-dark);
  background: var(--color-brown-dark);
  color: var(--color-white);
  transform: translateY(-1px);
}

.th-booking__surface {
  padding: 1.6rem 1.75rem 1.75rem;
  border-radius: 0 0 var(--radius-large) var(--radius-large);
  overflow: visible;
}

.th-booking__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
}

.th-booking__copy {
  max-width: 68ch;
  margin: 0;
  color: var(--color-text-soft);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.58;
}

.th-booking__copy--wide {
  max-width: 76ch;
}

.th-booking__hours {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.5rem;
  margin: 0;
  padding: 0.9rem 1.1rem;
  border-left: 0.25rem solid var(--color-gold);
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
  background: rgba(184, 135, 43, 0.09);
}

.th-booking__hours div {
  display: grid;
  gap: 0.16rem;
  min-width: 0;
}

.th-booking__hours dt {
  color: var(--color-gold-dark);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.th-booking__hours dd {
  margin: 0;
  color: var(--color-brown-dark);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
}

.th-booking__form {
  display: grid;
  grid-template-columns: minmax(22rem, 0.86fr) minmax(0, 1.24fr);
  gap: 1.2rem;
  margin-top: 1.35rem;
}

.th-booking__form--tasting {
  grid-template-columns: minmax(21rem, 0.9fr) minmax(0, 1.1fr);
}

.th-booking__step {
  min-width: 0;
  margin: 0;
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
  background: rgba(255, 253, 248, 0.68);
}

.th-booking__step > legend,
.th-booking__step > h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  margin: 0 0 1rem;
  padding: 0;
  color: var(--color-brown-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 1.08rem + 0.48vw, 1.52rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: var(--letter-spacing-heading);
}

.th-booking__step > legend::before,
.th-booking__step > h3::before {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(184, 135, 43, 0.48);
  border-radius: 50%;
  background: rgba(184, 135, 43, 0.1);
  color: var(--color-gold-dark);
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
}

.th-booking__step[data-step="1"] > h3::before,
.th-booking__step[data-step="1"] > legend::before {
  content: "1";
}

.th-booking__step[data-step="2"] > h3::before,
.th-booking__step[data-step="2"] > legend::before {
  content: "2";
}

.th-booking__choice-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.th-booking__choice-fields--tasting {
  grid-template-columns: minmax(0, 1fr) minmax(8rem, 0.34fr);
}

.th-booking__date,
.th-booking__time-select,
.th-booking__tasting-select,
.th-booking__participants,
.th-booking__fields label {
  display: grid;
  align-content: start;
  gap: 0.48rem;
  color: var(--color-brown-dark);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.25;
}

.th-booking__date select,
.th-booking__time-select select,
.th-booking__tasting-select select,
.th-booking__participants input,
.th-booking__fields input,
.th-booking__fields textarea {
  width: 100%;
  min-height: 3.35rem;
  padding: 0.78rem 0.9rem;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-small);
  background: var(--color-white);
  color: var(--color-brown-dark);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.35;
  box-shadow: none;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.th-booking__date select,
.th-booking__time-select select,
.th-booking__tasting-select select {
  cursor: pointer;
}

.th-booking__time-select select:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.th-booking__fields textarea {
  min-height: 3.35rem;
  max-height: 3.35rem;
  resize: none;
}

.th-booking__date select:focus,
.th-booking__time-select select:focus,
.th-booking__tasting-select select:focus,
.th-booking__participants input:focus,
.th-booking__fields input:focus,
.th-booking__fields textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(184, 135, 43, 0.14);
  outline: none;
}

.th-booking__status {
  margin: 0.75rem 0 0;
  color: var(--color-text-soft);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}

.th-booking__participants[hidden] {
  display: none;
}

.th-booking__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.th-booking__field--message {
  grid-column: 1 / -1;
}

.th-booking__footer {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.4rem;
  padding-top: 0.1rem;
}

.th-booking__consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.65rem;
  color: var(--color-text-soft);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.48;
}

.th-booking__consent input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.14rem;
  accent-color: var(--color-gold-dark);
}

.th-booking__consent a {
  color: var(--color-brown);
  font-weight: 800;
}

.th-booking__submit {
  flex: 0 0 auto;
  min-height: 3.35rem;
  font-size: var(--font-size-button, 1.06rem);
}

.th-booking__notice {
  margin: 1.15rem 0 0;
  padding: 0.9rem 1rem;
  border: 1px solid;
  border-radius: var(--radius-small);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.45;
}

.th-booking__notice--success {
  border-color: rgba(53, 67, 46, 0.3);
  background: rgba(53, 67, 46, 0.09);
  color: var(--color-olive);
}

.th-booking__notice--error {
  border-color: rgba(90, 47, 27, 0.25);
  background: rgba(90, 47, 27, 0.08);
  color: var(--color-brown);
}

.th-booking__empty {
  margin: 1.2rem 0 0;
  padding: 1rem 1.1rem;
  border: 1px dashed var(--color-border-strong);
  border-radius: var(--radius-small);
  color: var(--color-text-soft);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.th-booking__honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  margin: 0;
  overflow: hidden;
}

@media (max-width: 980px) {
  .th-booking,
  .th-booking--consultation,
  .th-booking--tasting {
    width: min(calc(100% - 1.25rem), 72rem);
    border-radius: var(--radius-medium);
  }

  .th-booking__header {
    padding: 1.2rem 1.3rem;
    border-radius: var(--radius-medium) var(--radius-medium) 0 0;
  }

  .th-booking__surface {
    padding: 1.25rem 1.3rem 1.35rem;
    border-radius: 0 0 var(--radius-medium) var(--radius-medium);
  }

  .th-booking__intro {
    gap: 1.2rem;
  }

  .th-booking__form,
  .th-booking__form--tasting {
    grid-template-columns: minmax(19rem, 0.86fr) minmax(0, 1.14fr);
    gap: 1rem;
  }

  .th-booking__step {
    padding: 1rem;
  }
}

@media (max-width: 760px) {
  .th-booking,
  .th-booking--consultation,
  .th-booking--tasting {
    width: calc(100% - 0.75rem);
    max-height: calc(100svh - 0.75rem);
    overflow-y: auto;
  }

  .th-booking__header {
    gap: 1rem;
    padding: 1rem;
  }

  .th-booking__title {
    font-size: clamp(1.65rem, 7vw, 2.2rem);
  }

  .th-booking__close {
    width: 2.8rem;
    height: 2.8rem;
  }

  .th-booking__surface {
    padding: 1rem;
  }

  .th-booking__intro {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .th-booking__copy {
    font-size: 1rem;
    line-height: 1.5;
  }

  .th-booking__hours {
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 0.85rem;
  }

  .th-booking__form,
  .th-booking__form--tasting {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-top: 1rem;
  }

  .th-booking__choice-fields,
  .th-booking__choice-fields--tasting,
  .th-booking__fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .th-booking__footer {
    grid-column: auto;
    gap: 1rem;
  }
}

@media (max-width: 520px) {
  .th-booking__eyebrow {
    font-size: 0.8rem;
  }

  .th-booking__choice-fields,
  .th-booking__choice-fields--tasting,
  .th-booking__fields,
  .th-booking__footer {
    grid-template-columns: 1fr;
  }

  .th-booking__field--message {
    grid-column: auto;
  }

  .th-booking__step {
    padding: 0.9rem;
  }

  .th-booking__step > legend,
  .th-booking__step > h3 {
    font-size: 1.18rem;
  }

  .th-booking__date,
  .th-booking__time-select,
  .th-booking__tasting-select,
  .th-booking__participants,
  .th-booking__fields label {
    font-size: 0.9rem;
  }

  .th-booking__submit {
    width: 100%;
  }
}

@media (max-height: 720px) and (min-width: 761px) {
  .th-booking__header {
    padding-block: 1rem;
  }

  .th-booking__surface {
    padding-block: 1rem 1.1rem;
  }

  .th-booking__form {
    gap: 0.85rem;
    margin-top: 0.9rem;
  }

  .th-booking__step {
    padding: 0.85rem;
  }

  .th-booking__step > legend,
  .th-booking__step > h3 {
    margin-bottom: 0.7rem;
  }

  .th-booking__date select,
  .th-booking__time-select select,
  .th-booking__tasting-select select,
  .th-booking__participants input,
  .th-booking__fields input,
  .th-booking__fields textarea {
    min-height: 3rem;
    padding-block: 0.62rem;
  }

  .th-booking__fields textarea {
    min-height: 3rem;
    max-height: 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .th-booking[open] {
    animation: none;
  }

  .th-booking *,
  .th-booking *::before,
  .th-booking *::after {
    transition-duration: 0.001ms !important;
  }
}

/* =========================
   KORREKTUR BERATUNGSFENSTER
   ========================= */

.th-booking--consultation {
  width: min(calc(100% - 2rem), 88rem);
}

.th-booking__form--consultation {
  grid-template-columns: minmax(23rem, 0.78fr) minmax(0, 1.22fr);
  gap: 0;
}

.th-booking__form--consultation .th-booking__step {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.4rem 1.5rem;
  border-radius: 0;
  background: rgba(255, 253, 248, 0.68);
}

.th-booking__form--consultation .th-booking__choice {
  border-radius: var(--radius-medium) 0 0 var(--radius-medium);
}

.th-booking__form--consultation .th-booking__step--contact {
  border-left: 0;
  border-radius: 0 var(--radius-medium) var(--radius-medium) 0;
}

.th-booking__form--consultation .th-booking__step > h3 {
  display: flex;
  align-items: center;
  min-height: 3.5rem;
  width: calc(100% + 3rem);
  margin: -1.4rem -1.5rem 1.25rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.th-booking__form--consultation .th-booking__choice-fields {
  grid-template-columns: 1fr;
  gap: 1rem;
}

.th-booking__form--consultation .th-booking__date,
.th-booking__form--consultation .th-booking__time-select {
  width: 100%;
  max-width: none;
}

.th-booking__form--consultation .th-booking__fields {
  gap: 1rem;
}

.th-booking__form--consultation .th-booking__status {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.th-booking__form--consultation .th-booking__footer {
  margin-top: 1.2rem;
}

@media (max-width: 980px) {
  .th-booking--consultation {
    width: min(calc(100% - 1.25rem), 78rem);
  }

  .th-booking__form--consultation {
    grid-template-columns: minmax(20rem, 0.8fr) minmax(0, 1.2fr);
  }
}

@media (max-width: 760px) {
  .th-booking__form--consultation {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .th-booking__form--consultation .th-booking__choice,
  .th-booking__form--consultation .th-booking__step--contact {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
  }

  .th-booking__form--consultation .th-booking__step > h3 {
    width: calc(100% + 2rem);
    margin: -1rem -1rem 1rem;
    padding: 0.9rem 1rem;
  }

  .th-booking__form--consultation .th-booking__footer {
    margin-top: 0;
  }
}

/* =========================
   TASTING-FENSTER / FEINSCHLIFF
   ========================= */

.th-booking--tasting {
  width: min(calc(100% - 2rem), 78rem);
}

.th-booking--tasting .th-booking__header {
  padding: 1.55rem 2rem;
}

.th-booking--tasting .th-booking__surface {
  padding: 1.85rem 2rem 2rem;
}

.th-booking--tasting .th-booking__form--tasting {
  gap: 1.35rem;
  margin-top: 1.5rem;
}

.th-booking--tasting .th-booking__step {
  padding: 1.3rem 1.35rem;
}

.th-booking--tasting .th-booking__consent {
  font-size: 1rem;
  line-height: 1.5;
}

.th-booking--tasting .th-booking__consent input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.12rem;
}

@media (max-width: 980px) {
  .th-booking--tasting {
    width: min(calc(100% - 1.25rem), 74rem);
  }

  .th-booking--tasting .th-booking__header {
    padding: 1.3rem 1.45rem;
  }

  .th-booking--tasting .th-booking__surface {
    padding: 1.4rem 1.45rem 1.55rem;
  }

  .th-booking--tasting .th-booking__form--tasting {
    gap: 1rem;
    margin-top: 1.2rem;
  }

  .th-booking--tasting .th-booking__step {
    padding: 1.05rem;
  }
}

@media (max-width: 760px) {
  .th-booking--tasting {
    width: calc(100% - 0.75rem);
  }

  .th-booking--tasting .th-booking__header,
  .th-booking--tasting .th-booking__surface {
    padding: 1rem;
  }

  .th-booking--tasting .th-booking__consent {
    font-size: 0.98rem;
  }
}

/* =========================
   TASTING-FENSTER / MEHR RAUM
   ========================= */

.th-booking--tasting {
  width: min(calc(100% - 3rem), 84rem);
}

.th-booking--tasting .th-booking__header {
  padding: 1.75rem 2.5rem;
}

.th-booking--tasting .th-booking__surface {
  padding: 2.15rem 2.5rem 2.4rem;
}

.th-booking--tasting .th-booking__form--tasting {
  gap: 1.5rem;
  margin-top: 1.75rem;
}

.th-booking--tasting .th-booking__step {
  padding: 1.45rem 1.55rem;
}

.th-booking--tasting .th-booking__tasting-select select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 3.5rem;
  background-color: var(--color-white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.25 6 6.25 11 1.25' fill='none' stroke='%2320120c' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.4rem center;
  background-size: 0.75rem 0.5rem;
}

@media (max-width: 1100px) {
  .th-booking--tasting {
    width: min(calc(100% - 1.5rem), 80rem);
  }

  .th-booking--tasting .th-booking__header {
    padding: 1.45rem 1.75rem;
  }

  .th-booking--tasting .th-booking__surface {
    padding: 1.65rem 1.75rem 1.85rem;
  }

  .th-booking--tasting .th-booking__form--tasting {
    gap: 1.15rem;
    margin-top: 1.35rem;
  }

  .th-booking--tasting .th-booking__step {
    padding: 1.15rem 1.2rem;
  }
}

@media (max-width: 760px) {
  .th-booking--tasting {
    width: calc(100% - 0.75rem);
  }

  .th-booking--tasting .th-booking__header,
  .th-booking--tasting .th-booking__surface {
    padding: 1rem;
  }

  .th-booking--tasting .th-booking__tasting-select select {
    padding-right: 3rem;
    background-position: right 1.1rem center;
  }
}

/* =========================
   BERATUNGSFENSTER / DESIGN WIE TASTING
   ========================= */

.th-booking--consultation {
  width: min(calc(100% - 3rem), 84rem);
}

.th-booking--consultation .th-booking__header {
  padding: 1.75rem 2.5rem;
}

.th-booking--consultation .th-booking__surface {
  padding: 2.15rem 2.5rem 2.4rem;
}

.th-booking--consultation .th-booking__form--consultation {
  grid-template-columns: minmax(21rem, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  margin-top: 1.75rem;
}

.th-booking--consultation
  .th-booking__form--consultation
  .th-booking__step {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.45rem 1.55rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
  background: rgba(255, 253, 248, 0.68);
}

.th-booking--consultation
  .th-booking__form--consultation
  .th-booking__choice,
.th-booking--consultation
  .th-booking__form--consultation
  .th-booking__step--contact {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
}

.th-booking--consultation
  .th-booking__form--consultation
  .th-booking__step--contact {
  border-left: 1px solid var(--color-border);
}

.th-booking--consultation
  .th-booking__form--consultation
  .th-booking__step
  > h3 {
  min-height: 0;
  width: 100%;
  margin: 0 0 1rem;
  padding: 0;
  border-bottom: 0;
}

.th-booking--consultation
  .th-booking__form--consultation
  .th-booking__choice-fields {
  grid-template-columns: 1fr;
  gap: 1rem;
}

.th-booking--consultation
  .th-booking__form--consultation
  .th-booking__fields {
  gap: 0.9rem;
}

.th-booking--consultation
  .th-booking__form--consultation
  .th-booking__footer {
  margin-top: 0;
}

.th-booking--consultation .th-booking__consent {
  font-size: 1rem;
  line-height: 1.5;
}

.th-booking--consultation .th-booking__consent input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.12rem;
}

.th-booking--consultation .th-booking__date select,
.th-booking--consultation .th-booking__time-select select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 3.5rem;
  background-color: var(--color-white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.25 6 6.25 11 1.25' fill='none' stroke='%2320120c' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.4rem center;
  background-size: 0.75rem 0.5rem;
}

@media (max-width: 1100px) {
  .th-booking--consultation {
    width: min(calc(100% - 1.5rem), 80rem);
  }

  .th-booking--consultation .th-booking__header {
    padding: 1.45rem 1.75rem;
  }

  .th-booking--consultation .th-booking__surface {
    padding: 1.65rem 1.75rem 1.85rem;
  }

  .th-booking--consultation .th-booking__form--consultation {
    gap: 1.15rem;
    margin-top: 1.35rem;
  }

  .th-booking--consultation
    .th-booking__form--consultation
    .th-booking__step {
    padding: 1.15rem 1.2rem;
  }
}

@media (max-width: 760px) {
  .th-booking--consultation {
    width: calc(100% - 0.75rem);
  }

  .th-booking--consultation .th-booking__header,
  .th-booking--consultation .th-booking__surface {
    padding: 1rem;
  }

  .th-booking--consultation .th-booking__form--consultation {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-top: 1rem;
  }

  .th-booking--consultation
    .th-booking__form--consultation
    .th-booking__step {
    padding: 1rem;
  }

  .th-booking--consultation
    .th-booking__form--consultation
    .th-booking__step
    > h3 {
    width: 100%;
    margin: 0 0 1rem;
    padding: 0;
  }

  .th-booking--consultation
    .th-booking__form--consultation
    .th-booking__footer {
    margin-top: 0;
  }

  .th-booking--consultation .th-booking__date select,
  .th-booking--consultation .th-booking__time-select select {
    padding-right: 3rem;
    background-position: right 1.1rem center;
  }

  .th-booking--consultation .th-booking__consent {
    font-size: 0.98rem;
  }
}

/* =========================
   BERATUNG / DATUMSDROPDOWN NACH UNTEN
   ========================= */

.th-booking__date-picker {
  position: relative;
  min-width: 0;
}

.th-booking__date-picker.is-open {
  z-index: 30;
}

.th-booking__date-picker.is-enhanced > select {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  opacity: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  pointer-events: none;
  white-space: nowrap;
}

.th-booking__date-trigger {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 3.35rem;
  padding: 0.78rem 3.5rem 0.78rem 0.9rem;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-small);
  background: var(--color-white);
  color: var(--color-brown-dark);
  font: inherit;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  box-shadow: none;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.th-booking__date-trigger::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.4rem;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 0.12rem solid currentColor;
  border-bottom: 0.12rem solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  transition: transform var(--transition-fast);
}

.th-booking__date-picker.is-open
  .th-booking__date-trigger::after {
  transform: translateY(-30%) rotate(225deg);
}

.th-booking__date-trigger:hover,
.th-booking__date-trigger:focus-visible,
.th-booking__date-picker.is-open
  .th-booking__date-trigger {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(184, 135, 43, 0.14);
  outline: none;
}

.th-booking__date-options {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  left: 0;
  z-index: 40;
  display: grid;
  max-height: min(18rem, 42vh);
  margin: 0;
  padding: 0.4rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-small);
  background: var(--color-white);
  box-shadow: 0 1rem 2.5rem rgba(32, 18, 12, 0.18);
  scrollbar-color: rgba(184, 135, 43, 0.48) transparent;
  scrollbar-width: thin;
}

.th-booking__date-options[hidden] {
  display: none;
}

.th-booking__date-option {
  display: block;
  padding: 0.72rem 0.8rem;
  border-radius: calc(var(--radius-small) * 0.72);
  color: var(--color-brown-dark);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.35;
  cursor: pointer;
  outline: none;
}

.th-booking__date-option:hover,
.th-booking__date-option:focus-visible {
  background: rgba(184, 135, 43, 0.1);
}

.th-booking__date-option[aria-selected="true"] {
  background: var(--color-gold);
  color: var(--color-white);
  font-weight: 700;
}

@media (max-width: 760px) {
  .th-booking__date-trigger {
    padding-right: 3rem;
  }

  .th-booking__date-trigger::after {
    right: 1.1rem;
  }

  .th-booking__date-options {
    max-height: min(15rem, 38vh);
  }
}

/* =========================
   BUCHUNG / EINHEITLICHE DROPDOWNS
   ========================= */

.th-booking__select {
  position: relative;
  min-width: 0;
}

.th-booking__select.is-open {
  z-index: 80;
}

.th-booking__select.is-enhanced > select {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  opacity: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  pointer-events: none;
  white-space: nowrap;
}

.th-booking__select-trigger {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 3.35rem;
  padding: 0.78rem 3.5rem 0.78rem 0.9rem;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-small);
  background: var(--color-white);
  color: var(--color-brown-dark);
  font: inherit;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  box-shadow: none;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background-color var(--transition-fast),
    color var(--transition-fast);
}

.th-booking__select-trigger::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.4rem;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 0.12rem solid currentColor;
  border-bottom: 0.12rem solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  transition: transform var(--transition-fast);
}

.th-booking__select.is-open
  .th-booking__select-trigger::after {
  transform: translateY(-30%) rotate(225deg);
}

.th-booking__select-trigger:hover,
.th-booking__select-trigger:focus-visible,
.th-booking__select.is-open
  .th-booking__select-trigger {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(184, 135, 43, 0.14);
  outline: none;
}

.th-booking__select-trigger:disabled {
  background: rgba(255, 253, 248, 0.72);
  color: var(--color-text-muted);
  cursor: not-allowed;
  box-shadow: none;
}

.th-booking__select-options {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  left: 0;
  z-index: 90;
  display: grid;
  max-height: min(18rem, 42vh);
  margin: 0;
  padding: 0.4rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-small);
  background: var(--color-white);
  box-shadow: 0 1rem 2.5rem rgba(32, 18, 12, 0.18);
  scrollbar-color: rgba(184, 135, 43, 0.48) transparent;
  scrollbar-width: thin;
}

.th-booking__select-options[hidden] {
  display: none;
}

.th-booking__select-option {
  display: block;
  padding: 0.72rem 0.8rem;
  border-radius: calc(var(--radius-small) * 0.72);
  color: var(--color-brown-dark);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.35;
  cursor: pointer;
  outline: none;
}

.th-booking__select-option:hover,
.th-booking__select-option:focus-visible {
  background: rgba(184, 135, 43, 0.1);
}

.th-booking__select-option[aria-selected="true"] {
  background: var(--color-gold);
  color: var(--color-white);
  font-weight: 700;
}

@media (max-width: 760px) {
  .th-booking__select-trigger {
    padding-right: 3rem;
  }

  .th-booking__select-trigger::after {
    right: 1.1rem;
  }

  .th-booking__select-options {
    max-height: min(15rem, 38vh);
  }
}

/* =========================
   MOBILE BUCHUNGSFENSTER / FESTER KOPF UND BUTTON
   ========================= */

.th-booking__mobile-action {
  display: none;
}

@media (max-width: 760px) {
  .th-booking[open],
  .th-booking--consultation[open],
  .th-booking--tasting[open] {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    width: calc(100% - 0.75rem);
    max-height: calc(100dvh - 0.75rem);
    overflow: hidden;
  }

  .th-booking__header,
  .th-booking--consultation .th-booking__header,
  .th-booking--tasting .th-booking__header {
    position: relative;
    z-index: 30;
    padding: 0.85rem 0.95rem;
    border-radius: var(--radius-large) var(--radius-large) 0 0;
    background:
      radial-gradient(
        circle at top right,
        rgba(184, 135, 43, 0.16),
        transparent 16rem
      ),
      var(--color-surface-soft);
    box-shadow: 0 0.35rem 1rem rgba(32, 18, 12, 0.06);
  }

  .th-booking__eyebrow {
    margin-bottom: 0.2rem;
    font-size: 0.76rem;
  }

  .th-booking__title {
    font-size: clamp(1.48rem, 6.4vw, 1.9rem);
    line-height: 1.02;
  }

  .th-booking__close {
    width: 2.65rem;
    height: 2.65rem;
  }

  .th-booking__surface,
  .th-booking--consultation .th-booking__surface,
  .th-booking--tasting .th-booking__surface {
    min-height: 0;
    padding: 0.85rem 0.95rem 1rem;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-radius: 0;
    -webkit-overflow-scrolling: touch;
  }

  .th-booking__intro {
    gap: 0.65rem;
  }

  .th-booking__copy {
    font-size: 0.96rem;
    line-height: 1.45;
  }

  .th-booking__hours {
    gap: 0.45rem 0.9rem;
    padding: 0.65rem 0.75rem;
  }

  .th-booking__form,
  .th-booking__form--consultation,
  .th-booking__form--tasting,
  .th-booking--consultation .th-booking__form--consultation,
  .th-booking--tasting .th-booking__form--tasting {
    gap: 0.7rem;
    margin-top: 0.8rem;
  }

  .th-booking__step,
  .th-booking--consultation
    .th-booking__form--consultation
    .th-booking__step,
  .th-booking--tasting .th-booking__step {
    padding: 0.82rem;
  }

  .th-booking__step > h3,
  .th-booking--consultation
    .th-booking__form--consultation
    .th-booking__step
    > h3 {
    width: 100%;
    min-height: 0;
    margin: 0 0 0.8rem;
    padding: 0;
    border-bottom: 0;
    font-size: 1.15rem;
  }

  .th-booking__step > h3::before {
    width: 1.85rem;
    height: 1.85rem;
  }

  .th-booking__choice-fields,
  .th-booking__choice-fields--tasting,
  .th-booking__fields {
    gap: 0.72rem;
  }

  .th-booking__date input,
  .th-booking__date select,
  .th-booking__time-select select,
  .th-booking__tasting-select select,
  .th-booking__participants input,
  .th-booking__fields input,
  .th-booking__fields textarea,
  .th-booking__select-trigger {
    min-height: 3.05rem;
  }

  .th-booking__fields textarea {
    min-height: 3.05rem;
  }

  .th-booking__footer {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 0.15rem;
  }

  .th-booking__footer > .th-booking__submit {
    display: none;
  }

  .th-booking__consent,
  .th-booking--consultation .th-booking__consent,
  .th-booking--tasting .th-booking__consent {
    font-size: 0.94rem;
    line-height: 1.42;
  }

  .th-booking__mobile-action {
    position: relative;
    z-index: 35;
    display: block;
    margin: 0;
    padding:
      0.7rem
      0.95rem
      max(0.7rem, env(safe-area-inset-bottom));
    border-top: 1px solid var(--color-border);
    border-radius: 0 0 var(--radius-large) var(--radius-large);
    background:
      linear-gradient(
        to top,
        rgba(255, 253, 248, 1),
        rgba(255, 253, 248, 0.96)
      );
    box-shadow: 0 -0.65rem 1.4rem rgba(32, 18, 12, 0.07);
  }

  .th-booking__mobile-action .th-booking__submit {
    width: 100%;
    min-height: 3.15rem;
  }
}

@media (max-width: 390px) {
  .th-booking__header,
  .th-booking--consultation .th-booking__header,
  .th-booking--tasting .th-booking__header {
    padding-inline: 0.8rem;
  }

  .th-booking__surface,
  .th-booking--consultation .th-booking__surface,
  .th-booking--tasting .th-booking__surface {
    padding-inline: 0.8rem;
  }

  .th-booking__mobile-action {
    padding-inline: 0.8rem;
  }
}

/* =========================
   TABLET BUCHUNGSFENSTER
   ========================= */

@media (min-width: 761px) and (max-width: 980px) {
  .th-booking[open],
  .th-booking--consultation[open],
  .th-booking--tasting[open] {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    width: min(calc(100% - 2rem), 48rem);
    max-height: calc(100dvh - 2rem);
    overflow: hidden;
  }

  .th-booking__header,
  .th-booking--consultation .th-booking__header,
  .th-booking--tasting .th-booking__header {
    position: relative;
    z-index: 30;
    padding: 1.15rem 1.35rem;
    border-radius: var(--radius-large) var(--radius-large) 0 0;
    background:
      radial-gradient(
        circle at top right,
        rgba(184, 135, 43, 0.16),
        transparent 18rem
      ),
      var(--color-surface-soft);
    box-shadow: 0 0.35rem 1rem rgba(32, 18, 12, 0.06);
  }

  .th-booking__title {
    font-size: clamp(1.8rem, 4vw, 2.35rem);
  }

  .th-booking__surface,
  .th-booking--consultation .th-booking__surface,
  .th-booking--tasting .th-booking__surface {
    min-height: 0;
    padding: 1.15rem 1.35rem 1.3rem;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-radius: 0;
    -webkit-overflow-scrolling: touch;
  }

  .th-booking__intro {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .th-booking__hours {
    justify-content: flex-start;
    gap: 0.55rem clamp(1.75rem, 4vw, 2.5rem);
    width: 100%;
  }

  .th-booking__form,
  .th-booking__form--consultation,
  .th-booking__form--tasting,
  .th-booking--consultation .th-booking__form--consultation,
  .th-booking--tasting .th-booking__form--tasting {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    margin-top: 1rem;
  }

  .th-booking__step,
  .th-booking--consultation
    .th-booking__form--consultation
    .th-booking__step,
  .th-booking--tasting .th-booking__step {
    min-height: auto;
    padding: 1rem 1.05rem;
  }

  .th-booking__choice-fields,
  .th-booking__choice-fields--tasting {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .th-booking__fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
  }

  .th-booking__field--message {
    grid-column: 1 / -1;
  }

  .th-booking__footer {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 0.15rem;
  }

  .th-booking__footer > .th-booking__submit {
    display: none;
  }

  .th-booking__mobile-action {
    position: relative;
    z-index: 35;
    display: block;
    margin: 0;
    padding:
      0.8rem
      1.35rem
      max(0.8rem, env(safe-area-inset-bottom));
    border-top: 1px solid var(--color-border);
    border-radius: 0 0 var(--radius-large) var(--radius-large);
    background:
      linear-gradient(
        to top,
        rgba(255, 253, 248, 1),
        rgba(255, 253, 248, 0.96)
      );
    box-shadow: 0 -0.65rem 1.4rem rgba(32, 18, 12, 0.07);
  }

  .th-booking__mobile-action .th-booking__submit {
    width: 100%;
    min-height: 3.2rem;
  }

  .th-booking__select-trigger,
  .th-booking__participants input,
  .th-booking__fields input,
  .th-booking__fields textarea {
    min-height: 3.25rem;
  }
}

