.totals {
  display: inline-flex;
  align-items: center;
}

.totals.totals__subtotal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.totals__subtotal {
  margin: 0;
  font-family: var(--font-heading-family);
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.6rem;
}

.totals__subtotal-value {
  font-size: 1.8rem;
}

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

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