.account-control {
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.customer-nav {
  align-items: center;
  background: #fff7ed;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
}

.customer-nav a {
  color: inherit;
  font-weight: 800;
}

.account-actions,
.favorite-list {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.customer-order-list {
  display: grid;
  gap: 0.75rem;
}

.customer-order-card {
  align-items: center;
  background: #fff;
  border: 2px solid #231f20;
  border-radius: 0.75rem;
  color: inherit;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  min-height: 72px;
  padding: 1rem;
  text-decoration: none;
}

.customer-order-card span:last-child {
  text-align: right;
}

.favorite-form {
  margin: 0.35rem 0;
}

.favorite-button {
  background: transparent;
  border: 2px solid currentColor;
  border-radius: 999px;
  color: #6b2737;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  min-height: 44px;
  padding: 0.45rem 0.8rem;
}

.favorite-button.is-favorite {
  background: #6b2737;
  color: #fff;
}

@media (max-width: 640px) {
  .account-control {
    min-height: 44px;
    align-items: center;
    display: inline-flex;
  }

  .customer-nav a,
  .customer-nav button {
    align-items: center;
    display: inline-flex;
    min-height: 44px;
  }

  .customer-order-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .customer-order-card span:last-child {
    text-align: left;
  }
}
