.ndcwb-wrap,
.ndcwb-wrap * {
  box-sizing: border-box;
}

.ndcwb-wrap {
  --ndcwb-dark: #2E1C0E;
  --ndcwb-cream: #F2E8D9;
  --ndcwb-cream-soft: #fffaf3;
  --ndcwb-border: #dfcdb7;
  --ndcwb-muted: #725f50;
  --ndcwb-white: #ffffff;
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 18px;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--ndcwb-dark);
}

.ndcwb-wrap strong,
.ndcwb-wrap b {
  font-weight: 600;
}

.ndcwb-hero {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
}

.ndcwb-eyebrow,
.ndcwb-small-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ndcwb-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 10px;
}

.ndcwb-hero h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  color: var(--ndcwb-dark);
  font-weight: 600;
}

.ndcwb-hero p,
.ndcwb-panel-head p {
  margin: 0;
  color: var(--ndcwb-muted);
  font-size: 15px;
  line-height: 1.65;
}

.ndcwb-hero-booking-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  text-decoration: none;
}

.ndcwb-branch-box {
  max-width: 820px;
  margin: 0 auto 30px;
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 18px;
  align-items: center;
  background: var(--ndcwb-white);
  border: 1px solid var(--ndcwb-border);
  border-radius: 22px;
  box-shadow: 0 16px 42px rgba(46, 28, 14, 0.08);
}

.ndcwb-branch-box.is-required {
  border-color: var(--ndcwb-dark);
  box-shadow: 0 0 0 4px rgba(46, 28, 14, 0.12), 0 16px 42px rgba(46, 28, 14, 0.08);
}

.ndcwb-branch-box h3 {
  margin: 0 0 8px;
  color: var(--ndcwb-dark);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 600;
}

.ndcwb-branch-box p {
  margin: 0;
  color: var(--ndcwb-muted);
  font-size: 14px;
  line-height: 1.6;
}

.ndcwb-branch-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--ndcwb-dark);
  font-size: 13px;
  font-weight: 600;
}

.ndcwb-branch-field label span {
  color: #b3261e;
}

.ndcwb-branch-field select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--ndcwb-border);
  border-radius: 14px;
  background: var(--ndcwb-cream-soft);
  color: var(--ndcwb-dark);
  padding: 0 14px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  outline: none;
}

.ndcwb-branch-field select:focus {
  border-color: var(--ndcwb-dark);
  box-shadow: 0 0 0 3px rgba(46, 28, 14, 0.10);
}

/* Clean responsive step navigation */
.ndcwb-progress {
  width: 100%;
  max-width: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px minmax(0, 1fr) 52px minmax(0, 1fr);
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto 30px;
  padding: 12px;
  background: var(--ndcwb-cream);
  border: 1px solid var(--ndcwb-border);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(46, 28, 14, 0.07);
}

.ndcwb-progress-step {
  min-width: 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ndcwb-muted);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 500;
  white-space: nowrap;
  transition: 0.22s ease;
}

.ndcwb-progress-step > span:first-child {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ndcwb-white);
  border: 1px solid var(--ndcwb-border);
  color: var(--ndcwb-muted);
  font-size: 12px;
  font-weight: 600;
}

.ndcwb-progress-step > .ndcwb-semi {
  display: inline-block;
  width: auto;
  height: auto;
  min-width: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 13px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ndcwb-progress-step.is-active {
  background: var(--ndcwb-dark);
  color: #fff;
  box-shadow: 0 10px 22px rgba(46, 28, 14, 0.18);
}

.ndcwb-progress-step.is-done {
  background: rgba(255, 255, 255, 0.65);
  color: var(--ndcwb-dark);
}

.ndcwb-progress-step.is-active > span:first-child {
  background: var(--ndcwb-cream);
  border-color: var(--ndcwb-cream);
  color: var(--ndcwb-dark);
}

.ndcwb-progress-step.is-done > span:first-child {
  background: var(--ndcwb-dark);
  border-color: var(--ndcwb-dark);
  color: #fff;
}

.ndcwb-progress-line {
  width: 100%;
  min-width: 0;
  height: 2px;
  background: rgba(46, 28, 14, 0.18);
  border-radius: 999px;
}

.ndcwb-panel {
  background: var(--ndcwb-white);
  border: 1px solid var(--ndcwb-border);
  border-radius: 26px;
  box-shadow: 0 22px 55px rgba(46, 28, 14, 0.08);
  padding: clamp(22px, 4vw, 38px);
  overflow: hidden;
}

.ndcwb-step {
  display: none;
}

.ndcwb-step.is-active {
  display: block;
}

.ndcwb-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  padding: 18px;
  background: linear-gradient(135deg, var(--ndcwb-cream), var(--ndcwb-cream-soft));
  border: 1px solid rgba(46, 28, 14, 0.08);
  border-radius: 20px;
}

