.dhv-checkout-main {
  height: calc(100vh - 74px);
  min-height: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 8, 12, 0.98), rgba(8, 12, 17, 1)),
    #05080c;
  color: var(--dhv-ink);
}

.admin-bar .dhv-checkout-main {
  height: calc(100vh - 106px);
}

.dhv-checkout-main + .dhv-site-footer {
  display: none;
}

.dhv-checkout-frame {
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  height: 100%;
  min-height: 0;
  padding: 14px 18px 16px;
}

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

.dhv-checkout-app {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(150, 165, 178, 0.32);
  border-radius: 10px;
  background: #eef4f8;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.34);
}

.dhv-checkout-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  min-height: 72px;
  border-bottom: 1px solid #cfd9e2;
  background: #cfd9e2;
}

.dhv-checkout-step {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  padding: 14px 14px;
  border: 0;
  background: #f8fbfd;
  color: #5d6873;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.dhv-checkout-step span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid #c9d5df;
  border-radius: 999px;
  color: #5d6873;
  font-size: 12px;
  font-weight: 900;
}

.dhv-checkout-step strong {
  min-width: 0;
  overflow: hidden;
  color: inherit;
  font-size: 13px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dhv-checkout-step.is-active {
  background: #061018;
  color: #f7fbff;
}

.dhv-checkout-step.is-active span {
  border-color: #00b7c2;
  background: #00b7c2;
  color: #031014;
}

.dhv-checkout-step.is-complete {
  background: #ffffff;
  color: #12202b;
}

.dhv-checkout-step.is-complete span {
  border-color: rgba(0, 183, 194, 0.5);
  background: rgba(0, 183, 194, 0.12);
  color: #006d76;
}

.dhv-checkout-step:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.dhv-checkout-alert,
.dhv-checkout-error {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(190, 43, 43, 0.36);
  border-radius: 8px;
  background: #fff2f2;
  color: #7a1515;
  font-size: 14px;
  font-weight: 800;
}

.dhv-checkout-alert {
  margin: 14px;
}

.dhv-checkout-form {
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.dhv-checkout-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 0;
  height: 100%;
  min-height: 0;
}

.dhv-checkout-panes {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: #f5f8fb;
}

.dhv-checkout-pane {
  display: grid;
  align-content: start;
  gap: 18px;
  height: 100%;
  min-height: 0;
  padding: 30px;
  overflow: auto;
  scrollbar-width: thin;
}

.dhv-checkout-pane[hidden],
.dhv-checkout-created[hidden] {
  display: none !important;
}

.dhv-pane-heading {
  max-width: 780px;
}

.dhv-pane-heading span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 8px;
  border: 1px solid rgba(0, 183, 194, 0.28);
  border-radius: 999px;
  background: rgba(0, 183, 194, 0.1);
  color: #006d76;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.dhv-pane-heading h2 {
  margin: 12px 0 8px;
  color: #101820;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  letter-spacing: 0;
}

.dhv-pane-heading p {
  max-width: 720px;
  margin: 0;
  color: #55616c;
  font-size: 16px;
}

.dhv-domain-help {
  max-width: 780px;
  margin: 14px 0 0;
}

.dhv-domain-help summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 7px 12px;
  border: 1px solid #b9dce1;
  border-radius: 999px;
  background: #ffffff;
  color: #075f68;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  list-style: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.dhv-domain-help summary::-webkit-details-marker {
  display: none;
}

.dhv-domain-help summary:hover,
.dhv-domain-help summary:focus-visible,
.dhv-domain-help[open] summary {
  border-color: #008c99;
  background: #e9f8fa;
  color: #064d55;
}

.dhv-domain-help summary:focus-visible {
  outline: 3px solid rgba(0, 183, 194, 0.24);
  outline-offset: 2px;
}

.dhv-domain-help__icon {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: #008c99;
  color: #ffffff;
  font-size: 13px;
  line-height: 1;
}

.dhv-domain-help summary::after {
  content: "+";
  margin-left: 2px;
  color: #008c99;
  font-size: 19px;
  line-height: 1;
}

.dhv-domain-help[open] summary::after {
  content: "\2212";
}

.dhv-domain-help__panel {
  max-width: 760px;
  margin-top: 10px;
  padding: 17px;
  border: 1px solid #c9dfe3;
  border-radius: 10px;
  background: #f7fcfd;
  box-shadow: 0 14px 32px rgba(16, 36, 60, 0.08);
  color: #26323d;
}

.dhv-domain-help__panel > p {
  max-width: 700px;
  margin: 0;
  color: #3d4b57;
  font-size: 14px;
  line-height: 1.55;
}

.dhv-domain-help__choices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0;
}

