.erc-club-central {
  --club-accent: #f7cb68;
  --club-accent-dark: #d39d2f;
  --club-text: #111111;
  --club-muted: #6e7075;
  --club-surface: #ffffff;
  --club-bg: #f5f5f5;
  --club-border: rgba(17, 17, 17, 0.12);
  color: var(--club-text);
  margin: 40px 0;
}
.erc-club-central__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1fr);
  gap: 56px;
  align-items: center;
}
.erc-club-central__badge {
  display: inline-flex;
  padding: 8px 16px;
  border: 1px solid var(--club-accent);
  border-radius: 999px;
  color: var(--club-accent-dark);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.erc-club-central__title {
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1;
  color: var(--club-accent-dark);
  letter-spacing: .06em;
  margin: 0 0 18px;
  text-transform: uppercase;
  font-weight: 400;
}
.erc-club-central__subtitle {
  font-size: 2rem;
  line-height: 1.25;
  margin: 0 0 18px;
  font-weight: 600;
}
.erc-club-central__description p {
  margin: 0 0 16px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #2a2d33;
}
.erc-club-central__benefits {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.erc-club-central__benefits li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.08rem;
  font-weight: 600;
}
.erc-club-central__benefit-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--club-accent) 20%, transparent);
  color: var(--club-accent-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.erc-club-central__benefit-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.erc-club-central__form-card {
  background: var(--club-surface);
  border: 1px solid color-mix(in srgb, var(--club-accent) 35%, transparent);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.08);
}
.erc-club-central__form {
  display: grid;
  gap: 20px;
}
.erc-form-row {
  display: grid;
  gap: 14px;
}
.erc-form-row--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.erc-form-row--3 { grid-template-columns: 1.2fr 0.5fr 1fr; }
.erc-form-field { display: grid; gap: 8px; }
.erc-form-field label {
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #4f5660;
  font-weight: 600;
}
.erc-form-field input {
  min-height: 54px;
  border: 1px solid var(--club-border);
  border-radius: 999px;
  padding: 0 18px;
  font-size: 16px;
  background: #fafafa;
  color: #111;
}
.erc-form-field input:focus {
  outline: none;
  border-color: var(--club-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--club-accent) 20%, transparent);
}
.erc-form-consent label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: #4c4f54;
}
.erc-form-consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}
.erc-form-consent a {
  color: var(--club-accent-dark);
  text-decoration: underline;
}
.erc-club-central__submit,
.erc-club-thankyou__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  width: 100%;
  border: 0;
  border-radius: 999px;
  background: var(--club-accent);
  color: #111;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 18px 36px rgba(0,0,0,0.12);
  cursor: pointer;
  text-decoration: none !important;
}
.erc-club-central__submit:hover,
.erc-club-thankyou__button:hover { background: var(--club-accent-dark); color:#111; transform:translateY(-1px); }
.erc-club-central__submit:disabled { opacity: .7; cursor: wait; }
.erc-club-central__message {
  display: none;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 15px;
  line-height: 1.6;
}
.erc-club-central__message.is-success,
.erc-club-central__message.is-error { display: block; }
.erc-club-central__message.is-success { background: color-mix(in srgb, var(--club-accent) 20%, transparent); color: var(--club-text); }
.erc-club-central__message.is-error { background: rgba(214, 53, 73, .1); color: #a61b32; }
.erc-club-thankyou {
  max-width: 760px;
  margin: 40px auto;
  text-align: center;
  background: #fff;
  border-radius: 28px;
  padding: 46px 28px;
  box-shadow: 0 24px 50px rgba(0,0,0,.08);
}
.erc-club-thankyou__icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
  border-radius: 999px;
  background: rgba(49, 192, 105, .12);
  color: #43b266;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.erc-club-thankyou__icon svg { width: 56px; height: 56px; fill: currentColor; }
.erc-club-thankyou h2 {
  margin: 0 0 18px;
  color: #111;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 400;
}
.erc-club-thankyou p {
  margin: 0 auto 28px;
  max-width: 620px;
  font-size: 1.2rem;
  line-height: 1.7;
}
.erc-club-thankyou__button {
  max-width: 360px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .erc-club-central__grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 767px) {
  .erc-club-central__form-card { padding: 24px 18px; }
  .erc-form-row--2,
  .erc-form-row--3 { grid-template-columns: 1fr; }
  .erc-club-central__title { font-size: 2.2rem; }
  .erc-club-central__subtitle { font-size: 1.5rem; }
}

/* Club Central refined form styling */
.erc-club-central {
  --club-accent: #f7cb68;
  --club-accent-dark: #e0b451;
  --club-text: #111111;
  --club-muted: #5d6168;
  --club-surface: #fbfbf9;
  --club-bg: #f4f4f2;
  --club-input-bg: #efefed;
  --club-border: rgba(17, 17, 17, 0.11);
}

.erc-club-central__form-card {
  background: var(--club-surface);
  border: 1px solid color-mix(in srgb, var(--club-accent) 40%, transparent);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.06);
}

.erc-form-field input {
  min-height: 48px;
  border: 1px solid rgba(17,17,17,0.10);
  border-radius: 999px;
  padding: 0 18px;
  font-size: 14px;
  background: var(--club-input-bg);
  color: #1f1c18;
}

.erc-form-field label {
  font-size: 12px;
  letter-spacing: .11em;
  color: #5d6168;
}

.erc-club-central__submit,
.erc-club-thankyou__button {
  background: var(--club-accent);
  color: #111 !important;
}

.erc-club-central__submit:hover,
.erc-club-thankyou__button:hover {
  background: var(--club-accent-dark);
  color: #111 !important;
}

.erc-form-consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 999px;
  border: 1px solid rgba(17,17,17,0.12);
  background: var(--club-input-bg);
  cursor: pointer;
  position: relative;
  margin-top: 1px;
  transition: all .2s ease;
}