.ndcwb-panel-head h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--ndcwb-dark);
  font-weight: 600;
}

.ndcwb-panel-head p {
  max-width: 520px;
  text-align: right;
}

.ndcwb-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  padding: 8px;
  background: var(--ndcwb-cream-soft);
  border: 1px solid var(--ndcwb-border);
  border-radius: 18px;
}

.ndcwb-tab {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ndcwb-dark);
  min-height: 50px;
  padding: 10px 16px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 600;
  font-family: inherit;
  transition: 0.22s ease;
}

.ndcwb-tab:hover,
.ndcwb-tab.is-active {
  background: var(--ndcwb-dark);
  color: #fff;
}

.ndcwb-tab em {
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(46, 28, 14, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-size: 12px;
}

.ndcwb-tab.is-active em,
.ndcwb-tab:hover em {
  background: rgba(255, 255, 255, 0.22);
}

.ndcwb-service-grid,
.ndcwb-addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.ndcwb-service-card {
  appearance: none;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid var(--ndcwb-border);
  background: var(--ndcwb-cream);
  text-align: left;
  border-radius: 20px;
  padding: 24px;
  min-height: 245px;
  cursor: pointer;
  transition: 0.24s ease;
  color: var(--ndcwb-dark);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: inherit;
  overflow: hidden;
}

.ndcwb-service-card:hover,
.ndcwb-service-card.is-selected {
  background: #fff;
  border-color: var(--ndcwb-dark);
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(46, 28, 14, 0.12);
}

.ndcwb-card-category {
  display: inline-flex;
  background: var(--ndcwb-dark);
  color: #fff;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 14px;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.ndcwb-service-card h4 {
  width: 100%;
  max-width: 100%;
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.35;
  color: var(--ndcwb-dark);
  font-weight: 600;
  overflow-wrap: anywhere;
  word-break: normal;
}

.ndcwb-duration {
  width: 100%;
  color: var(--ndcwb-dark);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
  overflow-wrap: anywhere;
}

.ndcwb-mini-note {
  width: 100%;
  max-width: 100%;
  color: var(--ndcwb-muted);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(46, 28, 14, 0.08);
  border-radius: 10px;
  padding: 7px 9px;
  font-size: 11px;
  line-height: 1.4;
  margin-bottom: 12px;
  overflow-wrap: anywhere;
}

.ndcwb-service-card p {
  width: 100%;
  max-width: 100%;
  margin: 0 0 18px;
  color: var(--ndcwb-muted);
  font-size: 13px;
  line-height: 1.65;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}

.ndcwb-price {
  display: block;
  margin-top: auto;
  font-size: 21px;
  color: var(--ndcwb-dark);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.ndcwb-addon-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--ndcwb-border);
  background: var(--ndcwb-cream-soft);
  border-radius: 18px;
  padding: 18px;
  cursor: pointer;
  transition: 0.22s ease;
  color: var(--ndcwb-dark);
  min-width: 0;
}

.ndcwb-addon-card:hover,
.ndcwb-addon-card.is-selected {
  border-color: var(--ndcwb-dark);
  background: #fff;
  box-shadow: 0 14px 28px rgba(46, 28, 14, 0.1);
}

.ndcwb-addon-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ndcwb-addon-check {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  border: 2px solid #d1c4b6;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ndcwb-addon-card.is-selected .ndcwb-addon-check {
  background: var(--ndcwb-dark);
  border-color: var(--ndcwb-dark);
}

