.totals {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.totals > * {
  font-size: 1.6rem;
  margin: 0;
}

.totals > h2 {
  font-size: calc(var(--font-heading-scale) * 1.6rem);
}

.totals * {
  line-height: 1;
}

.totals > * + * {
  margin-left: 2rem;
}

.totals__subtotal-value {
  font-size: 1.8rem;
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  color: rgb(var(--color-foreground));
}

.cart__ctas + .totals {
  margin-top: 2rem;
}

.cart__footer .totals {
  justify-content: space-between;
}