.erc-form-consent input[type="checkbox"]:hover {
  border-color: var(--club-accent);
}

.erc-form-consent input[type="checkbox"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--club-accent) 24%, transparent);
}

.erc-form-consent input[type="checkbox"]:checked {
  background: #efefed;
  border-color: rgba(17,17,17,0.12);
}

.erc-form-consent input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 10px;
  border: solid #111;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -58%) rotate(45deg);
}

/* Dark mode support */
html.dark-mode .erc-club-central,
body.dark-mode .erc-club-central,
html.theme-dark .erc-club-central,
body.theme-dark .erc-club-central,
html.erc-dark-mode .erc-club-central,
body.erc-dark-mode .erc-club-central,
[data-theme="dark"] .erc-club-central,
.dark-mode .erc-club-central,
.theme-dark .erc-club-central {
  --club-text: #f5f5f2;
  --club-muted: rgba(255,255,255,0.74);
  --club-surface: #1a1a18;
  --club-bg: #0f0f0e;
  --club-input-bg: #242422;
  --club-border: rgba(255,255,255,0.14);
  color: var(--club-text);
}

html.dark-mode .erc-club-central__title,
body.dark-mode .erc-club-central__title,
html.theme-dark .erc-club-central__title,
body.theme-dark .erc-club-central__title,
html.erc-dark-mode .erc-club-central__title,
body.erc-dark-mode .erc-club-central__title,
[data-theme="dark"] .erc-club-central__title,
.dark-mode .erc-club-central__title,
.theme-dark .erc-club-central__title,
html.dark-mode .erc-club-thankyou h2,
body.dark-mode .erc-club-thankyou h2,
html.theme-dark .erc-club-thankyou h2,
body.theme-dark .erc-club-thankyou h2,
html.erc-dark-mode .erc-club-thankyou h2,
body.erc-dark-mode .erc-club-thankyou h2,
[data-theme="dark"] .erc-club-thankyou h2,
.dark-mode .erc-club-thankyou h2,
.theme-dark .erc-club-thankyou h2 {
  color: var(--club-accent) !important;
}