.dhv-domain-help__choices > div {
  padding: 12px;
  border: 1px solid #d8e6e9;
  border-radius: 8px;
  background: #ffffff;
}

.dhv-domain-help__choices strong,
.dhv-domain-help__choices span {
  display: block;
}

.dhv-domain-help__choices strong {
  margin-bottom: 5px;
  color: #101820;
  font-size: 13px;
}

.dhv-domain-help__choices span {
  color: #55616c;
  font-size: 12px;
  line-height: 1.45;
}

.dhv-domain-help__panel .dhv-domain-help__note {
  padding-top: 12px;
  border-top: 1px solid #d8e6e9;
  color: #075f68;
}

.dhv-plan-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.dhv-plan-option {
  display: grid;
  gap: 10px;
  min-height: 250px;
  padding: 22px;
  border: 1px solid #d2dde6;
  border-radius: 9px;
  background: #ffffff;
  color: #101820;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.dhv-plan-option:hover,
.dhv-plan-option:focus-visible {
  border-color: rgba(0, 183, 194, 0.56);
  box-shadow: 0 18px 44px rgba(16, 24, 32, 0.11);
}

.dhv-plan-option.is-selected {
  border-color: #00b7c2;
  background:
    linear-gradient(145deg, rgba(0, 183, 194, 0.12), rgba(255, 255, 255, 0)),
    #ffffff;
  box-shadow: inset 0 0 0 1px rgba(0, 183, 194, 0.28);
}

.dhv-plan-option span,
.dhv-review-grid span,
.dhv-summary-card span,
.dhv-summary-list dt {
  color: #006d76;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.dhv-plan-option strong {
  color: #101820;
  font-size: 31px;
  line-height: 1.02;
}

.dhv-plan-option em {
  color: #34424e;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.dhv-plan-option p {
  margin: 0;
  color: #55616c;
  font-size: 15px;
}

.dhv-plan-option b,
.dhv-summary-card em,
.dhv-review-grid em {
  width: fit-content;
  padding: 8px 10px;
  border: 1px solid rgba(0, 183, 194, 0.36);
  border-radius: 7px;
  background: #eefbfd;
  color: #101820;
  font-style: normal;
  font-weight: 950;
}

.dhv-feature-strip {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid #d2dde6;
  border-radius: 9px;
  background: #ffffff;
}

.dhv-feature-strip h3 {
  margin: 0;
  color: #101820;
  font-size: 18px;
}

.dhv-feature-strip ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dhv-feature-strip li {
  min-height: 40px;
  padding: 10px 11px;
  border: 1px solid #e1e8ee;
  border-radius: 7px;
  color: #26323d;
  font-size: 13px;
  font-weight: 800;
}

.dhv-choice-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 6px;
  border: 1px solid #c9d5df;
  border-radius: 9px;
  background: #ffffff;
}

.dhv-choice-row button,
.dhv-domain-suggestions button {
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: #edf3f7;
  color: #26323d;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
}

.dhv-choice-row button.is-selected {
  border-color: rgba(0, 183, 194, 0.5);
  background: #00b7c2;
  color: #031014;
}

.dhv-domain-composer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.dhv-field,
.dhv-domain-composer label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: #26323d;
  font-size: 14px;
  font-weight: 900;
}

.dhv-field input,
.dhv-field textarea,
.dhv-domain-composer input {
  width: 100%;
  min-height: 46px;
  border: 1px solid #c9d5df;
  border-radius: 8px;
  background: #ffffff;
  color: #101820;
  font: inherit;
  padding: 11px 12px;
}

.dhv-field textarea {
  resize: vertical;
}

.dhv-field input:focus,
.dhv-field textarea:focus,
.dhv-domain-composer input:focus {
  border-color: #00b7c2;
  outline: 2px solid rgba(0, 183, 194, 0.18);
  outline-offset: 0;
}

.dhv-field input[aria-invalid="true"],
.dhv-field textarea[aria-invalid="true"],
.dhv-domain-composer input[aria-invalid="true"],
.dhv-confirm-row input[aria-invalid="true"] {
  border-color: #be2b2b;
  outline: 2px solid rgba(190, 43, 43, 0.14);
}

.dhv-domain-featured {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 36px;
  margin: -4px 0 0;
}

.dhv-domain-featured span {
  align-self: center;
  color: #55616c;
  font-size: 13px;
  font-weight: 800;
}

.dhv-domain-featured button {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 7px;
  align-items: center;
  min-height: 36px;
  padding: 6px 10px;
  border: 1px solid #d8e3eb;
  border-radius: 8px;
  background: #ffffff;
  color: #26323d;
  cursor: pointer;
  font: inherit;
}

.dhv-domain-featured button:hover,
.dhv-domain-featured button:focus-visible {
  border-color: rgba(0, 183, 194, 0.62);
  outline: 2px solid rgba(0, 183, 194, 0.14);
  outline-offset: 0;
}