.ndcwb-addon-card.is-selected .ndcwb-addon-check:after {
  content: "✓";
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.ndcwb-addon-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.ndcwb-addon-body strong {
  font-size: 15px;
  color: var(--ndcwb-dark);
  overflow-wrap: anywhere;
}

.ndcwb-addon-body em {
  font-size: 12px;
  color: var(--ndcwb-dark);
  font-style: normal;
  font-weight: 600;
}

.ndcwb-addon-body small {
  color: var(--ndcwb-muted);
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.ndcwb-addon-price {
  font-weight: 600;
  color: var(--ndcwb-dark);
  white-space: nowrap;
}

.ndcwb-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 26px;
}

.ndcwb-btn {
  appearance: none;
  border: 0;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: 0.22s ease;
  font-family: inherit;
}

.ndcwb-btn-primary {
  background: var(--ndcwb-dark);
  color: #fff;
}

.ndcwb-btn-primary:hover {
  background: #4b2f18;
  color: #fff;
}

.ndcwb-btn-light {
  background: var(--ndcwb-cream-soft);
  color: var(--ndcwb-dark);
  border: 1px solid var(--ndcwb-border);
}

.ndcwb-btn-light:hover {
  background: var(--ndcwb-cream);
}

.ndcwb-summary {
  background: linear-gradient(135deg, var(--ndcwb-cream), #fff);
  border: 1px solid var(--ndcwb-border);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 24px;
}

.ndcwb-summary-main,
.ndcwb-summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ndcwb-summary-main > div,
.ndcwb-summary-total > div {
  min-width: 0;
}

.ndcwb-summary-main span,
.ndcwb-summary-addons > span,
.ndcwb-summary-total span {
  display: block;
  color: var(--ndcwb-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 6px;
}

.ndcwb-summary-main h4 {
  margin: 0 0 4px;
  font-size: 18px;
  color: var(--ndcwb-dark);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.ndcwb-summary-main p {
  margin: 0;
  color: var(--ndcwb-dark);
  font-size: 13px;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.ndcwb-summary-main > .ndcwb-price,
.ndcwb-summary-total .ndcwb-price {
  font-size: 24px;
  color: var(--ndcwb-dark);
  white-space: nowrap;
}

.ndcwb-summary-addons {
  margin: 18px 0;
  padding-top: 18px;
  border-top: 1px dashed #d9cdbc;
}

.ndcwb-summary-addons ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ndcwb-summary-addons li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  color: var(--ndcwb-dark);
  font-size: 14px;
}

.ndcwb-summary-addons li span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.ndcwb-summary-addons li small,
.ndcwb-muted-row {
  color: var(--ndcwb-muted);
}

.ndcwb-summary-total {
  border-top: 1px dashed #d9cdbc;
  padding-top: 18px;
}

.ndcwb-final-card {
  background: var(--ndcwb-cream-soft);
  border: 1px solid var(--ndcwb-border);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
}

.ndcwb-final-card h4 {
  margin: 0 0 16px;
  color: var(--ndcwb-dark);
  font-weight: 600;
  font-size: 18px;
}

.ndcwb-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.ndcwb-field-full {
  grid-column: 1 / -1;
}

.ndcwb-field label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 600;
  color: var(--ndcwb-dark);
  margin-bottom: 8px;
}

.ndcwb-field label span {
  color: #b42318;
}

.ndcwb-field input,
.ndcwb-field select,
.ndcwb-field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--ndcwb-border);
  background: #fff;
  border-radius: 13px;
  padding: 12px 14px;
  color: var(--ndcwb-dark);
  outline: none;
  transition: 0.18s ease;
  font-size: 14px;
  font-family: inherit;
}

.ndcwb-field textarea {
  min-height: 110px;
  resize: vertical;
}

.ndcwb-field input:focus,
.ndcwb-field select:focus,
.ndcwb-field textarea:focus {
  border-color: var(--ndcwb-dark);
  box-shadow: 0 0 0 4px rgba(46, 28, 14, 0.08);
}

.ndcwb-result {
  display: none;
  margin-top: 22px;
  border-radius: 18px;
  padding: 18px;
  line-height: 1.6;
}

.ndcwb-result.is-success {
  display: block;
  background: var(--ndcwb-cream);
  border: 1px solid var(--ndcwb-border);
  color: var(--ndcwb-dark);
}

.ndcwb-result.is-error {
  display: block;
  background: #fff1f0;
  border: 1px solid #ffccc7;
  color: #9f1d17;
}


.ndcwb-semi,
.ndcwb-success-title {
  font-weight: 600;
}

.ndcwb-success-title {
  display: block;
  margin-bottom: 8px;
}

.ndcwb-confirm-box {
  margin-top: 12px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.75);
}