html.dark-mode .erc-club-central__subtitle,
body.dark-mode .erc-club-central__subtitle,
html.theme-dark .erc-club-central__subtitle,
body.theme-dark .erc-club-central__subtitle,
html.erc-dark-mode .erc-club-central__subtitle,
body.erc-dark-mode .erc-club-central__subtitle,
[data-theme="dark"] .erc-club-central__subtitle,
.dark-mode .erc-club-central__subtitle,
.theme-dark .erc-club-central__subtitle,
html.dark-mode .erc-club-central__description p,
body.dark-mode .erc-club-central__description p,
html.theme-dark .erc-club-central__description p,
body.theme-dark .erc-club-central__description p,
html.erc-dark-mode .erc-club-central__description p,
body.erc-dark-mode .erc-club-central__description p,
[data-theme="dark"] .erc-club-central__description p,
.dark-mode .erc-club-central__description p,
.theme-dark .erc-club-central__description p,
html.dark-mode .erc-club-central__benefits li,
body.dark-mode .erc-club-central__benefits li,
html.theme-dark .erc-club-central__benefits li,
body.theme-dark .erc-club-central__benefits li,
html.erc-dark-mode .erc-club-central__benefits li,
body.erc-dark-mode .erc-club-central__benefits li,
[data-theme="dark"] .erc-club-central__benefits li,
.dark-mode .erc-club-central__benefits li,
.theme-dark .erc-club-central__benefits li,
html.dark-mode .erc-form-field label,
body.dark-mode .erc-form-field label,
html.theme-dark .erc-form-field label,
body.theme-dark .erc-form-field label,
html.erc-dark-mode .erc-form-field label,
body.erc-dark-mode .erc-form-field label,
[data-theme="dark"] .erc-form-field label,
.dark-mode .erc-form-field label,
.theme-dark .erc-form-field label,
html.dark-mode .erc-form-consent label,
body.dark-mode .erc-form-consent label,
html.theme-dark .erc-form-consent label,
body.theme-dark .erc-form-consent label,
html.erc-dark-mode .erc-form-consent label,
body.erc-dark-mode .erc-form-consent label,
[data-theme="dark"] .erc-form-consent label,
.dark-mode .erc-form-consent label,
.theme-dark .erc-form-consent label,
html.dark-mode .erc-club-thankyou p,
body.dark-mode .erc-club-thankyou p,
html.theme-dark .erc-club-thankyou p,
body.theme-dark .erc-club-thankyou p,
html.erc-dark-mode .erc-club-thankyou p,
body.erc-dark-mode .erc-club-thankyou p,
[data-theme="dark"] .erc-club-thankyou p,
.dark-mode .erc-club-thankyou p,
.theme-dark .erc-club-thankyou p {
  color: #f5f5f2 !important;
}

html.dark-mode .erc-club-central__form-card,
body.dark-mode .erc-club-central__form-card,
html.theme-dark .erc-club-central__form-card,
body.theme-dark .erc-club-central__form-card,
html.erc-dark-mode .erc-club-central__form-card,
body.erc-dark-mode .erc-club-central__form-card,
[data-theme="dark"] .erc-club-central__form-card,
.dark-mode .erc-club-central__form-card,
.theme-dark .erc-club-central__form-card,
html.dark-mode .erc-club-thankyou,
body.dark-mode .erc-club-thankyou,
html.theme-dark .erc-club-thankyou,
body.theme-dark .erc-club-thankyou,
html.erc-dark-mode .erc-club-thankyou,
body.erc-dark-mode .erc-club-thankyou,
[data-theme="dark"] .erc-club-thankyou,
.dark-mode .erc-club-thankyou,
.theme-dark .erc-club-thankyou {
  background: #1a1a18 !important;
  border-color: rgba(247,203,104,0.25) !important;
  box-shadow: 0 24px 54px rgba(0,0,0,.28);
}

