:root {
  --wbh-tool-font-brand: "Outfit", "Aptos", "Segoe UI", sans-serif;
  --wbh-tool-font-body: "Outfit", "Aptos", "Segoe UI", sans-serif;
}

.wbh-inquiry-shell,
.wbh-public-calendar,
.wbh-dashboard-public {
  font-family: var(--wbh-tool-font-body);
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(18, 31, 45, 0.12);
  color: #12202f;
  padding: clamp(24px, 4vw, 48px);
}

.wbh-progress {
  color: #d6004c;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.wbh-step { display: none; }
.wbh-step.is-active { display: block; }
.wbh-step h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-top: 0; }
.wbh-step p { margin-bottom: 15px; }

.wbh-choice-grid,
.wbh-field-grid,
.wbh-dashboard-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.wbh-choice-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wbh-choice-grid--rooms {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.wbh-choice,
.wbh-inquiry-form label {
  display: grid;
  font-weight: 700;
  gap: 8px;
}

.wbh-choice,
.wbh-choice-card {
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  cursor: pointer;
  padding: 18px;
}

.wbh-choice-card {
  background: linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
  display: grid;
  gap: 8px;
  min-height: 100%;
  position: relative;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.wbh-choice-card:hover {
  border-color: rgba(214, 0, 76, 0.26);
  box-shadow: 0 14px 38px rgba(18, 31, 45, 0.08);
  transform: translateY(-1px);
}

.wbh-choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.wbh-choice-card strong,
.wbh-choice-card span {
  color: #12202f;
  font-size: 1rem;
}

.wbh-choice-card small {
  color: #607083;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.45;
}

.wbh-choice-card em {
  color: #d6004c;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-top: auto;
  text-transform: uppercase;
}

.wbh-choice-card:has(input:checked) {
  background: #fff4f8;
  border-color: #d6004c;
  box-shadow: 0 16px 42px rgba(214, 0, 76, 0.12);
}

.wbh-choice-card.has-error {
  border-color: #dc3545;
}

.wbh-room-card.is-recommended::after {
  align-self: start;
  background: #d6004c;
  border-radius: 999px;
  color: #fff;
  content: "Empfehlung";
  font-size: 0.7rem;
  font-weight: 900;
  justify-self: start;
  letter-spacing: 0.06em;
  order: -1;
  padding: 6px 10px;
  text-transform: uppercase;
  width: max-content;
}

.wbh-step.is-skipped {
  display: none !important;
}

.wbh-choice-card.is-hidden {
  display: none;
}

.wbh-package-group,
.wbh-option-split,
.wbh-contact-times {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.wbh-package-group h4,
.wbh-option-split h4,
.wbh-contact-times h4 {
  color: #12202f;
  font-size: 0.88rem;
  letter-spacing: 0.07em;
  margin: 0;
  text-transform: uppercase;
}

.wbh-static-costs {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin: 20px 0;
}

.wbh-static-costs article {
  background: #f7fafc;
  border-left: 4px solid #d6004c;
  border-radius: 16px;
  display: grid;
  gap: 4px;
  padding: 16px;
}

.wbh-static-costs span {
  color: #607083;
  font-weight: 600;
}

.wbh-option-split {
  grid-template-columns: 0.9fr 1.4fr;
}

.wbh-estimate-card {
  background: #12202f;
  border-radius: 24px;
  color: #fff;
  display: grid;
  gap: 18px;
  margin-top: 18px;
  padding: clamp(20px, 4vw, 30px);
}

.wbh-estimate-values {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wbh-estimate-card span {
  color: rgba(255, 255, 255, 0.62);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wbh-estimate-card strong {
  display: block;
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1;
  margin-top: 8px;
}

.wbh-estimate-card p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
  margin: 0;
  max-width: none;
  text-align: center;
}

.wbh-estimate-lines {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.wbh-estimate-lines div {
  align-items: center;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 14px 16px;
}

.wbh-estimate-lines span {
  display: grid;
  gap: 2px;
}

.wbh-estimate-lines strong {
  color: #d6004c;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wbh-estimate-lines small {
  color: #607083;
  font-size: 0.78rem;
}

.wbh-estimate-lines b {
  color: #12202f;
  white-space: nowrap;
}

.wbh-estimate-notes {
  background: #fff7e8;
  border-left: 4px solid #d59d1a;
  border-radius: 16px;
  color: #57410e;
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 16px;
}

.wbh-estimate-notes p {
  margin: 0;
}

.wbh-checkline {
  align-items: center;
  display: flex !important;
  gap: 10px !important;
}

.wbh-checkline input {
  width: auto !important;
}

.wbh-privacy {
  align-items: flex-start;
  background: #f7fafc;
  border: 1px solid #d9e1ea;
  border-radius: 16px;
  display: flex !important;
  gap: 12px !important;
  line-height: 1.45;
  margin-top: 14px;
  padding: 14px 16px;
}

.wbh-privacy input {
  accent-color: #d6004c;
  flex: 0 0 20px;
  height: 20px;
  margin-top: 1px;
  width: 20px !important;
}

.wbh-contact-time-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.wbh-contact-time-grid div {
  background: #f7fafc;
  border-radius: 16px;
  display: grid;
  gap: 8px;
  padding: 12px;
}

.wbh-contact-time-grid span {
  color: #607083;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.wbh-inquiry-form input,
.wbh-inquiry-form select,
.wbh-inquiry-form textarea {
  border: 1px solid #d9e1ea;
  border-radius: 14px;
  font: inherit;
  padding: 13px 14px;
  width: 100%;
}

.wbh-inquiry-form .wbh-privacy input {
  flex: 0 0 20px;
  height: 20px;
  margin-top: 1px;
  padding: 0;
  width: 20px !important;
}

.wbh-inquiry-form .has-error input,
.wbh-inquiry-form .has-error select { border-color: #d6004c; }

.wbh-form-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 28px;
}

.wbh-primary,
.wbh-secondary,
.wbh-ticket-link {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  padding: 13px 22px;
  text-decoration: none;
}

.wbh-primary,
.wbh-ticket-link { background: #d6004c; color: #fff; }
.wbh-secondary { background: #edf2f7; color: #12202f; }

.wbh-ticket-link {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.wbh-ticket-link:hover,
.wbh-ticket-link:focus-visible {
  background: #d6004c;
  color: #fff !important;
  transform: translateY(-2px);
}

.is-hidden { display: none; }

.wbh-internal-estimate,
.wbh-alert,
.wbh-dev-note {
  background: #f7fafc;
  border-left: 4px solid #d6004c;
  border-radius: 14px;
  margin-top: 18px;
  padding: 14px 16px;
}

.wbh-internal-estimate small { display: block; margin-top: 6px; }
.wbh-alert-success { border-color: #198754; }
.wbh-alert-error { border-color: #dc3545; }

.wbh-event-card,
.wbh-mini-row {
  align-items: center;
  border-bottom: 1px solid #edf2f7;
  display: grid;
  gap: 16px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding: 18px 0;
}

.wbh-event-card.has-image {
  grid-template-columns: 148px auto minmax(0, 1fr) auto;
}

.wbh-event-image {
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  margin: 0;
  overflow: hidden;
  width: 148px;
}

.wbh-event-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.wbh-event-date {
  background: #12202f;
  border-radius: 18px;
  color: #fff;
  display: grid;
  min-width: 72px;
  padding: 10px;
  text-align: center;
}

.wbh-event-date strong { font-size: 1.7rem; }
.wbh-event-body { min-width: 0; }
.wbh-event-body h3 { margin: 0 0 6px; }
.wbh-event-subtitle,
.wbh-event-meta { color: #5c6b7a; margin: 0 0 6px; }
.wbh-event-frequency { background: #fff4f7; border: 1px solid rgba(214, 0, 76, 0.18); border-radius: 999px; color: #d6004c; display: inline-flex; font-size: 0.78rem; font-weight: 900; line-height: 1; margin: 0 0 8px; padding: 7px 10px; }

.wbh-event-tickets {
  align-items: flex-start;
  display: grid;
  gap: 10px;
  justify-items: end;
}

.wbh-ticket-note {
  background: #f7fafc;
  border: 1px solid #e4ebf2;
  border-radius: 14px;
  color: #12202f;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.4;
  max-width: 260px;
  padding: 10px 12px;
}
.wbh-mini-row { grid-template-columns: 140px 1fr; }
.wbh-mini-row.is-private { opacity: 0.7; }

.wbh-modal-open { overflow: hidden; }

.wbh-inquiry-modal[aria-hidden="true"] { display: none; }

.wbh-inquiry-modal {
  inset: 0;
  position: fixed;
  z-index: 9999;
}

.wbh-inquiry-modal__backdrop {
  background: rgba(7, 15, 25, 0.72);
  inset: 0;
  position: absolute;
}

.wbh-inquiry-modal__dialog {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
  left: 50%;
  max-height: calc(100vh - 40px);
  max-width: min(960px, calc(100vw - 28px));
  overflow: auto;
  padding: clamp(18px, 3vw, 32px);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.wbh-inquiry-modal__close {
  align-items: center;
  background: #12202f;
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 28px;
  height: 44px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 44px;
}

.wbh-inquiry-modal__intro {
  margin: 0 56px 18px 0;
}

.wbh-inquiry-modal__intro span {
  color: #d6004c;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wbh-inquiry-modal__intro h2 {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1em;
  margin: 8px 0 0;
}

.wbh-inquiry-modal .wbh-inquiry-shell {
  box-shadow: none;
  padding: 0;
}

.anfrage-cta-card p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.anfrage-cta-card .form-submit {
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
}

.wbh-tool-body {
  background: #eef3f8;
  font-family: var(--wbh-tool-font-body);
  color: #12202f;
  margin: 0;
  min-height: 100vh;
}

.wbh-tool-body *,
.wbh-tool-body *::before,
.wbh-tool-body *::after {
  box-sizing: border-box;
}

.wbh-tool-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 100vh;
}

.wbh-tool-sidebar {
  background: #0f1d2d;
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.wbh-tool-brand {
  display: grid;
  gap: 4px;
  margin-bottom: 34px;
}

.wbh-tool-brand span {
  align-items: center;
  background: #d6004c;
  border-radius: 16px;
  display: inline-flex;
  font-weight: 900;
  height: 54px;
  justify-content: center;
  width: 54px;
}

.wbh-tool-brand strong { font-size: 1.2rem; }
.wbh-tool-brand small { color: rgba(255, 255, 255, 0.55); }

.wbh-tool-nav {
  display: grid;
  gap: 10px;
}

.wbh-tool-nav a,
.wbh-tool-sidebar-footer a {
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
  padding: 12px 14px;
  text-decoration: none;
}

.wbh-tool-nav a.is-active,
.wbh-tool-nav a:hover,
.wbh-tool-sidebar-footer a:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.wbh-tool-sidebar-footer {
  display: grid;
  gap: 6px;
  margin-top: auto;
}

.wbh-tool-main {
  padding: clamp(24px, 4vw, 48px);
}

.wbh-tool-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
}

.wbh-tool-header span,
.wbh-tool-kicker {
  color: #d6004c;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wbh-tool-header h1 {
  font-family: var(--wbh-tool-font-brand);
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 6px 0 0;
}

.wbh-tool-user,
.wbh-tool-panel,
.wbh-tool-stats article,
.wbh-tool-login-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(15, 29, 45, 0.08);
}

.wbh-tool-user {
  display: grid;
  min-width: 220px;
  padding: 14px 18px;
  text-align: right;
}

.wbh-tool-user small { color: #607083; }

.wbh-tool-stats {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-bottom: 22px;
}

.wbh-tool-stats article {
  display: grid;
  gap: 4px;
  padding: 22px;
}

.wbh-tool-stats strong {
  color: #d6004c;
  font-size: 2.2rem;
}

.wbh-tool-panel {
  padding: 24px;
}

.wbh-tool-panel h2 { margin-top: 0; }

.wbh-tool-profile-card {
  box-sizing: border-box;
  margin-inline: auto;
  max-width: 1180px;
  padding: clamp(26px, 3vw, 38px);
  width: 100%;
}

.wbh-tool-profile-grid {
  gap: 20px 34px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.wbh-tool-profile-grid--passwords {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.wbh-tool-table-wrap { overflow-x: auto; }

.wbh-tool-table {
  border-collapse: collapse;
  width: 100%;
}

.wbh-tool-table th,
.wbh-tool-table td {
  border-bottom: 1px solid #e4ebf2;
  padding: 13px 10px;
  text-align: left;
  vertical-align: top;
}

.wbh-tool-table th {
  color: #607083;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.wbh-tool-table tr.is-private td,
.wbh-tool-table tr.is-private {
  background: #fff8e6;
}

.wbh-tool-login {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
}

.wbh-tool-login-card {
  max-width: 460px;
  padding: clamp(28px, 5vw, 48px);
  width: 100%;
}

.wbh-tool-login-card h1 {
  font-family: var(--wbh-tool-font-brand);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: 8px 0 10px;
}

.wbh-tool-login-form {
  display: grid;
  gap: 15px;
  margin-top: 24px;
}

.wbh-tool-login-form label {
  display: grid;
  font-weight: 800;
  gap: 8px;
}

.wbh-tool-login-form input[type="text"],
.wbh-tool-login-form input[type="password"] {
  border: 1px solid #d9e1ea;
  border-radius: 14px;
  font: inherit;
  padding: 13px 14px;
  width: 100%;
}

.wbh-two-factor-code {
  font-size: 1.35rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.18em;
  text-align: center;
}

.wbh-tool-resend-form {
  margin-top: 14px;
  text-align: center;
}

.wbh-tool-resend-form button {
  appearance: none;
  background: transparent;
  border: 0;
  color: #d6004c;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 0;
}

.wbh-tool-resend-form button:hover {
  text-decoration: underline;
}

.wbh-tool-check {
  align-items: center;
  display: flex !important;
  font-weight: 600 !important;
}

@media (max-width: 860px) {
  .wbh-choice-grid--three,
  .wbh-option-split {
    grid-template-columns: 1fr;
  }

  .wbh-event-card {
    align-items: start;
    grid-template-columns: auto minmax(0, 1fr);
  }

  .wbh-event-card.has-image {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .wbh-event-image {
    grid-column: 1 / -1;
    width: 100%;
  }

  .wbh-event-card .wbh-event-tickets {
    grid-column: 1 / -1;
    justify-self: start;
    justify-items: start;
  }

  .wbh-event-card .wbh-ticket-link,
  .wbh-event-card .wbh-ticket-note {
    max-width: 100%;
  }

  .wbh-estimate-values {
    grid-template-columns: 1fr;
  }

  .wbh-tool-layout { grid-template-columns: 1fr; }
  .wbh-tool-sidebar { position: static; }
  .wbh-tool-header { align-items: flex-start; flex-direction: column; gap: 16px; }
  .wbh-tool-user { text-align: left; }
  .wbh-tool-profile-grid,
  .wbh-tool-profile-grid--passwords { grid-template-columns: 1fr; }
}

.wbh-tool-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.9fr);
}

.wbh-tool-stack {
  display: grid;
  gap: 22px;
}

.wbh-tool-drawer {
  inset: 0;
  padding: clamp(14px, 2vw, 28px);
  pointer-events: none;
  position: fixed;
  z-index: 50;
}

.wbh-tool-drawer.is-open {
  pointer-events: auto;
}

.wbh-tool-drawer-backdrop {
  background: rgba(18, 32, 47, 0.42);
  inset: 0;
  position: absolute;
}

.wbh-tool-drawer-panel {
  border-radius: 24px;
  box-sizing: border-box;
  box-shadow: -24px 0 70px rgba(18, 32, 47, 0.24);
  height: calc(100dvh - clamp(28px, 4vw, 56px));
  margin-left: auto;
  max-height: calc(100dvh - clamp(28px, 4vw, 56px));
  max-width: min(860px, 100%);
  overscroll-behavior: contain;
  overflow-y: auto;
  padding: 72px clamp(28px, 4vw, 44px) max(44px, env(safe-area-inset-bottom));
  position: relative;
  width: min(860px, 100%);
  z-index: 1;
  animation: wbhDrawerIn 220ms ease-out both;
}

.wbh-tool-drawer-close {
  align-items: center;
  background: #12202f;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 1.35rem;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  position: absolute;
  right: 24px;
  text-decoration: none;
  top: 22px;
  width: 42px;
}

.wbh-tool-drawer-close:hover {
  background: #d6004c;
}

@keyframes wbhDrawerIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.wbh-tool-panel-head {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.wbh-tool-panel-head h2,
.wbh-tool-panel-head p {
  margin: 0;
}

.wbh-tool-panel-head p {
  color: #607083;
  margin-top: 6px;
}

.wbh-tool-filterbar {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.wbh-tool-filterbar button {
  appearance: none;
  background: #edf2f7;
  border: 1px solid #d8e2ec;
  border-radius: 999px;
  color: #12202f;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 850;
  min-height: 38px;
  padding: 8px 14px;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.wbh-tool-filterbar button:hover,
.wbh-tool-filterbar button:focus-visible {
  transform: translateY(-1px);
}

.wbh-tool-filterbar button.is-active {
  background: #12202f;
  border-color: #12202f;
  color: #fff;
}

.wbh-tool-empty-state {
  background: #f7fafc;
  border-radius: 14px;
  color: #607083;
  font-weight: 800;
  margin: 16px 0 0;
  padding: 14px 16px;
}

.wbh-tool-link {
  color: #d6004c;
  font-weight: 800;
  text-decoration: none;
}

.wbh-tool-link:hover { text-decoration: underline; }

.wbh-tool-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wbh-tool-actions form {
  margin: 0;
}

.wbh-tool-danger {
  appearance: none;
  background: transparent;
  border: 0;
  color: #b42318;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 0;
}

.wbh-tool-danger:hover {
  text-decoration: underline;
}

.wbh-tool-table tr.is-selected td {
  background: #ffe9f1;
}

.wbh-status-pill {
  background: #edf2f7;
  border-radius: 999px;
  color: #12202f;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 5px 10px;
}

.wbh-tool-drawer-panel .wbh-tool-panel-head .wbh-status-pill {
  margin-bottom: 8px;
}

.wbh-tool-details {
  display: grid;
  gap: 8px 18px;
  grid-template-columns: 160px minmax(0, 1fr);
}

.wbh-tool-details dt {
  color: #607083;
  font-weight: 800;
}

.wbh-tool-details dd { margin: 0; }

.wbh-tool-message {
  background: #f7fafc;
  border-radius: 16px;
  padding: 14px 16px;
}

.wbh-tool-price-list {
  display: grid;
  gap: 10px;
  margin: 12px 0 18px;
}

.wbh-tool-price-list div {
  align-items: center;
  background: #fff;
  border: 1px solid #e4ebf2;
  border-radius: 14px;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 12px 14px;
}

.wbh-tool-price-list span {
  display: grid;
  gap: 2px;
}

.wbh-tool-price-list strong {
  color: #d6004c;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.wbh-tool-price-list small {
  color: #607083;
}

.wbh-tool-price-list b {
  white-space: nowrap;
}

.wbh-tool-form {
  border-top: 1px solid #e4ebf2;
  display: grid;
  gap: 16px;
  margin-top: 22px;
  padding-top: 22px;
}

.wbh-tool-form label {
  display: grid;
  font-weight: 800;
  gap: 8px;
}

.wbh-tool-form input,
.wbh-tool-form select,
.wbh-tool-form textarea {
  border: 1px solid #d9e1ea;
  border-radius: 14px;
  box-sizing: border-box;
  font: inherit;
  padding: 12px 14px;
  width: 100%;
}

.wbh-tool-form-grid,
.wbh-access-editor {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.wbh-tool-form-grid > label {
  min-width: 0;
}

.wbh-tool-drawer-panel .wbh-tool-form-grid {
  gap: 18px 28px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.wbh-tool-drawer-panel .wbh-tool-form-grid--event-time {
  gap: 18px 28px;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.wbh-tool-form input[type="date"],
.wbh-tool-form input[type="time"] {
  min-width: 0;
  padding-right: 2.35rem;
}

.wbh-tool-form input[type="file"] {
  background: #f7fafc;
  cursor: pointer;
}

.wbh-tool-current-image {
  display: grid;
  gap: 8px;
  margin-bottom: 8px;
}

.wbh-tool-current-image img {
  width: min(220px, 100%);
  aspect-ratio: 16 / 9;
  border: 1px solid #d9e1ea;
  border-radius: 14px;
  object-fit: cover;
}

.wbh-tool-current-image small {
  color: #607083;
  font-weight: 600;
}

.wbh-tool-form-actions {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 28%);
  bottom: 0;
  margin: 4px -28px 0;
  padding: 28px 28px max(8px, env(safe-area-inset-bottom));
  position: sticky;
  z-index: 2;
}

.wbh-tool-form-actions .wbh-primary {
  width: 100%;
}

.wbh-tool-delete-form {
  display: flex;
  justify-content: center;
  margin: -4px 0 0;
}

.wbh-access-editor section {
  background: #f7fafc;
  border-radius: 18px;
  padding: 18px;
}

.wbh-access-editor h3,
.wbh-access-editor p {
  margin: 0 0 10px;
}

.wbh-access-editor p {
  color: #607083;
  font-weight: 500;
}

.wbh-access-editor .wbh-tool-check {
  align-items: center;
  background: #fff;
  border: 1px solid #e4ebf2;
  border-radius: 12px;
  display: grid !important;
  gap: 10px;
  grid-template-columns: 20px minmax(0, 1fr);
  line-height: 1.25;
  margin-top: 8px;
  padding: 10px 12px;
}

.wbh-access-editor .wbh-tool-check input {
  accent-color: #d6004c;
  height: 18px;
  margin: 0;
  padding: 0;
  width: 18px;
}

.wbh-access-editor .wbh-tool-check span {
  min-width: 0;
}

.wbh-note {
  border-top: 1px solid #e4ebf2;
  margin-top: 14px;
  padding-top: 14px;
}

.wbh-note time {
  color: #607083;
  font-size: 0.82rem;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .wbh-tool-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .wbh-tool-panel-head { flex-direction: column; }
  .wbh-tool-details { grid-template-columns: 1fr; }
  .wbh-tool-drawer-panel {
    border-radius: 18px;
    height: calc(100dvh - 20px);
    max-height: calc(100dvh - 20px);
    max-width: 100%;
    padding: 66px 20px max(34px, env(safe-area-inset-bottom));
    width: 100%;
  }
  .wbh-tool-drawer-panel .wbh-tool-form-grid {
    grid-template-columns: 1fr;
  }

  .wbh-tool-drawer-panel .wbh-tool-form-grid--event-time {
    grid-template-columns: 1fr;
  }
}
