#customer-content {
  min-width: 0;
}
#customer-content h2 {
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.8px;
}
#customer-content h3 {
  font-size: 20px;
  font-weight: 400;
}
#customer-content p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
}
.customer-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.customer-heading button,
.address-actions button,
#delete-address-confirm button {
  font-size: 12px;
  min-height: 44px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.order-entry,
.address-entry {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.customer-product {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.customer-product img {
  width: 70px;
  height: 80px;
  object-fit: cover;
}
.customer-product > div {
  flex: 1;
}
.customer-product p {
  margin: 5px 0;
}
.customer-product a {
  text-decoration: underline;
}
.order-costs {
  max-width: 450px;
  margin: 30px 0;
}
.order-costs > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.order-costs dd {
  margin: 0;
}
.customer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.tracking-steps {
  padding-left: 25px;
  margin: 35px 0;
}
.tracking-steps li {
  padding: 15px 0 15px 12px;
  border-bottom: 1px solid var(--line);
}
.tracking-steps [aria-current] {
  border-left: 3px solid var(--teal);
}
#customer-content form {
  max-width: 550px;
}
#customer-content select,
#customer-content textarea {
  display: block;
  width: 100%;
  padding: 12px;
  min-height: 48px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  font: inherit;
  margin-top: 8px;
}
#customer-content textarea {
  min-height: 100px;
}
.address-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
#address-editor[hidden],
#delete-address-confirm[hidden] {
  display: none;
}
#address-editor {
  padding: 25px 0;
}
#delete-address-confirm {
  border: 1px solid var(--line);
  padding: 20px;
  margin-top: 20px;
}
#customer-status {
  font-size: 12px;
  min-height: 24px;
}
@media (max-width: 650px) {
  .customer-heading {
    align-items: start;
    flex-wrap: wrap;
  }
  .customer-columns {
    grid-template-columns: 1fr;
  }
  .customer-product img {
    width: 55px;
    height: 65px;
  }
  .customer-product {
    gap: 12px;
  }
}