.ndcwb-confirm-box p {
  margin: 0 0 6px;
}

.ndcwb-confirm-box ul {
  margin: 0 0 8px 20px;
}

.ndcwb-empty {
  grid-column: 1 / -1;
  padding: 24px;
  border: 1px dashed var(--ndcwb-border);
  border-radius: 18px;
  color: var(--ndcwb-muted);
  background: var(--ndcwb-cream-soft);
  text-align: center;
}

@media (max-width: 900px) {
  .ndcwb-panel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .ndcwb-panel-head p {
    max-width: 100%;
    text-align: left;
  }

  .ndcwb-service-grid,
  .ndcwb-addon-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

@media (max-width: 640px) {
  .ndcwb-wrap {
    padding: 34px 12px;
  }

  .ndcwb-progress {
    max-width: 420px;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px;
    border-radius: 22px;
    margin-bottom: 22px;
  }

  .ndcwb-progress-line {
    display: none;
  }

  .ndcwb-progress-step {
    width: 100%;
    justify-content: flex-start;
    min-height: 46px;
    padding: 9px 12px;
    background: rgba(255, 255, 255, 0.5);
  }

  .ndcwb-progress-step > .ndcwb-semi {
    font-size: 12px;
  }

  .ndcwb-tabs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 7px;
  }

  .ndcwb-tab {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .ndcwb-service-grid,
  .ndcwb-addon-grid,
  .ndcwb-form-grid {
    grid-template-columns: 1fr;
  }

  .ndcwb-service-card {
    min-height: auto;
  }

  .ndcwb-addon-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .ndcwb-addon-price {
    grid-column: 2;
  }

  .ndcwb-actions {
    flex-direction: column-reverse;
  }

  .ndcwb-btn {
    width: 100%;
  }

  .ndcwb-summary-main,
  .ndcwb-summary-total {
    align-items: flex-start;
    flex-direction: column;
  }

  .ndcwb-summary-main > .ndcwb-price,
  .ndcwb-summary-total .ndcwb-price {
    white-space: normal;
  }
}


.ndcwb-select-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.ndcwb-variant-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.ndcwb-variant-intro {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--ndcwb-dark);
}

.ndcwb-variant-intro small {
  color: var(--ndcwb-muted);
  line-height: 1.5;
}

.ndcwb-variant-card {
  appearance: none;
  border: 1px solid var(--ndcwb-border);
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  color: var(--ndcwb-dark);
  transition: 0.22s ease;
  min-width: 0;
}

.ndcwb-variant-card:hover,
.ndcwb-variant-card.is-selected {
  border-color: var(--ndcwb-dark);
  background: var(--ndcwb-cream);
  box-shadow: 0 14px 28px rgba(46, 28, 14, 0.1);
  transform: translateY(-2px);
}

.ndcwb-variant-card.is-selected {
  outline: 3px solid rgba(46, 28, 14, 0.12);
}

.ndcwb-variant-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.ndcwb-variant-name,
.ndcwb-variant-price {
  font-weight: 600;
  color: var(--ndcwb-dark);
  line-height: 1.35;
}

.ndcwb-variant-price {
  white-space: nowrap;
}

.ndcwb-variant-label {
  display: block;
  margin-bottom: 8px;
  color: var(--ndcwb-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
}

.ndcwb-variant-inclusions ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ndcwb-muted);
  font-size: 13px;
  line-height: 1.6;
}

.ndcwb-variant-inclusions li {
  margin: 0 0 3px;
  overflow-wrap: anywhere;
}

.ndcwb-variant-inclusions-empty {
  margin: 0;
  color: var(--ndcwb-muted);
  font-size: 13px;
  line-height: 1.6;
}

.ndcwb-nail-options-field {
  min-width: 0;
}

@media (max-width: 900px) {
  .ndcwb-variant-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .ndcwb-branch-box {
    grid-template-columns: 1fr;
    padding: 18px;
    border-radius: 18px;
  }
}