.dhv-domain-featured button strong {
  color: #101820;
  font-size: 13px;
  font-weight: 950;
}

.dhv-domain-featured button span {
  color: #55616c;
  font-size: 12px;
  font-weight: 850;
}

.dhv-domain-results-panel {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid #d2dde6;
  border-radius: 9px;
  background: #ffffff;
}

.dhv-domain-results-panel[hidden],
.dhv-domain-featured.is-hidden {
  display: none !important;
}

.dhv-domain-results-head {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.dhv-domain-results-head strong {
  color: #101820;
  font-size: 15px;
  font-weight: 950;
}

.dhv-domain-results-head span {
  min-height: 24px;
  padding: 4px 8px;
  border: 1px solid rgba(0, 183, 194, 0.3);
  border-radius: 999px;
  background: rgba(0, 183, 194, 0.1);
  color: #006d76;
  font-size: 12px;
  font-weight: 950;
}

.dhv-domain-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: 9px;
}

.dhv-domain-card {
  display: grid;
  grid-template-rows: auto auto auto minmax(16px, auto) auto;
  gap: 6px;
  min-height: 122px;
  padding: 13px;
  border: 1px solid #d8e3eb;
  border-radius: 8px;
  background: #f9fbfd;
  color: #101820;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.dhv-domain-card:hover,
.dhv-domain-card:focus-visible {
  border-color: rgba(0, 183, 194, 0.62);
  outline: 2px solid rgba(0, 183, 194, 0.14);
  outline-offset: 0;
}

.dhv-domain-card span,
.dhv-domain-card small {
  color: #006d76;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.dhv-domain-card strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: #101820;
  font-size: 18px;
  line-height: 1.08;
}

.dhv-domain-card em {
  color: #26323d;
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
}

.dhv-domain-card b {
  justify-self: start;
  min-height: 28px;
  padding: 6px 9px;
  border-radius: 7px;
  background: #00b7c2;
  color: #031014;
  font-size: 12px;
  font-weight: 950;
}

.dhv-domain-card.is-featured {
  box-shadow: inset 0 0 0 1px rgba(0, 183, 194, 0.18);
}

.dhv-domain-card.is-selected {
  border-color: #00b7c2;
  background: #eefbfd;
  box-shadow: inset 0 0 0 1px rgba(0, 183, 194, 0.35);
}

.dhv-domain-card.is-unavailable {
  cursor: not-allowed;
  opacity: 0.55;
}

.dhv-domain-card.is-unavailable b {
  background: #e6edf2;
  color: #55616c;
}

.dhv-domain-result {
  display: grid;
  gap: 6px;
  min-height: 72px;
  padding: 16px;
  border: 1px solid #c9d5df;
  border-radius: 9px;
  background: #ffffff;
  color: #26323d;
}

.dhv-domain-result strong {
  color: #101820;
  font-size: 19px;
  line-height: 1.15;
}

.dhv-domain-result span {
  color: #55616c;
  font-size: 14px;
}

.dhv-domain-result.is-good {
  border-color: rgba(0, 183, 194, 0.48);
  background: #eefbfd;
}

.dhv-domain-result.is-bad {
  border-color: rgba(190, 43, 43, 0.36);
  background: #fff2f2;
}

.dhv-domain-result.is-loading {
  border-color: rgba(0, 183, 194, 0.34);
  background: linear-gradient(90deg, #ffffff, #eefbfd, #ffffff);
  background-size: 220% 100%;
  animation: dhv-loading-sweep 1.2s ease-in-out infinite;
}

.dhv-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.dhv-form-full {
  grid-column: 1 / -1;
}

.dhv-soft-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid #d2dde6;
  border-radius: 9px;
  background: #ffffff;
}

.dhv-soft-panel strong {
  color: #101820;
  font-size: 16px;
}

.dhv-soft-panel span {
  color: #55616c;
  font-size: 14px;
}

.dhv-soft-panel a {
  grid-row: span 2;
  color: #006d76;
  font-weight: 900;
  text-decoration: none;
}

.dhv-review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.dhv-review-grid article {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 18px;
  border: 1px solid #d2dde6;
  border-radius: 9px;
  background: #ffffff;
}

.dhv-review-grid strong {
  color: #101820;
  font-size: 22px;
  line-height: 1.1;
}

.dhv-confirm-row {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 15px;
  border: 1px solid #d2dde6;
  border-radius: 9px;
  background: #ffffff;
  color: #26323d;
  font-weight: 900;
}

.dhv-confirm-row input {
  width: 18px;
  height: 18px;
  accent-color: #00b7c2;
}

.dhv-checkout-summary {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  gap: 14px;
  min-width: 0;
  min-height: 0;
  padding: 20px;
  border-left: 1px solid #cfd9e2;
  background: #061018;
  color: #f7fbff;
}

.dhv-summary-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(150, 165, 178, 0.28);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
}

