.customer-create-modal__progress {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(80px, 1fr) minmax(0, 1fr);
  align-items: center;
  column-gap: 12px;
  margin: 0 0 18px;
  padding: 0 2px;
}

.customer-create-modal__progress-step {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #64748b;
  font-size: 1.02rem;
  font-weight: 800;
  min-width: 0;
}

.customer-create-modal__progress-step.is-active {
  color: #0f172a;
}

.customer-create-modal__progress-step:first-child {
  justify-self: start;
}

.customer-create-modal__progress-step:last-child {
  justify-self: end;
}

.customer-create-modal__progress-line {
  justify-self: stretch;
  height: 2px;
  background: rgba(148, 163, 184, 0.28);
  border-radius: 999px;
}

.customer-create-modal__progress-circle {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #fff;
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 800;
  flex: 0 0 auto;
}

.customer-create-modal__progress-label {
  white-space: nowrap;
}

.customer-create-modal__progress-step.is-active .customer-create-modal__progress-circle {
  border-color: rgba(37, 99, 235, 0.55);
  background: rgba(37, 99, 235, 0.12);
  color: #1d4ed8;
}

.customer-create-modal__progress-step.is-complete .customer-create-modal__progress-circle {
  border-color: rgba(37, 99, 235, 0.55);
  background: rgba(37, 99, 235, 0.12);
  color: #1d4ed8;
}

.customer-create-modal__section-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
}

.customer-create-modal__panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.customer-create-modal__panel[hidden] {
  display: none !important;
}

.customer-create-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.customer-create-modal__actions--spread {
  justify-content: space-between;
}

.customer-create-modal__actions--bottom {
  justify-content: space-between;
  margin-top: 4px;
}

.customer-create-modal__address-form {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 14px;
  background: rgba(248, 250, 252, 0.8);
}

.customer-create-modal__address-row {
  display: grid;
  gap: 12px;
}

.customer-create-modal__address-row--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.customer-create-modal__address-row--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.customer-create-modal__address-list {
  display: grid;
  gap: 10px;
}

.customer-create-modal__address-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 12px;
  background: #fff;
}

.customer-create-modal__address-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.customer-create-modal__address-title {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-weight: 800;
  color: #0f172a;
}

.customer-create-modal__address-summary {
  white-space: pre-line;
  color: #475569;
  font-size: 0.95rem;
}

.customer-create-modal__address-actions {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
}

.customer-create-modal__address-actions .button.edit,
.customer-create-modal__address-actions .button.delete {
  flex: 0 0 auto;
}

.customer-create-modal__empty {
  color: #64748b;
  font-size: 0.95rem;
}

.customer-create-modal__primary {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  color: #1d4ed8;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.customer-create-modal__checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.85);
  font-weight: 600;
  color: #0f172a;
}

.customer-create-modal__checkbox input {
  width: 16px;
  height: 16px;
  margin: 0;
}

@media (max-width: 760px) {
  .customer-create-modal__address-row--three,
  .customer-create-modal__address-row--two {
    grid-template-columns: 1fr;
  }

}