html.dark-mode .erc-form-field input,
body.dark-mode .erc-form-field input,
html.theme-dark .erc-form-field input,
body.theme-dark .erc-form-field input,
html.erc-dark-mode .erc-form-field input,
body.erc-dark-mode .erc-form-field input,
[data-theme="dark"] .erc-form-field input,
.dark-mode .erc-form-field input,
.theme-dark .erc-form-field input {
  background: #242422 !important;
  border-color: rgba(255,255,255,0.12) !important;
  color: #f5f5f2 !important;
}

html.dark-mode .erc-form-consent input[type="checkbox"],
body.dark-mode .erc-form-consent input[type="checkbox"],
html.theme-dark .erc-form-consent input[type="checkbox"],
body.theme-dark .erc-form-consent input[type="checkbox"],
html.erc-dark-mode .erc-form-consent input[type="checkbox"],
body.erc-dark-mode .erc-form-consent input[type="checkbox"],
[data-theme="dark"] .erc-form-consent input[type="checkbox"],
.dark-mode .erc-form-consent input[type="checkbox"],
.theme-dark .erc-form-consent input[type="checkbox"] {
  background: #242422 !important;
  border-color: rgba(255,255,255,0.14) !important;
}

html.dark-mode .erc-form-consent input[type="checkbox"]:checked::after,
body.dark-mode .erc-form-consent input[type="checkbox"]:checked::after,
html.theme-dark .erc-form-consent input[type="checkbox"]:checked::after,
body.theme-dark .erc-form-consent input[type="checkbox"]:checked::after,
html.erc-dark-mode .erc-form-consent input[type="checkbox"]:checked::after,
body.erc-dark-mode .erc-form-consent input[type="checkbox"]:checked::after,
[data-theme="dark"] .erc-form-consent input[type="checkbox"]:checked::after,
.dark-mode .erc-form-consent input[type="checkbox"]:checked::after,
.theme-dark .erc-form-consent input[type="checkbox"]:checked::after {
  border-color: var(--club-accent) !important;
}

html.dark-mode .erc-form-consent a,
body.dark-mode .erc-form-consent a,
html.theme-dark .erc-form-consent a,
body.theme-dark .erc-form-consent a,
html.erc-dark-mode .erc-form-consent a,
body.erc-dark-mode .erc-form-consent a,
[data-theme="dark"] .erc-form-consent a,
.dark-mode .erc-form-consent a,
.theme-dark .erc-form-consent a {
  color: var(--club-accent) !important;
}

/* Keep the Club submit button independent from theme button styles (OceanWP, etc.). */
.erc-club-central .erc-club-central__form button.erc-club-central__submit,
.erc-club-central .erc-club-central__form button.erc-club-central__submit:visited {
  -webkit-appearance: none !important;
  appearance: none !important;
  background: var(--club-accent) !important;
  background-color: var(--club-accent) !important;
  border: 0 !important;
  border-color: var(--club-accent) !important;
  color: #111 !important;
  box-shadow: 0 18px 36px rgba(0,0,0,0.12) !important;
}
.erc-club-central .erc-club-central__form button.erc-club-central__submit:hover,
.erc-club-central .erc-club-central__form button.erc-club-central__submit:focus,
.erc-club-central .erc-club-central__form button.erc-club-central__submit:active {
  background: var(--club-accent-dark) !important;
  background-color: var(--club-accent-dark) !important;
  border-color: var(--club-accent-dark) !important;
  color: #111 !important;
}