.dhv-summary-card span,
.dhv-summary-list dt {
  color: #00b7c2;
}

.dhv-summary-card strong {
  color: #f7fbff;
  font-size: 26px;
  line-height: 1.05;
}

.dhv-summary-card p {
  margin: 0;
  color: #c8d3dc;
  font-size: 14px;
}

.dhv-summary-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(150, 165, 178, 0.24);
  border-radius: 9px;
  overflow: hidden;
}

.dhv-summary-list div {
  display: grid;
  gap: 5px;
  padding: 13px 15px;
  border-bottom: 1px solid rgba(150, 165, 178, 0.18);
  background: rgba(255, 255, 255, 0.035);
}

.dhv-summary-list div:last-child {
  border-bottom: 0;
}

.dhv-summary-list dd {
  margin: 0;
  color: #f7fbff;
  font-size: 15px;
  font-weight: 850;
}

.dhv-checkout-actions {
  display: grid;
  grid-template-columns: minmax(96px, auto) minmax(0, 1fr);
  gap: 10px;
  align-self: end;
}

.dhv-checkout-actions .dhv-button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.dhv-checkout-actions .dhv-button[data-dhv-submit] {
  grid-column: 1 / -1;
  width: 100%;
}

.dhv-checkout-actions .dhv-button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.dhv-checkout-created {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: 22px;
  min-height: 0;
  padding: 34px;
  background: #f5f8fb;
  color: #101820;
}

.dhv-checkout-created__copy,
.dhv-checkout-created__summary {
  padding: 24px;
  border: 1px solid #d2dde6;
  border-radius: 9px;
  background: #ffffff;
}

.dhv-checkout-created h2 {
  margin: 0;
  font-size: 44px;
  line-height: 1;
}

.dhv-checkout-created p {
  max-width: 620px;
  color: #55616c;
  font-size: 17px;
}

.dhv-checkout-created dl {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
}

.dhv-checkout-created dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d2dde6;
}

.dhv-checkout-created dt {
  color: #006d76;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.dhv-checkout-created dd {
  margin: 0;
  color: #101820;
  font-weight: 900;
  text-align: right;
}

.is-hidden,
.dhv-transfer-code.is-hidden {
  display: none !important;
}

@keyframes dhv-loading-sweep {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@media (max-width: 1180px) {
  .dhv-checkout-frame {
    padding: 18px;
  }

  .dhv-checkout-main {
    height: auto;
    min-height: calc(100vh - 74px);
    overflow: visible;
  }

  .admin-bar .dhv-checkout-main {
    height: auto;
    min-height: calc(100vh - 106px);
  }

  .dhv-checkout-app {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .dhv-checkout-form {
    height: auto;
    overflow: visible;
  }

  .dhv-checkout-workspace,
  .dhv-checkout-created {
    grid-template-columns: 1fr;
  }

  .dhv-checkout-summary {
    border-top: 1px solid #cfd9e2;
    border-left: 0;
  }
}

@media (max-width: 860px) {
  .dhv-checkout-frame {
    min-height: 0;
    padding: 16px;
  }

  .dhv-checkout-steps {
    display: flex;
    min-height: 64px;
    overflow-x: auto;
  }

  .dhv-checkout-step {
    min-width: 142px;
    padding: 12px;
  }

  .dhv-checkout-pane {
    padding: 22px;
    overflow: visible;
  }

  .dhv-plan-picker,
  .dhv-feature-strip ul,
  .dhv-choice-row,
  .dhv-domain-help__choices,
  .dhv-domain-composer,
  .dhv-field-grid,
  .dhv-review-grid {
    grid-template-columns: 1fr;
  }

  .dhv-plan-option {
    min-height: 0;
  }

  .dhv-soft-panel {
    grid-template-columns: 1fr;
  }

  .dhv-soft-panel a {
    grid-row: auto;
  }
}

@media (max-width: 520px) {
  .dhv-checkout-frame {
    padding: 12px;
  }

  .dhv-checkout-pane,
  .dhv-checkout-summary,
  .dhv-checkout-created {
    padding: 16px;
  }

  .dhv-pane-heading h2,
  .dhv-checkout-created h2 {
    font-size: 30px;
  }

  .dhv-domain-help summary {
    width: 100%;
  }

  .dhv-domain-help summary::after {
    margin-left: auto;
  }

  .dhv-domain-help__panel {
    padding: 14px;
  }

  .dhv-checkout-actions {
    grid-template-columns: 1fr;
  }
}
