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

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

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

.totals * {
  line-height: 1;
}

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

.totals__total {
  margin-top: 0.3125rem;
}

.totals__total-value {
  font-size: 1.125rem;
}

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

@media all and (min-width: 750px) {
  .totals {
    justify-content: flex-end;
  }
}