.totals {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-3);
}

.totals > * {
  font-size: var(--font-size-base);
  margin: 0;
}

.totals > h2 {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
}

.totals * {
  line-height: 1;
}

.totals__total {
  margin-top: 0;
}

.totals__total-value {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-semibold);
  font-variant-numeric: tabular-nums;
  display: inline-block;
  will-change: transform, opacity;
}

.cart__ctas + .totals {
  margin-top: var(--space-4);
}

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