/* Dateck Hotel Suite dark mode */
html.dhs-dark-mode .erc-club-central{
  --club-text:var(--dhs-dark-text,#f5f5f2);
  --club-muted:color-mix(in srgb,var(--dhs-dark-text,#fff) 72%,transparent);
  --club-surface:var(--dhs-dark-card,#242424);
  --club-bg:var(--dhs-dark-background,#171717);
  --club-input-bg:color-mix(in srgb,var(--dhs-dark-card,#242424) 78%,#000);
  --club-border:color-mix(in srgb,var(--dhs-dark-text,#fff) 18%,transparent);
  color:var(--club-text)!important;
}
html.dhs-dark-mode .erc-club-central__title,
html.dhs-dark-mode .erc-club-central__subtitle,
html.dhs-dark-mode .erc-club-central__description p,
html.dhs-dark-mode .erc-club-central__benefits li,
html.dhs-dark-mode .erc-form-field label,
html.dhs-dark-mode .erc-form-consent label{color:var(--dhs-dark-text,#f5f5f2)!important}
html.dhs-dark-mode .erc-club-central__form-card{background:var(--dhs-dark-card,#242424)!important;border-color:color-mix(in srgb,var(--club-accent) 38%,transparent)!important}
html.dhs-dark-mode .erc-form-field input{background:color-mix(in srgb,var(--dhs-dark-card,#242424) 75%,#000)!important;color:var(--dhs-dark-text,#fff)!important;border-color:color-mix(in srgb,var(--dhs-dark-text,#fff) 18%,transparent)!important}
html.dhs-dark-mode .erc-form-field input::placeholder{color:color-mix(in srgb,var(--dhs-dark-text,#fff) 55%,transparent)!important}
html.dhs-dark-mode .erc-form-consent input[type=checkbox]{background:color-mix(in srgb,var(--dhs-dark-card,#242424) 75%,#000)!important;border-color:color-mix(in srgb,var(--dhs-dark-text,#fff) 22%,transparent)!important}
html.dhs-dark-mode .erc-form-consent a{color:var(--club-accent)!important}


/* 0.16.0 – design token compatibility */
.erc-club-central__submit,.erc-club-thankyou__button{color:var(--club-accent-contrast,var(--dhs-accent-contrast,#111))!important}
.erc-club-central__submit:hover,.erc-club-thankyou__button:hover{color:var(--dhs-accent-dark-contrast,var(--club-accent-contrast,#111))!important}

/* 0.16.4 – club submit contrast fix on stable 0.16.0 */
.erc-club-central__submit,
.erc-club-thankyou__button{
  background:var(--club-accent,var(--dhs-accent,#f7cb68))!important;
  color:var(--club-accent-contrast,var(--dhs-accent-contrast,#111))!important;
  border-color:transparent!important;
}
.erc-club-central__submit:hover,
.erc-club-thankyou__button:hover{
  background:var(--club-accent-dark,var(--dhs-accent-dark,#c9952d))!important;
  color:var(--dhs-accent-dark-contrast,var(--club-accent-contrast,#111))!important;
}
.erc-club-central__submit:disabled{
  background:var(--club-accent,var(--dhs-accent,#f7cb68))!important;
  color:var(--club-accent-contrast,var(--dhs-accent-contrast,#111))!important;
  opacity:.58!important;
}
html.dhs-dark-mode .erc-club-central__submit,
html.dhs-dark-mode .erc-club-thankyou__button{
  background:var(--club-accent,var(--dhs-accent,#f7cb68))!important;
  color:var(--club-accent-contrast,var(--dhs-accent-contrast,#111))!important;
}

/* v0.16.11 – Minimal preset: Club signup button text is always white. */
body.dhs-preset-minimal .erc-club-central .erc-club-central__form button.erc-club-central__submit,
body.dhs-preset-minimal .erc-club-central .erc-club-central__form button.erc-club-central__submit:link,
body.dhs-preset-minimal .erc-club-central .erc-club-central__form button.erc-club-central__submit:visited,
body.dhs-preset-minimal .erc-club-central .erc-club-central__form button.erc-club-central__submit:hover,
body.dhs-preset-minimal .erc-club-central .erc-club-central__form button.erc-club-central__submit:focus,
body.dhs-preset-minimal .erc-club-central .erc-club-central__form button.erc-club-central__submit:active,
body.dhs-preset-minimal .erc-club-central .erc-club-central__form button.erc-club-central__submit:disabled,
html.dhs-dark-mode body.dhs-preset-minimal .erc-club-central .erc-club-central__form button.erc-club-central__submit,
html.dhs-dark-mode body.dhs-preset-minimal .erc-club-central .erc-club-central__form button.erc-club-central__submit:disabled {
  color:#ffffff!important;
  -webkit-text-fill-color:#ffffff!important;
}

/* Dateck Hotel Suite 0.20.12 – club form follows the global button palette. */
body .erc-club-central .erc-club-central__form button.erc-club-central__submit,
body .erc-club-central .erc-club-central__form button.erc-club-central__submit:visited,
body .erc-club-central .erc-club-central__form button.erc-club-central__submit:disabled,
body a.erc-club-thankyou__button,
body a.erc-club-thankyou__button:link,
body a.erc-club-thankyou__button:visited{
  background:var(--dhs-button-bg)!important;
  background-color:var(--dhs-button-bg)!important;
  color:var(--dhs-button-text)!important;
  -webkit-text-fill-color:var(--dhs-button-text)!important;
  border-color:color-mix(in srgb,var(--dhs-button-text) 22%,transparent)!important;
}
body .erc-club-central .erc-club-central__form button.erc-club-central__submit:disabled{opacity:.58!important}
body .erc-club-central .erc-club-central__form button.erc-club-central__submit:hover,
body .erc-club-central .erc-club-central__form button.erc-club-central__submit:focus,
body .erc-club-central .erc-club-central__form button.erc-club-central__submit:active,
body a.erc-club-thankyou__button:hover,
body a.erc-club-thankyou__button:focus-visible{
  background:var(--dhs-button-hover-bg)!important;
  background-color:var(--dhs-button-hover-bg)!important;
  color:var(--dhs-button-hover-text)!important;
  -webkit-text-fill-color:var(--dhs-button-hover-text)!important;
}
html.dhs-dark-mode body .erc-club-central .erc-club-central__form button.erc-club-central__submit,
html.dhs-dark-mode body .erc-club-central .erc-club-central__form button.erc-club-central__submit:visited,
html.dhs-dark-mode body .erc-club-central .erc-club-central__form button.erc-club-central__submit:disabled,
html.dhs-dark-mode body a.erc-club-thankyou__button,
html.dhs-dark-mode body a.erc-club-thankyou__button:link,
html.dhs-dark-mode body a.erc-club-thankyou__button:visited{
  background:var(--dhs-button-bg-dark,var(--dhs-button-bg))!important;
  background-color:var(--dhs-button-bg-dark,var(--dhs-button-bg))!important;
  color:var(--dhs-button-text-dark,var(--dhs-button-text))!important;
  -webkit-text-fill-color:var(--dhs-button-text-dark,var(--dhs-button-text))!important;
}
html.dhs-dark-mode body .erc-club-central .erc-club-central__form button.erc-club-central__submit:hover,
html.dhs-dark-mode body .erc-club-central .erc-club-central__form button.erc-club-central__submit:focus,
html.dhs-dark-mode body .erc-club-central .erc-club-central__form button.erc-club-central__submit:active,
html.dhs-dark-mode body a.erc-club-thankyou__button:hover,
html.dhs-dark-mode body a.erc-club-thankyou__button:focus-visible{
  background:var(--dhs-button-hover-bg-dark,var(--dhs-button-hover-bg))!important;
  background-color:var(--dhs-button-hover-bg-dark,var(--dhs-button-hover-bg))!important;
  color:var(--dhs-button-hover-text-dark,var(--dhs-button-hover-text))!important;
  -webkit-text-fill-color:var(--dhs-button-hover-text-dark,var(--dhs-button-hover-text))!important;
}

/* Dateck Hotel Suite 0.20.14 – Minimal preset: disabled club button keeps the configured text color. */
body.dhs-preset-minimal .erc-club-central .erc-club-central__form button.erc-club-central__submit:disabled{
  background:var(--dhs-button-bg)!important;
  background-color:var(--dhs-button-bg)!important;
  color:var(--dhs-button-text)!important;
  -webkit-text-fill-color:var(--dhs-button-text)!important;
  border-color:color-mix(in srgb,var(--dhs-button-text) 22%,transparent)!important;
  opacity:.58!important;
}
html.dhs-dark-mode body.dhs-preset-minimal .erc-club-central .erc-club-central__form button.erc-club-central__submit:disabled{
  background:var(--dhs-button-bg-dark,var(--dhs-button-bg))!important;
  background-color:var(--dhs-button-bg-dark,var(--dhs-button-bg))!important;
  color:var(--dhs-button-text-dark,var(--dhs-button-text))!important;
  -webkit-text-fill-color:var(--dhs-button-text-dark,var(--dhs-button-text))!important;
  border-color:color-mix(in srgb,var(--dhs-button-text-dark,var(--dhs-button-text)) 22%,transparent)!important;
  opacity:.58!important;
}

/* Dateck Hotel Suite 0.20.16 – final Hotel-Club submit button base state.
 * The legacy Minimal preset selector had higher specificity than the global
 * button palette. These explicit rules keep normal, disabled and hover states
 * on the same global light/dark button variables. */
html body .erc-club-central .erc-club-central__form button.erc-club-central__submit,
html body.dhs-preset-minimal .erc-club-central .erc-club-central__form button.erc-club-central__submit,
html body .erc-club-central .erc-club-central__form button.erc-club-central__submit:disabled,
html body.dhs-preset-minimal .erc-club-central .erc-club-central__form button.erc-club-central__submit:disabled {
  background: var(--dhs-button-bg) !important;
  background-color: var(--dhs-button-bg) !important;
  color: var(--dhs-button-text) !important;
  -webkit-text-fill-color: var(--dhs-button-text) !important;
  border-color: color-mix(in srgb, var(--dhs-button-text) 22%, transparent) !important;
}
html.dhs-dark-mode body .erc-club-central .erc-club-central__form button.erc-club-central__submit,
html.dhs-dark-mode body.dhs-preset-minimal .erc-club-central .erc-club-central__form button.erc-club-central__submit,
html.dhs-dark-mode body .erc-club-central .erc-club-central__form button.erc-club-central__submit:disabled,
html.dhs-dark-mode body.dhs-preset-minimal .erc-club-central .erc-club-central__form button.erc-club-central__submit:disabled {
  background: var(--dhs-button-bg-dark, var(--dhs-button-bg)) !important;
  background-color: var(--dhs-button-bg-dark, var(--dhs-button-bg)) !important;
  color: var(--dhs-button-text-dark, var(--dhs-button-text)) !important;
  -webkit-text-fill-color: var(--dhs-button-text-dark, var(--dhs-button-text)) !important;
  border-color: color-mix(in srgb, var(--dhs-button-text-dark, var(--dhs-button-text)) 22%, transparent) !important;
}
html body .erc-club-central .erc-club-central__form button.erc-club-central__submit:not(:disabled):hover,
html body .erc-club-central .erc-club-central__form button.erc-club-central__submit:not(:disabled):focus-visible {
  background: var(--dhs-button-hover-bg) !important;
  background-color: var(--dhs-button-hover-bg) !important;
  color: var(--dhs-button-hover-text) !important;
  -webkit-text-fill-color: var(--dhs-button-hover-text) !important;
}
html.dhs-dark-mode body .erc-club-central .erc-club-central__form button.erc-club-central__submit:not(:disabled):hover,
html.dhs-dark-mode body .erc-club-central .erc-club-central__form button.erc-club-central__submit:not(:disabled):focus-visible {
  background: var(--dhs-button-hover-bg-dark, var(--dhs-button-hover-bg)) !important;
  background-color: var(--dhs-button-hover-bg-dark, var(--dhs-button-hover-bg)) !important;
  color: var(--dhs-button-hover-text-dark, var(--dhs-button-hover-text)) !important;
  -webkit-text-fill-color: var(--dhs-button-hover-text-dark, var(--dhs-button-hover-text)) !important;
}
